@appinventiv/aws-s3 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/exception-handler.d.ts +87 -0
- package/dist/exception-handler.js +250 -0
- package/dist/exception-handler.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -0
- package/dist/interface.d.ts +4 -0
- package/dist/interface.js +3 -0
- package/dist/interface.js.map +1 -0
- package/dist/s3.d.ts +81 -0
- package/dist/s3.js +240 -0
- package/dist/s3.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @description HTTP status messages enum
|
|
3
|
+
*/
|
|
4
|
+
export declare enum HTTP_STATUS_MESSAGE {
|
|
5
|
+
BAD_REQUEST = 400,
|
|
6
|
+
UNAUTHORIZED = 401,
|
|
7
|
+
FORBIDDEN = 403,
|
|
8
|
+
NOT_FOUND = 404,
|
|
9
|
+
CONFLICT = 409,
|
|
10
|
+
REQUEST_TIMEOUT = 408,
|
|
11
|
+
TOO_MANY_REQUESTS = 429,
|
|
12
|
+
INTERNAL_SERVER_ERROR = 500,
|
|
13
|
+
SERVICE_UNAVAILABLE = 503
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @description Exception message types for S3 operations
|
|
17
|
+
*/
|
|
18
|
+
export declare enum ExceptionMessage {
|
|
19
|
+
S3_CONNECTION_ERROR = "S3_CONNECTION_ERROR",
|
|
20
|
+
S3_OPERATION_ERROR = "S3_OPERATION_ERROR",
|
|
21
|
+
S3_AUTH_ERROR = "S3_AUTH_ERROR",
|
|
22
|
+
S3_NOT_FOUND = "S3_NOT_FOUND",
|
|
23
|
+
S3_SERVER_ERROR = "S3_SERVER_ERROR",
|
|
24
|
+
S3_TIMEOUT_ERROR = "S3_TIMEOUT_ERROR",
|
|
25
|
+
S3_VALIDATION_ERROR = "S3_VALIDATION_ERROR",
|
|
26
|
+
S3_UNKNOWN_ERROR = "S3_UNKNOWN_ERROR"
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @description S3 connection error codes
|
|
30
|
+
*/
|
|
31
|
+
export declare const S3_CONNECTION_ERROR: {
|
|
32
|
+
ECONNREFUSED: string;
|
|
33
|
+
ENOTFOUND: string;
|
|
34
|
+
ECONNRESET: string;
|
|
35
|
+
EHOSTUNREACH: string;
|
|
36
|
+
EADDRNOTAVAIL: string;
|
|
37
|
+
ETIMEDOUT: string;
|
|
38
|
+
NETWORK_ERROR: string;
|
|
39
|
+
TIMEOUT_ERROR: string;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @description S3 operation error codes
|
|
43
|
+
*/
|
|
44
|
+
export declare const S3_OPERATION_ERROR: {
|
|
45
|
+
NO_SUCH_KEY: string;
|
|
46
|
+
NO_SUCH_BUCKET: string;
|
|
47
|
+
ACCESS_DENIED: string;
|
|
48
|
+
INVALID_BUCKET_NAME: string;
|
|
49
|
+
BUCKET_ALREADY_EXISTS: string;
|
|
50
|
+
INVALID_OBJECT_STATE: string;
|
|
51
|
+
KEY_TOO_LONG: string;
|
|
52
|
+
INVALID_ARGUMENT: string;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* @description Base exception handler class
|
|
56
|
+
*/
|
|
57
|
+
export declare class ExceptionHandler {
|
|
58
|
+
protected code: number;
|
|
59
|
+
protected status: HTTP_STATUS_MESSAGE;
|
|
60
|
+
protected data: any;
|
|
61
|
+
/**
|
|
62
|
+
* @description Get error response object
|
|
63
|
+
* @returns {object} Error object with status and data
|
|
64
|
+
*/
|
|
65
|
+
getError(): {
|
|
66
|
+
status: HTTP_STATUS_MESSAGE;
|
|
67
|
+
data: any;
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @description AWS S3 exception handler
|
|
72
|
+
* Categorizes and handles AWS S3 SDK errors
|
|
73
|
+
*/
|
|
74
|
+
export declare class S3Exception extends ExceptionHandler {
|
|
75
|
+
constructor(error: any, context?: {
|
|
76
|
+
bucket?: string;
|
|
77
|
+
key?: string;
|
|
78
|
+
operation?: string;
|
|
79
|
+
});
|
|
80
|
+
/**
|
|
81
|
+
* @description Categorize S3 error based on error type and code
|
|
82
|
+
* @param {any} error - AWS SDK error object
|
|
83
|
+
* @param {object} context - Additional context (bucket, key, operation)
|
|
84
|
+
* @returns {object} Categorized error information
|
|
85
|
+
*/
|
|
86
|
+
private categorizeS3Error;
|
|
87
|
+
}
|
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.S3Exception = exports.ExceptionHandler = exports.S3_OPERATION_ERROR = exports.S3_CONNECTION_ERROR = exports.ExceptionMessage = exports.HTTP_STATUS_MESSAGE = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* @description HTTP status messages enum
|
|
6
|
+
*/
|
|
7
|
+
var HTTP_STATUS_MESSAGE;
|
|
8
|
+
(function (HTTP_STATUS_MESSAGE) {
|
|
9
|
+
HTTP_STATUS_MESSAGE[HTTP_STATUS_MESSAGE["BAD_REQUEST"] = 400] = "BAD_REQUEST";
|
|
10
|
+
HTTP_STATUS_MESSAGE[HTTP_STATUS_MESSAGE["UNAUTHORIZED"] = 401] = "UNAUTHORIZED";
|
|
11
|
+
HTTP_STATUS_MESSAGE[HTTP_STATUS_MESSAGE["FORBIDDEN"] = 403] = "FORBIDDEN";
|
|
12
|
+
HTTP_STATUS_MESSAGE[HTTP_STATUS_MESSAGE["NOT_FOUND"] = 404] = "NOT_FOUND";
|
|
13
|
+
HTTP_STATUS_MESSAGE[HTTP_STATUS_MESSAGE["CONFLICT"] = 409] = "CONFLICT";
|
|
14
|
+
HTTP_STATUS_MESSAGE[HTTP_STATUS_MESSAGE["REQUEST_TIMEOUT"] = 408] = "REQUEST_TIMEOUT";
|
|
15
|
+
HTTP_STATUS_MESSAGE[HTTP_STATUS_MESSAGE["TOO_MANY_REQUESTS"] = 429] = "TOO_MANY_REQUESTS";
|
|
16
|
+
HTTP_STATUS_MESSAGE[HTTP_STATUS_MESSAGE["INTERNAL_SERVER_ERROR"] = 500] = "INTERNAL_SERVER_ERROR";
|
|
17
|
+
HTTP_STATUS_MESSAGE[HTTP_STATUS_MESSAGE["SERVICE_UNAVAILABLE"] = 503] = "SERVICE_UNAVAILABLE";
|
|
18
|
+
})(HTTP_STATUS_MESSAGE || (exports.HTTP_STATUS_MESSAGE = HTTP_STATUS_MESSAGE = {}));
|
|
19
|
+
/**
|
|
20
|
+
* @description Exception message types for S3 operations
|
|
21
|
+
*/
|
|
22
|
+
var ExceptionMessage;
|
|
23
|
+
(function (ExceptionMessage) {
|
|
24
|
+
ExceptionMessage["S3_CONNECTION_ERROR"] = "S3_CONNECTION_ERROR";
|
|
25
|
+
ExceptionMessage["S3_OPERATION_ERROR"] = "S3_OPERATION_ERROR";
|
|
26
|
+
ExceptionMessage["S3_AUTH_ERROR"] = "S3_AUTH_ERROR";
|
|
27
|
+
ExceptionMessage["S3_NOT_FOUND"] = "S3_NOT_FOUND";
|
|
28
|
+
ExceptionMessage["S3_SERVER_ERROR"] = "S3_SERVER_ERROR";
|
|
29
|
+
ExceptionMessage["S3_TIMEOUT_ERROR"] = "S3_TIMEOUT_ERROR";
|
|
30
|
+
ExceptionMessage["S3_VALIDATION_ERROR"] = "S3_VALIDATION_ERROR";
|
|
31
|
+
ExceptionMessage["S3_UNKNOWN_ERROR"] = "S3_UNKNOWN_ERROR";
|
|
32
|
+
})(ExceptionMessage || (exports.ExceptionMessage = ExceptionMessage = {}));
|
|
33
|
+
/**
|
|
34
|
+
* @description S3 connection error codes
|
|
35
|
+
*/
|
|
36
|
+
exports.S3_CONNECTION_ERROR = {
|
|
37
|
+
ECONNREFUSED: 'ECONNREFUSED',
|
|
38
|
+
ENOTFOUND: 'ENOTFOUND',
|
|
39
|
+
ECONNRESET: 'ECONNRESET',
|
|
40
|
+
EHOSTUNREACH: 'EHOSTUNREACH',
|
|
41
|
+
EADDRNOTAVAIL: 'EADDRNOTAVAIL',
|
|
42
|
+
ETIMEDOUT: 'ETIMEDOUT',
|
|
43
|
+
NETWORK_ERROR: 'NetworkError',
|
|
44
|
+
TIMEOUT_ERROR: 'TimeoutError'
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* @description S3 operation error codes
|
|
48
|
+
*/
|
|
49
|
+
exports.S3_OPERATION_ERROR = {
|
|
50
|
+
NO_SUCH_KEY: 'NoSuchKey',
|
|
51
|
+
NO_SUCH_BUCKET: 'NoSuchBucket',
|
|
52
|
+
ACCESS_DENIED: 'AccessDenied',
|
|
53
|
+
INVALID_BUCKET_NAME: 'InvalidBucketName',
|
|
54
|
+
BUCKET_ALREADY_EXISTS: 'BucketAlreadyExists',
|
|
55
|
+
INVALID_OBJECT_STATE: 'InvalidObjectState',
|
|
56
|
+
KEY_TOO_LONG: 'KeyTooLongError',
|
|
57
|
+
INVALID_ARGUMENT: 'InvalidArgument'
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @description Base exception handler class
|
|
61
|
+
*/
|
|
62
|
+
class ExceptionHandler {
|
|
63
|
+
code;
|
|
64
|
+
status;
|
|
65
|
+
data;
|
|
66
|
+
/**
|
|
67
|
+
* @description Get error response object
|
|
68
|
+
* @returns {object} Error object with status and data
|
|
69
|
+
*/
|
|
70
|
+
getError() {
|
|
71
|
+
return {
|
|
72
|
+
status: this.status || HTTP_STATUS_MESSAGE.BAD_REQUEST,
|
|
73
|
+
data: this.data
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
exports.ExceptionHandler = ExceptionHandler;
|
|
78
|
+
/**
|
|
79
|
+
* @description AWS S3 exception handler
|
|
80
|
+
* Categorizes and handles AWS S3 SDK errors
|
|
81
|
+
*/
|
|
82
|
+
class S3Exception extends ExceptionHandler {
|
|
83
|
+
constructor(error, context) {
|
|
84
|
+
super();
|
|
85
|
+
const { type, status, message, name } = this.categorizeS3Error(error, context);
|
|
86
|
+
this.data = {
|
|
87
|
+
message: message || type,
|
|
88
|
+
type: type,
|
|
89
|
+
originalError: name || 'S3Error',
|
|
90
|
+
stack: error?.stack,
|
|
91
|
+
requestId: error?.$metadata?.requestId,
|
|
92
|
+
context: context || null
|
|
93
|
+
};
|
|
94
|
+
this.status = status;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* @description Categorize S3 error based on error type and code
|
|
98
|
+
* @param {any} error - AWS SDK error object
|
|
99
|
+
* @param {object} context - Additional context (bucket, key, operation)
|
|
100
|
+
* @returns {object} Categorized error information
|
|
101
|
+
*/
|
|
102
|
+
categorizeS3Error(error, context) {
|
|
103
|
+
const message = (error?.message || '').toLowerCase();
|
|
104
|
+
const name = (error?.name || '').toLowerCase();
|
|
105
|
+
const code = error?.Code || error?.code || '';
|
|
106
|
+
const httpStatusCode = error?.$metadata?.httpStatusCode || 500;
|
|
107
|
+
// ------------------
|
|
108
|
+
// Connection Errors
|
|
109
|
+
// ------------------
|
|
110
|
+
const connectionMatches = [
|
|
111
|
+
exports.S3_CONNECTION_ERROR.ECONNREFUSED,
|
|
112
|
+
exports.S3_CONNECTION_ERROR.ENOTFOUND,
|
|
113
|
+
exports.S3_CONNECTION_ERROR.ECONNRESET,
|
|
114
|
+
exports.S3_CONNECTION_ERROR.EHOSTUNREACH,
|
|
115
|
+
exports.S3_CONNECTION_ERROR.EADDRNOTAVAIL,
|
|
116
|
+
exports.S3_CONNECTION_ERROR.ETIMEDOUT,
|
|
117
|
+
exports.S3_CONNECTION_ERROR.NETWORK_ERROR,
|
|
118
|
+
exports.S3_CONNECTION_ERROR.TIMEOUT_ERROR,
|
|
119
|
+
'networkerror',
|
|
120
|
+
'timeout',
|
|
121
|
+
'connection'
|
|
122
|
+
];
|
|
123
|
+
if (connectionMatches.some((m) => message.includes(m.toLowerCase()) || name.includes(m.toLowerCase()))) {
|
|
124
|
+
return {
|
|
125
|
+
type: ExceptionMessage.S3_CONNECTION_ERROR,
|
|
126
|
+
message: `S3 connection error: ${error?.message || 'Unable to connect to S3'}`,
|
|
127
|
+
name: name || 'S3ConnectionError',
|
|
128
|
+
status: HTTP_STATUS_MESSAGE.SERVICE_UNAVAILABLE
|
|
129
|
+
};
|
|
130
|
+
}
|
|
131
|
+
// ------------------
|
|
132
|
+
// Authentication Errors
|
|
133
|
+
// ------------------
|
|
134
|
+
const authMatches = [
|
|
135
|
+
exports.S3_OPERATION_ERROR.ACCESS_DENIED,
|
|
136
|
+
'InvalidAccessKeyId',
|
|
137
|
+
'SignatureDoesNotMatch',
|
|
138
|
+
'InvalidSecurity',
|
|
139
|
+
'MissingSecurityHeader',
|
|
140
|
+
'TokenRefreshRequired',
|
|
141
|
+
'InvalidToken',
|
|
142
|
+
'ExpiredToken',
|
|
143
|
+
'accessdenied',
|
|
144
|
+
'unauthorized',
|
|
145
|
+
'forbidden'
|
|
146
|
+
];
|
|
147
|
+
if (authMatches.some((m) => code?.toLowerCase().includes(m.toLowerCase()) ||
|
|
148
|
+
message.includes(m.toLowerCase()) ||
|
|
149
|
+
name.includes(m.toLowerCase()))) {
|
|
150
|
+
return {
|
|
151
|
+
type: ExceptionMessage.S3_AUTH_ERROR,
|
|
152
|
+
message: `S3 authentication error: ${error?.message || 'Access denied. Check your IAM permissions'}`,
|
|
153
|
+
name: name || 'S3AuthError',
|
|
154
|
+
status: HTTP_STATUS_MESSAGE.UNAUTHORIZED
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
// ------------------
|
|
158
|
+
// Not Found Errors
|
|
159
|
+
// ------------------
|
|
160
|
+
const notFoundMatches = [
|
|
161
|
+
exports.S3_OPERATION_ERROR.NO_SUCH_KEY,
|
|
162
|
+
exports.S3_OPERATION_ERROR.NO_SUCH_BUCKET,
|
|
163
|
+
'nosuchkey',
|
|
164
|
+
'nosuchbucket',
|
|
165
|
+
'notfound'
|
|
166
|
+
];
|
|
167
|
+
if (notFoundMatches.some((m) => code?.toLowerCase().includes(m.toLowerCase()) ||
|
|
168
|
+
message.includes(m.toLowerCase()) ||
|
|
169
|
+
name.includes(m.toLowerCase()))) {
|
|
170
|
+
const bucketInfo = context?.bucket ? ` in bucket '${context.bucket}'` : '';
|
|
171
|
+
const keyInfo = context?.key ? ` for key '${context.key}'` : '';
|
|
172
|
+
return {
|
|
173
|
+
type: ExceptionMessage.S3_NOT_FOUND,
|
|
174
|
+
message: `S3 resource not found${keyInfo}${bucketInfo}: ${error?.message || 'Resource does not exist'}`,
|
|
175
|
+
name: name || 'S3NotFoundError',
|
|
176
|
+
status: HTTP_STATUS_MESSAGE.NOT_FOUND
|
|
177
|
+
};
|
|
178
|
+
}
|
|
179
|
+
// ------------------
|
|
180
|
+
// Validation Errors
|
|
181
|
+
// ------------------
|
|
182
|
+
const validationMatches = [
|
|
183
|
+
exports.S3_OPERATION_ERROR.INVALID_BUCKET_NAME,
|
|
184
|
+
exports.S3_OPERATION_ERROR.KEY_TOO_LONG,
|
|
185
|
+
exports.S3_OPERATION_ERROR.INVALID_ARGUMENT,
|
|
186
|
+
'InvalidArgument',
|
|
187
|
+
'MalformedXML',
|
|
188
|
+
'KeyTooLongError',
|
|
189
|
+
'validation',
|
|
190
|
+
'invalid'
|
|
191
|
+
];
|
|
192
|
+
if (validationMatches.some((m) => code?.toLowerCase().includes(m.toLowerCase()) ||
|
|
193
|
+
message.includes(m.toLowerCase()) ||
|
|
194
|
+
name.includes(m.toLowerCase()))) {
|
|
195
|
+
return {
|
|
196
|
+
type: ExceptionMessage.S3_VALIDATION_ERROR,
|
|
197
|
+
message: `S3 validation error: ${error?.message || 'Invalid request parameters'}`,
|
|
198
|
+
name: name || 'S3ValidationError',
|
|
199
|
+
status: HTTP_STATUS_MESSAGE.BAD_REQUEST
|
|
200
|
+
};
|
|
201
|
+
}
|
|
202
|
+
// ------------------
|
|
203
|
+
// Timeout Errors
|
|
204
|
+
// ------------------
|
|
205
|
+
if (code === 'RequestTimeout' ||
|
|
206
|
+
message.includes('timeout') ||
|
|
207
|
+
name.includes('timeout') ||
|
|
208
|
+
httpStatusCode === 408) {
|
|
209
|
+
return {
|
|
210
|
+
type: ExceptionMessage.S3_TIMEOUT_ERROR,
|
|
211
|
+
message: `S3 request timeout: ${error?.message || 'Request took too long'}`,
|
|
212
|
+
name: name || 'S3TimeoutError',
|
|
213
|
+
status: HTTP_STATUS_MESSAGE.REQUEST_TIMEOUT
|
|
214
|
+
};
|
|
215
|
+
}
|
|
216
|
+
// ------------------
|
|
217
|
+
// Server Errors (5xx)
|
|
218
|
+
// ------------------
|
|
219
|
+
if (httpStatusCode >= 500 && httpStatusCode < 600) {
|
|
220
|
+
return {
|
|
221
|
+
type: ExceptionMessage.S3_SERVER_ERROR,
|
|
222
|
+
message: `S3 server error: ${error?.message || 'Internal server error'}`,
|
|
223
|
+
name: name || 'S3ServerError',
|
|
224
|
+
status: HTTP_STATUS_MESSAGE.INTERNAL_SERVER_ERROR
|
|
225
|
+
};
|
|
226
|
+
}
|
|
227
|
+
// ------------------
|
|
228
|
+
// Operational Errors (4xx)
|
|
229
|
+
// ------------------
|
|
230
|
+
if (httpStatusCode >= 400 && httpStatusCode < 500) {
|
|
231
|
+
return {
|
|
232
|
+
type: ExceptionMessage.S3_OPERATION_ERROR,
|
|
233
|
+
message: `S3 operation error: ${error?.message || 'Operation failed'}`,
|
|
234
|
+
name: name || 'S3OperationError',
|
|
235
|
+
status: httpStatusCode || HTTP_STATUS_MESSAGE.BAD_REQUEST
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
// ------------------
|
|
239
|
+
// Default / Unknown
|
|
240
|
+
// ------------------
|
|
241
|
+
return {
|
|
242
|
+
type: ExceptionMessage.S3_UNKNOWN_ERROR,
|
|
243
|
+
message: `S3 error: ${error?.message || 'Unknown error occurred'}`,
|
|
244
|
+
name: name || 'S3UnknownError',
|
|
245
|
+
status: HTTP_STATUS_MESSAGE.INTERNAL_SERVER_ERROR
|
|
246
|
+
};
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
exports.S3Exception = S3Exception;
|
|
250
|
+
//# sourceMappingURL=exception-handler.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"exception-handler.js","sourceRoot":"","sources":["../src/exception-handler.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./s3"), exports);
|
|
18
|
+
__exportStar(require("./interface"), exports);
|
|
19
|
+
__exportStar(require("./exception-handler"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uCAAqB;AACrB,8CAA4B;AAC5B,sDAAoC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interface.js","sourceRoot":"","sources":["../src/interface.ts"],"names":[],"mappings":""}
|
package/dist/s3.d.ts
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { IS3Config } from './interface';
|
|
2
|
+
/**
|
|
3
|
+
* @description AWS S3 provider class for managing S3 operations
|
|
4
|
+
* Provides functionality for uploading, reading, deleting files, and generating presigned URLs
|
|
5
|
+
* Supports both S3 presigned URLs and CloudFront signed URLs/cookies
|
|
6
|
+
*/
|
|
7
|
+
declare class AWSS3Provider {
|
|
8
|
+
private client;
|
|
9
|
+
private privateKey;
|
|
10
|
+
private cloudfrontDomain;
|
|
11
|
+
private cloudfrontKeyPairId;
|
|
12
|
+
/**
|
|
13
|
+
* @description Initialize S3 Manager with optional CloudFront configuration
|
|
14
|
+
* @param {IS3Config} config - Optional configuration for CloudFront domain and key pair ID
|
|
15
|
+
*/
|
|
16
|
+
initialiseS3Manager(config?: IS3Config): void;
|
|
17
|
+
/**
|
|
18
|
+
* @description Get S3 client configuration from environment variables
|
|
19
|
+
* @returns {S3ClientConfig} S3 client configuration object
|
|
20
|
+
*/
|
|
21
|
+
private getConfiguration;
|
|
22
|
+
/**
|
|
23
|
+
* @description Load private key for CloudFront signed URL generation
|
|
24
|
+
* @param {string} privateKeyPath - Path to the private key file (local path or S3 key)
|
|
25
|
+
* @param {boolean} isStoredOnS3 - Whether the private key is stored in S3 or locally
|
|
26
|
+
* @param {string} bucket - S3 bucket name (required if isStoredOnS3 is true)
|
|
27
|
+
*/
|
|
28
|
+
loadConfigForReadablePresignedUrl(privateKeyPath: string, isStoredOnS3: boolean, bucket?: string): Promise<void>;
|
|
29
|
+
/**
|
|
30
|
+
* @description Generate a presigned URL for uploading files to S3
|
|
31
|
+
* @param {string} bucketName - Name of the S3 bucket
|
|
32
|
+
* @param {string} basePath - Base path/folder in the bucket
|
|
33
|
+
* @param {string} fileName - Name of the file to upload
|
|
34
|
+
* @param {number} expiresIn - Expiration time in seconds (default: 120 seconds / 2 minutes)
|
|
35
|
+
* @returns {Promise<string>} Presigned URL for uploading the file
|
|
36
|
+
*/
|
|
37
|
+
getPreSignedUrl(bucketName: string, basePath: string, fileName: string, expiresIn?: number): Promise<string>;
|
|
38
|
+
/**
|
|
39
|
+
* @description Generate a CloudFront signed URL for reading a file
|
|
40
|
+
* @param {string} filePath - Path to the file in CloudFront (relative to domain)
|
|
41
|
+
* @param {number} expiration - Expiration time in milliseconds
|
|
42
|
+
* @returns {Promise<string>} CloudFront signed URL for reading the file
|
|
43
|
+
*/
|
|
44
|
+
getPreSignedUrlToReadFile(filePath: string, expiration: number): Promise<string>;
|
|
45
|
+
/**
|
|
46
|
+
* @description Generate CloudFront signed cookies for reading files in a folder
|
|
47
|
+
* @param {string} folderPath - Path to the folder in CloudFront (relative to domain)
|
|
48
|
+
* @param {number} expiration - Expiration time in milliseconds
|
|
49
|
+
* @returns {Promise<object>} CloudFront signed cookies object
|
|
50
|
+
*/
|
|
51
|
+
getPreSignedUrlToReadFolder(folderPath: string, expiration: number): Promise<import("@aws-sdk/cloudfront-signer").CloudfrontSignedCookiesOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @description Read a file from S3 bucket
|
|
54
|
+
* @param {string} key - S3 object key (file path)
|
|
55
|
+
* @param {string} bucket - S3 bucket name
|
|
56
|
+
* @param {string} encoding - Optional encoding for the file content (default: UTF-8)
|
|
57
|
+
* @returns {Promise<string>} File content as string
|
|
58
|
+
*/
|
|
59
|
+
readFile(key: string, bucket: string, encoding?: string): Promise<string | undefined>;
|
|
60
|
+
/**
|
|
61
|
+
* @description Delete a file from S3 bucket
|
|
62
|
+
* @param {string} bucket - S3 bucket name
|
|
63
|
+
* @param {string} key - S3 object key (file path)
|
|
64
|
+
* @returns {Promise<object>} Delete operation result
|
|
65
|
+
*/
|
|
66
|
+
deleteFile(bucket: string, key: string): Promise<import("@aws-sdk/client-s3").DeleteObjectCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @description Get file content as Base64 encoded string from S3
|
|
69
|
+
* @param {object} fileData - File data object
|
|
70
|
+
* @param {string} fileData.bucket - S3 bucket name
|
|
71
|
+
* @param {string} fileData.path - S3 object key (file path)
|
|
72
|
+
* @returns {Promise<string>} Base64 encoded file content
|
|
73
|
+
* @throws {Error} If file body is empty or unreadable
|
|
74
|
+
*/
|
|
75
|
+
getFileBase64Data(fileData: {
|
|
76
|
+
bucket: string;
|
|
77
|
+
path: string;
|
|
78
|
+
}): Promise<string>;
|
|
79
|
+
}
|
|
80
|
+
export declare const s3Service: AWSS3Provider;
|
|
81
|
+
export {};
|
package/dist/s3.js
ADDED
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.s3Service = void 0;
|
|
4
|
+
const client_s3_1 = require("@aws-sdk/client-s3");
|
|
5
|
+
const s3_request_presigner_1 = require("@aws-sdk/s3-request-presigner");
|
|
6
|
+
const cloudfront_signer_1 = require("@aws-sdk/cloudfront-signer");
|
|
7
|
+
const node_fs_1 = require("node:fs");
|
|
8
|
+
const exception_handler_1 = require("./exception-handler");
|
|
9
|
+
/**
|
|
10
|
+
* @description AWS S3 provider class for managing S3 operations
|
|
11
|
+
* Provides functionality for uploading, reading, deleting files, and generating presigned URLs
|
|
12
|
+
* Supports both S3 presigned URLs and CloudFront signed URLs/cookies
|
|
13
|
+
*/
|
|
14
|
+
class AWSS3Provider {
|
|
15
|
+
client;
|
|
16
|
+
privateKey;
|
|
17
|
+
cloudfrontDomain;
|
|
18
|
+
cloudfrontKeyPairId;
|
|
19
|
+
/**
|
|
20
|
+
* @description Initialize S3 Manager with optional CloudFront configuration
|
|
21
|
+
* @param {IS3Config} config - Optional configuration for CloudFront domain and key pair ID
|
|
22
|
+
*/
|
|
23
|
+
initialiseS3Manager(config) {
|
|
24
|
+
try {
|
|
25
|
+
this.cloudfrontDomain = config?.cloudfrontDomain ?? '';
|
|
26
|
+
this.cloudfrontKeyPairId = config?.cloudfrontKeyPairId ?? '';
|
|
27
|
+
this.client = new client_s3_1.S3(this.getConfiguration());
|
|
28
|
+
console.info('Connected to S3 Manager');
|
|
29
|
+
}
|
|
30
|
+
catch (error) {
|
|
31
|
+
console.error(`Error--initializeS3Manager-Unable to Connect--msg :: `, error);
|
|
32
|
+
throw new exception_handler_1.S3Exception(error, { operation: 'initialiseS3Manager' }).getError();
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @description Get S3 client configuration from environment variables
|
|
37
|
+
* @returns {S3ClientConfig} S3 client configuration object
|
|
38
|
+
*/
|
|
39
|
+
getConfiguration() {
|
|
40
|
+
const creds = {};
|
|
41
|
+
creds.region = process.env.AWS_REGION;
|
|
42
|
+
return creds;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* @description Load private key for CloudFront signed URL generation
|
|
46
|
+
* @param {string} privateKeyPath - Path to the private key file (local path or S3 key)
|
|
47
|
+
* @param {boolean} isStoredOnS3 - Whether the private key is stored in S3 or locally
|
|
48
|
+
* @param {string} bucket - S3 bucket name (required if isStoredOnS3 is true)
|
|
49
|
+
*/
|
|
50
|
+
async loadConfigForReadablePresignedUrl(privateKeyPath, isStoredOnS3, bucket) {
|
|
51
|
+
try {
|
|
52
|
+
if (isStoredOnS3 && bucket) {
|
|
53
|
+
this.privateKey = await this.readFile(privateKeyPath, bucket);
|
|
54
|
+
}
|
|
55
|
+
else {
|
|
56
|
+
this.privateKey = (0, node_fs_1.readFileSync)(privateKeyPath, 'utf8');
|
|
57
|
+
}
|
|
58
|
+
console.info('Private key Loaded Successfully');
|
|
59
|
+
}
|
|
60
|
+
catch (error) {
|
|
61
|
+
console.error(`Error--loadConfigForReadablePresignedUrl--msg :: `, error);
|
|
62
|
+
throw new exception_handler_1.S3Exception(error, {
|
|
63
|
+
operation: 'loadConfigForReadablePresignedUrl',
|
|
64
|
+
bucket
|
|
65
|
+
}).getError();
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* @description Generate a presigned URL for uploading files to S3
|
|
70
|
+
* @param {string} bucketName - Name of the S3 bucket
|
|
71
|
+
* @param {string} basePath - Base path/folder in the bucket
|
|
72
|
+
* @param {string} fileName - Name of the file to upload
|
|
73
|
+
* @param {number} expiresIn - Expiration time in seconds (default: 120 seconds / 2 minutes)
|
|
74
|
+
* @returns {Promise<string>} Presigned URL for uploading the file
|
|
75
|
+
*/
|
|
76
|
+
async getPreSignedUrl(bucketName, basePath, fileName, expiresIn = 120 // Default expiry set to 2 minutes
|
|
77
|
+
) {
|
|
78
|
+
try {
|
|
79
|
+
console.info(`Generating presigned URL for - ${basePath}/${fileName} in ${bucketName}`);
|
|
80
|
+
const command = new client_s3_1.PutObjectCommand({
|
|
81
|
+
Bucket: bucketName,
|
|
82
|
+
Key: `${basePath}/${fileName}`,
|
|
83
|
+
ACL: 'private'
|
|
84
|
+
});
|
|
85
|
+
return await (0, s3_request_presigner_1.getSignedUrl)(this.client, command, { expiresIn });
|
|
86
|
+
}
|
|
87
|
+
catch (error) {
|
|
88
|
+
console.error(`Error--getPreSignedUrl--msg :: `, error);
|
|
89
|
+
throw new exception_handler_1.S3Exception(error, {
|
|
90
|
+
operation: 'getPreSignedUrl',
|
|
91
|
+
bucket: bucketName,
|
|
92
|
+
key: `${basePath}/${fileName}`
|
|
93
|
+
}).getError();
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* @description Generate a CloudFront signed URL for reading a file
|
|
98
|
+
* @param {string} filePath - Path to the file in CloudFront (relative to domain)
|
|
99
|
+
* @param {number} expiration - Expiration time in milliseconds
|
|
100
|
+
* @returns {Promise<string>} CloudFront signed URL for reading the file
|
|
101
|
+
*/
|
|
102
|
+
async getPreSignedUrlToReadFile(filePath, expiration) {
|
|
103
|
+
try {
|
|
104
|
+
const cmd = {
|
|
105
|
+
url: `${this.cloudfrontDomain}${filePath}`,
|
|
106
|
+
keyPairId: this.cloudfrontKeyPairId,
|
|
107
|
+
dateLessThan: new Date(Date.now() + expiration).toISOString(),
|
|
108
|
+
privateKey: this.privateKey
|
|
109
|
+
};
|
|
110
|
+
return (0, cloudfront_signer_1.getSignedUrl)(cmd);
|
|
111
|
+
}
|
|
112
|
+
catch (error) {
|
|
113
|
+
console.error(`Error--getPreSignedUrlToReadFile--msg :: `, error);
|
|
114
|
+
throw new exception_handler_1.S3Exception(error, {
|
|
115
|
+
operation: 'getPreSignedUrlToReadFile',
|
|
116
|
+
key: filePath
|
|
117
|
+
}).getError();
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* @description Generate CloudFront signed cookies for reading files in a folder
|
|
122
|
+
* @param {string} folderPath - Path to the folder in CloudFront (relative to domain)
|
|
123
|
+
* @param {number} expiration - Expiration time in milliseconds
|
|
124
|
+
* @returns {Promise<object>} CloudFront signed cookies object
|
|
125
|
+
*/
|
|
126
|
+
async getPreSignedUrlToReadFolder(folderPath, expiration) {
|
|
127
|
+
try {
|
|
128
|
+
const policy = {
|
|
129
|
+
Statement: [
|
|
130
|
+
{
|
|
131
|
+
Resource: `${this.cloudfrontDomain}${folderPath}*`,
|
|
132
|
+
Condition: {
|
|
133
|
+
DateLessThan: {
|
|
134
|
+
'AWS:EpochTime': Math.floor((Date.now() + expiration) / 1000) //new Date(Date.now() + expiration).valueOf()
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
};
|
|
140
|
+
const cmd = {
|
|
141
|
+
keyPairId: this.cloudfrontKeyPairId,
|
|
142
|
+
privateKey: this.privateKey,
|
|
143
|
+
policy: JSON.stringify(policy)
|
|
144
|
+
};
|
|
145
|
+
return (0, cloudfront_signer_1.getSignedCookies)(cmd);
|
|
146
|
+
}
|
|
147
|
+
catch (error) {
|
|
148
|
+
console.error(`Error--getPreSignedUrlToReadFolder--msg :: `, error);
|
|
149
|
+
throw new exception_handler_1.S3Exception(error, {
|
|
150
|
+
operation: 'getPreSignedUrlToReadFolder',
|
|
151
|
+
key: folderPath
|
|
152
|
+
}).getError();
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* @description Read a file from S3 bucket
|
|
157
|
+
* @param {string} key - S3 object key (file path)
|
|
158
|
+
* @param {string} bucket - S3 bucket name
|
|
159
|
+
* @param {string} encoding - Optional encoding for the file content (default: UTF-8)
|
|
160
|
+
* @returns {Promise<string>} File content as string
|
|
161
|
+
*/
|
|
162
|
+
async readFile(key, bucket, encoding) {
|
|
163
|
+
try {
|
|
164
|
+
const params = {
|
|
165
|
+
Bucket: bucket,
|
|
166
|
+
Key: key
|
|
167
|
+
};
|
|
168
|
+
const file = await this.client.getObject(params);
|
|
169
|
+
return await file.Body?.transformToString(encoding);
|
|
170
|
+
}
|
|
171
|
+
catch (error) {
|
|
172
|
+
console.error(`Error--readFile--msg :: `, error);
|
|
173
|
+
throw new exception_handler_1.S3Exception(error, {
|
|
174
|
+
operation: 'readFile',
|
|
175
|
+
bucket,
|
|
176
|
+
key
|
|
177
|
+
}).getError();
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* @description Delete a file from S3 bucket
|
|
182
|
+
* @param {string} bucket - S3 bucket name
|
|
183
|
+
* @param {string} key - S3 object key (file path)
|
|
184
|
+
* @returns {Promise<object>} Delete operation result
|
|
185
|
+
*/
|
|
186
|
+
async deleteFile(bucket, key) {
|
|
187
|
+
try {
|
|
188
|
+
const params = {
|
|
189
|
+
Bucket: bucket,
|
|
190
|
+
Key: key
|
|
191
|
+
};
|
|
192
|
+
return await this.client.deleteObject(params);
|
|
193
|
+
}
|
|
194
|
+
catch (error) {
|
|
195
|
+
console.error(`Error--deleteFile--msg :: `, error);
|
|
196
|
+
throw new exception_handler_1.S3Exception(error, {
|
|
197
|
+
operation: 'deleteFile',
|
|
198
|
+
bucket,
|
|
199
|
+
key
|
|
200
|
+
}).getError();
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
/**
|
|
204
|
+
* @description Get file content as Base64 encoded string from S3
|
|
205
|
+
* @param {object} fileData - File data object
|
|
206
|
+
* @param {string} fileData.bucket - S3 bucket name
|
|
207
|
+
* @param {string} fileData.path - S3 object key (file path)
|
|
208
|
+
* @returns {Promise<string>} Base64 encoded file content
|
|
209
|
+
* @throws {Error} If file body is empty or unreadable
|
|
210
|
+
*/
|
|
211
|
+
async getFileBase64Data(fileData) {
|
|
212
|
+
try {
|
|
213
|
+
const params = {
|
|
214
|
+
Bucket: fileData.bucket,
|
|
215
|
+
Key: fileData.path
|
|
216
|
+
};
|
|
217
|
+
const file = await this.client.send(new client_s3_1.GetObjectCommand(params));
|
|
218
|
+
const bytes = await file.Body?.transformToByteArray();
|
|
219
|
+
if (!bytes || bytes.length === 0) {
|
|
220
|
+
throw new exception_handler_1.S3Exception({ message: `File body is empty or unreadable from S3`, Code: 'EmptyFileBody' }, {
|
|
221
|
+
operation: 'getFileBase64Data',
|
|
222
|
+
bucket: fileData.bucket,
|
|
223
|
+
key: fileData.path
|
|
224
|
+
}).getError();
|
|
225
|
+
}
|
|
226
|
+
// Convert to Base64 string
|
|
227
|
+
return Buffer.from(bytes).toString('base64');
|
|
228
|
+
}
|
|
229
|
+
catch (error) {
|
|
230
|
+
console.error(`Error--getFileBase64Data--msg :: `, error);
|
|
231
|
+
throw new exception_handler_1.S3Exception(error, {
|
|
232
|
+
operation: 'getFileBase64Data',
|
|
233
|
+
bucket: fileData.bucket,
|
|
234
|
+
key: fileData.path
|
|
235
|
+
}).getError();
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
exports.s3Service = new AWSS3Provider();
|
|
240
|
+
//# sourceMappingURL=s3.js.map
|
package/dist/s3.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"s3.js","sourceRoot":"","sources":["../src/s3.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2022.full.d.ts","../src/exception-handler.ts","../node_modules/@smithy/types/dist-types/abort-handler.d.ts","../node_modules/@smithy/types/dist-types/abort.d.ts","../node_modules/@smithy/types/dist-types/auth/auth.d.ts","../node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","../node_modules/@smithy/types/dist-types/identity/identity.d.ts","../node_modules/@smithy/types/dist-types/response.d.ts","../node_modules/@smithy/types/dist-types/command.d.ts","../node_modules/@smithy/types/dist-types/endpoint.d.ts","../node_modules/@smithy/types/dist-types/feature-ids.d.ts","../node_modules/@smithy/types/dist-types/logger.d.ts","../node_modules/@smithy/types/dist-types/uri.d.ts","../node_modules/@smithy/types/dist-types/http.d.ts","../node_modules/@smithy/types/dist-types/util.d.ts","../node_modules/@smithy/types/dist-types/middleware.d.ts","../node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","../node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","../node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","../node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","../node_modules/@smithy/types/dist-types/auth/index.d.ts","../node_modules/@smithy/types/dist-types/transform/exact.d.ts","../node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","../node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","../node_modules/@smithy/types/dist-types/crypto.d.ts","../node_modules/@smithy/types/dist-types/checksum.d.ts","../node_modules/@smithy/types/dist-types/client.d.ts","../node_modules/@smithy/types/dist-types/connection/config.d.ts","../node_modules/@smithy/types/dist-types/transfer.d.ts","../node_modules/@smithy/types/dist-types/connection/manager.d.ts","../node_modules/@smithy/types/dist-types/connection/pool.d.ts","../node_modules/@smithy/types/dist-types/connection/index.d.ts","../node_modules/@smithy/types/dist-types/eventstream.d.ts","../node_modules/@smithy/types/dist-types/encode.d.ts","../node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","../node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","../node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","../node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","../node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","../node_modules/@smithy/types/dist-types/endpoints/index.d.ts","../node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","../node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","../node_modules/@smithy/types/dist-types/shapes.d.ts","../node_modules/@smithy/types/dist-types/retry.d.ts","../node_modules/@smithy/types/dist-types/extensions/retry.d.ts","../node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","../node_modules/@smithy/types/dist-types/extensions/index.d.ts","../node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","../node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","../node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","../node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","../node_modules/@smithy/types/dist-types/identity/index.d.ts","../node_modules/@smithy/types/dist-types/pagination.d.ts","../node_modules/@smithy/types/dist-types/profile.d.ts","../node_modules/@smithy/types/dist-types/serde.d.ts","../node_modules/@smithy/types/dist-types/schema/sentinels.d.ts","../node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts","../node_modules/@smithy/types/dist-types/schema/traits.d.ts","../node_modules/@smithy/types/dist-types/schema/schema.d.ts","../node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts","../node_modules/@smithy/types/dist-types/signature.d.ts","../node_modules/@smithy/types/dist-types/stream.d.ts","../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","../node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","../node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","../node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","../node_modules/@smithy/types/dist-types/transform/mutable.d.ts","../node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","../node_modules/@smithy/types/dist-types/waiter.d.ts","../node_modules/@smithy/types/dist-types/index.d.ts","../node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/externaldatainterceptor.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/readfile.d.ts","../node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","../node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","../node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","../node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","../node_modules/@smithy/node-config-provider/dist-types/index.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/constants.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/node_request_checksum_calculation_config_options.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/node_response_checksum_validation_config_options.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/configuration.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/flexiblechecksumsmiddleware.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/flexiblechecksumsinputmiddleware.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/flexiblechecksumsresponsemiddleware.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getflexiblechecksumsplugin.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/resolveflexiblechecksumsconfig.d.ts","../node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts","../node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/check-content-length-header.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-middleware.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-endpoint-middleware.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-expires-middleware.d.ts","../node_modules/@aws-sdk/types/dist-types/abort.d.ts","../node_modules/@aws-sdk/types/dist-types/auth.d.ts","../node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","../node_modules/@aws-sdk/types/dist-types/checksum.d.ts","../node_modules/@aws-sdk/types/dist-types/client.d.ts","../node_modules/@aws-sdk/types/dist-types/command.d.ts","../node_modules/@aws-sdk/types/dist-types/connection.d.ts","../node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","../node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","../node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts","../node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","../node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","../node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","../node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","../node_modules/@aws-sdk/types/dist-types/util.d.ts","../node_modules/@aws-sdk/types/dist-types/credentials.d.ts","../node_modules/@aws-sdk/types/dist-types/crypto.d.ts","../node_modules/@aws-sdk/types/dist-types/dns.d.ts","../node_modules/@aws-sdk/types/dist-types/encode.d.ts","../node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","../node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","../node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","../node_modules/@aws-sdk/types/dist-types/function.d.ts","../node_modules/@aws-sdk/types/dist-types/http.d.ts","../node_modules/@aws-sdk/types/dist-types/logger.d.ts","../node_modules/@aws-sdk/types/dist-types/middleware.d.ts","../node_modules/@aws-sdk/types/dist-types/pagination.d.ts","../node_modules/@aws-sdk/types/dist-types/profile.d.ts","../node_modules/@aws-sdk/types/dist-types/request.d.ts","../node_modules/@aws-sdk/types/dist-types/response.d.ts","../node_modules/@aws-sdk/types/dist-types/retry.d.ts","../node_modules/@aws-sdk/types/dist-types/serde.d.ts","../node_modules/@aws-sdk/types/dist-types/shapes.d.ts","../node_modules/@aws-sdk/types/dist-types/signature.d.ts","../node_modules/@aws-sdk/types/dist-types/stream.d.ts","../node_modules/@aws-sdk/types/dist-types/token.d.ts","../node_modules/@aws-sdk/types/dist-types/transfer.d.ts","../node_modules/@aws-sdk/types/dist-types/uri.d.ts","../node_modules/@aws-sdk/types/dist-types/waiter.d.ts","../node_modules/@aws-sdk/types/dist-types/index.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/s3expressidentity.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/s3expressidentitycacheentry.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/s3expressidentitycache.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/s3expressidentityprovider.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/s3expressidentityproviderimpl.d.ts","../node_modules/@smithy/signature-v4/dist-types/signaturev4base.d.ts","../node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","../node_modules/@smithy/signature-v4/dist-types/constants.d.ts","../node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","../node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","../node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","../node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","../node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","../node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","../node_modules/@smithy/signature-v4/dist-types/headerutil.d.ts","../node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts","../node_modules/@smithy/signature-v4/dist-types/index.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/signaturev4s3express.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3expressmiddleware.d.ts","../node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","../node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","../node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","../node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","../node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","../node_modules/@smithy/protocol-http/dist-types/field.d.ts","../node_modules/@smithy/protocol-http/dist-types/fields.d.ts","../node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","../node_modules/@smithy/protocol-http/dist-types/types.d.ts","../node_modules/@smithy/protocol-http/dist-types/index.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3expresshttpsigningmiddleware.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3configuration.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts","../node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts","../node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","../node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","../node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","../node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","../node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","../node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","../node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","../node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","../node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","../node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","../node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","../node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","../node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","../node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","../node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","../node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","../node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","../node_modules/@smithy/config-resolver/dist-types/index.d.ts","../node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","../node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","../node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","../node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","../node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","../node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","../node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","../node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","../node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","../node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointrequiredconfig.d.ts","../node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","../node_modules/@smithy/util-retry/dist-types/types.d.ts","../node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","../node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","../node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","../node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","../node_modules/@smithy/util-retry/dist-types/config.d.ts","../node_modules/@smithy/util-retry/dist-types/constants.d.ts","../node_modules/@smithy/util-retry/dist-types/index.d.ts","../node_modules/@smithy/middleware-retry/dist-types/types.d.ts","../node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","../node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","../node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","../node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","../node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","../node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","../node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","../node_modules/@smithy/middleware-retry/dist-types/index.d.ts","../node_modules/@smithy/smithy-client/dist-types/client.d.ts","../node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","../node_modules/@smithy/util-stream/dist-types/checksum/checksumstream.d.ts","../node_modules/@smithy/util-stream/dist-types/checksum/checksumstream.browser.d.ts","../node_modules/@smithy/util-stream/dist-types/checksum/createchecksumstream.browser.d.ts","../node_modules/@smithy/util-stream/dist-types/checksum/createchecksumstream.d.ts","../node_modules/@smithy/util-stream/dist-types/createbufferedreadable.d.ts","../node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","../node_modules/@smithy/util-stream/dist-types/headstream.d.ts","../node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","../node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","../node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","../node_modules/@smithy/util-stream/dist-types/index.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/deref.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/middleware/schema-middleware-types.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/middleware/getschemaserdeplugin.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/schema.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/listschema.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/mapschema.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/operationschema.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/structureschema.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/errorschema.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/normalizedschema.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/simpleschema.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/schemas/translatetraits.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/typeregistry.d.ts","../node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts","../node_modules/@smithy/core/schema.d.ts","../node_modules/@smithy/core/dist-types/submodules/event-streams/eventstreamserde.d.ts","../node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts","../node_modules/@smithy/core/event-streams.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/serdecontext.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/httpprotocol.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/httpbindingprotocol.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/rpcprotocol.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/requestbuilder.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/resolve-path.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/serde/fromstringshapedeserializer.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/serde/httpinterceptingshapedeserializer.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/serde/tostringshapeserializer.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/serde/httpinterceptingshapeserializer.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/serde/determinetimestampformat.d.ts","../node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts","../node_modules/@smithy/core/protocols.d.ts","../node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","../node_modules/@smithy/smithy-client/dist-types/command.d.ts","../node_modules/@smithy/smithy-client/dist-types/constants.d.ts","../node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","../node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","../node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","../node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","../node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","../node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","../node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","../node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","../node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","../node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","../node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","../node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","../node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","../node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","../node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","../node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","../node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","../node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/copydocumentwithtransform.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts","../node_modules/@smithy/uuid/dist-types/v4.d.ts","../node_modules/@smithy/uuid/dist-types/index.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/generateidempotencytoken.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/quote-header.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/split-header.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/value/numericvalue.d.ts","../node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts","../node_modules/@smithy/core/serde.d.ts","../node_modules/@smithy/smithy-client/dist-types/index.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/client/setcredentialfeature.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/client/setfeature.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/client/settokenfeature.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/node_auth_scheme_preference_options.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/utils/getbearertokenenvkey.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","../node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts","../node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts","../node_modules/@smithy/core/dist-types/submodules/cbor/parsecborbody.d.ts","../node_modules/@smithy/core/dist-types/submodules/cbor/cborcodec.d.ts","../node_modules/@smithy/core/dist-types/submodules/cbor/smithyrpcv2cborprotocol.d.ts","../node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts","../node_modules/@smithy/core/cbor.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/awssmithyrpcv2cborprotocol.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/configurableserdecontext.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonshapedeserializer.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonshapeserializer.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsoncodec.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsjsonrpcprotocol.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsjson1_0protocol.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsjson1_1protocol.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsrestjsonprotocol.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/xmlshapeserializer.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/xmlcodec.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/xmlshapedeserializer.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/queryserializersettings.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/queryshapeserializer.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/awsqueryprotocol.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/awsec2queryprotocol.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/awsrestxmlprotocol.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","../node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","../node_modules/@aws-sdk/core/dist-types/index.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/endpoint/endpointparameters.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/auth/httpauthschemeprovider.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/abortmultipartuploadcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/completemultipartuploadcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/copyobjectcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/createbucketcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/createbucketmetadataconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/createbucketmetadatatableconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/createmultipartuploadcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/createsessioncommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketanalyticsconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketcorscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketencryptioncommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketintelligenttieringconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketinventoryconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketlifecyclecommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketmetadataconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketmetadatatableconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketmetricsconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketownershipcontrolscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketpolicycommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketreplicationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebuckettaggingcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletebucketwebsitecommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deleteobjectcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deleteobjectscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deleteobjecttaggingcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/deletepublicaccessblockcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketabaccommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketaccelerateconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketaclcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketanalyticsconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketcorscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketencryptioncommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketintelligenttieringconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketinventoryconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketlifecycleconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketlocationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketloggingcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketmetadataconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketmetadatatableconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketmetricsconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketnotificationconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketownershipcontrolscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketpolicycommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketpolicystatuscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketreplicationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketrequestpaymentcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbuckettaggingcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketversioningcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getbucketwebsitecommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getobjectaclcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getobjectattributescommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getobjectcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getobjectlegalholdcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getobjectlockconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getobjectretentioncommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getobjecttaggingcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getobjecttorrentcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/getpublicaccessblockcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/headbucketcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/headobjectcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listbucketanalyticsconfigurationscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listbucketintelligenttieringconfigurationscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listbucketinventoryconfigurationscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listbucketmetricsconfigurationscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listbucketscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listdirectorybucketscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listmultipartuploadscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listobjectscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listobjectsv2command.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listobjectversionscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/listpartscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketabaccommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketaccelerateconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketaclcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketanalyticsconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketcorscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketencryptioncommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketintelligenttieringconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketinventoryconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketlifecycleconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketloggingcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketmetricsconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketnotificationconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketownershipcontrolscommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketpolicycommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketreplicationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketrequestpaymentcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbuckettaggingcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketversioningcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putbucketwebsitecommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putobjectaclcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putobjectcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putobjectlegalholdcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putobjectlockconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putobjectretentioncommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putobjecttaggingcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/putpublicaccessblockcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/renameobjectcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/restoreobjectcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/selectobjectcontentcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/updatebucketmetadatainventorytableconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/updatebucketmetadatajournaltableconfigurationcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/uploadpartcommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/uploadpartcopycommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/writegetobjectresponsecommand.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/auth/httpauthextensionconfiguration.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/extensionconfiguration.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/runtimeextensions.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/s3client.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/s3.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/pagination/interfaces.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/pagination/listbucketspaginator.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/pagination/listdirectorybucketspaginator.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/pagination/listobjectsv2paginator.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/pagination/listpartspaginator.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts","../node_modules/@smithy/util-waiter/dist-types/waiter.d.ts","../node_modules/@smithy/util-waiter/dist-types/createwaiter.d.ts","../node_modules/@smithy/util-waiter/dist-types/index.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/waiters/waitforbucketexists.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/waiters/waitforbucketnotexists.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/waiters/waitforobjectexists.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/waiters/waitforobjectnotexists.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/waiters/index.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/models/s3serviceexception.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts","../node_modules/@aws-sdk/client-s3/dist-types/index.d.ts","../node_modules/@aws-sdk/s3-request-presigner/dist-types/getsignedurl.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/dist-types/signaturev4multiregion.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/abort.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/auth.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/checksum.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/client.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/command.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/connection.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/util.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/credentials.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/crypto.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/dns.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/encode.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/function.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/http.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/logger.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/middleware.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/pagination.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/profile.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/request.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/response.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/retry.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/serde.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/shapes.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/signature.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/stream.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/token.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/transfer.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/uri.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/waiter.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/node_modules/@aws-sdk/types/dist-types/index.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/dist-types/signature-v4-crt-container.d.ts","../node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts","../node_modules/@aws-sdk/s3-request-presigner/dist-types/presigner.d.ts","../node_modules/@aws-sdk/s3-request-presigner/dist-types/index.d.ts","../node_modules/@aws-sdk/cloudfront-signer/dist-types/sign.d.ts","../node_modules/@aws-sdk/cloudfront-signer/dist-types/index.d.ts","../src/interface.ts","../src/s3.ts","../src/index.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/blob.d.ts","../node_modules/@types/node/web-globals/console.d.ts","../node_modules/@types/node/web-globals/crypto.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/encoding.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/snapshot-agent.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/importmeta.d.ts","../node_modules/@types/node/web-globals/messaging.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/performance.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/web-globals/timers.d.ts","../node_modules/@types/node/web-globals/url.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/inspector/promises.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/path/posix.d.ts","../node_modules/@types/node/path/win32.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/quic.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/test/reporters.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/util/types.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts"],"fileIdsList":[[136,228,419,606,668,676,680,683,685,686,687,699],[136,228,417,418,532,606,668,676,680,683,685,686,687,699],[136,228,273,374,421,532,606,668,676,680,683,685,686,687,699],[422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,522,523,524,525,526,527,528,606,668,676,680,683,685,686,687,699],[136,228,273,374,421,521,532,606,668,676,680,683,685,686,687,699],[136,228,273,374,521,532,606,668,676,680,683,685,686,687,699],[136,228,606,668,676,680,683,685,686,687,699],[136,208,228,238,529,606,668,676,680,683,685,686,687,699],[418,420,421,521,530,531,532,533,534,535,541,549,550,551,606,668,676,680,683,685,686,687,699],[606,668,676,680,683,685,686,687,699],[374,420,550,606,668,676,680,683,685,686,687,699],[136,228,420,606,668,676,680,683,685,686,687,699],[136,228,420,421,606,668,676,680,683,685,686,687,699],[374,606,668,676,680,683,685,686,687,699],[536,537,538,539,540,606,668,676,680,683,685,686,687,699],[136,228,532,606,668,676,680,683,685,686,687,699],[136,228,487,536,606,668,676,680,683,685,686,687,699],[136,228,488,536,606,668,676,680,683,685,686,687,699],[136,228,491,536,606,668,676,680,683,685,686,687,699],[136,228,493,536,606,668,676,680,683,685,686,687,699],[530,606,668,676,680,683,685,686,687,699],[136,228,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,522,523,524,525,526,527,528,532,606,668,676,680,683,685,686,687,699],[136,163,164,208,228,238,244,247,262,264,273,290,374,418,419,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,522,523,524,525,526,527,528,531,606,668,676,680,683,685,686,687,699,704],[545,546,547,548,606,668,676,680,683,685,686,687,699],[481,532,544,606,668,676,680,683,685,686,687,699],[482,532,544,606,668,676,680,683,685,686,687,699],[599,606,668,676,680,683,685,686,687,699],[379,387,416,606,668,676,680,683,685,686,687,699],[375,376,377,378,606,668,676,680,683,685,686,687,699],[208,606,668,676,680,683,685,686,687,699],[136,228,381,606,668,676,680,683,685,686,687,699],[136,228,380,606,668,676,680,683,685,686,687,699],[380,381,382,383,384,606,668,676,680,683,685,686,687,699],[153,606,668,676,680,683,685,686,687,699],[136,153,228,606,668,676,680,683,685,686,687,699],[136,208,225,228,606,668,676,680,683,685,686,687,699],[385,386,606,668,676,680,683,685,686,687,699],[136,228,394,606,668,676,680,683,685,686,687,699],[395,396,398,399,400,401,402,403,404,405,406,407,408,409,412,413,414,415,606,668,676,680,683,685,686,687,699],[400,401,606,668,676,680,683,685,686,687,699],[136,228,338,400,606,668,676,680,683,685,686,687,699],[136,228,397,398,399,606,668,676,680,683,685,686,687,699],[136,228,397,400,606,668,676,680,683,685,686,687,699],[136,228,322,397,400,606,668,676,680,683,685,686,687,699],[412,606,668,676,680,683,685,686,687,699],[136,228,338,409,411,606,668,676,680,683,685,686,687,699],[136,228,397,410,606,668,676,680,683,685,686,687,699],[136,228,338,408,606,668,676,680,683,685,686,687,699],[136,228,397,407,409,606,668,676,680,683,685,686,687,699],[136,228,397,408,606,668,676,680,683,685,686,687,699],[136,154,228,606,668,676,680,683,685,686,687,699],[136,157,228,606,668,676,680,683,685,686,687,699],[136,157,158,159,160,228,606,668,676,680,683,685,686,687,699],[154,155,156,158,161,162,606,668,676,680,683,685,686,687,699],[153,154,606,668,676,680,683,685,686,687,699],[165,166,167,168,240,241,242,243,606,668,676,680,683,685,686,687,699],[136,166,228,606,668,676,680,683,685,686,687,699],[210,606,668,676,680,683,685,686,687,699],[209,606,668,676,680,683,685,686,687,699],[208,209,211,212,606,668,676,680,683,685,686,687,699],[136,228,238,606,668,676,680,683,685,686,687,699],[136,208,209,212,228,606,668,676,680,683,685,686,687,699],[209,210,211,212,213,226,227,228,239,606,668,676,680,683,685,686,687,699],[208,209,606,668,676,680,683,685,686,687,699],[136,228,240,606,668,676,680,683,685,686,687,699],[136,228,241,606,668,676,680,683,685,686,687,699],[245,246,606,668,676,680,683,685,686,687,699],[136,208,228,245,606,668,676,680,683,685,686,687,699],[136,228,374,606,668,676,680,683,685,686,687,699],[553,597,606,668,676,680,683,685,686,687,699],[136,228,596,606,668,676,680,683,685,686,687,699],[554,595,606,668,676,680,683,685,686,687,699],[136,228,594,606,668,676,680,683,685,686,687,699],[136,225,228,606,668,676,680,683,685,686,687,699],[136,228,568,569,606,668,676,680,683,685,686,687,699],[562,606,668,676,680,683,685,686,687,699],[136,228,564,606,668,676,680,683,685,686,687,699],[562,563,565,566,567,606,668,676,680,683,685,686,687,699],[555,556,557,558,559,560,561,564,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,606,668,676,680,683,685,686,687,699],[568,569,606,668,676,680,683,685,686,687,699],[136,182,183,228,606,668,676,680,683,685,686,687,699],[176,606,668,676,680,683,685,686,687,699],[136,178,228,606,668,676,680,683,685,686,687,699],[176,177,179,180,181,606,668,676,680,683,685,686,687,699],[169,170,171,172,173,174,175,178,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,606,668,676,680,683,685,686,687,699],[182,183,606,668,676,680,683,685,686,687,699],[248,249,250,251,606,668,676,680,683,685,686,687,699],[136,228,250,606,668,676,680,683,685,686,687,699],[252,255,261,606,668,676,680,683,685,686,687,699],[253,254,606,668,676,680,683,685,686,687,699],[256,606,668,676,680,683,685,686,687,699],[136,228,258,259,606,668,676,680,683,685,686,687,699],[258,259,260,606,668,676,680,683,685,686,687,699],[257,606,668,676,680,683,685,686,687,699],[393,606,668,676,680,683,685,686,687,699],[136,228,338,606,668,676,680,683,685,686,687,699],[388,389,390,391,392,606,668,676,680,683,685,686,687,699],[136,228,238,389,606,668,676,680,683,685,686,687,699],[136,228,338,391,606,668,676,680,683,685,686,687,699],[136,228,322,606,668,676,680,683,685,686,687,699],[323,606,668,676,680,683,685,686,687,699],[136,228,303,606,668,676,680,683,685,686,687,699],[136,228,238,322,327,606,668,676,680,683,685,686,687,699],[136,228,322,325,326,606,668,676,680,683,685,686,687,699],[304,305,326,327,328,329,330,331,332,333,334,335,336,606,668,676,680,683,685,686,687,699],[136,228,327,606,668,676,680,683,685,686,687,699],[136,228,326,606,668,676,680,683,685,686,687,699],[136,228,334,606,668,676,680,683,685,686,687,699],[306,308,309,310,311,312,313,314,315,316,317,318,319,320,606,668,676,680,683,685,686,687,699],[136,228,307,606,668,676,680,683,685,686,687,699],[136,228,314,606,668,676,680,683,685,686,687,699],[136,228,309,606,668,676,680,683,685,686,687,699],[136,228,315,606,668,676,680,683,685,686,687,699],[363,606,668,676,680,683,685,686,687,699],[360,361,364,365,366,367,368,369,370,371,606,668,676,680,683,685,686,687,699],[324,606,668,676,680,683,685,686,687,699],[337,606,668,676,680,683,685,686,687,699],[321,606,668,676,680,683,685,686,687,699],[372,606,668,676,680,683,685,686,687,699],[263,606,668,676,680,683,685,686,687,699],[136,228,265,266,606,668,676,680,683,685,686,687,699],[267,268,606,668,676,680,683,685,686,687,699],[265,266,269,270,271,272,606,668,676,680,683,685,686,687,699],[136,228,281,283,606,668,676,680,683,685,686,687,699],[283,284,285,286,287,288,289,606,668,676,680,683,685,686,687,699],[136,228,285,606,668,676,680,683,685,686,687,699],[136,228,282,606,668,676,680,683,685,686,687,699],[136,137,150,151,228,606,668,676,680,683,685,686,687,699],[136,149,228,606,668,676,680,683,685,686,687,699],[137,150,151,152,606,668,676,680,683,685,686,687,699],[231,606,668,676,680,683,685,686,687,699],[232,606,668,676,680,683,685,686,687,699],[136,228,234,606,668,676,680,683,685,686,687,699],[136,228,229,230,606,668,676,680,683,685,686,687,699],[229,230,231,233,234,235,236,237,606,668,676,680,683,685,686,687,699],[138,139,140,141,143,144,145,146,147,148,606,668,676,680,683,685,686,687,699],[136,142,228,606,668,676,680,683,685,686,687,699],[136,143,228,606,668,676,680,683,685,686,687,699],[214,215,216,217,218,219,220,221,222,223,224,606,668,676,680,683,685,686,687,699],[136,214,228,606,668,676,680,683,685,686,687,699],[338,606,668,676,680,683,685,686,687,699],[136,228,273,606,668,676,680,683,685,686,687,699],[291,606,668,676,680,683,685,686,687,699],[136,228,348,349,606,668,676,680,683,685,686,687,699],[350,606,668,676,680,683,685,686,687,699],[136,228,291,339,340,341,342,343,344,345,346,347,351,352,353,354,355,356,357,358,359,373,606,668,676,680,683,685,686,687,699],[68,606,668,676,680,683,685,686,687,699],[67,606,668,676,680,683,685,686,687,699],[71,80,81,82,606,668,676,680,683,685,686,687,699],[80,83,606,668,676,680,683,685,686,687,699],[71,78,606,668,676,680,683,685,686,687,699],[71,83,606,668,676,680,683,685,686,687,699],[69,70,81,82,83,84,606,668,676,680,683,685,686,687,699],[87,606,668,676,680,683,685,686,687,699,704],[89,606,668,676,680,683,685,686,687,699],[72,73,79,80,606,668,676,680,683,685,686,687,699],[72,80,606,668,676,680,683,685,686,687,699],[92,94,95,606,668,676,680,683,685,686,687,699],[92,93,606,668,676,680,683,685,686,687,699],[97,606,668,676,680,683,685,686,687,699],[69,606,668,676,680,683,685,686,687,699],[74,99,606,668,676,680,683,685,686,687,699],[99,606,668,676,680,683,685,686,687,699],[99,100,101,102,103,606,668,676,680,683,685,686,687,699],[102,606,668,676,680,683,685,686,687,699],[76,606,668,676,680,683,685,686,687,699],[99,100,101,606,668,676,680,683,685,686,687,699],[72,78,80,606,668,676,680,683,685,686,687,699],[89,90,606,668,676,680,683,685,686,687,699],[105,606,668,676,680,683,685,686,687,699],[105,109,606,668,676,680,683,685,686,687,699],[105,106,109,110,606,668,676,680,683,685,686,687,699],[79,108,606,668,676,680,683,685,686,687,699],[86,606,668,676,680,683,685,686,687,699],[68,77,606,668,676,680,683,685,686,687,699],[76,78,606,668,676,680,682,683,684,685,686,687,699],[71,606,668,676,680,683,685,686,687,699],[71,113,114,115,606,668,676,680,683,685,686,687,699],[68,72,73,74,75,76,77,78,79,80,85,88,89,90,91,93,96,97,98,104,107,108,111,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,606,668,676,680,683,685,686,687,699],[69,73,74,75,76,79,83,606,668,676,680,683,685,686,687,699],[73,91,606,668,676,680,683,685,686,687,699],[107,606,668,676,680,683,685,686,687,699],[72,74,80,119,121,123,606,668,676,680,683,685,686,687,699],[72,74,80,119,120,121,122,606,668,676,680,683,685,686,687,699],[123,606,668,676,680,683,685,686,687,699],[78,79,93,123,606,668,676,680,683,685,686,687,699],[72,78,606,668,676,680,683,685,686,687,699],[78,97,606,668,676,680,683,685,686,687,699],[79,89,90,606,668,676,680,683,685,686,687,699],[87,119,606,668,676,680,682,683,685,686,687,699,704],[72,73,129,130,606,668,676,680,683,685,686,687,699],[73,78,91,119,128,129,130,131,606,668,676,680,682,683,685,686,687,699],[73,91,107,606,668,676,680,683,685,686,687,699],[78,606,668,676,680,683,685,686,687,699],[136,228,274,606,668,676,680,683,685,686,687,699],[136,228,276,606,668,676,680,683,685,686,687,699],[274,606,668,676,680,683,685,686,687,699],[274,275,276,277,278,279,280,606,668,676,680,683,685,686,687,699],[136,228,606,668,676,680,683,685,686,687,699,704],[294,606,668,676,680,683,685,686,687,699],[293,295,606,668,676,680,683,685,686,687,699,704],[606,668,676,680,683,685,686,687,699,704],[292,293,296,297,298,299,300,301,302,606,668,676,680,683,685,686,687,699],[542,606,668,676,680,683,685,686,687,699],[542,543,606,668,676,680,683,685,686,687,699],[362,606,668,676,680,683,685,686,687,699],[606,665,666,668,676,680,683,685,686,687,699],[606,667,668,676,680,683,685,686,687,699],[668,676,680,683,685,686,687,699],[606,668,676,680,683,685,686,687,699,707],[606,668,669,674,676,679,680,683,685,686,687,689,699,704,716],[606,668,669,670,676,679,680,683,685,686,687,699],[606,668,671,676,680,683,685,686,687,699,717],[606,668,672,673,676,680,683,685,686,687,690,699],[606,668,673,676,680,683,685,686,687,699,704,713],[606,668,674,676,679,680,683,685,686,687,689,699],[606,667,668,675,676,680,683,685,686,687,699],[606,668,676,677,680,683,685,686,687,699],[606,668,676,678,679,680,683,685,686,687,699],[606,667,668,676,679,680,683,685,686,687,699],[606,668,676,679,680,681,683,685,686,687,699,704,716],[606,668,676,679,680,681,683,685,686,687,699,704,707],[606,655,668,676,679,680,682,683,685,686,687,689,699,704,716],[606,668,676,679,680,682,683,685,686,687,689,699,704,713,716],[606,668,676,680,682,683,684,685,686,687,699,704,713,716],[604,605,606,607,608,609,610,611,612,613,614,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723],[606,668,676,679,680,683,685,686,687,699],[606,668,676,680,683,685,687,699],[606,668,676,680,683,685,686,687,688,699,716],[606,668,676,679,680,683,685,686,687,689,699,704],[606,668,676,680,683,685,686,687,690,699],[606,668,676,680,683,685,686,687,691,699],[606,668,676,679,680,683,685,686,687,694,699],[606,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723],[606,668,676,680,683,685,686,687,696,699],[606,668,676,680,683,685,686,687,697,699],[606,668,673,676,680,683,685,686,687,689,699,707],[606,668,676,679,680,683,685,686,687,699,700],[606,668,676,680,683,685,686,687,699,701,717,720],[606,668,676,679,680,683,685,686,687,699,704,706,707],[606,668,676,680,683,685,686,687,699,705,707],[606,668,676,680,683,685,686,687,699,707,717],[606,668,676,680,683,685,686,687,699,708],[606,665,668,676,680,683,685,686,687,699,704,710],[606,668,676,680,683,685,686,687,699,704,709],[606,668,676,679,680,683,685,686,687,699,711,712],[606,668,676,680,683,685,686,687,699,711,712],[606,668,673,676,680,683,685,686,687,689,699,704,713],[606,668,676,680,683,685,686,687,699,714],[606,668,676,680,683,685,686,687,689,699,715],[606,668,676,680,682,683,685,686,687,697,699,716],[606,668,676,680,683,685,686,687,699,717,718],[606,668,673,676,680,683,685,686,687,699,718],[606,668,676,680,683,685,686,687,699,704,719],[606,668,676,680,683,685,686,687,688,699,720],[606,668,676,680,683,685,686,687,699,721],[606,668,671,676,680,683,685,686,687,699],[606,668,673,676,680,683,685,686,687,699],[606,668,676,680,683,685,686,687,699,717],[606,655,668,676,680,683,685,686,687,699],[606,668,676,680,683,685,686,687,699,716],[606,668,676,680,683,685,686,687,699,722],[606,668,676,680,683,685,686,687,694,699],[606,668,676,680,683,685,686,687,699,712],[606,655,668,676,679,680,681,683,685,686,687,694,699,704,707,716,719,720,722],[606,668,676,680,683,685,686,687,699,704,723],[606,621,624,627,628,668,676,680,683,685,686,687,699,716],[606,624,668,676,680,683,685,686,687,699,704,716],[606,624,628,668,676,680,683,685,686,687,699,716],[606,618,668,676,680,683,685,686,687,699],[606,622,668,676,680,683,685,686,687,699],[606,620,621,624,668,676,680,683,685,686,687,699,716],[606,668,676,680,683,685,686,687,689,699,713],[606,668,676,680,683,685,686,687,699,724],[606,618,668,676,680,683,685,686,687,699,724],[606,620,624,668,676,680,683,685,686,687,689,699,716],[606,615,616,617,619,623,668,676,679,680,683,685,686,687,699,704,716],[606,624,632,640,668,676,680,683,685,686,687,699],[606,616,622,668,676,680,683,685,686,687,699],[606,624,649,650,668,676,680,683,685,686,687,699],[606,616,619,624,668,676,680,683,685,686,687,699,707,716,724],[606,624,668,676,680,683,685,686,687,699],[606,620,624,668,676,680,683,685,686,687,699,716],[606,615,668,676,680,683,685,686,687,699],[606,618,619,620,622,623,624,625,626,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,650,651,652,653,654,668,676,680,683,685,686,687,699],[606,624,642,645,668,676,680,683,685,686,687,699],[606,624,632,633,634,668,676,680,683,685,686,687,699],[606,622,624,633,635,668,676,680,683,685,686,687,699],[606,623,668,676,680,683,685,686,687,699],[606,616,618,624,668,676,680,683,685,686,687,699],[606,624,628,633,635,668,676,680,683,685,686,687,699],[606,628,668,676,680,683,685,686,687,699],[606,622,624,627,668,676,680,683,685,686,687,699,716],[606,616,620,624,632,668,676,680,683,685,686,687,699],[606,624,642,668,676,680,683,685,686,687,699],[606,635,668,676,680,683,685,686,687,699],[606,618,624,649,668,676,680,683,685,686,687,699,707,722,724],[66,601,602,606,668,676,680,683,685,686,687,699],[66,552,598,600,601,606,668,676,680,683,685,686,687,699]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"dfc143a92e1f58e9ae77ae0c2a922a92d3f76603367e952f452f7a3681112b0f","signature":"add0b7f0049d931b6243f9c0235501e60c87e07a188e6b7748da8062c83c99b7"},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"0c46e15efeb2ff6db7c6830c801204e1048ccf0c8cc9ab1556b0b95832c9d1c9","impliedFormat":1},{"version":"c475aa6e8f0a20c76b5684658e0adaf7e1ba275a088ee6a5641e1f7fe9130b8a","impliedFormat":1},{"version":"a42db31dacd0fa00d7b13608396ca4c9a5494ae794ad142e9fb4aa6597e5ca54","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"db6eec0bf471520d5de8037e42a77349c920061fb0eb82d7dc8917262cbf0f17","impliedFormat":1},{"version":"4bd6bce02977ca4e4e4e83359f51327e04e796d1053ab5aca8a38d239796fd22","impliedFormat":1},{"version":"ca70001e8ea975754a3994379faca469a99f81d00e1ff5b95cabac5e993359aa","impliedFormat":1},{"version":"b70bd59e0e52447f0c0afe7935145ef53de813368f9dd02832fa01bb872c1846","impliedFormat":1},{"version":"3bdc578841f58bfd1087e14f81394ece5efd56b953362ef100bdd5bd179cd625","impliedFormat":1},{"version":"2bc15addade46dc6480df2817c6761d84794c67819b81e9880ab5ce82afb1289","impliedFormat":1},{"version":"247d6e003639b4106281694e58aa359613b4a102b02906c277e650269eaecede","impliedFormat":1},{"version":"fe37c7dc4acc6be457da7c271485fcd531f619d1e0bfb7df6a47d00fca76f19c","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"2a3e6dfb299953d5c8ba2aca69d61021bd6da24acea3d301c5fa1d6492fcb0ec","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"cf94e5027dd533d4ee448b6076be91bc4186d70f9dc27fac3f3db58f1285d0be","impliedFormat":1},{"version":"74293f7ca4a5ddf3dab767560f1ac03f500d43352b62953964bf73ee8e235d3d","impliedFormat":1},{"version":"6745b52ab638aaf33756400375208300271d69a4db9d811007016e60a084830f","impliedFormat":1},{"version":"90ee466f5028251945ee737787ee5e920ee447122792ad3c68243f15efa08414","impliedFormat":1},{"version":"34c17533b08bd962570d7bdb838fcaf5bcf7b913c903bc9241b0696a635b8115","impliedFormat":1},{"version":"1d567a058fe33c75604d2f973f5f10010131ab2b46cf5dddd2f7f5ee64928f07","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"5e126f7796301203e1d1048c1e5709ff9251f872a19f5ac0ee1f375d8128ef9b","impliedFormat":1},{"version":"147734cfd0973548fb6ef75d1e7d2c0b56bb59aad72b280784e811d914dc47d6","impliedFormat":1},{"version":"d2594d95d465026ebbee361f4819dc7b3146f4a8b42091ffb5dd90f9ceb345ab","impliedFormat":1},{"version":"e399d54c1b272a400ed446ca35d5e43d6b820723c2e5727b188ebea261e7cc2e","impliedFormat":1},{"version":"123568587c36c9f2a75091d8cdf8f287193855ba5aa10797b4fc320c80920b7f","impliedFormat":1},{"version":"6deffa531bdb8817b363505e88d957653d0c454f42c69e31588d00102cd1a076","impliedFormat":1},{"version":"973551068756351486afe706b240eb4dc83678ab2d829a1c6b1a19871394fd5f","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"e81fda9223b39d1485d1a5e00f5f2819eba308f8427e1d6698cfdc58ef1d460f","impliedFormat":1},{"version":"5edc4b81a61ea5e0319b32d8f581d9643cb747cf44477b16af048f62d358c433","impliedFormat":1},{"version":"d47c9f84b00def208cbfdd820f8d10425ead9dbf36350d77fb55d5ef6857dabc","impliedFormat":1},{"version":"7629bedb475a5f5d04cdf8c69f29f2cf52a1d92dd13c39661c3e865ad997bd7e","impliedFormat":1},{"version":"20cf19c8028a7b958e9c2000281d0f4c4cd12502fef7d63b088d44647cdd607b","impliedFormat":1},{"version":"799780c3726407eaa2e09e709c376ec459582f6f9c41d9643f863580cecf7ff8","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"52e29afa525973fc7cff28c4b6b359d91ad030d4aa198f060f813d4abcadb099","affectsGlobalScope":true,"impliedFormat":1},{"version":"a890cccdc380629c6cd9e9d92fff4ca69b9adddde84cc503296ada99429b5a3b","impliedFormat":1},{"version":"168b6da36cf7b832173d7832e017bc6c6c7b4023bf6b2de293efb991b96bca44","impliedFormat":1},{"version":"05b39d7219bb2f55f865bca39a3772e1c0a396ea562967929d6b666560c85617","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"2c49c6d7da43f6d21e2ca035721c31b642ebf12a1e5e64cbf25f9e2d54723c36","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"e1744dbace6ba2051a32da3c6b40e0fc690810a87b9ad4a1925b59f8f7157a34","impliedFormat":1},{"version":"ba8a615335e3dfdf0773558357f15edfff0461db9aa0aef99c6b60ebd7c40344","impliedFormat":1},{"version":"6921769648e4b83bb10e8fcf7011ea2d8f7de5d056daacf661648935a407376e","impliedFormat":1},{"version":"dd21167f276d648aa8a6d0aacd796e205d822406a51420b7d7f5aa18a6d9d6d9","impliedFormat":1},{"version":"3dea56c1745af2c31af0c84ecc6082044dc14cfa4d7366251e5bf91693eecd8b","impliedFormat":1},{"version":"eb6360635bc14b96a243bd5134e471f3ad26b0ecaf52d9d28621e443edb56e5c","impliedFormat":1},{"version":"e6f25eb7de8d9854badecb42caec553fb50c7ec37926473e3fb7f6df45bc945f","impliedFormat":1},{"version":"62a64260ea1dada7d643377c1a0ef3495363f4cca36adf7345e8566e7d7f419b","impliedFormat":1},{"version":"8b15e8af2fc862870418d0a082a9da2c2511b962844874cf3c2bad6b2763ca10","impliedFormat":1},{"version":"3d399835c3b3626e8e00fefc37868efe23dbb660cce8742486347ad29d334edd","impliedFormat":1},{"version":"b262699ba3cc0cae81dae0d9ff1262accf9832b2b7ee6548c626d74076bff8fe","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"fd25b101370ee175be080544387c4f29c137d4e23cad4de6c40c044bed6ecf99","impliedFormat":1},{"version":"8175f51ec284200f7bd403cb353d578e49a719e80416c18e9a12ebf2c4021b2b","impliedFormat":1},{"version":"e3acb4eb63b7fc659d7c2ac476140f7c85842a516b98d0e8698ba81650a1abd4","impliedFormat":1},{"version":"04d4c47854061cc5cefc3089f38e006375ae283c559ab2ce00763bca2e49516b","impliedFormat":1},{"version":"6a2146116c2fa9ca4fefa5c1d3de821462fc22e5330cda1196be15d439728c51","impliedFormat":1},{"version":"3b10140aae26eca9f0619c299921e202351c891b34e7245762e0641469864ffd","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"ceec94a0cd2b3a121166b6bfe968a069f33974b48d9c3b45f6158e342396e6b2","impliedFormat":1},{"version":"49e35a90f8bd2aa4533286d7013d9c9ff4f1d9f2547188752c4a88c040e42885","impliedFormat":1},{"version":"3261b6d56270a3d8535f34c2fdad217cfba860d0f74f154f0a6a2031d0c8daf9","impliedFormat":1},{"version":"7eca5b6e1cd1c28637103d2b6c44e8b89035a53e515ff31ae3babc82e6c8e1f9","impliedFormat":1},{"version":"49c9c8316d59f6175e6e0439b1d5ef1218f02ce622d1a599449de30645559eed","impliedFormat":1},{"version":"e4c48be0ffac936fb60b19394739847145674582cbc7e24000d9fd35ab037365","impliedFormat":1},{"version":"215de2c70639abaf351b8ff69041e44a767ecffc5e8d2ac13ca3f201853fa1fb","impliedFormat":1},{"version":"d228c7773484140fac7286c9ca4f0e04db4a62acb792a606a2dda24bef70dc21","impliedFormat":1},{"version":"8e464886b1ff36711539ffa15ec2482472220271100768c1d98acfdf355a23ba","impliedFormat":1},{"version":"fb0135c4906ff44d3064feebd84bae323ebb7b59b8ce7053d34e7283d27c9076","impliedFormat":1},{"version":"178c8707a575baddc8f529a6dbd5d574a090e3498b2d525753db7938c74227c3","impliedFormat":1},{"version":"ae81e464a7db70637d07b93582b051487c7d119ac7e1bab1b1582a96e631b3f7","impliedFormat":1},{"version":"148634fcee440c7bd8c1339b97455aaadc196b0229ffc8dc8b85965a7d65b380","impliedFormat":1},{"version":"d3c60c4cf88594f84f7f5ca5f87d59090787bfcf032e86d4f03d58394b826910","impliedFormat":1},{"version":"f3c3f17825c6a78681186da04c2f3a0f1c60cfa95f3d4b82bbbd6ebd57214a6a","impliedFormat":1},{"version":"eb45a1782ef50423c1ffac4d2a89c60004f4e2d25ed8e7dcb9e24e6cf984ccdb","impliedFormat":1},{"version":"07c333db8a26594bf2b80cf7b0ef0a83c42c28cb31cc727040f20061558df819","impliedFormat":1},{"version":"e5151e18c3e8d5d2f83ac60a4f4117f9bee54f643b64335858ceaa818e35d364","impliedFormat":1},{"version":"03b7428a52323f9d455380f00da4f4b0798acb4f5f1c77525b48cb97ad9bc83c","impliedFormat":1},{"version":"6c3cf6de27512969bf59a541bd8e845ba1233e101e14c844e87d81e921fffa53","impliedFormat":1},{"version":"19207ec935fb6b0c022cdfd038ceffef1c948510394f249bde982170d4e57067","impliedFormat":1},{"version":"5276cc934ad4e253f53cf2331268451a66ebf711a027e71f4535af8642055bf8","impliedFormat":1},{"version":"185c55e63eec9da8263b4b1cf447d2ebe2fd7b892e5a0a5571e7e97b3c767bbb","impliedFormat":1},{"version":"f842cd4c63a3b077cf04f7d37ca163ab716f70f60ca5c5eed5c16b09a4c50c3a","impliedFormat":1},{"version":"d994fb6705faaae18b9d71ba2d89b4a7e5e77c2b801a3dae51c0821da4a90acb","impliedFormat":1},{"version":"49b3c93485a6c4cbc837b1959b07725541da298ef24d0e9e261f634a3fd34935","impliedFormat":1},{"version":"abf39cc833e3f8dfa67b4c8b906ac8d8305cf1050caed6c68b69b4b88f3f6321","impliedFormat":1},{"version":"dbbe2af77238c9c899b5369eca17bc950e4b010fa00bc2d340b21fa1714b8d54","impliedFormat":1},{"version":"c73d2f60d717b051a01b24cb97736e717d76863e7891eca4951e9f7f3bf6a0e6","impliedFormat":1},{"version":"2b79620ef917502a3035062a2fd0e247d21a22fef2b2677a2398b1546c93fb64","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"27abd2f2ed5aaac951b12b8332aac7970c9cf0cfd88c458f0f016228180b4293","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"5624b09ca38ea604954f0422a9354e79ada3100305362a0da79555b3dd86f578","impliedFormat":1},{"version":"24830e279f5773a4108e0cbde02bdcb6c20b1d347ff1509f63eed031bf8b3190","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"f10759ece76e17645f840c7136b99cf9a2159b3eabf58e3eac9904cadc22eee5","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"e25deae5b57e05b2cfa2b03ab2ce83c08aa2dea3c0bae697855eaf15a4adbe7b","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"63c0926fcd1c3d6d9456f73ab17a6affcdfc41f7a0fa5971428a57e9ea5cf9e0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"042b80988f014a04dd5808a4545b8a13ca226c9650cb470dc2bf6041fc20aca2","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"62d2f0134c9b53d00823c0731128d446defe4f2434fb84557f4697de70a62789","impliedFormat":1},{"version":"02c7b5e50ac8fb827c9cdcd22e3e57e8ebd513f0670d065349bef3b417f706f8","impliedFormat":1},{"version":"9a197c04325f5ffb91b81d0dca917a656d29542b7c54c6a8092362bad4181397","impliedFormat":1},{"version":"e6c3141ae9d177716b7dd4eee5571eb76d926144b4a7349d74808f7ff7a3dee0","impliedFormat":1},{"version":"d8d48515af22cb861a2ac9474879b9302b618f2ed0f90645f0e007328f2dbb90","impliedFormat":1},{"version":"e9ad7a5fecd647e72338a98b348540ea20639dee4ea27846cbe57c744f78ec2d","impliedFormat":1},{"version":"5776c61de0f11da1c3cf8aafc3df524e8445201c96a7c5065a36dc74c2dc0ef6","impliedFormat":1},{"version":"c110c6e2b6a8494ff722db0c32ff143bcf0ed04ecdb993a58b8d4c1ef5d8e1d3","impliedFormat":1},{"version":"7f0f90d0ffdd54875c464b940afaa0f711396f65392f20e9ffafc0af12ccbf14","impliedFormat":1},{"version":"483255952a9b6240575a67f7beb4768bd850999a32d44d2c6d0ae6dfcdafe35c","impliedFormat":1},{"version":"a1957cc53ce2402d4dc5c51b7ccc76b30581ab67bea12a030a76300be67c51d8","impliedFormat":1},{"version":"8149e534c91fc2bcb3bf59f7c1fab7584382abfc5348055e7f84d2552c3de987","impliedFormat":1},{"version":"c280ec77789efcf60ea1f6fd7159774422f588104dae9dfa438c9c921f5ab168","impliedFormat":1},{"version":"2826b3526af4f0e2c8f303e7a9a9a6bb8632e4a96fece2c787f2df286a696cea","impliedFormat":1},{"version":"77ced89806322a43991a88a9bd267d6dc9e03fd207a65e879804fa760292a03b","impliedFormat":1},{"version":"c8ff3a75cd1c990cbe56080b1d254695c989136c9521cb1252c739788fe55c83","impliedFormat":1},{"version":"485f7d76af9e2b5af78aac874b0ac5563c2ae8c0a7833f62b24d837df8561fb9","impliedFormat":1},{"version":"8bdf41d41ff195838a5f9e92e5cb3dfcdc4665bcca9882b8d2f82a370a52384e","impliedFormat":1},{"version":"0a3351a5b3c74e9b822ade0e87a866bc7c010c1618bcde4243641817883fb8df","impliedFormat":1},{"version":"fe8a3e5492c807cc5cfc8dda4e6464aff0f991dc54db09be5d620fb4968ba101","impliedFormat":1},{"version":"03742d13572a69af40e24e742f3c40e58dc817aa51776477cf2757ee106c6c89","impliedFormat":1},{"version":"654bcc87bc095d6a2248a5889ec057b38cae6052744b48f4d2922a7efac4554f","impliedFormat":1},{"version":"cad0f26943006174f5e7508c0542873c87ef77fa71d265968e5aa1239ad4459c","impliedFormat":1},{"version":"0be66c79867b62eabb489870ba9661c60c32a5b7295cce269e07e88e7bee5bf3","impliedFormat":1},{"version":"eed82e8db4b66b1ea1746a64cd8699a7779138b8e45d495306016ce918b28440","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"6cdf8f9ca64918a2f3c2679bc146d55f07490f7f5e91310b642bc1a587f2e17e","impliedFormat":1},{"version":"3b55c93b5d7a44834d9d0060ca8bad7166cf83e13ef0ed0e736da4c3dbe490a2","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"3517c54fba6f0623919137ab4bdb3b3c16e64b8578f025b0372b99be48227ad7","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"d6a0db08bed9312f7c4245ee3db068a96c4893ea7df69863eb9dd9c0af5b28f7","impliedFormat":1},{"version":"f17963b9935dd2142c08b006da53afeeaca2c9a600485f6eb9c018b96687275b","impliedFormat":1},{"version":"b827a742dd57873730b15510289d02e551b2b1931d5e173ba25b6d5fa771349f","impliedFormat":1},{"version":"8375cf1206fa01c23097e5293405d442c83fd03109e938d1bf3d9784f84c2dbc","impliedFormat":1},{"version":"585516c0e8cfe3f12497eb1fd57c56c79f22bb7d729a2c0a32c458c93af68b03","impliedFormat":1},{"version":"a797a41988e5ba36b6707939953b0c0395ed92b91c1189359d384ca66e8fa0ab","impliedFormat":1},{"version":"2b1945f9ee3ccab0ecfed15c3d03ef5a196d62d0760cffab9ec69e5147f4b5aa","impliedFormat":1},{"version":"96f215cefc7628ac012e55c7c3e4e5ce342d66e83826777a28e7ed75f7935e10","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"ce0a7ad957db8370d5a33da5f9e10d3d05a58a626e1d1166a2b92fcacc0d82e4","impliedFormat":1},{"version":"aa81389bf581bb4c15c0ed2136640d3998d0984d8bf6e0b59194ba92d98c6a72","impliedFormat":1},{"version":"e5eb4863b7fc8515078dc09cd2f98fd179ff1a55216ecdc57d2dec7ce13e36c1","impliedFormat":1},{"version":"81785a3ea03d6db981ddfcf8fb1bd1377f985564def845c55e49e16f171deec4","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"8f9a2a6ddbd11ecbbc430ae8ce25528e696206f799ef1f22528569caf6ce580c","impliedFormat":1},{"version":"e05e03e1687d7f80f1569fdae117bb7b97feef1e839a61e1b3c61ffca8cc67c9","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"8a49e533b98d5c18a8d515cd3ae3bab9d02b6d4a9ac916e1dba9092ca0ebff15","impliedFormat":1},{"version":"fcb26ad5a6c39ce71dfac5dc16b3ed0e1a06a6dc8b9ac69112c935ad95fcad69","impliedFormat":1},{"version":"6acdef608420511aa0c9e3290b37d671bab4f719ffc2a2992c2e63a24605a657","impliedFormat":1},{"version":"291df5da0d84d1452cd68abfbcca08a3f96af610bf0e748528ba8d25784ce2b1","impliedFormat":1},{"version":"176cda558a7f76813f463a46af4607a81f10de5330c0f7a43d55982163aa0493","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"6b08ada439e3c7fba3e6d18c19f934e7bbea3f34979f2490074f0623b849e8e4","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"bf1e1d7d28afe2f0e6936aaf30e34efc70cc0714d79721c88e3fc2253d5da40b","impliedFormat":1},{"version":"4a34de405e3017bf9e153850386aacdf6d26bbcd623073d13ab3c42c2ae7314c","impliedFormat":1},{"version":"993bcd7e2dd9479781f33daab41ec297b8d6e6ccc4c8f9b629a60cc41e07e5c8","impliedFormat":1},{"version":"273b6c8dad70cb34aaeb6af95e9326e7e3670f10a0277c6832a42b5b7728a2c0","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"4cb85ba4cf75f1b950bd228949ae508f229296de60cf999593e4dd776f7e84e8","impliedFormat":1},{"version":"e39730c031200579280cae4ea331ec4e0aa42f8f7ad19c3ec4b0b90414e40113","impliedFormat":1},{"version":"e90bd7922cb6d591efd7330d0ba8247ec3edf4c511b81346fd49fff5184e6935","impliedFormat":1},{"version":"1b581d7fcfacd6bbdabb2ceae32af31e59bf7ef61a2c78de1a69ca879b104168","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"a0f62f1335e4c627a04eed453d4fa709f19ef60fd11c65e1fdfc96de9df374a5","impliedFormat":1},{"version":"37446d15751f05bb3ecde3ad5346b2ccfa7f4578411e9e699b38a867327ffbf9","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"8551ca11a261b2384e0db64bbd09ee78a2043a908251746db3a522b6a646e960","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"3a6ce66cd39bc030697a52508cfda7c248167467848964cc40bd992bd9ce71e0","impliedFormat":1},{"version":"b4ec75c8a71c180e886ffccb4b5391a5217d7e7077038de966e2b79553850412","impliedFormat":1},{"version":"f8117362c4a91da9e2a29466d682334fe522d4e5d6cc652d95c38797b41f4546","impliedFormat":1},{"version":"ecf85664c5bbbb0db1190cd1a57ebdedf7ecbc0dbbbfd548106f069e0c38666c","impliedFormat":1},{"version":"b43a0693d7162abf3a5b3b9e78acfafd0d4713af4d54d1778900e30c11bc4f83","impliedFormat":1},{"version":"efb3cb71ed3e03cee59cd95bffa5c7eb365b0c637dd4d8efc358d8a34b396052","impliedFormat":1},{"version":"aed88228359e87a1b1a4d3d45f5b6555724c01ac81ecd34aa56d4a0a01ba6910","impliedFormat":1},{"version":"6365e9d7645838ef3e98c0a9f52c03ce6b00962a67f1e3e945f155a6b12e0578","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"4adc1491e1338de6745d009222786747f50d67ac34d901420fbaefbf1b51b58c","impliedFormat":1},{"version":"4cfbd2a7a4afee212bfb0c9c3cb6e4c7d48366e0565bf5b43a4cd96c91cf14bf","impliedFormat":1},{"version":"34490a4943efdbe0db1a93d3200a0b69b9739fcb646b89cc057b2fff070c17bd","impliedFormat":1},{"version":"3f20a041a051abfb2b47a66611cf4bcbf263605f5469ed7e8b51b3977892d83f","impliedFormat":1},{"version":"7de33f94f482eee2f6d1d8f24427b737e2c4006792ec4c2b87da0a426e741c4d","impliedFormat":1},{"version":"79134a050ccec1692c31f1dacccd05ce4fcdacdf98f0fa56546b98eb8bdefead","impliedFormat":1},{"version":"24f1b6865be734484de2baf99146122137654c5f5f28086c5cee97b998bfcd5c","impliedFormat":1},{"version":"398feb1537ae0409646b0489bac99a9f0d757a2048f0009255f8e35e9c0f9828","impliedFormat":1},{"version":"3da4432a9c24123f98f6f1ddc5cda9c9eedf0a8853d06321803dbc5a116e5270","impliedFormat":1},{"version":"afc60e07200c5eae65b702f95d83096de54d99fa6eb2e0154e83b5e11c520bda","impliedFormat":1},{"version":"f4651affee2900f19746d1bf0fb1c45e77f57576197561ddc90b7272835c3f37","impliedFormat":1},{"version":"19527fc5a08c68414a234b02ae9b9619cdb4b811435d12c0af528e5640236f6b","impliedFormat":1},{"version":"20a629bc3f82d238f596230637365b8aec8284c963d13dafdd4c8e2746be5e64","impliedFormat":1},{"version":"01c48e5bf524d3fc2a3fa5c08a2e18d113ad1985bc3caea0503a4ea3a9eee64a","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"4dbfad496657abd078dc75749cd7853cdc0d58f5be6dfb39f3e28be4fe7e7af5","impliedFormat":1},{"version":"348d2fe7d7b187f09ea6488ead5eae9bfbdb86742a2bad53b03dff593a7d40d1","impliedFormat":1},{"version":"becdfb07610e16293af2937e5f315a760f90a40fec4ffd76eb46ebcb0b3d6e16","impliedFormat":1},{"version":"710926665f4ada6c854b47da86b727005cc0e0831097d43f8c30727a7499788c","impliedFormat":1},{"version":"3888f0e43cd987a0dfa4fc16dd2096459deea150be49a2d30d6cf29d47801c92","impliedFormat":1},{"version":"f4300c38f9809cf811d5a9196893e91639a9e2bb6edf9a4f7e640c3c4ce765ec","impliedFormat":1},{"version":"676c3327721e3410b7387b13af857f4be96f2be91b3813a724eedc06b9ce52d7","impliedFormat":1},{"version":"10716e50bcd2a25cecf2dd993f0aadf76f12a390d2f7e91dc2cac794831e865e","impliedFormat":1},{"version":"81a8f1f6218d0acc8cd2cf8b5089d21b45cf812bb5820affe3bab058b46cba7b","impliedFormat":1},{"version":"fa69921924cf112fa523a18215a3bfb352ac3f498b46e66b879e50ca46cc9203","impliedFormat":1},{"version":"8063a2c518e5c3b33a895cb891984acaabc0a248f8ad40748adedbe8d2580fb6","impliedFormat":1},{"version":"ccfb77fcac04c34442ffca82ae90c8dd2a0ec1689ace547fab9a0ae337dd4752","impliedFormat":1},{"version":"7b464488950d74ca5037da375308fc0c94a539378fd0e9554556df45483aad02","impliedFormat":1},{"version":"970fd4f27197b7495991371a8898067f7490f17da6883d5284c737182409bfdf","impliedFormat":1},{"version":"9b7f93f4152d8606b33fdf4c7d987a5b3c3d288c4bfa600f3eff1478b3a7f52b","impliedFormat":1},{"version":"c790db6044ce1bbafc46f13bde46b9f0065de155b26a199f442fe064f6b05d63","impliedFormat":1},{"version":"05a618d1e5019598f7d2256ce7a51d4bf70b682cbb8604d847c186e1df619a65","impliedFormat":1},{"version":"f405e934163ed30905b4682eb542bb2d446e59c477871be9d29f92ab474d522a","impliedFormat":1},{"version":"8294ddd1c6ea4ed9ec190a2d41500539c1623e274d5a67786d6b09849cb98d45","impliedFormat":1},{"version":"aab16135be8081c563dcbb33c25bb4bbf2065c7026d7228e6f1cd8153d8587e7","impliedFormat":1},{"version":"666d6d6d9f2298f8d8d17ac7a34ac9ca9a59e09fc97b1ae505df6ab4934e2dbe","impliedFormat":1},{"version":"26684463e16f2b6ce81dbb3c7144e89f77b7295d3ea7ed726123be7e5b24d11a","impliedFormat":1},{"version":"8a6791253beddf4c70366de7de77564422b4fc67657819f7a14d7a6396319e6f","impliedFormat":1},{"version":"ba31920ac318be06d0fb3c4dfcbc534e6ebcf5947b6cf0122c35de249ee45298","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"734614c9c05d178ceb1acf2808e1ca7c092cf39d435efc47417d8f744f3e4c0b","impliedFormat":1},{"version":"d65a7ea85e27f032d99e183e664a92f5be67c7bc7b31940957af6beaaf696844","impliedFormat":1},{"version":"5c26ad04f6048b6433f87556619fd2e50ba6601dcdf3276c826c65681197f79d","impliedFormat":1},{"version":"9c752e91fe237ce4857fbbef141bee357821e1e50c2f33a72c6df845703c87d5","impliedFormat":1},{"version":"f926160895757a498af7715653e2aedb952c2579a7cb5cc79d7b13538f9090bd","impliedFormat":1},{"version":"255be579a134ab321af2fefb52ace369a11ffb4df09d1fbfc1ed1a43c1e5eec5","impliedFormat":1},{"version":"7abc0a41bf6ba89ea19345f74e1b02795e8fda80ddcfe058d0a043b8870e1e23","impliedFormat":1},{"version":"ab0926fedbd1f97ec02ed906cf4b1cf74093ab7458a835c3617dba60f1950ba3","impliedFormat":1},{"version":"f1a661906cd0e7fa5b049b15bdef4b20a99abca08faac457eeb2b6407f30d12f","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"626291e7b45a4b6871649c908fbbc5ac98009a5182e2594fbfe80b860f513c77","impliedFormat":1},{"version":"4093c47f69ea7acf0931095d5e01bfe1a0fa78586dbf13f4ae1142f190d82cc4","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"348d5347f700d1e6000cbdd1198730979e65bfb7d6c12cc1adedf19f0c7f7fca","impliedFormat":1},{"version":"6fa6ceb04be38c932343d6435eb6a4054c3170829993934b013b110273fe40af","impliedFormat":1},{"version":"0e8536310d6ed981aa0d07c5e2ca0060355f1394b19e98654fdd5c4672431b70","impliedFormat":1},{"version":"4116c4d61baab4676b52f2558f26fe9c9b5ca02c2792f9c36a577e7813029551","impliedFormat":1},{"version":"a294d0b1a9b16f85768553fdbf1d47f360dbff03649a84015c83fd3a582ba527","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"b991d92a0c3a48764edd073a5d28b6b4591ec9b7d4b2381067a57f36293637d0","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"100802c3378b835a3ce31f5d108de149bd152b45b555f22f50c2cafb3a962ead","impliedFormat":1},{"version":"fd4fef81d1930b60c464872e311f4f2da3586a2a398a1bdf346ffc7b8863150f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"b152c7b474d7e084e78fa5eb610261a0bfe0810e4fd7290e848fdc88812f4504","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"603395070ec53375882d53b585430e8f2dc6f77f4b381b22680d26c0a9595edc","impliedFormat":1},{"version":"cef16d87ff9aed3c5b96b47e0ac4277916c1c530f10eedfce4acaeacefddd3bb","impliedFormat":1},{"version":"fab33f402019d670257c8c833ffd78a7c9a99b4f7c23271e656cdbea1e89571f","impliedFormat":1},{"version":"976d20bb5533077a2135f456a2b48b7adb7149e78832b182066930bad94f053a","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"bdc2312da906d4129217238545d7e01e1d00b191beea1a9529b660de8b78834f","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"3c583256798adf31ef79fd5e51cd28a6fc764db87c105b0270214642cf1988aa","impliedFormat":1},{"version":"abdb70e24d3b39bf89aa07e769b33667c2d6f4ddcb4724735d72a941de6d4631","impliedFormat":1},{"version":"ff4aeeeaf4f7f3dc3e099c2e2b2bb4ec80edda30b88466c4ddf1dd169c73bf26","impliedFormat":1},{"version":"151aa7caace0a8e58772bff6e3505d06191508692d8638cd93e7ca5ecfa8cd1b","impliedFormat":1},{"version":"3d59b606bca764ce06d7dd69130c48322d4a93a3acb26bb2968d4e79e1461c3c","impliedFormat":1},{"version":"0231f8c8413370642c1c061e66b5a03f075084edebf22af88e30f5ce8dbf69f4","impliedFormat":1},{"version":"474d9ca594140dffc0585ce4d4acdcfba9d691f30ae2cafacc86c97981101f5c","impliedFormat":1},{"version":"8e1884a47d3cfddccf98bc921d13042988da5ebfd94664127fa02384d5267fc3","impliedFormat":1},{"version":"ea7d883df1c6b48eb839eb9b17c39d9cecf2e967a5214a410920a328e0edd14e","impliedFormat":1},{"version":"763bd0d5664cec4195ed9532412410375812a770ca952d14c4f91d3f45f0634e","impliedFormat":1},{"version":"cfa3ef0f62b23816e84216ba2b021cba41a7e620e1bf1ef607954126fba92014","impliedFormat":1},{"version":"1de7ee494c7ac185e6abf94428afe270e98a59f1bb4768e4bea7804645a0d57d","impliedFormat":1},{"version":"26a19453ef691cc08d257fbcbcc16edb1a2e78c9b116d5ee48ed69e473c8ff76","impliedFormat":1},{"version":"c50ce49e69e240c1f8615afa63630c00eacf2b22aac679315c0ecbc7497a4878","impliedFormat":1},{"version":"97ba9ccb439e5269a46562c6201063fbf6310922012fd58172304670958c21f6","impliedFormat":1},{"version":"50edac457bdc21b0c2f56e539b62b768f81b36c6199a87fbb63a89865b2348f0","impliedFormat":1},{"version":"d090654a3a57a76b5988f15b7bb7edc2cdc9c056a00985c7edd1c47a13881680","impliedFormat":1},{"version":"12a6a37d9676938a3a443a6bd9e8321d7221b6ad67b4485753322dc82a91e2a1","impliedFormat":1},{"version":"6c4833182ba7a753200bf30986d254653c1ac58855d784edd8dfe82f5db98954","impliedFormat":1},{"version":"69eeee4818209fdb59544d6f74bd6ff024944bdd4050a33577f62376d5cada8e","impliedFormat":1},{"version":"fa05a4a765755e92c1dcab306ef3648fa4aa108494b6e10d2329db8b89e89908","impliedFormat":1},{"version":"bcfdf51371a0baa9bf13ec12d4d0048b27a3e9b486ef240fa0a9e6a60f2e97e8","impliedFormat":1},{"version":"d61821435a95c7a660d5850ce6fe9c4400787595009853d982343b8089724319","impliedFormat":1},{"version":"c8ccc40088528bb10294d097da7440b9fa8f310b6f55de33412451183ca3a46d","impliedFormat":1},{"version":"b88051ee09b2f0ff102fe72162c5ed85e82c5dc30e6db074cc631daa93f8e0f1","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"ed79978235b685e7e9d2ac149c6ddaf602ce7e3a30725c20023e57f011760593","impliedFormat":1},{"version":"dbf9187751c0e0192b8def4df90638937818ee95d581bd4f1b0e17c2d23ccdf2","impliedFormat":1},{"version":"dacdfa1d138a592734377df139ae70f203669bc3f9ac45e931aa0e6f2e567c8a","impliedFormat":1},{"version":"8a49075f007383f24df5b52376e41198e341a7b715da34a90b2c54b8fc8d4bcc","impliedFormat":1},{"version":"0fee2c30562deb6c5e38f79586610c0bcaea41e2d366565e292fff7e00a52f4a","impliedFormat":1},{"version":"38ad4b4ce64de9b9947c535a21c98a4e59011742594c2ab5e1ab47171acec5fd","impliedFormat":1},{"version":"849cc0c9a354475fcf8b7a485aadc26a5f1cc60b3fccdb4fa8723adeffdbdb25","impliedFormat":1},{"version":"a931f855f3a485577e65a2e7a3d41e6df929806af57ecbad99a161162b50cc15","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"5f9ab7ba179f92fa3c5dddafec778a621fe9f64e2ba8c264ddf76fe5cf9eaf93","impliedFormat":1},{"version":"93bf307fde4744a8fa7f7ca5f041b02c9d77d3e3e1897594772ae857c275662a","impliedFormat":1},{"version":"364e53fe15122e9d37aa8ee2c8eb037cde59bf5890b46a8205f4516b529501c0","impliedFormat":1},{"version":"1a577fdc45901cf461d4edc7697860c63a60526f60b7b2ba8ff7c89a9e7a1932","impliedFormat":1},{"version":"7c91deecd26bebe9af5b1d05d06a8c29633fe9e2423ddd6739ce2561d2576095","impliedFormat":1},{"version":"f957699304b8e74a4b2f6c366b4aa7f735bbe991a0b6c3ec980f23878003f0d1","impliedFormat":1},{"version":"129e22e3a18299b28b3c4b1831609d8caff450eae041a82639acc8635bbd2b15","impliedFormat":1},{"version":"cee6f683bf65ed4412b1a1cabfb7ad76fe242f52da68360c2e8a109b888fb1ad","impliedFormat":1},{"version":"e8fd94fd60c3464978e320d46dd600b57b5f4cc0c12452406c888db9f202c50c","impliedFormat":1},{"version":"b3cc1bb7311f35569b531e781d4a42d2b91f8dfd8bc194cc310c8b61011d6e43","impliedFormat":1},{"version":"fdc54d3bd2897fc993e5f5958cdb8e8dee07242087f5730e2fab9dc64d5fd9fa","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"e0f69e399a1c3b367058918f3a6f9e5f29a0db26330c28208173556a8c48a0a3","impliedFormat":1},{"version":"e3c7c91b478879b40968129e9319cca8c7bfa7bc838f80329f7a150c03651d3c","impliedFormat":1},{"version":"26e50bcb0b06b83867f30b69ea99f926076c292cfed812e52db9e91d12ce1083","impliedFormat":1},{"version":"a97dfc019f5eaba8cc40b1bc80ff83446fa8c6f4b9118701d563e5b7e4c94fd1","impliedFormat":1},{"version":"73bf1badc6969cf5eba2018b20dce1cc0dc00b056e66870abdca1f7b1275a648","impliedFormat":1},{"version":"a26c0a065b5de2cf0e826df7fedc3cf3df1d2bbab7ab395933234ef8adcf11df","impliedFormat":1},{"version":"23ec18c2cfd1219e227c34a2c286332708606c1d7dab8e32206e0028cbad60d6","impliedFormat":1},{"version":"ee689c67c5fa83d00452540077ee0862def738d4c86322b6f86411cfa06d7c6f","impliedFormat":1},{"version":"da27512313d85ef30b2dbc916b227ade032b09171f1e9b3af4c2897540e7f464","impliedFormat":1},{"version":"65ae87773d95fc56bce2c756dfcbcc73d8d05ac15a9ae73e7d81322850879fc8","impliedFormat":1},{"version":"fbce5d54e8610bc041463fc4e034f40e6f0b7889d9de27e7cda2135f254ddcb4","impliedFormat":1},{"version":"6b567540de9240ef5b14e86239dd821be6e90274df164ef61a11921344019410","impliedFormat":1},{"version":"c2f426df0b5346a824013c507c611656884f4681e23782ae5bc396cd6ad6fe00","impliedFormat":1},{"version":"f737d4c256faf88b0b84255da24ac95de364db1c5564d67856fc2be2571e477d","impliedFormat":1},{"version":"082be20017cd0774d12bf0a928d0834bcc83454e706dfb3ebf2c314b8065cdc8","impliedFormat":1},{"version":"7e0b933925fa33fca25738c4daabc959f315f1ca3b2431a724069db01ab4e53f","impliedFormat":1},{"version":"34dce1ce616534c11ce825f1acf55cbe45bf7f38b48ddf451fe0ebdb8b04924d","impliedFormat":1},{"version":"42aacda77a8ad883d423c7b39342cd036a35bba6c058b0b067f75af5ec0eaf6b","impliedFormat":1},{"version":"677b3a027ec7df033eb7df33eecfe77e066debd14d983a22916bcc67214b222c","impliedFormat":1},{"version":"547fbf3353abf40a827b1b48b832f9139e41cc600dac954cd4dd1c8faf1df517","impliedFormat":1},{"version":"dc0a609a8ab9995e439c887be9327c272400a3aadd76dae41f6c4eae9af723b8","impliedFormat":1},{"version":"0e792560a03e247d4f6ee7dcc6f9a7dbf07e55caa6faad2219875ba02480e769","impliedFormat":1},{"version":"c0c5ebf4cc5ef8ed64733c3dea8de54fbb45bb0a40306d26d840e50a954327cd","impliedFormat":1},{"version":"408c753ef793f71dffa590cfc3a95e5246ab67238f71083b7a96056b986e8964","impliedFormat":1},{"version":"6650fd077aa1900d99c2a52af9dd79971322e2991e70e463331d0cd60fe9f914","impliedFormat":1},{"version":"dd293cb09436d09cdd150565d54a3cd72674850eb842a11487cc3799357b9cf8","impliedFormat":1},{"version":"e32ceea1db1cf16192a7fd97fdc689dc625ad1c57555a2dc18e7b5c019216482","impliedFormat":1},{"version":"0359c9ffe72d124c521a64dcb4f37a6391e9234e0496a38f62ba9b18be1f1d89","impliedFormat":1},{"version":"7d65b692913489b7a0179ef6266bb52985d7545fa5baacac4a803149b27b98f2","impliedFormat":1},{"version":"b1cdc896fa6216d1ff898423395f5ca6bf3b1118411b7f5ccc732c8acbd37e19","impliedFormat":1},{"version":"8d986fc98555e4b017177816f51b86236a357ff9c468f4c86e5b4096775f1639","impliedFormat":1},{"version":"37441514e58c1412999e02a2931b179a4e9330a5b67dd8f75b3dbee19e1b33db","impliedFormat":1},{"version":"a1c9f45912f4ad052795e0ef5743d8e1a8400efb0393a13c47c2b6320bdd9406","impliedFormat":1},{"version":"6402c4b62a62f59d78ad558c0abaa7a8059e966f083c99b89fd4b24302353413","impliedFormat":1},{"version":"a8378c2611bbac166238618fb9bc0af95b77ac59447d9046af1c4188ad758c1b","impliedFormat":1},{"version":"c745295efc9d176836701a358fcab80c77ca7a63f4c8e7bfaf0da3a0910607be","impliedFormat":1},{"version":"9074405ae056ee3066a3cdba3ad29eed41ce32c74838b6ca09e14ba8ed9e3123","impliedFormat":1},{"version":"d486cfb79e7cb30710b2f3cc8c02909fe71b34e26938ba536100ff207e38749f","impliedFormat":1},{"version":"c1cd76a69f98ae809c871a3c9825a79bf51252a95f8d039d13dbb60c97d2f33a","impliedFormat":1},{"version":"d668cba43ed8e4364f2625bfc373f51ca7a0ef4333aadee0b953c6a8ce0ad953","impliedFormat":1},{"version":"5c93658c69d22c1e0281a1672bf9a0f3efed19e46ec0456c1fd269a15354bc2e","impliedFormat":1},{"version":"b80ab976d1968b44e78d7c6312fa7895989e30604712001e504ec74c95d50c0f","impliedFormat":1},{"version":"7cdbc72e654c4cc3a95cf44a0f050a5affa822d626501731ea688deb0662b027","impliedFormat":1},{"version":"af12968b48a6d0d45a4737c6a02cdadae2ace6738b65a1c3425928677154db38","impliedFormat":1},{"version":"198e2304a766d645a7940a2c6ee7687030c07a8c3bb2e84184e4acaa0a87f325","impliedFormat":1},{"version":"ab9ea3afaee16b10a6d7d2fdde5c3c66a154e1f93266832a439ea4ae8f92ed3c","impliedFormat":1},{"version":"94ef22b94d7cafa97366308aba95caee00b8c740567c518dae3dcfd09c58a4d1","impliedFormat":1},{"version":"66332888aba679ae44ff8405d814a794a8328730d008ab5ca2c3b0629a1acc38","impliedFormat":1},{"version":"de9d02955efdcff476bd95184b75e321d962b8fc22f51b2033da443ffa33c029","impliedFormat":1},{"version":"8134618a47361a523fc5daea803db42a8f0751944e8a314128cdb4d51a4d0359","impliedFormat":1},{"version":"3cac1d701152a399417ca60ec47f9ca83fe96a4c519bfc4b9ceb79578a894bc3","impliedFormat":1},{"version":"ed74d99ed075aa260bb80cdc4286fd04d5ca8fff5ba7611c22c0d4891418d08b","impliedFormat":1},{"version":"dba5745334b583e1b8f7ef055939cc750c546c250a74b95e0ede1ad5b863400a","impliedFormat":1},{"version":"801f5c06b1bdb1f520fa9d12ad1cb1f0f5a60233ede2d6313a1894f4c48208af","impliedFormat":1},{"version":"afe7e63907fb014390c8b2fc1bea86232a17431faccfbd8248e9ecf848c698e4","impliedFormat":1},{"version":"82035374d5288745dd1225e6a0bcbfc5c7dbd53b2823f432c56de707a2a3847b","impliedFormat":1},{"version":"dea06d130aa40f953867c2b6d5bad2376091c55b64a4a2d2781acb009541e100","impliedFormat":1},{"version":"c92258027ef4f99109f802bd82af908afa731ccc379373b5ee69cf420b40f060","impliedFormat":1},{"version":"ba19ddf03bdbd63a4a44ebb761439016507911f153b1b618b7aaca18801b1e1d","impliedFormat":1},{"version":"73f6fd0ee5da5198efd378a07383da0337b8e73a30a53420a46a4a098ea34f26","impliedFormat":1},{"version":"1b5962b26e6698523cbd71a11281f59f6c4f57099fdebb11cf68fe77abac8c1c","impliedFormat":1},{"version":"f2a46afafc384ab188f6ce5cf2cdb4859236e111958f8d49a1a3941088c8983d","impliedFormat":1},{"version":"afda2e399d17b76e199f56029d053308fa3d93a90b9565b06a81be01fb86865c","impliedFormat":1},{"version":"5080b4699f7e121f9edc746e4b6cbb10c61ac0ed707425ca572ac0d67b593563","impliedFormat":1},{"version":"26090d8875766d8cbccdc70d81573a0a0cd2af336c2ab991021706ae24e3920b","impliedFormat":1},{"version":"6141b4f6daf9d8770f32c174fb185714e97851a345b5734256b2f615f6bfcbb5","impliedFormat":1},{"version":"cd454337b92454283ac6fa6a271d8688a9a875b32386a33c747fd0cb67407843","impliedFormat":1},{"version":"6981a0c4763b53c9852eabe40e5f6abcf1c39b26844142bb32033f6a4c82b057","impliedFormat":1},{"version":"849bd9fa53e4829fda3a678780e1f227a729adc357f521c8be47a9aaa053b82e","impliedFormat":1},{"version":"1749042b52c8e5fe166dd24318d18ab56db865cca56829a69ac42e6bb55b001f","impliedFormat":1},{"version":"5f8eaa67e3d8b40ab42257d96a714fafc809ab526142230a09f58635c192cd22","impliedFormat":1},{"version":"eb99fa95f75e0f7b38661b5dec9f23ac9543393b120a1434530d95e69d4e79b1","impliedFormat":1},{"version":"b62db23755af69ece75a6533bfdf73dfec00fd362f60aa84c1a779868cfecbfe","impliedFormat":1},{"version":"1f686b1909ddaced1a28e5d0b68b91f43a3ec11e048e504a5672946235ccc4a6","impliedFormat":1},{"version":"3831835fb9a201fedcd846eafe14e6571894bdbca4a546d74172064ee6a8bb8d","impliedFormat":1},{"version":"c4ad21dfe866d96f982607c7b12cc8439b692a84859afc6474b46b07ae912db7","impliedFormat":1},{"version":"be0914604acbe35e8de9ff368fc7bd8fa75ae8f30be048a5d7bad09f28b40d1e","impliedFormat":1},{"version":"2b9d55a7e074cd9858332bc24dede0ac521b21a9ee586394c4c4895efe9cda95","impliedFormat":1},{"version":"1369e4f275724ddf731bc351f6c8e580ed7eae969317b6d3060fe348304fb6fe","impliedFormat":1},{"version":"f43678d8b19945df13814b6838120b7c7b8dfdce7569296b1b1976eaf085c705","impliedFormat":1},{"version":"e13307ee0b3a31b312f610895bf0e322cdb69f786568a256a9d547b2c03d6203","impliedFormat":1},{"version":"7e206779ef1fd0a3d07f2206196f2d73ac66d9451822c0b38a168faad5ea8106","impliedFormat":1},{"version":"13baee3bc1768b9923c49f08193495c4e6781262a64d59a2e63c141b771a9fcb","impliedFormat":1},{"version":"5bfe6ebae188356b862d8466e5449a78f78f1ec44651d1e00ffdb71fa194aae6","impliedFormat":1},{"version":"ff240fe4a4fc547f40e2f7222e60008a9f988b67260cbe9fcea08ff8d39ec2b8","impliedFormat":1},{"version":"274bea8a69abcb66240bf52e156eac557019a956f50b0db70387863b57115eb9","impliedFormat":1},{"version":"f390fa9fba362e116cd59e005bec3c9a40dd6c0d47f02ba50b5e6c3e62700198","impliedFormat":1},{"version":"b6914c5199969e2aa490bd347dfc5e289813b260dba1331d06c55b3cbcab9b6f","impliedFormat":1},{"version":"40dffdf672c4e9c313d0b2537907b4a7b749c995c2c0c475807877eb2e499f48","impliedFormat":1},{"version":"fc24fbef61c285e202f2484229976dfc67b0e7b7a27fef7a95ffdf8d63057593","impliedFormat":1},{"version":"45ead3296fc43b8929db6cf82e2b55f909428ca150ab55b7cbf64a4504a5b5f1","impliedFormat":1},{"version":"93979165f85cc256e159ba859693bde5f4b4ebceb2da65ea4695662e21fb52e1","impliedFormat":1},{"version":"ef700e2d818d6ccd0439eb84bb4db7aa4b05ea406e32d67c33238d7ad27de42f","impliedFormat":1},{"version":"ad05d2d60f1bccc4fffc28e239cd9df3290ff079f3ab8d0e8cb52739a2827a10","impliedFormat":1},{"version":"b0c47ecc1d22d613ff438a1cbcf55a15092a25a08264dc30af1f4948495c125f","impliedFormat":1},{"version":"fdc64b163f42e37dbe762f9b64dc2d6914549f3400f7fb18d77b58f569a64914","impliedFormat":1},{"version":"36dc5f3daf24eda6cd2cfd36310fc888e4be3d9751d4e8a159ff5b7f57cc1a31","impliedFormat":1},{"version":"4cb733b1156a4c30cd662b72b3c79fd23763036b0e552f63c24e791983f493ca","impliedFormat":1},{"version":"761a9b0b1d366d94da1884decf722053122a5808c713dafe7fcaf22d8f9643d3","impliedFormat":1},{"version":"10d960eb8b8e27876c99d38fa27665927a7c122c38773121f8f1ada4738d0320","impliedFormat":1},{"version":"266aeb59e78be75a52cd41e3ce6f05eb0763c47d383cd081711010513217a05b","impliedFormat":1},{"version":"d4936aaa2e2fd93908a9e96e7e48bf05caa4973a0f25938cf02938403461b4d4","impliedFormat":1},{"version":"be93596d4f187f67d7845f895d10073ccbac95214f7ebf8671a438249b6e9787","impliedFormat":1},{"version":"4c075715132f5811e5a9900d176e6822f3403d9223e9f44bff919dede890a4ba","impliedFormat":1},{"version":"8ec695c9c1352c4be7c0a69befdd73ee700e92941d6306f5cbdd56688f564647","impliedFormat":1},{"version":"9d74f18aad3b7c8a0336eacd427c659bd8bf57444426f6f0e41f8fca1ceee97a","impliedFormat":1},{"version":"a4e6bafb319f30c835ef3fd3afe64de01d84e82850a98c5d07db7ee901d34f4f","impliedFormat":1},{"version":"50d28622be744b35a9cd858facdf1f0717f889f938eff8a0c35135613d324677","impliedFormat":1},{"version":"f93026b391c4f31b8e6f11e49b2dcaa40953788d25010dc190a751acdd7b442a","impliedFormat":1},{"version":"666f484aea575137508bdf1156d7d91e929a54abaee307a4bdfeddf59c5d383b","impliedFormat":1},{"version":"1eefe69c9db42deb567764f73d45d6a468993428bf147d1e3244585b42313c05","impliedFormat":1},{"version":"5f375f1e6566d3f9a8da008710738e9826ae2dc229d5e49faea13731ace6d506","impliedFormat":1},{"version":"980f3c0431cc8689000e35012e23a248dd781e3e5282057126624a7137a3bf42","impliedFormat":1},{"version":"9b8202cbccd1249e8640ea844c0dabbb99a604a6ba52feee963e557680ed285c","impliedFormat":1},{"version":"191be79a2ba37508537f66d488057969e140774e17a707a70610bb6926e96a56","impliedFormat":1},{"version":"766ac6ac3fd652f4e46f38d851b175224d6ffc19513b24a0a30f5423f342f5b8","impliedFormat":1},{"version":"25d7eb0b64c208b1c1d362b21b1cfdce0b484d50a517fd9dd6ebe8f20669c73f","impliedFormat":1},{"version":"480b36062b5f1e7496ee9e6fd6f6a415ab054cd00d026d8a17bcff0d27ed5940","impliedFormat":1},{"version":"d0060157c0e676a2da04b924645eba5892a702e9640c27b9d0aa84e8aa036421","impliedFormat":1},{"version":"92806a9f12a08152730a0d4ccd78c086b20bba8a0fa0cb5eca9e5f8152124f4d","impliedFormat":1},{"version":"b5e6f565409b4ed7e2aecf4e66f2a10574297814e882e68395e8149677d52a5e","impliedFormat":1},{"version":"e27fdbe93134e041e958d04c558e5e8a546367e32f1ed8ad99e57d10018ffeeb","impliedFormat":1},{"version":"b6c59ec90dec5c2db22d3effeabb68023cea59e5351ff94146d139757d36b8d6","impliedFormat":1},{"version":"74a907fa14655328575b29e4dbdf58440dd07c081d9d245f785c4143d10510c8","impliedFormat":1},{"version":"473f53747832bc2588d9e9e0347d3fbcc8aa8e61124b4b4ed54185f930e4f80e","impliedFormat":1},{"version":"bf96e903108160a97d684bb1d0991faad9a0c9a209759a7338ea22fbd4510f75","impliedFormat":1},{"version":"ea99aa2e537966df22f8192e99929ee81719c1cf0b9d9d83d0c6fed53325ccc6","impliedFormat":1},{"version":"c624b65789f71d3fe13d03b599adbaaf8b17644382f519510097537736df461b","impliedFormat":1},{"version":"3fbeaff576ce5b8035224fbcb98ec13b7cdd16cdbbf8ee7b4052d3d6330683fb","impliedFormat":1},{"version":"cc8eac1829ee2ec61323b3af1967790ceb9d0815ef8c40c340bc8090c17a9064","impliedFormat":1},{"version":"5947f213795a08df7324841661f27341937a5603edcd63fa2d2d66fb11864ec9","impliedFormat":1},{"version":"2d9f4d58554a246616eeaa090a2fb0dddccf412e88617975138389fb15770ca9","impliedFormat":1},{"version":"500561aaec426c1d47bcb10a78c275b7b59cb489c19eb72e1daf4d7d241e4f4a","impliedFormat":1},{"version":"d65ccac9f2c0fa7bbbbe3ca8643ff6f488b6d4036ad266d2183939eace1c2af3","impliedFormat":1},{"version":"e61b139483dcba16956ba1d374a0216d9f6d20976e1b1d89f1eca7bc766616e8","impliedFormat":1},{"version":"3425be72406c5edffa34483e23bd62b506ab5ecb2bac8566cfe2eae857db7f1e","impliedFormat":1},{"version":"f37d9aa133b603bd21756b7cbe83dba91f8f27a2ca82ca1ca552fcbc3c4d6205","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"5624b09ca38ea604954f0422a9354e79ada3100305362a0da79555b3dd86f578","impliedFormat":1},{"version":"24830e279f5773a4108e0cbde02bdcb6c20b1d347ff1509f63eed031bf8b3190","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"f10759ece76e17645f840c7136b99cf9a2159b3eabf58e3eac9904cadc22eee5","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"e25deae5b57e05b2cfa2b03ab2ce83c08aa2dea3c0bae697855eaf15a4adbe7b","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"63c0926fcd1c3d6d9456f73ab17a6affcdfc41f7a0fa5971428a57e9ea5cf9e0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"042b80988f014a04dd5808a4545b8a13ca226c9650cb470dc2bf6041fc20aca2","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"62d2f0134c9b53d00823c0731128d446defe4f2434fb84557f4697de70a62789","impliedFormat":1},{"version":"87b266d84f88f6e75394ff6cf0998bd25ad6349fb8816f64c42d33a5c19789c4","impliedFormat":1},{"version":"3274e8af4780f7e39a70aca92a6788fec71e9e094d0321d127d44bbd27b27865","impliedFormat":1},{"version":"396dc8899588d40c46e8caeb0cc306e92bc6c2187b44b26cf47e6e72544ef889","impliedFormat":1},{"version":"8ed8df53be6f8aa62ff077fb2caf0695d29c3e4f1c26c9b12e8eafdf61f49dc9","impliedFormat":1},{"version":"f2249a9b9c1921ba5191a44c8734ac372506b12623393f869e7934cb35e8336c","impliedFormat":1},{"version":"0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","impliedFormat":1},{"version":"db8769554a49b91417c090cb675e857a55fe4dc871f62fa1a6c02bfee03e5a6a","signature":"54dd9d31d9474d77cc7718ee3f9bffe4cd8e5cd5ab541e8934ccb09d426b4f3c"},{"version":"e6248bf8254cd5fc63b20a3f88af0b98bddd16ad7cd3ffb62fe9bd866af69896","signature":"6d108bcad0387dbb1e90a10e84c5f75683548372ab2cd818b7f1e66db07c736a"},{"version":"e8e13943957f81186fa12499ef544b6e338da553c71248f1f5f8278f967f6145","signature":"cd1f2f2a74de78ad07438d674c0b071e59249450c46fc86ec705fe9f698eb3b1"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"dd0109710de4cd93e245121ab86d8c66d20f3ead80074b68e9c3e349c4f53342","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"cf83d90d5faf27b994c2e79af02e32b555dbfe42cd9bd1571445f2168d1f4e2d","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"0e28335ac43f4d94dd2fe6d9e6fa6813570640839addd10d309d7985f33a6308","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f96a48183254c00d24575401f1a761b4ce4927d927407e7862a83e06ce5d6964","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"ac86245c2f31335bfd52cbe7fc760f9fc4f165387875869a478a6d9616a95e72","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"9d96a7ce809392ff2cb99691acf7c62e632fe56897356ba013b689277aca3619","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"27c0a08e343c6a0ae17bd13ba6d44a9758236dc904cd5e4b43456996cd51f520","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"6f80e51ba310608cd71bcdc09a171d7bbfb3b316048601c9ec215ce16a8dcfbc","impliedFormat":1},{"version":"10947bb49601aeec9ea1dddf61ef6e4f8442f949bd40a8008e12b129deb037be","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"2ca2bca6845a7234eff5c3d192727a068fca72ac565f3c819c6b04ccc83dadc0","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"17d06eb5709839c7ce719f0c38ada6f308fb433f2cd6d8c87b35856e07400950","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"2a00d005e3af99cd1cfa75220e60c61b04bfb6be7ca7453bfe2ef6cca37cc03c","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"586eaf66bace2e731cee0ddfbfac326ad74a83c1acfeac4afb2db85ad23226c7","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"d1a14d87cedcf4f0b8173720d6eb29cc02878bf2b6dabf9c9d9cee742f275368","impliedFormat":1},{"version":"e60efae9fe48a2955f66bf4cbf0f082516185b877daf50d9c5e2a009660a7714","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"b37f83e7deea729aa9ce5593f78905afb45b7532fdff63041d374f60059e7852","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[66,[601,603]],"options":{"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictPropertyInitialization":false,"target":9},"referencedMap":[[529,1],[419,2],[422,3],[423,3],[424,3],[425,3],[426,3],[427,3],[428,3],[429,3],[430,3],[431,3],[432,3],[433,3],[434,3],[435,3],[436,3],[437,3],[438,3],[439,3],[440,3],[441,3],[442,3],[443,3],[444,3],[445,3],[446,3],[447,3],[448,3],[449,3],[450,3],[451,3],[452,3],[453,3],[454,3],[455,3],[456,3],[457,3],[458,3],[459,3],[460,3],[461,3],[462,3],[463,3],[464,3],[465,3],[466,3],[467,3],[468,3],[469,3],[470,3],[471,3],[472,3],[473,3],[474,3],[475,3],[476,3],[477,3],[478,3],[479,3],[480,3],[481,3],[482,3],[534,4],[483,3],[484,3],[485,3],[486,3],[487,3],[488,3],[489,3],[490,3],[491,3],[492,3],[493,3],[494,3],[495,3],[496,3],[497,3],[498,3],[499,3],[500,3],[501,3],[502,3],[503,3],[504,3],[505,3],[506,3],[507,3],[508,3],[509,3],[510,3],[511,3],[512,3],[513,3],[514,3],[515,3],[516,3],[517,3],[518,3],[519,3],[520,3],[522,5],[523,6],[524,6],[525,6],[526,6],[527,6],[528,6],[418,7],[530,8],[552,9],[420,10],[551,11],[421,12],[521,13],[550,14],[541,15],[536,16],[537,17],[538,18],[539,19],[540,20],[531,21],[533,22],[532,23],[535,7],[549,24],[545,25],[546,25],[547,26],[548,26],[600,27],[599,10],[417,28],[375,10],[379,29],[376,30],[377,30],[378,30],[382,31],[381,32],[385,33],[383,34],[380,35],[384,36],[387,37],[386,10],[395,38],[396,10],[397,7],[416,39],[405,10],[402,40],[403,40],[401,41],[404,41],[400,42],[398,43],[399,44],[406,7],[413,45],[412,46],[410,7],[411,47],[414,48],[415,7],[408,49],[409,50],[407,50],[157,51],[154,10],[159,52],[158,52],[160,52],[161,53],[163,54],[155,55],[156,55],[162,51],[164,7],[165,7],[244,56],[167,57],[166,7],[168,7],[211,58],[210,59],[213,60],[226,36],[227,34],[239,61],[228,62],[240,63],[209,30],[212,64],[241,65],[242,7],[243,66],[245,7],[247,67],[246,68],[553,69],[598,70],[597,71],[596,72],[595,73],[554,74],[555,7],[556,7],[557,7],[558,7],[559,7],[560,7],[561,7],[570,75],[571,7],[572,10],[573,7],[574,7],[575,7],[576,7],[564,10],[577,10],[578,7],[563,76],[565,77],[562,7],[568,78],[566,76],[567,77],[594,79],[579,7],[580,77],[581,7],[582,7],[583,10],[584,7],[585,7],[586,7],[587,7],[588,7],[589,7],[590,80],[591,7],[592,7],[569,7],[593,7],[169,7],[170,7],[171,7],[172,7],[173,7],[174,7],[175,7],[184,81],[185,7],[186,10],[187,7],[188,7],[189,7],[190,7],[178,10],[191,10],[192,7],[177,82],[179,83],[176,7],[182,84],[180,82],[181,83],[208,85],[193,7],[194,83],[195,7],[196,7],[197,10],[198,7],[199,7],[200,7],[201,7],[202,7],[203,7],[204,86],[205,7],[206,7],[183,7],[207,7],[252,87],[248,34],[249,34],[251,88],[250,7],[262,89],[253,34],[255,90],[254,7],[257,91],[256,10],[260,92],[261,93],[258,94],[259,94],[394,95],[389,10],[388,10],[391,96],[393,97],[390,98],[392,99],[323,100],[324,101],[304,102],[305,10],[328,103],[327,104],[337,105],[330,61],[331,10],[329,106],[336,100],[332,107],[333,107],[335,108],[334,107],[326,7],[306,7],[321,109],[308,110],[307,7],[315,111],[310,112],[311,112],[316,7],[313,7],[312,112],[309,7],[318,7],[317,112],[314,112],[319,7],[320,113],[360,7],[361,10],[364,114],[372,115],[365,10],[366,10],[367,10],[368,10],[369,10],[370,10],[371,10],[325,116],[338,117],[322,118],[373,119],[263,7],[264,120],[267,121],[269,122],[268,7],[270,121],[271,121],[273,123],[265,7],[272,7],[266,10],[284,124],[285,35],[286,10],[290,125],[287,7],[288,7],[289,126],[283,127],[282,7],[152,128],[137,7],[150,129],[151,7],[153,130],[232,131],[233,132],[234,7],[235,133],[231,134],[229,7],[230,7],[238,135],[236,10],[237,7],[142,10],[146,10],[138,10],[139,10],[140,10],[141,10],[149,136],[143,137],[144,7],[145,138],[148,10],[147,7],[216,10],[222,7],[217,7],[218,7],[219,7],[223,7],[225,139],[220,7],[221,7],[224,7],[215,140],[214,7],[291,7],[339,141],[340,142],[341,10],[342,143],[343,10],[344,10],[345,10],[346,7],[347,141],[348,7],[350,144],[351,145],[349,7],[352,10],[353,10],[374,146],[354,10],[355,7],[356,10],[357,141],[358,10],[359,10],[67,147],[68,148],[69,10],[70,10],[83,149],[84,150],[81,151],[82,152],[85,153],[88,154],[90,155],[91,156],[73,157],[92,10],[96,158],[94,159],[95,10],[89,10],[98,160],[74,161],[100,162],[101,163],[104,164],[103,165],[99,166],[102,167],[97,168],[105,169],[106,170],[110,171],[111,172],[109,173],[87,174],[75,10],[78,175],[112,176],[113,177],[114,177],[71,10],[116,178],[115,177],[136,179],[76,10],[80,180],[117,181],[118,10],[72,10],[108,182],[124,183],[123,184],[120,10],[121,185],[122,10],[119,186],[107,187],[125,188],[126,189],[127,154],[128,154],[129,190],[93,10],[131,191],[132,192],[86,10],[133,10],[134,193],[130,10],[77,194],[79,168],[135,147],[275,195],[279,10],[277,196],[280,10],[278,197],[281,198],[276,7],[274,10],[292,10],[294,7],[293,199],[295,200],[296,201],[297,199],[298,199],[299,202],[303,203],[300,199],[301,202],[302,10],[543,204],[544,205],[542,7],[363,206],[362,10],[665,207],[666,207],[667,208],[606,209],[668,210],[669,211],[670,212],[604,10],[671,213],[672,214],[673,215],[674,216],[675,217],[676,218],[677,218],[678,219],[679,220],[680,221],[681,222],[607,10],[605,10],[682,223],[683,224],[684,225],[724,226],[685,227],[686,228],[687,227],[688,229],[689,230],[690,231],[691,232],[692,232],[693,232],[694,233],[695,234],[696,235],[697,236],[698,237],[699,238],[700,238],[701,239],[702,10],[703,10],[704,240],[705,241],[706,240],[707,242],[708,243],[709,244],[710,245],[711,246],[712,247],[713,248],[714,249],[715,250],[716,251],[717,252],[718,253],[719,254],[720,255],[721,256],[608,227],[609,10],[610,257],[611,258],[612,10],[613,259],[614,10],[656,260],[657,261],[658,262],[659,262],[660,263],[661,10],[662,210],[663,264],[664,261],[722,265],[723,266],[63,10],[64,10],[12,10],[10,10],[11,10],[16,10],[15,10],[2,10],[17,10],[18,10],[19,10],[20,10],[21,10],[22,10],[23,10],[24,10],[3,10],[25,10],[26,10],[4,10],[27,10],[31,10],[28,10],[29,10],[30,10],[32,10],[33,10],[34,10],[5,10],[35,10],[36,10],[37,10],[38,10],[6,10],[42,10],[39,10],[40,10],[41,10],[43,10],[7,10],[44,10],[49,10],[50,10],[45,10],[46,10],[47,10],[48,10],[8,10],[54,10],[51,10],[52,10],[53,10],[55,10],[9,10],[56,10],[65,10],[57,10],[58,10],[60,10],[59,10],[1,10],[61,10],[62,10],[14,10],[13,10],[632,267],[644,268],[630,269],[645,202],[654,270],[621,271],[622,272],[620,273],[653,274],[648,275],[652,276],[624,277],[641,278],[623,279],[651,280],[618,281],[619,275],[625,282],[626,10],[631,283],[629,282],[616,284],[655,285],[646,286],[635,287],[634,282],[636,288],[639,289],[633,290],[637,291],[649,274],[627,292],[628,293],[640,294],[617,202],[643,295],[642,282],[638,296],[647,10],[615,10],[650,297],[66,10],[603,298],[601,10],[602,299]],"version":"5.9.3"}
|