@rsdoctor/cli 1.5.6 → 1.5.8

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/index.cjs CHANGED
@@ -1,1670 +1,5 @@
1
- /*! LICENSE: index.cjs.LICENSE.txt */
2
1
  const __rslib_import_meta_url__ = "u" < typeof document ? new (require('url'.replace('', ''))).URL('file:' + __filename).href : document.currentScript && document.currentScript.src || new URL('main.js', document.baseURI).href;
3
2
  var __webpack_modules__ = {
4
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/index.js" (module, __unused_rspack_exports, __webpack_require__) {
5
- module.exports = {
6
- parallel: __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/parallel.js"),
7
- serial: __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/serial.js"),
8
- serialOrdered: __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/serialOrdered.js")
9
- };
10
- },
11
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/abort.js" (module) {
12
- module.exports = function(state) {
13
- Object.keys(state.jobs).forEach(clean.bind(state)), state.jobs = {};
14
- };
15
- function clean(key) {
16
- 'function' == typeof this.jobs[key] && this.jobs[key]();
17
- }
18
- },
19
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/async.js" (module, __unused_rspack_exports, __webpack_require__) {
20
- var defer = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/defer.js");
21
- module.exports = function(callback) {
22
- var isAsync = !1;
23
- return defer(function() {
24
- isAsync = !0;
25
- }), function(err, result) {
26
- isAsync ? callback(err, result) : defer(function() {
27
- callback(err, result);
28
- });
29
- };
30
- };
31
- },
32
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/defer.js" (module) {
33
- module.exports = function(fn) {
34
- var nextTick = 'function' == typeof setImmediate ? setImmediate : 'object' == typeof process && 'function' == typeof process.nextTick ? process.nextTick : null;
35
- nextTick ? nextTick(fn) : setTimeout(fn, 0);
36
- };
37
- },
38
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/iterate.js" (module, __unused_rspack_exports, __webpack_require__) {
39
- var async = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/async.js"), abort = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/abort.js");
40
- module.exports = function(list, iterator, state, callback) {
41
- var iterator1, key, item, callback1, key1 = state.keyedList ? state.keyedList[state.index] : state.index;
42
- state.jobs[key1] = (iterator1 = iterator, key = key1, item = list[key1], callback1 = function(error, output) {
43
- key1 in state.jobs && (delete state.jobs[key1], error ? abort(state) : state.results[key1] = output, callback(error, state.results));
44
- }, 2 == iterator1.length ? iterator1(item, async(callback1)) : iterator1(item, key, async(callback1)));
45
- };
46
- },
47
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/state.js" (module) {
48
- module.exports = function(list, sortMethod) {
49
- var isNamedList = !Array.isArray(list), initState = {
50
- index: 0,
51
- keyedList: isNamedList || sortMethod ? Object.keys(list) : null,
52
- jobs: {},
53
- results: isNamedList ? {} : [],
54
- size: isNamedList ? Object.keys(list).length : list.length
55
- };
56
- return sortMethod && initState.keyedList.sort(isNamedList ? sortMethod : function(a, b) {
57
- return sortMethod(list[a], list[b]);
58
- }), initState;
59
- };
60
- },
61
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/terminator.js" (module, __unused_rspack_exports, __webpack_require__) {
62
- var abort = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/abort.js"), async = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/async.js");
63
- module.exports = function(callback) {
64
- Object.keys(this.jobs).length && (this.index = this.size, abort(this), async(callback)(null, this.results));
65
- };
66
- },
67
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/parallel.js" (module, __unused_rspack_exports, __webpack_require__) {
68
- var iterate = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/iterate.js"), initState = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/state.js"), terminator = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/terminator.js");
69
- module.exports = function(list, iterator, callback) {
70
- for(var state = initState(list); state.index < (state.keyedList || list).length;)iterate(list, iterator, state, function(error, result) {
71
- error ? callback(error, result) : 0 === Object.keys(state.jobs).length && callback(null, state.results);
72
- }), state.index++;
73
- return terminator.bind(state, callback);
74
- };
75
- },
76
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/serial.js" (module, __unused_rspack_exports, __webpack_require__) {
77
- var serialOrdered = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/serialOrdered.js");
78
- module.exports = function(list, iterator, callback) {
79
- return serialOrdered(list, iterator, null, callback);
80
- };
81
- },
82
- "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/serialOrdered.js" (module, __unused_rspack_exports, __webpack_require__) {
83
- var iterate = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/iterate.js"), initState = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/state.js"), terminator = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/terminator.js");
84
- function ascending(a, b) {
85
- return a < b ? -1 : +(a > b);
86
- }
87
- module.exports = function(list, iterator, sortMethod, callback) {
88
- var state = initState(list, sortMethod);
89
- return iterate(list, iterator, state, function iteratorHandler(error, result) {
90
- error ? callback(error, result) : (state.index++, state.index < (state.keyedList || list).length) ? iterate(list, iterator, state, iteratorHandler) : callback(null, state.results);
91
- }), terminator.bind(state, callback);
92
- }, module.exports.ascending = ascending, module.exports.descending = function(a, b) {
93
- return -1 * ascending(a, b);
94
- };
95
- },
96
- "../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/actualApply.js" (module, __unused_rspack_exports, __webpack_require__) {
97
- "use strict";
98
- var bind = __webpack_require__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js"), $apply = __webpack_require__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionApply.js"), $call = __webpack_require__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionCall.js");
99
- module.exports = __webpack_require__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/reflectApply.js") || bind.call($call, $apply);
100
- },
101
- "../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionApply.js" (module) {
102
- "use strict";
103
- module.exports = Function.prototype.apply;
104
- },
105
- "../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionCall.js" (module) {
106
- "use strict";
107
- module.exports = Function.prototype.call;
108
- },
109
- "../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/index.js" (module, __unused_rspack_exports, __webpack_require__) {
110
- "use strict";
111
- var bind = __webpack_require__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js"), $TypeError = __webpack_require__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js"), $call = __webpack_require__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionCall.js"), $actualApply = __webpack_require__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/actualApply.js");
112
- module.exports = function(args) {
113
- if (args.length < 1 || 'function' != typeof args[0]) throw new $TypeError('a function is required');
114
- return $actualApply(bind, $call, args);
115
- };
116
- },
117
- "../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/reflectApply.js" (module) {
118
- "use strict";
119
- module.exports = "u" > typeof Reflect && Reflect && Reflect.apply;
120
- },
121
- "../../node_modules/.pnpm/combined-stream@1.0.8/node_modules/combined-stream/lib/combined_stream.js" (module, __unused_rspack_exports, __webpack_require__) {
122
- var util = __webpack_require__("util"), Stream = __webpack_require__("stream").Stream, DelayedStream = __webpack_require__("../../node_modules/.pnpm/delayed-stream@1.0.0/node_modules/delayed-stream/lib/delayed_stream.js");
123
- function CombinedStream() {
124
- this.writable = !1, this.readable = !0, this.dataSize = 0, this.maxDataSize = 2097152, this.pauseStreams = !0, this._released = !1, this._streams = [], this._currentStream = null, this._insideLoop = !1, this._pendingNext = !1;
125
- }
126
- module.exports = CombinedStream, util.inherits(CombinedStream, Stream), CombinedStream.create = function(options) {
127
- var combinedStream = new this();
128
- for(var option in options = options || {})combinedStream[option] = options[option];
129
- return combinedStream;
130
- }, CombinedStream.isStreamLike = function(stream) {
131
- return 'function' != typeof stream && 'string' != typeof stream && 'boolean' != typeof stream && 'number' != typeof stream && !Buffer.isBuffer(stream);
132
- }, CombinedStream.prototype.append = function(stream) {
133
- if (CombinedStream.isStreamLike(stream)) {
134
- if (!(stream instanceof DelayedStream)) {
135
- var newStream = DelayedStream.create(stream, {
136
- maxDataSize: 1 / 0,
137
- pauseStream: this.pauseStreams
138
- });
139
- stream.on('data', this._checkDataSize.bind(this)), stream = newStream;
140
- }
141
- this._handleErrors(stream), this.pauseStreams && stream.pause();
142
- }
143
- return this._streams.push(stream), this;
144
- }, CombinedStream.prototype.pipe = function(dest, options) {
145
- return Stream.prototype.pipe.call(this, dest, options), this.resume(), dest;
146
- }, CombinedStream.prototype._getNext = function() {
147
- if (this._currentStream = null, this._insideLoop) {
148
- this._pendingNext = !0;
149
- return;
150
- }
151
- this._insideLoop = !0;
152
- try {
153
- do this._pendingNext = !1, this._realGetNext();
154
- while (this._pendingNext);
155
- } finally{
156
- this._insideLoop = !1;
157
- }
158
- }, CombinedStream.prototype._realGetNext = function() {
159
- var stream = this._streams.shift();
160
- void 0 === stream ? this.end() : 'function' != typeof stream ? this._pipeNext(stream) : stream((function(stream) {
161
- CombinedStream.isStreamLike(stream) && (stream.on('data', this._checkDataSize.bind(this)), this._handleErrors(stream)), this._pipeNext(stream);
162
- }).bind(this));
163
- }, CombinedStream.prototype._pipeNext = function(stream) {
164
- if (this._currentStream = stream, CombinedStream.isStreamLike(stream)) {
165
- stream.on('end', this._getNext.bind(this)), stream.pipe(this, {
166
- end: !1
167
- });
168
- return;
169
- }
170
- this.write(stream), this._getNext();
171
- }, CombinedStream.prototype._handleErrors = function(stream) {
172
- var self1 = this;
173
- stream.on('error', function(err) {
174
- self1._emitError(err);
175
- });
176
- }, CombinedStream.prototype.write = function(data) {
177
- this.emit('data', data);
178
- }, CombinedStream.prototype.pause = function() {
179
- this.pauseStreams && (this.pauseStreams && this._currentStream && 'function' == typeof this._currentStream.pause && this._currentStream.pause(), this.emit('pause'));
180
- }, CombinedStream.prototype.resume = function() {
181
- this._released || (this._released = !0, this.writable = !0, this._getNext()), this.pauseStreams && this._currentStream && 'function' == typeof this._currentStream.resume && this._currentStream.resume(), this.emit('resume');
182
- }, CombinedStream.prototype.end = function() {
183
- this._reset(), this.emit('end');
184
- }, CombinedStream.prototype.destroy = function() {
185
- this._reset(), this.emit('close');
186
- }, CombinedStream.prototype._reset = function() {
187
- this.writable = !1, this._streams = [], this._currentStream = null;
188
- }, CombinedStream.prototype._checkDataSize = function() {
189
- if (this._updateDataSize(), !(this.dataSize <= this.maxDataSize)) {
190
- var message = 'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.';
191
- this._emitError(Error(message));
192
- }
193
- }, CombinedStream.prototype._updateDataSize = function() {
194
- this.dataSize = 0;
195
- var self1 = this;
196
- this._streams.forEach(function(stream) {
197
- stream.dataSize && (self1.dataSize += stream.dataSize);
198
- }), this._currentStream && this._currentStream.dataSize && (this.dataSize += this._currentStream.dataSize);
199
- }, CombinedStream.prototype._emitError = function(err) {
200
- this._reset(), this.emit('error', err);
201
- };
202
- },
203
- "../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/browser.js" (module, exports1, __webpack_require__) {
204
- let warned;
205
- exports1.formatArgs = function(args) {
206
- if (args[0] = (this.useColors ? '%c' : '') + this.namespace + (this.useColors ? ' %c' : ' ') + args[0] + (this.useColors ? '%c ' : ' ') + '+' + module.exports.humanize(this.diff), !this.useColors) return;
207
- let c = 'color: ' + this.color;
208
- args.splice(1, 0, c, 'color: inherit');
209
- let index = 0, lastC = 0;
210
- args[0].replace(/%[a-zA-Z%]/g, (match)=>{
211
- '%%' !== match && (index++, '%c' === match && (lastC = index));
212
- }), args.splice(lastC, 0, c);
213
- }, exports1.save = function(namespaces) {
214
- try {
215
- namespaces ? exports1.storage.setItem('debug', namespaces) : exports1.storage.removeItem('debug');
216
- } catch (error) {}
217
- }, exports1.load = function() {
218
- let r;
219
- try {
220
- r = exports1.storage.getItem('debug') || exports1.storage.getItem('DEBUG');
221
- } catch (error) {}
222
- return !r && "u" > typeof process && 'env' in process && (r = process.env.DEBUG), r;
223
- }, exports1.useColors = function() {
224
- let m;
225
- return "u" > typeof window && !!window.process && ('renderer' === window.process.type || !!window.process.__nwjs) || !("u" > typeof navigator && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) && ("u" > typeof document && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || "u" > typeof window && window.console && (window.console.firebug || window.console.exception && window.console.table) || "u" > typeof navigator && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || "u" > typeof navigator && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/));
226
- }, exports1.storage = function() {
227
- try {
228
- return localStorage;
229
- } catch (error) {}
230
- }(), warned = !1, exports1.destroy = ()=>{
231
- warned || (warned = !0, console.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'));
232
- }, exports1.colors = [
233
- '#0000CC',
234
- '#0000FF',
235
- '#0033CC',
236
- '#0033FF',
237
- '#0066CC',
238
- '#0066FF',
239
- '#0099CC',
240
- '#0099FF',
241
- '#00CC00',
242
- '#00CC33',
243
- '#00CC66',
244
- '#00CC99',
245
- '#00CCCC',
246
- '#00CCFF',
247
- '#3300CC',
248
- '#3300FF',
249
- '#3333CC',
250
- '#3333FF',
251
- '#3366CC',
252
- '#3366FF',
253
- '#3399CC',
254
- '#3399FF',
255
- '#33CC00',
256
- '#33CC33',
257
- '#33CC66',
258
- '#33CC99',
259
- '#33CCCC',
260
- '#33CCFF',
261
- '#6600CC',
262
- '#6600FF',
263
- '#6633CC',
264
- '#6633FF',
265
- '#66CC00',
266
- '#66CC33',
267
- '#9900CC',
268
- '#9900FF',
269
- '#9933CC',
270
- '#9933FF',
271
- '#99CC00',
272
- '#99CC33',
273
- '#CC0000',
274
- '#CC0033',
275
- '#CC0066',
276
- '#CC0099',
277
- '#CC00CC',
278
- '#CC00FF',
279
- '#CC3300',
280
- '#CC3333',
281
- '#CC3366',
282
- '#CC3399',
283
- '#CC33CC',
284
- '#CC33FF',
285
- '#CC6600',
286
- '#CC6633',
287
- '#CC9900',
288
- '#CC9933',
289
- '#CCCC00',
290
- '#CCCC33',
291
- '#FF0000',
292
- '#FF0033',
293
- '#FF0066',
294
- '#FF0099',
295
- '#FF00CC',
296
- '#FF00FF',
297
- '#FF3300',
298
- '#FF3333',
299
- '#FF3366',
300
- '#FF3399',
301
- '#FF33CC',
302
- '#FF33FF',
303
- '#FF6600',
304
- '#FF6633',
305
- '#FF9900',
306
- '#FF9933',
307
- '#FFCC00',
308
- '#FFCC33'
309
- ], exports1.log = console.debug || console.log || (()=>{}), module.exports = __webpack_require__("../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/common.js")(exports1);
310
- let { formatters } = module.exports;
311
- formatters.j = function(v) {
312
- try {
313
- return JSON.stringify(v);
314
- } catch (error) {
315
- return '[UnexpectedJSONParseError]: ' + error.message;
316
- }
317
- };
318
- },
319
- "../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/common.js" (module, __unused_rspack_exports, __webpack_require__) {
320
- module.exports = function(env) {
321
- function createDebug(namespace) {
322
- let prevTime, namespacesCache, enabledCache, enableOverride = null;
323
- function debug(...args) {
324
- if (!debug.enabled) return;
325
- let curr = Number(new Date());
326
- debug.diff = curr - (prevTime || curr), debug.prev = prevTime, debug.curr = curr, prevTime = curr, args[0] = createDebug.coerce(args[0]), 'string' != typeof args[0] && args.unshift('%O');
327
- let index = 0;
328
- args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format)=>{
329
- if ('%%' === match) return '%';
330
- index++;
331
- let formatter = createDebug.formatters[format];
332
- if ('function' == typeof formatter) {
333
- let val = args[index];
334
- match = formatter.call(debug, val), args.splice(index, 1), index--;
335
- }
336
- return match;
337
- }), createDebug.formatArgs.call(debug, args), (debug.log || createDebug.log).apply(debug, args);
338
- }
339
- return debug.namespace = namespace, debug.useColors = createDebug.useColors(), debug.color = createDebug.selectColor(namespace), debug.extend = extend, debug.destroy = createDebug.destroy, Object.defineProperty(debug, 'enabled', {
340
- enumerable: !0,
341
- configurable: !1,
342
- get: ()=>null !== enableOverride ? enableOverride : (namespacesCache !== createDebug.namespaces && (namespacesCache = createDebug.namespaces, enabledCache = createDebug.enabled(namespace)), enabledCache),
343
- set: (v)=>{
344
- enableOverride = v;
345
- }
346
- }), 'function' == typeof createDebug.init && createDebug.init(debug), debug;
347
- }
348
- function extend(namespace, delimiter) {
349
- let newDebug = createDebug(this.namespace + (void 0 === delimiter ? ':' : delimiter) + namespace);
350
- return newDebug.log = this.log, newDebug;
351
- }
352
- function matchesTemplate(search, template) {
353
- let searchIndex = 0, templateIndex = 0, starIndex = -1, matchIndex = 0;
354
- for(; searchIndex < search.length;)if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || '*' === template[templateIndex])) '*' === template[templateIndex] ? (starIndex = templateIndex, matchIndex = searchIndex) : searchIndex++, templateIndex++;
355
- else {
356
- if (-1 === starIndex) return !1;
357
- templateIndex = starIndex + 1, searchIndex = ++matchIndex;
358
- }
359
- for(; templateIndex < template.length && '*' === template[templateIndex];)templateIndex++;
360
- return templateIndex === template.length;
361
- }
362
- return createDebug.debug = createDebug, createDebug.default = createDebug, createDebug.coerce = function(val) {
363
- return val instanceof Error ? val.stack || val.message : val;
364
- }, createDebug.disable = function() {
365
- let namespaces = [
366
- ...createDebug.names,
367
- ...createDebug.skips.map((namespace)=>'-' + namespace)
368
- ].join(',');
369
- return createDebug.enable(''), namespaces;
370
- }, createDebug.enable = function(namespaces) {
371
- for (let ns of (createDebug.save(namespaces), createDebug.namespaces = namespaces, createDebug.names = [], createDebug.skips = [], ('string' == typeof namespaces ? namespaces : '').trim().replace(/\s+/g, ',').split(',').filter(Boolean)))'-' === ns[0] ? createDebug.skips.push(ns.slice(1)) : createDebug.names.push(ns);
372
- }, createDebug.enabled = function(name) {
373
- for (let skip of createDebug.skips)if (matchesTemplate(name, skip)) return !1;
374
- for (let ns of createDebug.names)if (matchesTemplate(name, ns)) return !0;
375
- return !1;
376
- }, createDebug.humanize = __webpack_require__("../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js"), createDebug.destroy = function() {
377
- console.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');
378
- }, Object.keys(env).forEach((key)=>{
379
- createDebug[key] = env[key];
380
- }), createDebug.names = [], createDebug.skips = [], createDebug.formatters = {}, createDebug.selectColor = function(namespace) {
381
- let hash = 0;
382
- for(let i = 0; i < namespace.length; i++)hash = (hash << 5) - hash + namespace.charCodeAt(i) | 0;
383
- return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
384
- }, createDebug.enable(createDebug.load()), createDebug;
385
- };
386
- },
387
- "../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/index.js" (module, __unused_rspack_exports, __webpack_require__) {
388
- "u" < typeof process || 'renderer' === process.type || !0 === process.browser || process.__nwjs ? module.exports = __webpack_require__("../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/browser.js") : module.exports = __webpack_require__("../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/node.js");
389
- },
390
- "../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/node.js" (module, exports1, __webpack_require__) {
391
- let tty = __webpack_require__("tty"), util = __webpack_require__("util");
392
- exports1.init = function(debug) {
393
- debug.inspectOpts = {};
394
- let keys = Object.keys(exports1.inspectOpts);
395
- for(let i = 0; i < keys.length; i++)debug.inspectOpts[keys[i]] = exports1.inspectOpts[keys[i]];
396
- }, exports1.log = function(...args) {
397
- return process.stderr.write(util.formatWithOptions(exports1.inspectOpts, ...args) + '\n');
398
- }, exports1.formatArgs = function(args) {
399
- let { namespace: name, useColors } = this;
400
- if (useColors) {
401
- let c = this.color, colorCode = '\u001B[3' + (c < 8 ? c : '8;5;' + c), prefix = ` ${colorCode};1m${name} \u001B[0m`;
402
- args[0] = prefix + args[0].split('\n').join('\n' + prefix), args.push(colorCode + 'm+' + module.exports.humanize(this.diff) + '\u001B[0m');
403
- } else args[0] = (exports1.inspectOpts.hideDate ? '' : new Date().toISOString() + ' ') + name + ' ' + args[0];
404
- }, exports1.save = function(namespaces) {
405
- namespaces ? process.env.DEBUG = namespaces : delete process.env.DEBUG;
406
- }, exports1.load = function() {
407
- return process.env.DEBUG;
408
- }, exports1.useColors = function() {
409
- return 'colors' in exports1.inspectOpts ? !!exports1.inspectOpts.colors : tty.isatty(process.stderr.fd);
410
- }, exports1.destroy = util.deprecate(()=>{}, 'Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'), exports1.colors = [
411
- 6,
412
- 2,
413
- 3,
414
- 4,
415
- 5,
416
- 1
417
- ];
418
- try {
419
- let supportsColor = __webpack_require__("../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js");
420
- supportsColor && (supportsColor.stderr || supportsColor).level >= 2 && (exports1.colors = [
421
- 20,
422
- 21,
423
- 26,
424
- 27,
425
- 32,
426
- 33,
427
- 38,
428
- 39,
429
- 40,
430
- 41,
431
- 42,
432
- 43,
433
- 44,
434
- 45,
435
- 56,
436
- 57,
437
- 62,
438
- 63,
439
- 68,
440
- 69,
441
- 74,
442
- 75,
443
- 76,
444
- 77,
445
- 78,
446
- 79,
447
- 80,
448
- 81,
449
- 92,
450
- 93,
451
- 98,
452
- 99,
453
- 112,
454
- 113,
455
- 128,
456
- 129,
457
- 134,
458
- 135,
459
- 148,
460
- 149,
461
- 160,
462
- 161,
463
- 162,
464
- 163,
465
- 164,
466
- 165,
467
- 166,
468
- 167,
469
- 168,
470
- 169,
471
- 170,
472
- 171,
473
- 172,
474
- 173,
475
- 178,
476
- 179,
477
- 184,
478
- 185,
479
- 196,
480
- 197,
481
- 198,
482
- 199,
483
- 200,
484
- 201,
485
- 202,
486
- 203,
487
- 204,
488
- 205,
489
- 206,
490
- 207,
491
- 208,
492
- 209,
493
- 214,
494
- 215,
495
- 220,
496
- 221
497
- ]);
498
- } catch (error) {}
499
- exports1.inspectOpts = Object.keys(process.env).filter((key)=>/^debug_/i.test(key)).reduce((obj, key)=>{
500
- let prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k)=>k.toUpperCase()), val = process.env[key];
501
- return val = !!/^(yes|on|true|enabled)$/i.test(val) || !/^(no|off|false|disabled)$/i.test(val) && ('null' === val ? null : Number(val)), obj[prop] = val, obj;
502
- }, {}), module.exports = __webpack_require__("../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/common.js")(exports1);
503
- let { formatters } = module.exports;
504
- formatters.o = function(v) {
505
- return this.inspectOpts.colors = this.useColors, util.inspect(v, this.inspectOpts).split('\n').map((str)=>str.trim()).join(' ');
506
- }, formatters.O = function(v) {
507
- return this.inspectOpts.colors = this.useColors, util.inspect(v, this.inspectOpts);
508
- };
509
- },
510
- "../../node_modules/.pnpm/delayed-stream@1.0.0/node_modules/delayed-stream/lib/delayed_stream.js" (module, __unused_rspack_exports, __webpack_require__) {
511
- var Stream = __webpack_require__("stream").Stream, util = __webpack_require__("util");
512
- function DelayedStream() {
513
- this.source = null, this.dataSize = 0, this.maxDataSize = 1048576, this.pauseStream = !0, this._maxDataSizeExceeded = !1, this._released = !1, this._bufferedEvents = [];
514
- }
515
- module.exports = DelayedStream, util.inherits(DelayedStream, Stream), DelayedStream.create = function(source, options) {
516
- var delayedStream = new this();
517
- for(var option in options = options || {})delayedStream[option] = options[option];
518
- delayedStream.source = source;
519
- var realEmit = source.emit;
520
- return source.emit = function() {
521
- return delayedStream._handleEmit(arguments), realEmit.apply(source, arguments);
522
- }, source.on('error', function() {}), delayedStream.pauseStream && source.pause(), delayedStream;
523
- }, Object.defineProperty(DelayedStream.prototype, 'readable', {
524
- configurable: !0,
525
- enumerable: !0,
526
- get: function() {
527
- return this.source.readable;
528
- }
529
- }), DelayedStream.prototype.setEncoding = function() {
530
- return this.source.setEncoding.apply(this.source, arguments);
531
- }, DelayedStream.prototype.resume = function() {
532
- this._released || this.release(), this.source.resume();
533
- }, DelayedStream.prototype.pause = function() {
534
- this.source.pause();
535
- }, DelayedStream.prototype.release = function() {
536
- this._released = !0, this._bufferedEvents.forEach((function(args) {
537
- this.emit.apply(this, args);
538
- }).bind(this)), this._bufferedEvents = [];
539
- }, DelayedStream.prototype.pipe = function() {
540
- var r = Stream.prototype.pipe.apply(this, arguments);
541
- return this.resume(), r;
542
- }, DelayedStream.prototype._handleEmit = function(args) {
543
- this._released ? this.emit.apply(this, args) : ('data' === args[0] && (this.dataSize += args[1].length, this._checkIfMaxDataSizeExceeded()), this._bufferedEvents.push(args));
544
- }, DelayedStream.prototype._checkIfMaxDataSizeExceeded = function() {
545
- if (!this._maxDataSizeExceeded && !(this.dataSize <= this.maxDataSize)) {
546
- this._maxDataSizeExceeded = !0;
547
- var message = 'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.';
548
- this.emit('error', Error(message));
549
- }
550
- };
551
- },
552
- "../../node_modules/.pnpm/dunder-proto@1.0.1/node_modules/dunder-proto/get.js" (module, __unused_rspack_exports, __webpack_require__) {
553
- "use strict";
554
- var hasProtoAccessor, callBind = __webpack_require__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/index.js"), gOPD = __webpack_require__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js");
555
- try {
556
- hasProtoAccessor = [].__proto__ === Array.prototype;
557
- } catch (e) {
558
- if (!e || 'object' != typeof e || !('code' in e) || 'ERR_PROTO_ACCESS' !== e.code) throw e;
559
- }
560
- var desc = !!hasProtoAccessor && gOPD && gOPD(Object.prototype, '__proto__'), $Object = Object, $getPrototypeOf = $Object.getPrototypeOf;
561
- module.exports = desc && 'function' == typeof desc.get ? callBind([
562
- desc.get
563
- ]) : 'function' == typeof $getPrototypeOf && function(value) {
564
- return $getPrototypeOf(null == value ? value : $Object(value));
565
- };
566
- },
567
- "../../node_modules/.pnpm/es-define-property@1.0.1/node_modules/es-define-property/index.js" (module) {
568
- "use strict";
569
- var $defineProperty = Object.defineProperty || !1;
570
- if ($defineProperty) try {
571
- $defineProperty({}, 'a', {
572
- value: 1
573
- });
574
- } catch (e) {
575
- $defineProperty = !1;
576
- }
577
- module.exports = $defineProperty;
578
- },
579
- "../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/eval.js" (module) {
580
- "use strict";
581
- module.exports = EvalError;
582
- },
583
- "../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/index.js" (module) {
584
- "use strict";
585
- module.exports = Error;
586
- },
587
- "../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/range.js" (module) {
588
- "use strict";
589
- module.exports = RangeError;
590
- },
591
- "../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/ref.js" (module) {
592
- "use strict";
593
- module.exports = ReferenceError;
594
- },
595
- "../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/syntax.js" (module) {
596
- "use strict";
597
- module.exports = SyntaxError;
598
- },
599
- "../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js" (module) {
600
- "use strict";
601
- module.exports = TypeError;
602
- },
603
- "../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/uri.js" (module) {
604
- "use strict";
605
- module.exports = URIError;
606
- },
607
- "../../node_modules/.pnpm/es-object-atoms@1.1.1/node_modules/es-object-atoms/index.js" (module) {
608
- "use strict";
609
- module.exports = Object;
610
- },
611
- "../../node_modules/.pnpm/es-set-tostringtag@2.1.0/node_modules/es-set-tostringtag/index.js" (module, __unused_rspack_exports, __webpack_require__) {
612
- "use strict";
613
- var $defineProperty = __webpack_require__("../../node_modules/.pnpm/get-intrinsic@1.3.0/node_modules/get-intrinsic/index.js")('%Object.defineProperty%', !0), hasToStringTag = __webpack_require__("../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js")(), hasOwn = __webpack_require__("../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js"), $TypeError = __webpack_require__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js"), toStringTag = hasToStringTag ? Symbol.toStringTag : null;
614
- module.exports = function(object, value) {
615
- var overrideIfSet = arguments.length > 2 && !!arguments[2] && arguments[2].force, nonConfigurable = arguments.length > 2 && !!arguments[2] && arguments[2].nonConfigurable;
616
- if (void 0 !== overrideIfSet && 'boolean' != typeof overrideIfSet || void 0 !== nonConfigurable && 'boolean' != typeof nonConfigurable) throw new $TypeError('if provided, the `overrideIfSet` and `nonConfigurable` options must be booleans');
617
- toStringTag && (overrideIfSet || !hasOwn(object, toStringTag)) && ($defineProperty ? $defineProperty(object, toStringTag, {
618
- configurable: !nonConfigurable,
619
- enumerable: !1,
620
- value: value,
621
- writable: !1
622
- }) : object[toStringTag] = value);
623
- };
624
- },
625
- "../../node_modules/.pnpm/follow-redirects@1.15.11/node_modules/follow-redirects/debug.js" (module, __unused_rspack_exports, __webpack_require__) {
626
- var debug;
627
- module.exports = function() {
628
- if (!debug) {
629
- try {
630
- debug = __webpack_require__("../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/index.js")("follow-redirects");
631
- } catch (error) {}
632
- "function" != typeof debug && (debug = function() {});
633
- }
634
- debug.apply(null, arguments);
635
- };
636
- },
637
- "../../node_modules/.pnpm/follow-redirects@1.15.11/node_modules/follow-redirects/index.js" (module, __unused_rspack_exports, __webpack_require__) {
638
- var looksLikeNode, looksLikeBrowser, looksLikeV8, url = __webpack_require__("url"), URL1 = url.URL, http = __webpack_require__("http"), https = __webpack_require__("https"), Writable = __webpack_require__("stream").Writable, assert = __webpack_require__("assert"), debug = __webpack_require__("../../node_modules/.pnpm/follow-redirects@1.15.11/node_modules/follow-redirects/debug.js");
639
- looksLikeNode = "u" > typeof process, looksLikeBrowser = "u" > typeof window && "u" > typeof document, looksLikeV8 = isFunction(Error.captureStackTrace), looksLikeNode || !looksLikeBrowser && looksLikeV8 || console.warn("The follow-redirects package should be excluded from browser builds.");
640
- var useNativeURL = !1;
641
- try {
642
- assert(new URL1(""));
643
- } catch (error) {
644
- useNativeURL = "ERR_INVALID_URL" === error.code;
645
- }
646
- var preservedUrlFields = [
647
- "auth",
648
- "host",
649
- "hostname",
650
- "href",
651
- "path",
652
- "pathname",
653
- "port",
654
- "protocol",
655
- "query",
656
- "search",
657
- "hash"
658
- ], events = [
659
- "abort",
660
- "aborted",
661
- "connect",
662
- "error",
663
- "socket",
664
- "timeout"
665
- ], eventHandlers = Object.create(null);
666
- events.forEach(function(event) {
667
- eventHandlers[event] = function(arg1, arg2, arg3) {
668
- this._redirectable.emit(event, arg1, arg2, arg3);
669
- };
670
- });
671
- var InvalidUrlError = createErrorType("ERR_INVALID_URL", "Invalid URL", TypeError), RedirectionError = createErrorType("ERR_FR_REDIRECTION_FAILURE", "Redirected request failed"), TooManyRedirectsError = createErrorType("ERR_FR_TOO_MANY_REDIRECTS", "Maximum number of redirects exceeded", RedirectionError), MaxBodyLengthExceededError = createErrorType("ERR_FR_MAX_BODY_LENGTH_EXCEEDED", "Request body larger than maxBodyLength limit"), WriteAfterEndError = createErrorType("ERR_STREAM_WRITE_AFTER_END", "write after end"), destroy = Writable.prototype.destroy || noop;
672
- function RedirectableRequest(options, responseCallback) {
673
- Writable.call(this), this._sanitizeOptions(options), this._options = options, this._ended = !1, this._ending = !1, this._redirectCount = 0, this._redirects = [], this._requestBodyLength = 0, this._requestBodyBuffers = [], responseCallback && this.on("response", responseCallback);
674
- var self1 = this;
675
- this._onNativeResponse = function(response) {
676
- try {
677
- self1._processResponse(response);
678
- } catch (cause) {
679
- self1.emit("error", cause instanceof RedirectionError ? cause : new RedirectionError({
680
- cause: cause
681
- }));
682
- }
683
- }, this._performRequest();
684
- }
685
- function wrap(protocols) {
686
- var exports1 = {
687
- maxRedirects: 21,
688
- maxBodyLength: 10485760
689
- }, nativeProtocols = {};
690
- return Object.keys(protocols).forEach(function(scheme) {
691
- var protocol = scheme + ":", nativeProtocol = nativeProtocols[protocol] = protocols[scheme], wrappedProtocol = exports1[scheme] = Object.create(nativeProtocol);
692
- Object.defineProperties(wrappedProtocol, {
693
- request: {
694
- value: function(input, options, callback) {
695
- var value;
696
- return (value = input, URL1 && value instanceof URL1) ? input = spreadUrlObject(input) : isString(input) ? input = spreadUrlObject(parseUrl(input)) : (callback = options, options = validateUrl(input), input = {
697
- protocol: protocol
698
- }), isFunction(options) && (callback = options, options = null), (options = Object.assign({
699
- maxRedirects: exports1.maxRedirects,
700
- maxBodyLength: exports1.maxBodyLength
701
- }, input, options)).nativeProtocols = nativeProtocols, isString(options.host) || isString(options.hostname) || (options.hostname = "::1"), assert.equal(options.protocol, protocol, "protocol mismatch"), debug("options", options), new RedirectableRequest(options, callback);
702
- },
703
- configurable: !0,
704
- enumerable: !0,
705
- writable: !0
706
- },
707
- get: {
708
- value: function(input, options, callback) {
709
- var wrappedRequest = wrappedProtocol.request(input, options, callback);
710
- return wrappedRequest.end(), wrappedRequest;
711
- },
712
- configurable: !0,
713
- enumerable: !0,
714
- writable: !0
715
- }
716
- });
717
- }), exports1;
718
- }
719
- function noop() {}
720
- function parseUrl(input) {
721
- var parsed;
722
- if (useNativeURL) parsed = new URL1(input);
723
- else if (!isString((parsed = validateUrl(url.parse(input))).protocol)) throw new InvalidUrlError({
724
- input
725
- });
726
- return parsed;
727
- }
728
- function validateUrl(input) {
729
- if (/^\[/.test(input.hostname) && !/^\[[:0-9a-f]+\]$/i.test(input.hostname) || /^\[/.test(input.host) && !/^\[[:0-9a-f]+\](:\d+)?$/i.test(input.host)) throw new InvalidUrlError({
730
- input: input.href || input
731
- });
732
- return input;
733
- }
734
- function spreadUrlObject(urlObject, target) {
735
- var spread = target || {};
736
- for (var key of preservedUrlFields)spread[key] = urlObject[key];
737
- return spread.hostname.startsWith("[") && (spread.hostname = spread.hostname.slice(1, -1)), "" !== spread.port && (spread.port = Number(spread.port)), spread.path = spread.search ? spread.pathname + spread.search : spread.pathname, spread;
738
- }
739
- function removeMatchingHeaders(regex, headers) {
740
- var lastValue;
741
- for(var header in headers)regex.test(header) && (lastValue = headers[header], delete headers[header]);
742
- return null == lastValue ? void 0 : String(lastValue).trim();
743
- }
744
- function createErrorType(code, message, baseClass) {
745
- function CustomError(properties) {
746
- isFunction(Error.captureStackTrace) && Error.captureStackTrace(this, this.constructor), Object.assign(this, properties || {}), this.code = code, this.message = this.cause ? message + ": " + this.cause.message : message;
747
- }
748
- return CustomError.prototype = new (baseClass || Error)(), Object.defineProperties(CustomError.prototype, {
749
- constructor: {
750
- value: CustomError,
751
- enumerable: !1
752
- },
753
- name: {
754
- value: "Error [" + code + "]",
755
- enumerable: !1
756
- }
757
- }), CustomError;
758
- }
759
- function destroyRequest(request, error) {
760
- for (var event of events)request.removeListener(event, eventHandlers[event]);
761
- request.on("error", noop), request.destroy(error);
762
- }
763
- function isString(value) {
764
- return "string" == typeof value || value instanceof String;
765
- }
766
- function isFunction(value) {
767
- return "function" == typeof value;
768
- }
769
- RedirectableRequest.prototype = Object.create(Writable.prototype), RedirectableRequest.prototype.abort = function() {
770
- destroyRequest(this._currentRequest), this._currentRequest.abort(), this.emit("abort");
771
- }, RedirectableRequest.prototype.destroy = function(error) {
772
- return destroyRequest(this._currentRequest, error), destroy.call(this, error), this;
773
- }, RedirectableRequest.prototype.write = function(data, encoding, callback) {
774
- var value;
775
- if (this._ending) throw new WriteAfterEndError();
776
- if (!isString(data) && !("object" == typeof (value = data) && "length" in value)) throw TypeError("data should be a string, Buffer or Uint8Array");
777
- if (isFunction(encoding) && (callback = encoding, encoding = null), 0 === data.length) {
778
- callback && callback();
779
- return;
780
- }
781
- this._requestBodyLength + data.length <= this._options.maxBodyLength ? (this._requestBodyLength += data.length, this._requestBodyBuffers.push({
782
- data: data,
783
- encoding: encoding
784
- }), this._currentRequest.write(data, encoding, callback)) : (this.emit("error", new MaxBodyLengthExceededError()), this.abort());
785
- }, RedirectableRequest.prototype.end = function(data, encoding, callback) {
786
- if (isFunction(data) ? (callback = data, data = encoding = null) : isFunction(encoding) && (callback = encoding, encoding = null), data) {
787
- var self1 = this, currentRequest = this._currentRequest;
788
- this.write(data, encoding, function() {
789
- self1._ended = !0, currentRequest.end(null, null, callback);
790
- }), this._ending = !0;
791
- } else this._ended = this._ending = !0, this._currentRequest.end(null, null, callback);
792
- }, RedirectableRequest.prototype.setHeader = function(name, value) {
793
- this._options.headers[name] = value, this._currentRequest.setHeader(name, value);
794
- }, RedirectableRequest.prototype.removeHeader = function(name) {
795
- delete this._options.headers[name], this._currentRequest.removeHeader(name);
796
- }, RedirectableRequest.prototype.setTimeout = function(msecs, callback) {
797
- var self1 = this;
798
- function destroyOnTimeout(socket) {
799
- socket.setTimeout(msecs), socket.removeListener("timeout", socket.destroy), socket.addListener("timeout", socket.destroy);
800
- }
801
- function startTimer(socket) {
802
- self1._timeout && clearTimeout(self1._timeout), self1._timeout = setTimeout(function() {
803
- self1.emit("timeout"), clearTimer();
804
- }, msecs), destroyOnTimeout(socket);
805
- }
806
- function clearTimer() {
807
- self1._timeout && (clearTimeout(self1._timeout), self1._timeout = null), self1.removeListener("abort", clearTimer), self1.removeListener("error", clearTimer), self1.removeListener("response", clearTimer), self1.removeListener("close", clearTimer), callback && self1.removeListener("timeout", callback), self1.socket || self1._currentRequest.removeListener("socket", startTimer);
808
- }
809
- return callback && this.on("timeout", callback), this.socket ? startTimer(this.socket) : this._currentRequest.once("socket", startTimer), this.on("socket", destroyOnTimeout), this.on("abort", clearTimer), this.on("error", clearTimer), this.on("response", clearTimer), this.on("close", clearTimer), this;
810
- }, [
811
- "flushHeaders",
812
- "getHeader",
813
- "setNoDelay",
814
- "setSocketKeepAlive"
815
- ].forEach(function(method) {
816
- RedirectableRequest.prototype[method] = function(a, b) {
817
- return this._currentRequest[method](a, b);
818
- };
819
- }), [
820
- "aborted",
821
- "connection",
822
- "socket"
823
- ].forEach(function(property) {
824
- Object.defineProperty(RedirectableRequest.prototype, property, {
825
- get: function() {
826
- return this._currentRequest[property];
827
- }
828
- });
829
- }), RedirectableRequest.prototype._sanitizeOptions = function(options) {
830
- if (options.headers || (options.headers = {}), options.host && (options.hostname || (options.hostname = options.host), delete options.host), !options.pathname && options.path) {
831
- var searchPos = options.path.indexOf("?");
832
- searchPos < 0 ? options.pathname = options.path : (options.pathname = options.path.substring(0, searchPos), options.search = options.path.substring(searchPos));
833
- }
834
- }, RedirectableRequest.prototype._performRequest = function() {
835
- var protocol = this._options.protocol, nativeProtocol = this._options.nativeProtocols[protocol];
836
- if (!nativeProtocol) throw TypeError("Unsupported protocol " + protocol);
837
- if (this._options.agents) {
838
- var scheme = protocol.slice(0, -1);
839
- this._options.agent = this._options.agents[scheme];
840
- }
841
- var request = this._currentRequest = nativeProtocol.request(this._options, this._onNativeResponse);
842
- for (var event of (request._redirectable = this, events))request.on(event, eventHandlers[event]);
843
- if (this._currentUrl = /^\//.test(this._options.path) ? url.format(this._options) : this._options.path, this._isRedirect) {
844
- var i = 0, self1 = this, buffers = this._requestBodyBuffers;
845
- !function writeNext(error) {
846
- if (request === self1._currentRequest) if (error) self1.emit("error", error);
847
- else if (i < buffers.length) {
848
- var buffer = buffers[i++];
849
- request.finished || request.write(buffer.data, buffer.encoding, writeNext);
850
- } else self1._ended && request.end();
851
- }();
852
- }
853
- }, RedirectableRequest.prototype._processResponse = function(response) {
854
- var relative, base, subdomain, domain, dot, requestHeaders, statusCode = response.statusCode;
855
- this._options.trackRedirects && this._redirects.push({
856
- url: this._currentUrl,
857
- headers: response.headers,
858
- statusCode: statusCode
859
- });
860
- var location = response.headers.location;
861
- if (!location || !1 === this._options.followRedirects || statusCode < 300 || statusCode >= 400) {
862
- response.responseUrl = this._currentUrl, response.redirects = this._redirects, this.emit("response", response), this._requestBodyBuffers = [];
863
- return;
864
- }
865
- if (destroyRequest(this._currentRequest), response.destroy(), ++this._redirectCount > this._options.maxRedirects) throw new TooManyRedirectsError();
866
- var beforeRedirect = this._options.beforeRedirect;
867
- beforeRedirect && (requestHeaders = Object.assign({
868
- Host: response.req.getHeader("host")
869
- }, this._options.headers));
870
- var method = this._options.method;
871
- (301 !== statusCode && 302 !== statusCode || "POST" !== this._options.method) && (303 !== statusCode || /^(?:GET|HEAD)$/.test(this._options.method)) || (this._options.method = "GET", this._requestBodyBuffers = [], removeMatchingHeaders(/^content-/i, this._options.headers));
872
- var currentHostHeader = removeMatchingHeaders(/^host$/i, this._options.headers), currentUrlParts = parseUrl(this._currentUrl), currentHost = currentHostHeader || currentUrlParts.host, currentUrl = /^\w+:/.test(location) ? this._currentUrl : url.format(Object.assign(currentUrlParts, {
873
- host: currentHost
874
- })), redirectUrl = (relative = location, base = currentUrl, useNativeURL ? new URL1(relative, base) : parseUrl(url.resolve(base, relative)));
875
- if (debug("redirecting to", redirectUrl.href), this._isRedirect = !0, spreadUrlObject(redirectUrl, this._options), (redirectUrl.protocol === currentUrlParts.protocol || "https:" === redirectUrl.protocol) && (redirectUrl.host === currentHost || (subdomain = redirectUrl.host, domain = currentHost, assert(isString(subdomain) && isString(domain)), (dot = subdomain.length - domain.length - 1) > 0 && "." === subdomain[dot] && subdomain.endsWith(domain))) || removeMatchingHeaders(/^(?:(?:proxy-)?authorization|cookie)$/i, this._options.headers), isFunction(beforeRedirect)) {
876
- var responseDetails = {
877
- headers: response.headers,
878
- statusCode: statusCode
879
- }, requestDetails = {
880
- url: currentUrl,
881
- method: method,
882
- headers: requestHeaders
883
- };
884
- beforeRedirect(this._options, responseDetails, requestDetails), this._sanitizeOptions(this._options);
885
- }
886
- this._performRequest();
887
- }, module.exports = wrap({
888
- http: http,
889
- https: https
890
- }), module.exports.wrap = wrap;
891
- },
892
- "../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/form_data.js" (module, __unused_rspack_exports, __webpack_require__) {
893
- "use strict";
894
- var CombinedStream = __webpack_require__("../../node_modules/.pnpm/combined-stream@1.0.8/node_modules/combined-stream/lib/combined_stream.js"), util = __webpack_require__("util"), path = __webpack_require__("path"), http = __webpack_require__("http"), https = __webpack_require__("https"), parseUrl = __webpack_require__("url").parse, fs = __webpack_require__("fs"), Stream = __webpack_require__("stream").Stream, crypto = __webpack_require__("crypto"), mime = __webpack_require__("../../node_modules/.pnpm/mime-types@2.1.35/node_modules/mime-types/index.js"), asynckit = __webpack_require__("../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/index.js"), setToStringTag = __webpack_require__("../../node_modules/.pnpm/es-set-tostringtag@2.1.0/node_modules/es-set-tostringtag/index.js"), hasOwn = __webpack_require__("../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js"), populate = __webpack_require__("../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/populate.js");
895
- function FormData1(options) {
896
- if (!(this instanceof FormData1)) return new FormData1(options);
897
- for(var option in this._overheadLength = 0, this._valueLength = 0, this._valuesToMeasure = [], CombinedStream.call(this), options = options || {})this[option] = options[option];
898
- }
899
- util.inherits(FormData1, CombinedStream), FormData1.LINE_BREAK = '\r\n', FormData1.DEFAULT_CONTENT_TYPE = 'application/octet-stream', FormData1.prototype.append = function(field, value, options) {
900
- 'string' == typeof (options = options || {}) && (options = {
901
- filename: options
902
- });
903
- var append = CombinedStream.prototype.append.bind(this);
904
- if (('number' == typeof value || null == value) && (value = String(value)), Array.isArray(value)) return void this._error(Error('Arrays are not supported.'));
905
- var header = this._multiPartHeader(field, value, options), footer = this._multiPartFooter();
906
- append(header), append(value), append(footer), this._trackLength(header, value, options);
907
- }, FormData1.prototype._trackLength = function(header, value, options) {
908
- var valueLength = 0;
909
- null != options.knownLength ? valueLength += Number(options.knownLength) : Buffer.isBuffer(value) ? valueLength = value.length : 'string' == typeof value && (valueLength = Buffer.byteLength(value)), this._valueLength += valueLength, this._overheadLength += Buffer.byteLength(header) + FormData1.LINE_BREAK.length, value && (value.path || value.readable && hasOwn(value, 'httpVersion') || value instanceof Stream) && (options.knownLength || this._valuesToMeasure.push(value));
910
- }, FormData1.prototype._lengthRetriever = function(value, callback) {
911
- hasOwn(value, 'fd') ? void 0 != value.end && value.end != 1 / 0 && void 0 != value.start ? callback(null, value.end + 1 - (value.start ? value.start : 0)) : fs.stat(value.path, function(err, stat) {
912
- err ? callback(err) : callback(null, stat.size - (value.start ? value.start : 0));
913
- }) : hasOwn(value, 'httpVersion') ? callback(null, Number(value.headers['content-length'])) : hasOwn(value, 'httpModule') ? (value.on('response', function(response) {
914
- value.pause(), callback(null, Number(response.headers['content-length']));
915
- }), value.resume()) : callback('Unknown stream');
916
- }, FormData1.prototype._multiPartHeader = function(field, value, options) {
917
- if ('string' == typeof options.header) return options.header;
918
- var header, contentDisposition = this._getContentDisposition(value, options), contentType = this._getContentType(value, options), contents = '', headers = {
919
- 'Content-Disposition': [
920
- 'form-data',
921
- 'name="' + field + '"'
922
- ].concat(contentDisposition || []),
923
- 'Content-Type': [].concat(contentType || [])
924
- };
925
- for(var prop in 'object' == typeof options.header && populate(headers, options.header), headers)if (hasOwn(headers, prop)) {
926
- if (null == (header = headers[prop])) continue;
927
- Array.isArray(header) || (header = [
928
- header
929
- ]), header.length && (contents += prop + ': ' + header.join('; ') + FormData1.LINE_BREAK);
930
- }
931
- return '--' + this.getBoundary() + FormData1.LINE_BREAK + contents + FormData1.LINE_BREAK;
932
- }, FormData1.prototype._getContentDisposition = function(value, options) {
933
- var filename;
934
- if ('string' == typeof options.filepath ? filename = path.normalize(options.filepath).replace(/\\/g, '/') : options.filename || value && (value.name || value.path) ? filename = path.basename(options.filename || value && (value.name || value.path)) : value && value.readable && hasOwn(value, 'httpVersion') && (filename = path.basename(value.client._httpMessage.path || '')), filename) return 'filename="' + filename + '"';
935
- }, FormData1.prototype._getContentType = function(value, options) {
936
- var contentType = options.contentType;
937
- return !contentType && value && value.name && (contentType = mime.lookup(value.name)), !contentType && value && value.path && (contentType = mime.lookup(value.path)), !contentType && value && value.readable && hasOwn(value, 'httpVersion') && (contentType = value.headers['content-type']), !contentType && (options.filepath || options.filename) && (contentType = mime.lookup(options.filepath || options.filename)), !contentType && value && 'object' == typeof value && (contentType = FormData1.DEFAULT_CONTENT_TYPE), contentType;
938
- }, FormData1.prototype._multiPartFooter = function() {
939
- return (function(next) {
940
- var footer = FormData1.LINE_BREAK;
941
- 0 === this._streams.length && (footer += this._lastBoundary()), next(footer);
942
- }).bind(this);
943
- }, FormData1.prototype._lastBoundary = function() {
944
- return '--' + this.getBoundary() + '--' + FormData1.LINE_BREAK;
945
- }, FormData1.prototype.getHeaders = function(userHeaders) {
946
- var header, formHeaders = {
947
- 'content-type': 'multipart/form-data; boundary=' + this.getBoundary()
948
- };
949
- for(header in userHeaders)hasOwn(userHeaders, header) && (formHeaders[header.toLowerCase()] = userHeaders[header]);
950
- return formHeaders;
951
- }, FormData1.prototype.setBoundary = function(boundary) {
952
- if ('string' != typeof boundary) throw TypeError('FormData boundary must be a string');
953
- this._boundary = boundary;
954
- }, FormData1.prototype.getBoundary = function() {
955
- return this._boundary || this._generateBoundary(), this._boundary;
956
- }, FormData1.prototype.getBuffer = function() {
957
- for(var dataBuffer = new Buffer.alloc(0), boundary = this.getBoundary(), i = 0, len = this._streams.length; i < len; i++)'function' != typeof this._streams[i] && (dataBuffer = Buffer.isBuffer(this._streams[i]) ? Buffer.concat([
958
- dataBuffer,
959
- this._streams[i]
960
- ]) : Buffer.concat([
961
- dataBuffer,
962
- Buffer.from(this._streams[i])
963
- ]), ('string' != typeof this._streams[i] || this._streams[i].substring(2, boundary.length + 2) !== boundary) && (dataBuffer = Buffer.concat([
964
- dataBuffer,
965
- Buffer.from(FormData1.LINE_BREAK)
966
- ])));
967
- return Buffer.concat([
968
- dataBuffer,
969
- Buffer.from(this._lastBoundary())
970
- ]);
971
- }, FormData1.prototype._generateBoundary = function() {
972
- this._boundary = '--------------------------' + crypto.randomBytes(12).toString('hex');
973
- }, FormData1.prototype.getLengthSync = function() {
974
- var knownLength = this._overheadLength + this._valueLength;
975
- return this._streams.length && (knownLength += this._lastBoundary().length), this.hasKnownLength() || this._error(Error('Cannot calculate proper length in synchronous way.')), knownLength;
976
- }, FormData1.prototype.hasKnownLength = function() {
977
- var hasKnownLength = !0;
978
- return this._valuesToMeasure.length && (hasKnownLength = !1), hasKnownLength;
979
- }, FormData1.prototype.getLength = function(cb) {
980
- var knownLength = this._overheadLength + this._valueLength;
981
- (this._streams.length && (knownLength += this._lastBoundary().length), this._valuesToMeasure.length) ? asynckit.parallel(this._valuesToMeasure, this._lengthRetriever, function(err, values) {
982
- err ? cb(err) : (values.forEach(function(length) {
983
- knownLength += length;
984
- }), cb(null, knownLength));
985
- }) : process.nextTick(cb.bind(this, null, knownLength));
986
- }, FormData1.prototype.submit = function(params, cb) {
987
- var request, options, defaults = {
988
- method: 'post'
989
- };
990
- return 'string' == typeof params ? options = populate({
991
- port: (params = parseUrl(params)).port,
992
- path: params.pathname,
993
- host: params.hostname,
994
- protocol: params.protocol
995
- }, defaults) : (options = populate(params, defaults)).port || (options.port = 'https:' === options.protocol ? 443 : 80), options.headers = this.getHeaders(params.headers), request = 'https:' === options.protocol ? https.request(options) : http.request(options), this.getLength((function(err, length) {
996
- if (err && 'Unknown stream' !== err) return void this._error(err);
997
- if (length && request.setHeader('Content-Length', length), this.pipe(request), cb) {
998
- var onResponse, callback = function(error, responce) {
999
- return request.removeListener('error', callback), request.removeListener('response', onResponse), cb.call(this, error, responce);
1000
- };
1001
- onResponse = callback.bind(this, null), request.on('error', callback), request.on('response', onResponse);
1002
- }
1003
- }).bind(this)), request;
1004
- }, FormData1.prototype._error = function(err) {
1005
- this.error || (this.error = err, this.pause(), this.emit('error', err));
1006
- }, FormData1.prototype.toString = function() {
1007
- return '[object FormData]';
1008
- }, setToStringTag(FormData1.prototype, 'FormData'), module.exports = FormData1;
1009
- },
1010
- "../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/populate.js" (module) {
1011
- "use strict";
1012
- module.exports = function(dst, src) {
1013
- return Object.keys(src).forEach(function(prop) {
1014
- dst[prop] = dst[prop] || src[prop];
1015
- }), dst;
1016
- };
1017
- },
1018
- "../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js" (module) {
1019
- "use strict";
1020
- var toStr = Object.prototype.toString, max = Math.max, concatty = function(a, b) {
1021
- for(var arr = [], i = 0; i < a.length; i += 1)arr[i] = a[i];
1022
- for(var j = 0; j < b.length; j += 1)arr[j + a.length] = b[j];
1023
- return arr;
1024
- }, slicy = function(arrLike, offset) {
1025
- for(var arr = [], i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1)arr[j] = arrLike[i];
1026
- return arr;
1027
- }, joiny = function(arr, joiner) {
1028
- for(var str = '', i = 0; i < arr.length; i += 1)str += arr[i], i + 1 < arr.length && (str += joiner);
1029
- return str;
1030
- };
1031
- module.exports = function(that) {
1032
- var bound, target = this;
1033
- if ('function' != typeof target || '[object Function]' !== toStr.apply(target)) throw TypeError('Function.prototype.bind called on incompatible ' + target);
1034
- for(var args = slicy(arguments, 1), boundLength = max(0, target.length - args.length), boundArgs = [], i = 0; i < boundLength; i++)boundArgs[i] = '$' + i;
1035
- if (bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(function() {
1036
- if (this instanceof bound) {
1037
- var result = target.apply(this, concatty(args, arguments));
1038
- return Object(result) === result ? result : this;
1039
- }
1040
- return target.apply(that, concatty(args, arguments));
1041
- }), target.prototype) {
1042
- var Empty = function() {};
1043
- Empty.prototype = target.prototype, bound.prototype = new Empty(), Empty.prototype = null;
1044
- }
1045
- return bound;
1046
- };
1047
- },
1048
- "../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js" (module, __unused_rspack_exports, __webpack_require__) {
1049
- "use strict";
1050
- var implementation = __webpack_require__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js");
1051
- module.exports = Function.prototype.bind || implementation;
1052
- },
1053
- "../../node_modules/.pnpm/get-intrinsic@1.3.0/node_modules/get-intrinsic/index.js" (module, __unused_rspack_exports, __webpack_require__) {
1054
- "use strict";
1055
- var undefined, $Object = __webpack_require__("../../node_modules/.pnpm/es-object-atoms@1.1.1/node_modules/es-object-atoms/index.js"), $Error = __webpack_require__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/index.js"), $EvalError = __webpack_require__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/eval.js"), $RangeError = __webpack_require__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/range.js"), $ReferenceError = __webpack_require__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/ref.js"), $SyntaxError = __webpack_require__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/syntax.js"), $TypeError = __webpack_require__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js"), $URIError = __webpack_require__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/uri.js"), abs = __webpack_require__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/abs.js"), floor = __webpack_require__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/floor.js"), max = __webpack_require__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/max.js"), min = __webpack_require__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/min.js"), pow = __webpack_require__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/pow.js"), round = __webpack_require__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/round.js"), sign = __webpack_require__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/sign.js"), $Function = Function, getEvalledConstructor = function(expressionSyntax) {
1056
- try {
1057
- return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')();
1058
- } catch (e) {}
1059
- }, $gOPD = __webpack_require__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js"), $defineProperty = __webpack_require__("../../node_modules/.pnpm/es-define-property@1.0.1/node_modules/es-define-property/index.js"), throwTypeError = function() {
1060
- throw new $TypeError();
1061
- }, ThrowTypeError = $gOPD ? function() {
1062
- try {
1063
- return arguments.callee, throwTypeError;
1064
- } catch (calleeThrows) {
1065
- try {
1066
- return $gOPD(arguments, 'callee').get;
1067
- } catch (gOPDthrows) {
1068
- return throwTypeError;
1069
- }
1070
- }
1071
- }() : throwTypeError, hasSymbols = __webpack_require__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/index.js")(), getProto = __webpack_require__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js"), $ObjectGPO = __webpack_require__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Object.getPrototypeOf.js"), $ReflectGPO = __webpack_require__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js"), $apply = __webpack_require__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionApply.js"), $call = __webpack_require__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionCall.js"), needsEval = {}, TypedArray = "u" > typeof Uint8Array && getProto ? getProto(Uint8Array) : undefined, INTRINSICS = {
1072
- __proto__: null,
1073
- '%AggregateError%': "u" < typeof AggregateError ? undefined : AggregateError,
1074
- '%Array%': Array,
1075
- '%ArrayBuffer%': "u" < typeof ArrayBuffer ? undefined : ArrayBuffer,
1076
- '%ArrayIteratorPrototype%': hasSymbols && getProto ? getProto([][Symbol.iterator]()) : undefined,
1077
- '%AsyncFromSyncIteratorPrototype%': undefined,
1078
- '%AsyncFunction%': needsEval,
1079
- '%AsyncGenerator%': needsEval,
1080
- '%AsyncGeneratorFunction%': needsEval,
1081
- '%AsyncIteratorPrototype%': needsEval,
1082
- '%Atomics%': "u" < typeof Atomics ? undefined : Atomics,
1083
- '%BigInt%': "u" < typeof BigInt ? undefined : BigInt,
1084
- '%BigInt64Array%': "u" < typeof BigInt64Array ? undefined : BigInt64Array,
1085
- '%BigUint64Array%': "u" < typeof BigUint64Array ? undefined : BigUint64Array,
1086
- '%Boolean%': Boolean,
1087
- '%DataView%': "u" < typeof DataView ? undefined : DataView,
1088
- '%Date%': Date,
1089
- '%decodeURI%': decodeURI,
1090
- '%decodeURIComponent%': decodeURIComponent,
1091
- '%encodeURI%': encodeURI,
1092
- '%encodeURIComponent%': encodeURIComponent,
1093
- '%Error%': $Error,
1094
- '%eval%': eval,
1095
- '%EvalError%': $EvalError,
1096
- '%Float16Array%': "u" < typeof Float16Array ? undefined : Float16Array,
1097
- '%Float32Array%': "u" < typeof Float32Array ? undefined : Float32Array,
1098
- '%Float64Array%': "u" < typeof Float64Array ? undefined : Float64Array,
1099
- '%FinalizationRegistry%': "u" < typeof FinalizationRegistry ? undefined : FinalizationRegistry,
1100
- '%Function%': $Function,
1101
- '%GeneratorFunction%': needsEval,
1102
- '%Int8Array%': "u" < typeof Int8Array ? undefined : Int8Array,
1103
- '%Int16Array%': "u" < typeof Int16Array ? undefined : Int16Array,
1104
- '%Int32Array%': "u" < typeof Int32Array ? undefined : Int32Array,
1105
- '%isFinite%': isFinite,
1106
- '%isNaN%': isNaN,
1107
- '%IteratorPrototype%': hasSymbols && getProto ? getProto(getProto([][Symbol.iterator]())) : undefined,
1108
- '%JSON%': 'object' == typeof JSON ? JSON : undefined,
1109
- '%Map%': "u" < typeof Map ? undefined : Map,
1110
- '%MapIteratorPrototype%': "u" > typeof Map && hasSymbols && getProto ? getProto(new Map()[Symbol.iterator]()) : undefined,
1111
- '%Math%': Math,
1112
- '%Number%': Number,
1113
- '%Object%': $Object,
1114
- "%Object.getOwnPropertyDescriptor%": $gOPD,
1115
- '%parseFloat%': parseFloat,
1116
- '%parseInt%': parseInt,
1117
- '%Promise%': "u" < typeof Promise ? undefined : Promise,
1118
- '%Proxy%': "u" < typeof Proxy ? undefined : Proxy,
1119
- '%RangeError%': $RangeError,
1120
- '%ReferenceError%': $ReferenceError,
1121
- '%Reflect%': "u" < typeof Reflect ? undefined : Reflect,
1122
- '%RegExp%': RegExp,
1123
- '%Set%': "u" < typeof Set ? undefined : Set,
1124
- '%SetIteratorPrototype%': "u" > typeof Set && hasSymbols && getProto ? getProto(new Set()[Symbol.iterator]()) : undefined,
1125
- '%SharedArrayBuffer%': "u" < typeof SharedArrayBuffer ? undefined : SharedArrayBuffer,
1126
- '%String%': String,
1127
- '%StringIteratorPrototype%': hasSymbols && getProto ? getProto(''[Symbol.iterator]()) : undefined,
1128
- '%Symbol%': hasSymbols ? Symbol : undefined,
1129
- '%SyntaxError%': $SyntaxError,
1130
- '%ThrowTypeError%': ThrowTypeError,
1131
- '%TypedArray%': TypedArray,
1132
- '%TypeError%': $TypeError,
1133
- '%Uint8Array%': "u" < typeof Uint8Array ? undefined : Uint8Array,
1134
- '%Uint8ClampedArray%': "u" < typeof Uint8ClampedArray ? undefined : Uint8ClampedArray,
1135
- '%Uint16Array%': "u" < typeof Uint16Array ? undefined : Uint16Array,
1136
- '%Uint32Array%': "u" < typeof Uint32Array ? undefined : Uint32Array,
1137
- '%URIError%': $URIError,
1138
- '%WeakMap%': "u" < typeof WeakMap ? undefined : WeakMap,
1139
- '%WeakRef%': "u" < typeof WeakRef ? undefined : WeakRef,
1140
- '%WeakSet%': "u" < typeof WeakSet ? undefined : WeakSet,
1141
- '%Function.prototype.call%': $call,
1142
- '%Function.prototype.apply%': $apply,
1143
- '%Object.defineProperty%': $defineProperty,
1144
- '%Object.getPrototypeOf%': $ObjectGPO,
1145
- '%Math.abs%': abs,
1146
- '%Math.floor%': floor,
1147
- '%Math.max%': max,
1148
- '%Math.min%': min,
1149
- '%Math.pow%': pow,
1150
- '%Math.round%': round,
1151
- '%Math.sign%': sign,
1152
- '%Reflect.getPrototypeOf%': $ReflectGPO
1153
- };
1154
- if (getProto) try {
1155
- null.error;
1156
- } catch (e) {
1157
- var errorProto = getProto(getProto(e));
1158
- INTRINSICS['%Error.prototype%'] = errorProto;
1159
- }
1160
- var doEval = function doEval(name) {
1161
- var value;
1162
- if ('%AsyncFunction%' === name) value = getEvalledConstructor('async function () {}');
1163
- else if ('%GeneratorFunction%' === name) value = getEvalledConstructor('function* () {}');
1164
- else if ('%AsyncGeneratorFunction%' === name) value = getEvalledConstructor('async function* () {}');
1165
- else if ('%AsyncGenerator%' === name) {
1166
- var fn = doEval('%AsyncGeneratorFunction%');
1167
- fn && (value = fn.prototype);
1168
- } else if ('%AsyncIteratorPrototype%' === name) {
1169
- var gen = doEval('%AsyncGenerator%');
1170
- gen && getProto && (value = getProto(gen.prototype));
1171
- }
1172
- return INTRINSICS[name] = value, value;
1173
- }, LEGACY_ALIASES = {
1174
- __proto__: null,
1175
- '%ArrayBufferPrototype%': [
1176
- 'ArrayBuffer',
1177
- 'prototype'
1178
- ],
1179
- '%ArrayPrototype%': [
1180
- 'Array',
1181
- 'prototype'
1182
- ],
1183
- '%ArrayProto_entries%': [
1184
- 'Array',
1185
- 'prototype',
1186
- 'entries'
1187
- ],
1188
- '%ArrayProto_forEach%': [
1189
- 'Array',
1190
- 'prototype',
1191
- 'forEach'
1192
- ],
1193
- '%ArrayProto_keys%': [
1194
- 'Array',
1195
- 'prototype',
1196
- 'keys'
1197
- ],
1198
- '%ArrayProto_values%': [
1199
- 'Array',
1200
- 'prototype',
1201
- 'values'
1202
- ],
1203
- '%AsyncFunctionPrototype%': [
1204
- 'AsyncFunction',
1205
- 'prototype'
1206
- ],
1207
- '%AsyncGenerator%': [
1208
- 'AsyncGeneratorFunction',
1209
- 'prototype'
1210
- ],
1211
- '%AsyncGeneratorPrototype%': [
1212
- 'AsyncGeneratorFunction',
1213
- 'prototype',
1214
- 'prototype'
1215
- ],
1216
- '%BooleanPrototype%': [
1217
- 'Boolean',
1218
- 'prototype'
1219
- ],
1220
- '%DataViewPrototype%': [
1221
- 'DataView',
1222
- 'prototype'
1223
- ],
1224
- '%DatePrototype%': [
1225
- 'Date',
1226
- 'prototype'
1227
- ],
1228
- '%ErrorPrototype%': [
1229
- 'Error',
1230
- 'prototype'
1231
- ],
1232
- '%EvalErrorPrototype%': [
1233
- 'EvalError',
1234
- 'prototype'
1235
- ],
1236
- '%Float32ArrayPrototype%': [
1237
- 'Float32Array',
1238
- 'prototype'
1239
- ],
1240
- '%Float64ArrayPrototype%': [
1241
- 'Float64Array',
1242
- 'prototype'
1243
- ],
1244
- '%FunctionPrototype%': [
1245
- 'Function',
1246
- 'prototype'
1247
- ],
1248
- '%Generator%': [
1249
- 'GeneratorFunction',
1250
- 'prototype'
1251
- ],
1252
- '%GeneratorPrototype%': [
1253
- 'GeneratorFunction',
1254
- 'prototype',
1255
- 'prototype'
1256
- ],
1257
- '%Int8ArrayPrototype%': [
1258
- 'Int8Array',
1259
- 'prototype'
1260
- ],
1261
- '%Int16ArrayPrototype%': [
1262
- 'Int16Array',
1263
- 'prototype'
1264
- ],
1265
- '%Int32ArrayPrototype%': [
1266
- 'Int32Array',
1267
- 'prototype'
1268
- ],
1269
- '%JSONParse%': [
1270
- 'JSON',
1271
- 'parse'
1272
- ],
1273
- '%JSONStringify%': [
1274
- 'JSON',
1275
- 'stringify'
1276
- ],
1277
- '%MapPrototype%': [
1278
- 'Map',
1279
- 'prototype'
1280
- ],
1281
- '%NumberPrototype%': [
1282
- 'Number',
1283
- 'prototype'
1284
- ],
1285
- '%ObjectPrototype%': [
1286
- 'Object',
1287
- 'prototype'
1288
- ],
1289
- '%ObjProto_toString%': [
1290
- 'Object',
1291
- 'prototype',
1292
- 'toString'
1293
- ],
1294
- '%ObjProto_valueOf%': [
1295
- 'Object',
1296
- 'prototype',
1297
- 'valueOf'
1298
- ],
1299
- '%PromisePrototype%': [
1300
- 'Promise',
1301
- 'prototype'
1302
- ],
1303
- '%PromiseProto_then%': [
1304
- 'Promise',
1305
- 'prototype',
1306
- 'then'
1307
- ],
1308
- '%Promise_all%': [
1309
- 'Promise',
1310
- 'all'
1311
- ],
1312
- '%Promise_reject%': [
1313
- 'Promise',
1314
- 'reject'
1315
- ],
1316
- '%Promise_resolve%': [
1317
- 'Promise',
1318
- 'resolve'
1319
- ],
1320
- '%RangeErrorPrototype%': [
1321
- 'RangeError',
1322
- 'prototype'
1323
- ],
1324
- '%ReferenceErrorPrototype%': [
1325
- 'ReferenceError',
1326
- 'prototype'
1327
- ],
1328
- '%RegExpPrototype%': [
1329
- 'RegExp',
1330
- 'prototype'
1331
- ],
1332
- '%SetPrototype%': [
1333
- 'Set',
1334
- 'prototype'
1335
- ],
1336
- '%SharedArrayBufferPrototype%': [
1337
- 'SharedArrayBuffer',
1338
- 'prototype'
1339
- ],
1340
- '%StringPrototype%': [
1341
- 'String',
1342
- 'prototype'
1343
- ],
1344
- '%SymbolPrototype%': [
1345
- 'Symbol',
1346
- 'prototype'
1347
- ],
1348
- '%SyntaxErrorPrototype%': [
1349
- 'SyntaxError',
1350
- 'prototype'
1351
- ],
1352
- '%TypedArrayPrototype%': [
1353
- 'TypedArray',
1354
- 'prototype'
1355
- ],
1356
- '%TypeErrorPrototype%': [
1357
- 'TypeError',
1358
- 'prototype'
1359
- ],
1360
- '%Uint8ArrayPrototype%': [
1361
- 'Uint8Array',
1362
- 'prototype'
1363
- ],
1364
- '%Uint8ClampedArrayPrototype%': [
1365
- 'Uint8ClampedArray',
1366
- 'prototype'
1367
- ],
1368
- '%Uint16ArrayPrototype%': [
1369
- 'Uint16Array',
1370
- 'prototype'
1371
- ],
1372
- '%Uint32ArrayPrototype%': [
1373
- 'Uint32Array',
1374
- 'prototype'
1375
- ],
1376
- '%URIErrorPrototype%': [
1377
- 'URIError',
1378
- 'prototype'
1379
- ],
1380
- '%WeakMapPrototype%': [
1381
- 'WeakMap',
1382
- 'prototype'
1383
- ],
1384
- '%WeakSetPrototype%': [
1385
- 'WeakSet',
1386
- 'prototype'
1387
- ]
1388
- }, bind = __webpack_require__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js"), hasOwn = __webpack_require__("../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js"), $concat = bind.call($call, Array.prototype.concat), $spliceApply = bind.call($apply, Array.prototype.splice), $replace = bind.call($call, String.prototype.replace), $strSlice = bind.call($call, String.prototype.slice), $exec = bind.call($call, RegExp.prototype.exec), rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g, reEscapeChar = /\\(\\)?/g, stringToPath = function(string) {
1389
- var first = $strSlice(string, 0, 1), last = $strSlice(string, -1);
1390
- if ('%' === first && '%' !== last) throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`');
1391
- if ('%' === last && '%' !== first) throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`');
1392
- var result = [];
1393
- return $replace(string, rePropName, function(match, number, quote, subString) {
1394
- result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;
1395
- }), result;
1396
- }, getBaseIntrinsic = function(name, allowMissing) {
1397
- var alias, intrinsicName = name;
1398
- if (hasOwn(LEGACY_ALIASES, intrinsicName) && (intrinsicName = '%' + (alias = LEGACY_ALIASES[intrinsicName])[0] + '%'), hasOwn(INTRINSICS, intrinsicName)) {
1399
- var value = INTRINSICS[intrinsicName];
1400
- if (value === needsEval && (value = doEval(intrinsicName)), void 0 === value && !allowMissing) throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');
1401
- return {
1402
- alias: alias,
1403
- name: intrinsicName,
1404
- value: value
1405
- };
1406
- }
1407
- throw new $SyntaxError('intrinsic ' + name + ' does not exist!');
1408
- };
1409
- module.exports = function(name, allowMissing) {
1410
- if ('string' != typeof name || 0 === name.length) throw new $TypeError('intrinsic name must be a non-empty string');
1411
- if (arguments.length > 1 && 'boolean' != typeof allowMissing) throw new $TypeError('"allowMissing" argument must be a boolean');
1412
- if (null === $exec(/^%?[^%]*%?$/, name)) throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');
1413
- var parts = stringToPath(name), intrinsicBaseName = parts.length > 0 ? parts[0] : '', intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing), intrinsicRealName = intrinsic.name, value = intrinsic.value, skipFurtherCaching = !1, alias = intrinsic.alias;
1414
- alias && (intrinsicBaseName = alias[0], $spliceApply(parts, $concat([
1415
- 0,
1416
- 1
1417
- ], alias)));
1418
- for(var i = 1, isOwn = !0; i < parts.length; i += 1){
1419
- var part = parts[i], first = $strSlice(part, 0, 1), last = $strSlice(part, -1);
1420
- if (('"' === first || "'" === first || '`' === first || '"' === last || "'" === last || '`' === last) && first !== last) throw new $SyntaxError('property names with quotes must have matching quotes');
1421
- if ('constructor' !== part && isOwn || (skipFurtherCaching = !0), intrinsicBaseName += '.' + part, hasOwn(INTRINSICS, intrinsicRealName = '%' + intrinsicBaseName + '%')) value = INTRINSICS[intrinsicRealName];
1422
- else if (null != value) {
1423
- if (!(part in value)) {
1424
- if (!allowMissing) throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');
1425
- return;
1426
- }
1427
- if ($gOPD && i + 1 >= parts.length) {
1428
- var desc = $gOPD(value, part);
1429
- value = (isOwn = !!desc) && 'get' in desc && !('originalValue' in desc.get) ? desc.get : value[part];
1430
- } else isOwn = hasOwn(value, part), value = value[part];
1431
- isOwn && !skipFurtherCaching && (INTRINSICS[intrinsicRealName] = value);
1432
- }
1433
- }
1434
- return value;
1435
- };
1436
- },
1437
- "../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Object.getPrototypeOf.js" (module, __unused_rspack_exports, __webpack_require__) {
1438
- "use strict";
1439
- module.exports = __webpack_require__("../../node_modules/.pnpm/es-object-atoms@1.1.1/node_modules/es-object-atoms/index.js").getPrototypeOf || null;
1440
- },
1441
- "../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js" (module) {
1442
- "use strict";
1443
- module.exports = "u" > typeof Reflect && Reflect.getPrototypeOf || null;
1444
- },
1445
- "../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js" (module, __unused_rspack_exports, __webpack_require__) {
1446
- "use strict";
1447
- var reflectGetProto = __webpack_require__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js"), originalGetProto = __webpack_require__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Object.getPrototypeOf.js"), getDunderProto = __webpack_require__("../../node_modules/.pnpm/dunder-proto@1.0.1/node_modules/dunder-proto/get.js");
1448
- module.exports = reflectGetProto ? function(O) {
1449
- return reflectGetProto(O);
1450
- } : originalGetProto ? function(O) {
1451
- if (!O || 'object' != typeof O && 'function' != typeof O) throw TypeError('getProto: not an object');
1452
- return originalGetProto(O);
1453
- } : getDunderProto ? function(O) {
1454
- return getDunderProto(O);
1455
- } : null;
1456
- },
1457
- "../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/gOPD.js" (module) {
1458
- "use strict";
1459
- module.exports = Object.getOwnPropertyDescriptor;
1460
- },
1461
- "../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js" (module, __unused_rspack_exports, __webpack_require__) {
1462
- "use strict";
1463
- var $gOPD = __webpack_require__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/gOPD.js");
1464
- if ($gOPD) try {
1465
- $gOPD([], 'length');
1466
- } catch (e) {
1467
- $gOPD = null;
1468
- }
1469
- module.exports = $gOPD;
1470
- },
1471
- "../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js" (module) {
1472
- "use strict";
1473
- module.exports = (flag, argv)=>{
1474
- argv = argv || process.argv;
1475
- let prefix = flag.startsWith('-') ? '' : 1 === flag.length ? '-' : '--', pos = argv.indexOf(prefix + flag), terminatorPos = argv.indexOf('--');
1476
- return -1 !== pos && (-1 === terminatorPos || pos < terminatorPos);
1477
- };
1478
- },
1479
- "../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/index.js" (module, __unused_rspack_exports, __webpack_require__) {
1480
- "use strict";
1481
- var origSymbol = "u" > typeof Symbol && Symbol, hasSymbolSham = __webpack_require__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/shams.js");
1482
- module.exports = function() {
1483
- return 'function' == typeof origSymbol && 'function' == typeof Symbol && 'symbol' == typeof origSymbol('foo') && 'symbol' == typeof Symbol('bar') && hasSymbolSham();
1484
- };
1485
- },
1486
- "../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/shams.js" (module) {
1487
- "use strict";
1488
- module.exports = function() {
1489
- if ('function' != typeof Symbol || 'function' != typeof Object.getOwnPropertySymbols) return !1;
1490
- if ('symbol' == typeof Symbol.iterator) return !0;
1491
- var obj = {}, sym = Symbol('test'), symObj = Object(sym);
1492
- if ('string' == typeof sym || '[object Symbol]' !== Object.prototype.toString.call(sym) || '[object Symbol]' !== Object.prototype.toString.call(symObj)) return !1;
1493
- for(var _ in obj[sym] = 42, obj)return !1;
1494
- if ('function' == typeof Object.keys && 0 !== Object.keys(obj).length || 'function' == typeof Object.getOwnPropertyNames && 0 !== Object.getOwnPropertyNames(obj).length) return !1;
1495
- var syms = Object.getOwnPropertySymbols(obj);
1496
- if (1 !== syms.length || syms[0] !== sym || !Object.prototype.propertyIsEnumerable.call(obj, sym)) return !1;
1497
- if ('function' == typeof Object.getOwnPropertyDescriptor) {
1498
- var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
1499
- if (42 !== descriptor.value || !0 !== descriptor.enumerable) return !1;
1500
- }
1501
- return !0;
1502
- };
1503
- },
1504
- "../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js" (module, __unused_rspack_exports, __webpack_require__) {
1505
- "use strict";
1506
- var hasSymbols = __webpack_require__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/shams.js");
1507
- module.exports = function() {
1508
- return hasSymbols() && !!Symbol.toStringTag;
1509
- };
1510
- },
1511
- "../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js" (module, __unused_rspack_exports, __webpack_require__) {
1512
- "use strict";
1513
- var call = Function.prototype.call, $hasOwn = Object.prototype.hasOwnProperty;
1514
- module.exports = __webpack_require__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js").call(call, $hasOwn);
1515
- },
1516
- "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/abs.js" (module) {
1517
- "use strict";
1518
- module.exports = Math.abs;
1519
- },
1520
- "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/floor.js" (module) {
1521
- "use strict";
1522
- module.exports = Math.floor;
1523
- },
1524
- "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/isNaN.js" (module) {
1525
- "use strict";
1526
- module.exports = Number.isNaN || function(a) {
1527
- return a != a;
1528
- };
1529
- },
1530
- "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/max.js" (module) {
1531
- "use strict";
1532
- module.exports = Math.max;
1533
- },
1534
- "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/min.js" (module) {
1535
- "use strict";
1536
- module.exports = Math.min;
1537
- },
1538
- "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/pow.js" (module) {
1539
- "use strict";
1540
- module.exports = Math.pow;
1541
- },
1542
- "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/round.js" (module) {
1543
- "use strict";
1544
- module.exports = Math.round;
1545
- },
1546
- "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/sign.js" (module, __unused_rspack_exports, __webpack_require__) {
1547
- "use strict";
1548
- var $isNaN = __webpack_require__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/isNaN.js");
1549
- module.exports = function(number) {
1550
- return $isNaN(number) || 0 === number ? number : number < 0 ? -1 : 1;
1551
- };
1552
- },
1553
- "../../node_modules/.pnpm/mime-db@1.52.0/node_modules/mime-db/index.js" (module, __unused_rspack_exports, __webpack_require__) {
1554
- module.exports = __webpack_require__("../../node_modules/.pnpm/mime-db@1.52.0/node_modules/mime-db/db.json");
1555
- },
1556
- "../../node_modules/.pnpm/mime-types@2.1.35/node_modules/mime-types/index.js" (__unused_rspack_module, exports1, __webpack_require__) {
1557
- "use strict";
1558
- var extensions, types, preference, db = __webpack_require__("../../node_modules/.pnpm/mime-db@1.52.0/node_modules/mime-db/index.js"), extname = __webpack_require__("path").extname, EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/, TEXT_TYPE_REGEXP = /^text\//i;
1559
- function charset(type) {
1560
- if (!type || 'string' != typeof type) return !1;
1561
- var match = EXTRACT_TYPE_REGEXP.exec(type), mime = match && db[match[1].toLowerCase()];
1562
- return mime && mime.charset ? mime.charset : !!(match && TEXT_TYPE_REGEXP.test(match[1])) && 'UTF-8';
1563
- }
1564
- exports1.charset = charset, exports1.charsets = {
1565
- lookup: charset
1566
- }, exports1.contentType = function(str) {
1567
- if (!str || 'string' != typeof str) return !1;
1568
- var mime = -1 === str.indexOf('/') ? exports1.lookup(str) : str;
1569
- if (!mime) return !1;
1570
- if (-1 === mime.indexOf('charset')) {
1571
- var charset = exports1.charset(mime);
1572
- charset && (mime += '; charset=' + charset.toLowerCase());
1573
- }
1574
- return mime;
1575
- }, exports1.extension = function(type) {
1576
- if (!type || 'string' != typeof type) return !1;
1577
- var match = EXTRACT_TYPE_REGEXP.exec(type), exts = match && exports1.extensions[match[1].toLowerCase()];
1578
- return !!exts && !!exts.length && exts[0];
1579
- }, exports1.extensions = Object.create(null), exports1.lookup = function(path) {
1580
- if (!path || 'string' != typeof path) return !1;
1581
- var extension = extname('x.' + path).toLowerCase().substr(1);
1582
- return !!extension && (exports1.types[extension] || !1);
1583
- }, exports1.types = Object.create(null), extensions = exports1.extensions, types = exports1.types, preference = [
1584
- 'nginx',
1585
- 'apache',
1586
- void 0,
1587
- 'iana'
1588
- ], Object.keys(db).forEach(function(type) {
1589
- var mime = db[type], exts = mime.extensions;
1590
- if (exts && exts.length) {
1591
- extensions[type] = exts;
1592
- for(var i = 0; i < exts.length; i++){
1593
- var extension = exts[i];
1594
- if (types[extension]) {
1595
- var from = preference.indexOf(db[types[extension]].source), to = preference.indexOf(mime.source);
1596
- if ('application/octet-stream' !== types[extension] && (from > to || from === to && 'application/' === types[extension].substr(0, 12))) continue;
1597
- }
1598
- types[extension] = type;
1599
- }
1600
- }
1601
- });
1602
- },
1603
- "../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js" (module) {
1604
- function plural(ms, msAbs, n, name) {
1605
- return Math.round(ms / n) + ' ' + name + (msAbs >= 1.5 * n ? 's' : '');
1606
- }
1607
- module.exports = function(val, options) {
1608
- options = options || {};
1609
- var ms, msAbs, ms1, msAbs1, type = typeof val;
1610
- if ('string' === type && val.length > 0) {
1611
- var str = val;
1612
- if (!((str = String(str)).length > 100)) {
1613
- var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(str);
1614
- if (match) {
1615
- var n = parseFloat(match[1]);
1616
- switch((match[2] || 'ms').toLowerCase()){
1617
- case 'years':
1618
- case 'year':
1619
- case 'yrs':
1620
- case 'yr':
1621
- case 'y':
1622
- return 31557600000 * n;
1623
- case 'weeks':
1624
- case 'week':
1625
- case 'w':
1626
- return 604800000 * n;
1627
- case 'days':
1628
- case 'day':
1629
- case 'd':
1630
- return 86400000 * n;
1631
- case 'hours':
1632
- case 'hour':
1633
- case 'hrs':
1634
- case 'hr':
1635
- case 'h':
1636
- return 3600000 * n;
1637
- case 'minutes':
1638
- case 'minute':
1639
- case 'mins':
1640
- case 'min':
1641
- case 'm':
1642
- return 60000 * n;
1643
- case 'seconds':
1644
- case 'second':
1645
- case 'secs':
1646
- case 'sec':
1647
- case 's':
1648
- return 1000 * n;
1649
- case 'milliseconds':
1650
- case 'millisecond':
1651
- case 'msecs':
1652
- case 'msec':
1653
- case 'ms':
1654
- return n;
1655
- default:
1656
- break;
1657
- }
1658
- }
1659
- }
1660
- return;
1661
- }
1662
- if ('number' === type && isFinite(val)) {
1663
- return options.long ? (msAbs = Math.abs(ms = val)) >= 86400000 ? plural(ms, msAbs, 86400000, 'day') : msAbs >= 3600000 ? plural(ms, msAbs, 3600000, 'hour') : msAbs >= 60000 ? plural(ms, msAbs, 60000, 'minute') : msAbs >= 1000 ? plural(ms, msAbs, 1000, 'second') : ms + ' ms' : (msAbs1 = Math.abs(ms1 = val)) >= 86400000 ? Math.round(ms1 / 86400000) + 'd' : msAbs1 >= 3600000 ? Math.round(ms1 / 3600000) + 'h' : msAbs1 >= 60000 ? Math.round(ms1 / 60000) + 'm' : msAbs1 >= 1000 ? Math.round(ms1 / 1000) + 's' : ms1 + 'ms';
1664
- }
1665
- throw Error('val is not a non-empty string or a valid number. val=' + JSON.stringify(val));
1666
- };
1667
- },
1668
3
  "../../node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/picocolors.js" (module) {
1669
4
  let p = process || {}, argv = p.argv || [], env = p.env || {}, isColorSupported = !(env.NO_COLOR || argv.includes("--no-color")) && (!!env.FORCE_COLOR || argv.includes("--color") || "win32" === p.platform || (p.stdout || {}).isTTY && "dumb" !== env.TERM || !!env.CI), formatter = (open, close, replace = open)=>(input)=>{
1670
5
  let string = "" + input, index = string.indexOf(close, open.length);
@@ -1722,127 +57,6 @@ var __webpack_modules__ = {
1722
57
  };
1723
58
  };
1724
59
  module.exports = createColors(), module.exports.createColors = createColors;
1725
- },
1726
- "../../node_modules/.pnpm/proxy-from-env@1.1.0/node_modules/proxy-from-env/index.js" (__unused_rspack_module, exports1, __webpack_require__) {
1727
- "use strict";
1728
- var parseUrl = __webpack_require__("url").parse, DEFAULT_PORTS = {
1729
- ftp: 21,
1730
- gopher: 70,
1731
- http: 80,
1732
- https: 443,
1733
- ws: 80,
1734
- wss: 443
1735
- }, stringEndsWith = String.prototype.endsWith || function(s) {
1736
- return s.length <= this.length && -1 !== this.indexOf(s, this.length - s.length);
1737
- };
1738
- function getEnv(key) {
1739
- return process.env[key.toLowerCase()] || process.env[key.toUpperCase()] || '';
1740
- }
1741
- exports1.getProxyForUrl = function(url) {
1742
- var hostname, port, NO_PROXY, parsedUrl = 'string' == typeof url ? parseUrl(url) : url || {}, proto = parsedUrl.protocol, hostname1 = parsedUrl.host, port1 = parsedUrl.port;
1743
- if ('string' != typeof hostname1 || !hostname1 || 'string' != typeof proto) return '';
1744
- if (proto = proto.split(':', 1)[0], hostname = hostname1 = hostname1.replace(/:\d*$/, ''), port = port1 = parseInt(port1) || DEFAULT_PORTS[proto] || 0, !(!(NO_PROXY = (getEnv('npm_config_no_proxy') || getEnv('no_proxy')).toLowerCase()) || '*' !== NO_PROXY && NO_PROXY.split(/[,\s]/).every(function(proxy) {
1745
- if (!proxy) return !0;
1746
- var parsedProxy = proxy.match(/^(.+):(\d+)$/), parsedProxyHostname = parsedProxy ? parsedProxy[1] : proxy, parsedProxyPort = parsedProxy ? parseInt(parsedProxy[2]) : 0;
1747
- return !!parsedProxyPort && parsedProxyPort !== port || (/^[.*]/.test(parsedProxyHostname) ? ('*' === parsedProxyHostname.charAt(0) && (parsedProxyHostname = parsedProxyHostname.slice(1)), !stringEndsWith.call(hostname, parsedProxyHostname)) : hostname !== parsedProxyHostname);
1748
- }))) return '';
1749
- var proxy = getEnv('npm_config_' + proto + '_proxy') || getEnv(proto + '_proxy') || getEnv('npm_config_proxy') || getEnv('all_proxy');
1750
- return proxy && -1 === proxy.indexOf('://') && (proxy = proto + '://' + proxy), proxy;
1751
- };
1752
- },
1753
- "../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js" (module, __unused_rspack_exports, __webpack_require__) {
1754
- "use strict";
1755
- let forceColor, os = __webpack_require__("os"), hasFlag = __webpack_require__("../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js"), env = process.env;
1756
- function getSupportLevel(stream) {
1757
- var level;
1758
- return 0 !== (level = function(stream) {
1759
- if (!1 === forceColor) return 0;
1760
- if (hasFlag('color=16m') || hasFlag('color=full') || hasFlag('color=truecolor')) return 3;
1761
- if (hasFlag('color=256')) return 2;
1762
- if (stream && !stream.isTTY && !0 !== forceColor) return 0;
1763
- let min = +!!forceColor;
1764
- if ('win32' === process.platform) {
1765
- let osRelease = os.release().split('.');
1766
- return Number(process.versions.node.split('.')[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586 ? Number(osRelease[2]) >= 14931 ? 3 : 2 : 1;
1767
- }
1768
- if ('CI' in env) return [
1769
- 'TRAVIS',
1770
- 'CIRCLECI',
1771
- 'APPVEYOR',
1772
- 'GITLAB_CI'
1773
- ].some((sign)=>sign in env) || 'codeship' === env.CI_NAME ? 1 : min;
1774
- if ('TEAMCITY_VERSION' in env) return +!!/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION);
1775
- if ('truecolor' === env.COLORTERM) return 3;
1776
- if ('TERM_PROGRAM' in env) {
1777
- let version = parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);
1778
- switch(env.TERM_PROGRAM){
1779
- case 'iTerm.app':
1780
- return version >= 3 ? 3 : 2;
1781
- case 'Apple_Terminal':
1782
- return 2;
1783
- }
1784
- }
1785
- return /-256(color)?$/i.test(env.TERM) ? 2 : /^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM) || 'COLORTERM' in env ? 1 : (env.TERM, min);
1786
- }(stream)) && {
1787
- level,
1788
- hasBasic: !0,
1789
- has256: level >= 2,
1790
- has16m: level >= 3
1791
- };
1792
- }
1793
- hasFlag('no-color') || hasFlag('no-colors') || hasFlag('color=false') ? forceColor = !1 : (hasFlag('color') || hasFlag('colors') || hasFlag('color=true') || hasFlag('color=always')) && (forceColor = !0), 'FORCE_COLOR' in env && (forceColor = 0 === env.FORCE_COLOR.length || 0 !== parseInt(env.FORCE_COLOR, 10)), module.exports = {
1794
- supportsColor: getSupportLevel,
1795
- stdout: getSupportLevel(process.stdout),
1796
- stderr: getSupportLevel(process.stderr)
1797
- };
1798
- },
1799
- assert (module) {
1800
- "use strict";
1801
- module.exports = require("assert");
1802
- },
1803
- crypto (module) {
1804
- "use strict";
1805
- module.exports = require("crypto");
1806
- },
1807
- fs (module) {
1808
- "use strict";
1809
- module.exports = require("fs");
1810
- },
1811
- http (module) {
1812
- "use strict";
1813
- module.exports = require("http");
1814
- },
1815
- https (module) {
1816
- "use strict";
1817
- module.exports = require("https");
1818
- },
1819
- os (module) {
1820
- "use strict";
1821
- module.exports = require("os");
1822
- },
1823
- path (module) {
1824
- "use strict";
1825
- module.exports = require("path");
1826
- },
1827
- stream (module) {
1828
- "use strict";
1829
- module.exports = require("stream");
1830
- },
1831
- tty (module) {
1832
- "use strict";
1833
- module.exports = require("tty");
1834
- },
1835
- url (module) {
1836
- "use strict";
1837
- module.exports = require("url");
1838
- },
1839
- util (module) {
1840
- "use strict";
1841
- module.exports = require("util");
1842
- },
1843
- "../../node_modules/.pnpm/mime-db@1.52.0/node_modules/mime-db/db.json" (module) {
1844
- "use strict";
1845
- module.exports = JSON.parse('{"application/1d-interleaved-parityfec":{"source":"iana"},"application/3gpdash-qoe-report+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/3gpp-ims+xml":{"source":"iana","compressible":true},"application/3gpphal+json":{"source":"iana","compressible":true},"application/3gpphalforms+json":{"source":"iana","compressible":true},"application/a2l":{"source":"iana"},"application/ace+cbor":{"source":"iana"},"application/activemessage":{"source":"iana"},"application/activity+json":{"source":"iana","compressible":true},"application/alto-costmap+json":{"source":"iana","compressible":true},"application/alto-costmapfilter+json":{"source":"iana","compressible":true},"application/alto-directory+json":{"source":"iana","compressible":true},"application/alto-endpointcost+json":{"source":"iana","compressible":true},"application/alto-endpointcostparams+json":{"source":"iana","compressible":true},"application/alto-endpointprop+json":{"source":"iana","compressible":true},"application/alto-endpointpropparams+json":{"source":"iana","compressible":true},"application/alto-error+json":{"source":"iana","compressible":true},"application/alto-networkmap+json":{"source":"iana","compressible":true},"application/alto-networkmapfilter+json":{"source":"iana","compressible":true},"application/alto-updatestreamcontrol+json":{"source":"iana","compressible":true},"application/alto-updatestreamparams+json":{"source":"iana","compressible":true},"application/aml":{"source":"iana"},"application/andrew-inset":{"source":"iana","extensions":["ez"]},"application/applefile":{"source":"iana"},"application/applixware":{"source":"apache","extensions":["aw"]},"application/at+jwt":{"source":"iana"},"application/atf":{"source":"iana"},"application/atfx":{"source":"iana"},"application/atom+xml":{"source":"iana","compressible":true,"extensions":["atom"]},"application/atomcat+xml":{"source":"iana","compressible":true,"extensions":["atomcat"]},"application/atomdeleted+xml":{"source":"iana","compressible":true,"extensions":["atomdeleted"]},"application/atomicmail":{"source":"iana"},"application/atomsvc+xml":{"source":"iana","compressible":true,"extensions":["atomsvc"]},"application/atsc-dwd+xml":{"source":"iana","compressible":true,"extensions":["dwd"]},"application/atsc-dynamic-event-message":{"source":"iana"},"application/atsc-held+xml":{"source":"iana","compressible":true,"extensions":["held"]},"application/atsc-rdt+json":{"source":"iana","compressible":true},"application/atsc-rsat+xml":{"source":"iana","compressible":true,"extensions":["rsat"]},"application/atxml":{"source":"iana"},"application/auth-policy+xml":{"source":"iana","compressible":true},"application/bacnet-xdd+zip":{"source":"iana","compressible":false},"application/batch-smtp":{"source":"iana"},"application/bdoc":{"compressible":false,"extensions":["bdoc"]},"application/beep+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/calendar+json":{"source":"iana","compressible":true},"application/calendar+xml":{"source":"iana","compressible":true,"extensions":["xcs"]},"application/call-completion":{"source":"iana"},"application/cals-1840":{"source":"iana"},"application/captive+json":{"source":"iana","compressible":true},"application/cbor":{"source":"iana"},"application/cbor-seq":{"source":"iana"},"application/cccex":{"source":"iana"},"application/ccmp+xml":{"source":"iana","compressible":true},"application/ccxml+xml":{"source":"iana","compressible":true,"extensions":["ccxml"]},"application/cdfx+xml":{"source":"iana","compressible":true,"extensions":["cdfx"]},"application/cdmi-capability":{"source":"iana","extensions":["cdmia"]},"application/cdmi-container":{"source":"iana","extensions":["cdmic"]},"application/cdmi-domain":{"source":"iana","extensions":["cdmid"]},"application/cdmi-object":{"source":"iana","extensions":["cdmio"]},"application/cdmi-queue":{"source":"iana","extensions":["cdmiq"]},"application/cdni":{"source":"iana"},"application/cea":{"source":"iana"},"application/cea-2018+xml":{"source":"iana","compressible":true},"application/cellml+xml":{"source":"iana","compressible":true},"application/cfw":{"source":"iana"},"application/city+json":{"source":"iana","compressible":true},"application/clr":{"source":"iana"},"application/clue+xml":{"source":"iana","compressible":true},"application/clue_info+xml":{"source":"iana","compressible":true},"application/cms":{"source":"iana"},"application/cnrp+xml":{"source":"iana","compressible":true},"application/coap-group+json":{"source":"iana","compressible":true},"application/coap-payload":{"source":"iana"},"application/commonground":{"source":"iana"},"application/conference-info+xml":{"source":"iana","compressible":true},"application/cose":{"source":"iana"},"application/cose-key":{"source":"iana"},"application/cose-key-set":{"source":"iana"},"application/cpl+xml":{"source":"iana","compressible":true,"extensions":["cpl"]},"application/csrattrs":{"source":"iana"},"application/csta+xml":{"source":"iana","compressible":true},"application/cstadata+xml":{"source":"iana","compressible":true},"application/csvm+json":{"source":"iana","compressible":true},"application/cu-seeme":{"source":"apache","extensions":["cu"]},"application/cwt":{"source":"iana"},"application/cybercash":{"source":"iana"},"application/dart":{"compressible":true},"application/dash+xml":{"source":"iana","compressible":true,"extensions":["mpd"]},"application/dash-patch+xml":{"source":"iana","compressible":true,"extensions":["mpp"]},"application/dashdelta":{"source":"iana"},"application/davmount+xml":{"source":"iana","compressible":true,"extensions":["davmount"]},"application/dca-rft":{"source":"iana"},"application/dcd":{"source":"iana"},"application/dec-dx":{"source":"iana"},"application/dialog-info+xml":{"source":"iana","compressible":true},"application/dicom":{"source":"iana"},"application/dicom+json":{"source":"iana","compressible":true},"application/dicom+xml":{"source":"iana","compressible":true},"application/dii":{"source":"iana"},"application/dit":{"source":"iana"},"application/dns":{"source":"iana"},"application/dns+json":{"source":"iana","compressible":true},"application/dns-message":{"source":"iana"},"application/docbook+xml":{"source":"apache","compressible":true,"extensions":["dbk"]},"application/dots+cbor":{"source":"iana"},"application/dskpp+xml":{"source":"iana","compressible":true},"application/dssc+der":{"source":"iana","extensions":["dssc"]},"application/dssc+xml":{"source":"iana","compressible":true,"extensions":["xdssc"]},"application/dvcs":{"source":"iana"},"application/ecmascript":{"source":"iana","compressible":true,"extensions":["es","ecma"]},"application/edi-consent":{"source":"iana"},"application/edi-x12":{"source":"iana","compressible":false},"application/edifact":{"source":"iana","compressible":false},"application/efi":{"source":"iana"},"application/elm+json":{"source":"iana","charset":"UTF-8","compressible":true},"application/elm+xml":{"source":"iana","compressible":true},"application/emergencycalldata.cap+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/emergencycalldata.comment+xml":{"source":"iana","compressible":true},"application/emergencycalldata.control+xml":{"source":"iana","compressible":true},"application/emergencycalldata.deviceinfo+xml":{"source":"iana","compressible":true},"application/emergencycalldata.ecall.msd":{"source":"iana"},"application/emergencycalldata.providerinfo+xml":{"source":"iana","compressible":true},"application/emergencycalldata.serviceinfo+xml":{"source":"iana","compressible":true},"application/emergencycalldata.subscriberinfo+xml":{"source":"iana","compressible":true},"application/emergencycalldata.veds+xml":{"source":"iana","compressible":true},"application/emma+xml":{"source":"iana","compressible":true,"extensions":["emma"]},"application/emotionml+xml":{"source":"iana","compressible":true,"extensions":["emotionml"]},"application/encaprtp":{"source":"iana"},"application/epp+xml":{"source":"iana","compressible":true},"application/epub+zip":{"source":"iana","compressible":false,"extensions":["epub"]},"application/eshop":{"source":"iana"},"application/exi":{"source":"iana","extensions":["exi"]},"application/expect-ct-report+json":{"source":"iana","compressible":true},"application/express":{"source":"iana","extensions":["exp"]},"application/fastinfoset":{"source":"iana"},"application/fastsoap":{"source":"iana"},"application/fdt+xml":{"source":"iana","compressible":true,"extensions":["fdt"]},"application/fhir+json":{"source":"iana","charset":"UTF-8","compressible":true},"application/fhir+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/fido.trusted-apps+json":{"compressible":true},"application/fits":{"source":"iana"},"application/flexfec":{"source":"iana"},"application/font-sfnt":{"source":"iana"},"application/font-tdpfr":{"source":"iana","extensions":["pfr"]},"application/font-woff":{"source":"iana","compressible":false},"application/framework-attributes+xml":{"source":"iana","compressible":true},"application/geo+json":{"source":"iana","compressible":true,"extensions":["geojson"]},"application/geo+json-seq":{"source":"iana"},"application/geopackage+sqlite3":{"source":"iana"},"application/geoxacml+xml":{"source":"iana","compressible":true},"application/gltf-buffer":{"source":"iana"},"application/gml+xml":{"source":"iana","compressible":true,"extensions":["gml"]},"application/gpx+xml":{"source":"apache","compressible":true,"extensions":["gpx"]},"application/gxf":{"source":"apache","extensions":["gxf"]},"application/gzip":{"source":"iana","compressible":false,"extensions":["gz"]},"application/h224":{"source":"iana"},"application/held+xml":{"source":"iana","compressible":true},"application/hjson":{"extensions":["hjson"]},"application/http":{"source":"iana"},"application/hyperstudio":{"source":"iana","extensions":["stk"]},"application/ibe-key-request+xml":{"source":"iana","compressible":true},"application/ibe-pkg-reply+xml":{"source":"iana","compressible":true},"application/ibe-pp-data":{"source":"iana"},"application/iges":{"source":"iana"},"application/im-iscomposing+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/index":{"source":"iana"},"application/index.cmd":{"source":"iana"},"application/index.obj":{"source":"iana"},"application/index.response":{"source":"iana"},"application/index.vnd":{"source":"iana"},"application/inkml+xml":{"source":"iana","compressible":true,"extensions":["ink","inkml"]},"application/iotp":{"source":"iana"},"application/ipfix":{"source":"iana","extensions":["ipfix"]},"application/ipp":{"source":"iana"},"application/isup":{"source":"iana"},"application/its+xml":{"source":"iana","compressible":true,"extensions":["its"]},"application/java-archive":{"source":"apache","compressible":false,"extensions":["jar","war","ear"]},"application/java-serialized-object":{"source":"apache","compressible":false,"extensions":["ser"]},"application/java-vm":{"source":"apache","compressible":false,"extensions":["class"]},"application/javascript":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["js","mjs"]},"application/jf2feed+json":{"source":"iana","compressible":true},"application/jose":{"source":"iana"},"application/jose+json":{"source":"iana","compressible":true},"application/jrd+json":{"source":"iana","compressible":true},"application/jscalendar+json":{"source":"iana","compressible":true},"application/json":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["json","map"]},"application/json-patch+json":{"source":"iana","compressible":true},"application/json-seq":{"source":"iana"},"application/json5":{"extensions":["json5"]},"application/jsonml+json":{"source":"apache","compressible":true,"extensions":["jsonml"]},"application/jwk+json":{"source":"iana","compressible":true},"application/jwk-set+json":{"source":"iana","compressible":true},"application/jwt":{"source":"iana"},"application/kpml-request+xml":{"source":"iana","compressible":true},"application/kpml-response+xml":{"source":"iana","compressible":true},"application/ld+json":{"source":"iana","compressible":true,"extensions":["jsonld"]},"application/lgr+xml":{"source":"iana","compressible":true,"extensions":["lgr"]},"application/link-format":{"source":"iana"},"application/load-control+xml":{"source":"iana","compressible":true},"application/lost+xml":{"source":"iana","compressible":true,"extensions":["lostxml"]},"application/lostsync+xml":{"source":"iana","compressible":true},"application/lpf+zip":{"source":"iana","compressible":false},"application/lxf":{"source":"iana"},"application/mac-binhex40":{"source":"iana","extensions":["hqx"]},"application/mac-compactpro":{"source":"apache","extensions":["cpt"]},"application/macwriteii":{"source":"iana"},"application/mads+xml":{"source":"iana","compressible":true,"extensions":["mads"]},"application/manifest+json":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["webmanifest"]},"application/marc":{"source":"iana","extensions":["mrc"]},"application/marcxml+xml":{"source":"iana","compressible":true,"extensions":["mrcx"]},"application/mathematica":{"source":"iana","extensions":["ma","nb","mb"]},"application/mathml+xml":{"source":"iana","compressible":true,"extensions":["mathml"]},"application/mathml-content+xml":{"source":"iana","compressible":true},"application/mathml-presentation+xml":{"source":"iana","compressible":true},"application/mbms-associated-procedure-description+xml":{"source":"iana","compressible":true},"application/mbms-deregister+xml":{"source":"iana","compressible":true},"application/mbms-envelope+xml":{"source":"iana","compressible":true},"application/mbms-msk+xml":{"source":"iana","compressible":true},"application/mbms-msk-response+xml":{"source":"iana","compressible":true},"application/mbms-protection-description+xml":{"source":"iana","compressible":true},"application/mbms-reception-report+xml":{"source":"iana","compressible":true},"application/mbms-register+xml":{"source":"iana","compressible":true},"application/mbms-register-response+xml":{"source":"iana","compressible":true},"application/mbms-schedule+xml":{"source":"iana","compressible":true},"application/mbms-user-service-description+xml":{"source":"iana","compressible":true},"application/mbox":{"source":"iana","extensions":["mbox"]},"application/media-policy-dataset+xml":{"source":"iana","compressible":true,"extensions":["mpf"]},"application/media_control+xml":{"source":"iana","compressible":true},"application/mediaservercontrol+xml":{"source":"iana","compressible":true,"extensions":["mscml"]},"application/merge-patch+json":{"source":"iana","compressible":true},"application/metalink+xml":{"source":"apache","compressible":true,"extensions":["metalink"]},"application/metalink4+xml":{"source":"iana","compressible":true,"extensions":["meta4"]},"application/mets+xml":{"source":"iana","compressible":true,"extensions":["mets"]},"application/mf4":{"source":"iana"},"application/mikey":{"source":"iana"},"application/mipc":{"source":"iana"},"application/missing-blocks+cbor-seq":{"source":"iana"},"application/mmt-aei+xml":{"source":"iana","compressible":true,"extensions":["maei"]},"application/mmt-usd+xml":{"source":"iana","compressible":true,"extensions":["musd"]},"application/mods+xml":{"source":"iana","compressible":true,"extensions":["mods"]},"application/moss-keys":{"source":"iana"},"application/moss-signature":{"source":"iana"},"application/mosskey-data":{"source":"iana"},"application/mosskey-request":{"source":"iana"},"application/mp21":{"source":"iana","extensions":["m21","mp21"]},"application/mp4":{"source":"iana","extensions":["mp4s","m4p"]},"application/mpeg4-generic":{"source":"iana"},"application/mpeg4-iod":{"source":"iana"},"application/mpeg4-iod-xmt":{"source":"iana"},"application/mrb-consumer+xml":{"source":"iana","compressible":true},"application/mrb-publish+xml":{"source":"iana","compressible":true},"application/msc-ivr+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/msc-mixer+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/msword":{"source":"iana","compressible":false,"extensions":["doc","dot"]},"application/mud+json":{"source":"iana","compressible":true},"application/multipart-core":{"source":"iana"},"application/mxf":{"source":"iana","extensions":["mxf"]},"application/n-quads":{"source":"iana","extensions":["nq"]},"application/n-triples":{"source":"iana","extensions":["nt"]},"application/nasdata":{"source":"iana"},"application/news-checkgroups":{"source":"iana","charset":"US-ASCII"},"application/news-groupinfo":{"source":"iana","charset":"US-ASCII"},"application/news-transmission":{"source":"iana"},"application/nlsml+xml":{"source":"iana","compressible":true},"application/node":{"source":"iana","extensions":["cjs"]},"application/nss":{"source":"iana"},"application/oauth-authz-req+jwt":{"source":"iana"},"application/oblivious-dns-message":{"source":"iana"},"application/ocsp-request":{"source":"iana"},"application/ocsp-response":{"source":"iana"},"application/octet-stream":{"source":"iana","compressible":false,"extensions":["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"]},"application/oda":{"source":"iana","extensions":["oda"]},"application/odm+xml":{"source":"iana","compressible":true},"application/odx":{"source":"iana"},"application/oebps-package+xml":{"source":"iana","compressible":true,"extensions":["opf"]},"application/ogg":{"source":"iana","compressible":false,"extensions":["ogx"]},"application/omdoc+xml":{"source":"apache","compressible":true,"extensions":["omdoc"]},"application/onenote":{"source":"apache","extensions":["onetoc","onetoc2","onetmp","onepkg"]},"application/opc-nodeset+xml":{"source":"iana","compressible":true},"application/oscore":{"source":"iana"},"application/oxps":{"source":"iana","extensions":["oxps"]},"application/p21":{"source":"iana"},"application/p21+zip":{"source":"iana","compressible":false},"application/p2p-overlay+xml":{"source":"iana","compressible":true,"extensions":["relo"]},"application/parityfec":{"source":"iana"},"application/passport":{"source":"iana"},"application/patch-ops-error+xml":{"source":"iana","compressible":true,"extensions":["xer"]},"application/pdf":{"source":"iana","compressible":false,"extensions":["pdf"]},"application/pdx":{"source":"iana"},"application/pem-certificate-chain":{"source":"iana"},"application/pgp-encrypted":{"source":"iana","compressible":false,"extensions":["pgp"]},"application/pgp-keys":{"source":"iana","extensions":["asc"]},"application/pgp-signature":{"source":"iana","extensions":["asc","sig"]},"application/pics-rules":{"source":"apache","extensions":["prf"]},"application/pidf+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/pidf-diff+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/pkcs10":{"source":"iana","extensions":["p10"]},"application/pkcs12":{"source":"iana"},"application/pkcs7-mime":{"source":"iana","extensions":["p7m","p7c"]},"application/pkcs7-signature":{"source":"iana","extensions":["p7s"]},"application/pkcs8":{"source":"iana","extensions":["p8"]},"application/pkcs8-encrypted":{"source":"iana"},"application/pkix-attr-cert":{"source":"iana","extensions":["ac"]},"application/pkix-cert":{"source":"iana","extensions":["cer"]},"application/pkix-crl":{"source":"iana","extensions":["crl"]},"application/pkix-pkipath":{"source":"iana","extensions":["pkipath"]},"application/pkixcmp":{"source":"iana","extensions":["pki"]},"application/pls+xml":{"source":"iana","compressible":true,"extensions":["pls"]},"application/poc-settings+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/postscript":{"source":"iana","compressible":true,"extensions":["ai","eps","ps"]},"application/ppsp-tracker+json":{"source":"iana","compressible":true},"application/problem+json":{"source":"iana","compressible":true},"application/problem+xml":{"source":"iana","compressible":true},"application/provenance+xml":{"source":"iana","compressible":true,"extensions":["provx"]},"application/prs.alvestrand.titrax-sheet":{"source":"iana"},"application/prs.cww":{"source":"iana","extensions":["cww"]},"application/prs.cyn":{"source":"iana","charset":"7-BIT"},"application/prs.hpub+zip":{"source":"iana","compressible":false},"application/prs.nprend":{"source":"iana"},"application/prs.plucker":{"source":"iana"},"application/prs.rdf-xml-crypt":{"source":"iana"},"application/prs.xsf+xml":{"source":"iana","compressible":true},"application/pskc+xml":{"source":"iana","compressible":true,"extensions":["pskcxml"]},"application/pvd+json":{"source":"iana","compressible":true},"application/qsig":{"source":"iana"},"application/raml+yaml":{"compressible":true,"extensions":["raml"]},"application/raptorfec":{"source":"iana"},"application/rdap+json":{"source":"iana","compressible":true},"application/rdf+xml":{"source":"iana","compressible":true,"extensions":["rdf","owl"]},"application/reginfo+xml":{"source":"iana","compressible":true,"extensions":["rif"]},"application/relax-ng-compact-syntax":{"source":"iana","extensions":["rnc"]},"application/remote-printing":{"source":"iana"},"application/reputon+json":{"source":"iana","compressible":true},"application/resource-lists+xml":{"source":"iana","compressible":true,"extensions":["rl"]},"application/resource-lists-diff+xml":{"source":"iana","compressible":true,"extensions":["rld"]},"application/rfc+xml":{"source":"iana","compressible":true},"application/riscos":{"source":"iana"},"application/rlmi+xml":{"source":"iana","compressible":true},"application/rls-services+xml":{"source":"iana","compressible":true,"extensions":["rs"]},"application/route-apd+xml":{"source":"iana","compressible":true,"extensions":["rapd"]},"application/route-s-tsid+xml":{"source":"iana","compressible":true,"extensions":["sls"]},"application/route-usd+xml":{"source":"iana","compressible":true,"extensions":["rusd"]},"application/rpki-ghostbusters":{"source":"iana","extensions":["gbr"]},"application/rpki-manifest":{"source":"iana","extensions":["mft"]},"application/rpki-publication":{"source":"iana"},"application/rpki-roa":{"source":"iana","extensions":["roa"]},"application/rpki-updown":{"source":"iana"},"application/rsd+xml":{"source":"apache","compressible":true,"extensions":["rsd"]},"application/rss+xml":{"source":"apache","compressible":true,"extensions":["rss"]},"application/rtf":{"source":"iana","compressible":true,"extensions":["rtf"]},"application/rtploopback":{"source":"iana"},"application/rtx":{"source":"iana"},"application/samlassertion+xml":{"source":"iana","compressible":true},"application/samlmetadata+xml":{"source":"iana","compressible":true},"application/sarif+json":{"source":"iana","compressible":true},"application/sarif-external-properties+json":{"source":"iana","compressible":true},"application/sbe":{"source":"iana"},"application/sbml+xml":{"source":"iana","compressible":true,"extensions":["sbml"]},"application/scaip+xml":{"source":"iana","compressible":true},"application/scim+json":{"source":"iana","compressible":true},"application/scvp-cv-request":{"source":"iana","extensions":["scq"]},"application/scvp-cv-response":{"source":"iana","extensions":["scs"]},"application/scvp-vp-request":{"source":"iana","extensions":["spq"]},"application/scvp-vp-response":{"source":"iana","extensions":["spp"]},"application/sdp":{"source":"iana","extensions":["sdp"]},"application/secevent+jwt":{"source":"iana"},"application/senml+cbor":{"source":"iana"},"application/senml+json":{"source":"iana","compressible":true},"application/senml+xml":{"source":"iana","compressible":true,"extensions":["senmlx"]},"application/senml-etch+cbor":{"source":"iana"},"application/senml-etch+json":{"source":"iana","compressible":true},"application/senml-exi":{"source":"iana"},"application/sensml+cbor":{"source":"iana"},"application/sensml+json":{"source":"iana","compressible":true},"application/sensml+xml":{"source":"iana","compressible":true,"extensions":["sensmlx"]},"application/sensml-exi":{"source":"iana"},"application/sep+xml":{"source":"iana","compressible":true},"application/sep-exi":{"source":"iana"},"application/session-info":{"source":"iana"},"application/set-payment":{"source":"iana"},"application/set-payment-initiation":{"source":"iana","extensions":["setpay"]},"application/set-registration":{"source":"iana"},"application/set-registration-initiation":{"source":"iana","extensions":["setreg"]},"application/sgml":{"source":"iana"},"application/sgml-open-catalog":{"source":"iana"},"application/shf+xml":{"source":"iana","compressible":true,"extensions":["shf"]},"application/sieve":{"source":"iana","extensions":["siv","sieve"]},"application/simple-filter+xml":{"source":"iana","compressible":true},"application/simple-message-summary":{"source":"iana"},"application/simplesymbolcontainer":{"source":"iana"},"application/sipc":{"source":"iana"},"application/slate":{"source":"iana"},"application/smil":{"source":"iana"},"application/smil+xml":{"source":"iana","compressible":true,"extensions":["smi","smil"]},"application/smpte336m":{"source":"iana"},"application/soap+fastinfoset":{"source":"iana"},"application/soap+xml":{"source":"iana","compressible":true},"application/sparql-query":{"source":"iana","extensions":["rq"]},"application/sparql-results+xml":{"source":"iana","compressible":true,"extensions":["srx"]},"application/spdx+json":{"source":"iana","compressible":true},"application/spirits-event+xml":{"source":"iana","compressible":true},"application/sql":{"source":"iana"},"application/srgs":{"source":"iana","extensions":["gram"]},"application/srgs+xml":{"source":"iana","compressible":true,"extensions":["grxml"]},"application/sru+xml":{"source":"iana","compressible":true,"extensions":["sru"]},"application/ssdl+xml":{"source":"apache","compressible":true,"extensions":["ssdl"]},"application/ssml+xml":{"source":"iana","compressible":true,"extensions":["ssml"]},"application/stix+json":{"source":"iana","compressible":true},"application/swid+xml":{"source":"iana","compressible":true,"extensions":["swidtag"]},"application/tamp-apex-update":{"source":"iana"},"application/tamp-apex-update-confirm":{"source":"iana"},"application/tamp-community-update":{"source":"iana"},"application/tamp-community-update-confirm":{"source":"iana"},"application/tamp-error":{"source":"iana"},"application/tamp-sequence-adjust":{"source":"iana"},"application/tamp-sequence-adjust-confirm":{"source":"iana"},"application/tamp-status-query":{"source":"iana"},"application/tamp-status-response":{"source":"iana"},"application/tamp-update":{"source":"iana"},"application/tamp-update-confirm":{"source":"iana"},"application/tar":{"compressible":true},"application/taxii+json":{"source":"iana","compressible":true},"application/td+json":{"source":"iana","compressible":true},"application/tei+xml":{"source":"iana","compressible":true,"extensions":["tei","teicorpus"]},"application/tetra_isi":{"source":"iana"},"application/thraud+xml":{"source":"iana","compressible":true,"extensions":["tfi"]},"application/timestamp-query":{"source":"iana"},"application/timestamp-reply":{"source":"iana"},"application/timestamped-data":{"source":"iana","extensions":["tsd"]},"application/tlsrpt+gzip":{"source":"iana"},"application/tlsrpt+json":{"source":"iana","compressible":true},"application/tnauthlist":{"source":"iana"},"application/token-introspection+jwt":{"source":"iana"},"application/toml":{"compressible":true,"extensions":["toml"]},"application/trickle-ice-sdpfrag":{"source":"iana"},"application/trig":{"source":"iana","extensions":["trig"]},"application/ttml+xml":{"source":"iana","compressible":true,"extensions":["ttml"]},"application/tve-trigger":{"source":"iana"},"application/tzif":{"source":"iana"},"application/tzif-leap":{"source":"iana"},"application/ubjson":{"compressible":false,"extensions":["ubj"]},"application/ulpfec":{"source":"iana"},"application/urc-grpsheet+xml":{"source":"iana","compressible":true},"application/urc-ressheet+xml":{"source":"iana","compressible":true,"extensions":["rsheet"]},"application/urc-targetdesc+xml":{"source":"iana","compressible":true,"extensions":["td"]},"application/urc-uisocketdesc+xml":{"source":"iana","compressible":true},"application/vcard+json":{"source":"iana","compressible":true},"application/vcard+xml":{"source":"iana","compressible":true},"application/vemmi":{"source":"iana"},"application/vividence.scriptfile":{"source":"apache"},"application/vnd.1000minds.decision-model+xml":{"source":"iana","compressible":true,"extensions":["1km"]},"application/vnd.3gpp-prose+xml":{"source":"iana","compressible":true},"application/vnd.3gpp-prose-pc3ch+xml":{"source":"iana","compressible":true},"application/vnd.3gpp-v2x-local-service-information":{"source":"iana"},"application/vnd.3gpp.5gnas":{"source":"iana"},"application/vnd.3gpp.access-transfer-events+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.bsf+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.gmop+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.gtpc":{"source":"iana"},"application/vnd.3gpp.interworking-data":{"source":"iana"},"application/vnd.3gpp.lpp":{"source":"iana"},"application/vnd.3gpp.mc-signalling-ear":{"source":"iana"},"application/vnd.3gpp.mcdata-affiliation-command+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcdata-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcdata-payload":{"source":"iana"},"application/vnd.3gpp.mcdata-service-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcdata-signalling":{"source":"iana"},"application/vnd.3gpp.mcdata-ue-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcdata-user-profile+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-affiliation-command+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-floor-request+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-location-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-mbms-usage-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-service-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-signed+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-ue-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-ue-init-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-user-profile+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-affiliation-command+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-affiliation-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-location-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-mbms-usage-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-service-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-transmission-request+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-ue-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-user-profile+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mid-call+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.ngap":{"source":"iana"},"application/vnd.3gpp.pfcp":{"source":"iana"},"application/vnd.3gpp.pic-bw-large":{"source":"iana","extensions":["plb"]},"application/vnd.3gpp.pic-bw-small":{"source":"iana","extensions":["psb"]},"application/vnd.3gpp.pic-bw-var":{"source":"iana","extensions":["pvb"]},"application/vnd.3gpp.s1ap":{"source":"iana"},"application/vnd.3gpp.sms":{"source":"iana"},"application/vnd.3gpp.sms+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.srvcc-ext+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.srvcc-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.state-and-event-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.ussd+xml":{"source":"iana","compressible":true},"application/vnd.3gpp2.bcmcsinfo+xml":{"source":"iana","compressible":true},"application/vnd.3gpp2.sms":{"source":"iana"},"application/vnd.3gpp2.tcap":{"source":"iana","extensions":["tcap"]},"application/vnd.3lightssoftware.imagescal":{"source":"iana"},"application/vnd.3m.post-it-notes":{"source":"iana","extensions":["pwn"]},"application/vnd.accpac.simply.aso":{"source":"iana","extensions":["aso"]},"application/vnd.accpac.simply.imp":{"source":"iana","extensions":["imp"]},"application/vnd.acucobol":{"source":"iana","extensions":["acu"]},"application/vnd.acucorp":{"source":"iana","extensions":["atc","acutc"]},"application/vnd.adobe.air-application-installer-package+zip":{"source":"apache","compressible":false,"extensions":["air"]},"application/vnd.adobe.flash.movie":{"source":"iana"},"application/vnd.adobe.formscentral.fcdt":{"source":"iana","extensions":["fcdt"]},"application/vnd.adobe.fxp":{"source":"iana","extensions":["fxp","fxpl"]},"application/vnd.adobe.partial-upload":{"source":"iana"},"application/vnd.adobe.xdp+xml":{"source":"iana","compressible":true,"extensions":["xdp"]},"application/vnd.adobe.xfdf":{"source":"iana","extensions":["xfdf"]},"application/vnd.aether.imp":{"source":"iana"},"application/vnd.afpc.afplinedata":{"source":"iana"},"application/vnd.afpc.afplinedata-pagedef":{"source":"iana"},"application/vnd.afpc.cmoca-cmresource":{"source":"iana"},"application/vnd.afpc.foca-charset":{"source":"iana"},"application/vnd.afpc.foca-codedfont":{"source":"iana"},"application/vnd.afpc.foca-codepage":{"source":"iana"},"application/vnd.afpc.modca":{"source":"iana"},"application/vnd.afpc.modca-cmtable":{"source":"iana"},"application/vnd.afpc.modca-formdef":{"source":"iana"},"application/vnd.afpc.modca-mediummap":{"source":"iana"},"application/vnd.afpc.modca-objectcontainer":{"source":"iana"},"application/vnd.afpc.modca-overlay":{"source":"iana"},"application/vnd.afpc.modca-pagesegment":{"source":"iana"},"application/vnd.age":{"source":"iana","extensions":["age"]},"application/vnd.ah-barcode":{"source":"iana"},"application/vnd.ahead.space":{"source":"iana","extensions":["ahead"]},"application/vnd.airzip.filesecure.azf":{"source":"iana","extensions":["azf"]},"application/vnd.airzip.filesecure.azs":{"source":"iana","extensions":["azs"]},"application/vnd.amadeus+json":{"source":"iana","compressible":true},"application/vnd.amazon.ebook":{"source":"apache","extensions":["azw"]},"application/vnd.amazon.mobi8-ebook":{"source":"iana"},"application/vnd.americandynamics.acc":{"source":"iana","extensions":["acc"]},"application/vnd.amiga.ami":{"source":"iana","extensions":["ami"]},"application/vnd.amundsen.maze+xml":{"source":"iana","compressible":true},"application/vnd.android.ota":{"source":"iana"},"application/vnd.android.package-archive":{"source":"apache","compressible":false,"extensions":["apk"]},"application/vnd.anki":{"source":"iana"},"application/vnd.anser-web-certificate-issue-initiation":{"source":"iana","extensions":["cii"]},"application/vnd.anser-web-funds-transfer-initiation":{"source":"apache","extensions":["fti"]},"application/vnd.antix.game-component":{"source":"iana","extensions":["atx"]},"application/vnd.apache.arrow.file":{"source":"iana"},"application/vnd.apache.arrow.stream":{"source":"iana"},"application/vnd.apache.thrift.binary":{"source":"iana"},"application/vnd.apache.thrift.compact":{"source":"iana"},"application/vnd.apache.thrift.json":{"source":"iana"},"application/vnd.api+json":{"source":"iana","compressible":true},"application/vnd.aplextor.warrp+json":{"source":"iana","compressible":true},"application/vnd.apothekende.reservation+json":{"source":"iana","compressible":true},"application/vnd.apple.installer+xml":{"source":"iana","compressible":true,"extensions":["mpkg"]},"application/vnd.apple.keynote":{"source":"iana","extensions":["key"]},"application/vnd.apple.mpegurl":{"source":"iana","extensions":["m3u8"]},"application/vnd.apple.numbers":{"source":"iana","extensions":["numbers"]},"application/vnd.apple.pages":{"source":"iana","extensions":["pages"]},"application/vnd.apple.pkpass":{"compressible":false,"extensions":["pkpass"]},"application/vnd.arastra.swi":{"source":"iana"},"application/vnd.aristanetworks.swi":{"source":"iana","extensions":["swi"]},"application/vnd.artisan+json":{"source":"iana","compressible":true},"application/vnd.artsquare":{"source":"iana"},"application/vnd.astraea-software.iota":{"source":"iana","extensions":["iota"]},"application/vnd.audiograph":{"source":"iana","extensions":["aep"]},"application/vnd.autopackage":{"source":"iana"},"application/vnd.avalon+json":{"source":"iana","compressible":true},"application/vnd.avistar+xml":{"source":"iana","compressible":true},"application/vnd.balsamiq.bmml+xml":{"source":"iana","compressible":true,"extensions":["bmml"]},"application/vnd.balsamiq.bmpr":{"source":"iana"},"application/vnd.banana-accounting":{"source":"iana"},"application/vnd.bbf.usp.error":{"source":"iana"},"application/vnd.bbf.usp.msg":{"source":"iana"},"application/vnd.bbf.usp.msg+json":{"source":"iana","compressible":true},"application/vnd.bekitzur-stech+json":{"source":"iana","compressible":true},"application/vnd.bint.med-content":{"source":"iana"},"application/vnd.biopax.rdf+xml":{"source":"iana","compressible":true},"application/vnd.blink-idb-value-wrapper":{"source":"iana"},"application/vnd.blueice.multipass":{"source":"iana","extensions":["mpm"]},"application/vnd.bluetooth.ep.oob":{"source":"iana"},"application/vnd.bluetooth.le.oob":{"source":"iana"},"application/vnd.bmi":{"source":"iana","extensions":["bmi"]},"application/vnd.bpf":{"source":"iana"},"application/vnd.bpf3":{"source":"iana"},"application/vnd.businessobjects":{"source":"iana","extensions":["rep"]},"application/vnd.byu.uapi+json":{"source":"iana","compressible":true},"application/vnd.cab-jscript":{"source":"iana"},"application/vnd.canon-cpdl":{"source":"iana"},"application/vnd.canon-lips":{"source":"iana"},"application/vnd.capasystems-pg+json":{"source":"iana","compressible":true},"application/vnd.cendio.thinlinc.clientconf":{"source":"iana"},"application/vnd.century-systems.tcp_stream":{"source":"iana"},"application/vnd.chemdraw+xml":{"source":"iana","compressible":true,"extensions":["cdxml"]},"application/vnd.chess-pgn":{"source":"iana"},"application/vnd.chipnuts.karaoke-mmd":{"source":"iana","extensions":["mmd"]},"application/vnd.ciedi":{"source":"iana"},"application/vnd.cinderella":{"source":"iana","extensions":["cdy"]},"application/vnd.cirpack.isdn-ext":{"source":"iana"},"application/vnd.citationstyles.style+xml":{"source":"iana","compressible":true,"extensions":["csl"]},"application/vnd.claymore":{"source":"iana","extensions":["cla"]},"application/vnd.cloanto.rp9":{"source":"iana","extensions":["rp9"]},"application/vnd.clonk.c4group":{"source":"iana","extensions":["c4g","c4d","c4f","c4p","c4u"]},"application/vnd.cluetrust.cartomobile-config":{"source":"iana","extensions":["c11amc"]},"application/vnd.cluetrust.cartomobile-config-pkg":{"source":"iana","extensions":["c11amz"]},"application/vnd.coffeescript":{"source":"iana"},"application/vnd.collabio.xodocuments.document":{"source":"iana"},"application/vnd.collabio.xodocuments.document-template":{"source":"iana"},"application/vnd.collabio.xodocuments.presentation":{"source":"iana"},"application/vnd.collabio.xodocuments.presentation-template":{"source":"iana"},"application/vnd.collabio.xodocuments.spreadsheet":{"source":"iana"},"application/vnd.collabio.xodocuments.spreadsheet-template":{"source":"iana"},"application/vnd.collection+json":{"source":"iana","compressible":true},"application/vnd.collection.doc+json":{"source":"iana","compressible":true},"application/vnd.collection.next+json":{"source":"iana","compressible":true},"application/vnd.comicbook+zip":{"source":"iana","compressible":false},"application/vnd.comicbook-rar":{"source":"iana"},"application/vnd.commerce-battelle":{"source":"iana"},"application/vnd.commonspace":{"source":"iana","extensions":["csp"]},"application/vnd.contact.cmsg":{"source":"iana","extensions":["cdbcmsg"]},"application/vnd.coreos.ignition+json":{"source":"iana","compressible":true},"application/vnd.cosmocaller":{"source":"iana","extensions":["cmc"]},"application/vnd.crick.clicker":{"source":"iana","extensions":["clkx"]},"application/vnd.crick.clicker.keyboard":{"source":"iana","extensions":["clkk"]},"application/vnd.crick.clicker.palette":{"source":"iana","extensions":["clkp"]},"application/vnd.crick.clicker.template":{"source":"iana","extensions":["clkt"]},"application/vnd.crick.clicker.wordbank":{"source":"iana","extensions":["clkw"]},"application/vnd.criticaltools.wbs+xml":{"source":"iana","compressible":true,"extensions":["wbs"]},"application/vnd.cryptii.pipe+json":{"source":"iana","compressible":true},"application/vnd.crypto-shade-file":{"source":"iana"},"application/vnd.cryptomator.encrypted":{"source":"iana"},"application/vnd.cryptomator.vault":{"source":"iana"},"application/vnd.ctc-posml":{"source":"iana","extensions":["pml"]},"application/vnd.ctct.ws+xml":{"source":"iana","compressible":true},"application/vnd.cups-pdf":{"source":"iana"},"application/vnd.cups-postscript":{"source":"iana"},"application/vnd.cups-ppd":{"source":"iana","extensions":["ppd"]},"application/vnd.cups-raster":{"source":"iana"},"application/vnd.cups-raw":{"source":"iana"},"application/vnd.curl":{"source":"iana"},"application/vnd.curl.car":{"source":"apache","extensions":["car"]},"application/vnd.curl.pcurl":{"source":"apache","extensions":["pcurl"]},"application/vnd.cyan.dean.root+xml":{"source":"iana","compressible":true},"application/vnd.cybank":{"source":"iana"},"application/vnd.cyclonedx+json":{"source":"iana","compressible":true},"application/vnd.cyclonedx+xml":{"source":"iana","compressible":true},"application/vnd.d2l.coursepackage1p0+zip":{"source":"iana","compressible":false},"application/vnd.d3m-dataset":{"source":"iana"},"application/vnd.d3m-problem":{"source":"iana"},"application/vnd.dart":{"source":"iana","compressible":true,"extensions":["dart"]},"application/vnd.data-vision.rdz":{"source":"iana","extensions":["rdz"]},"application/vnd.datapackage+json":{"source":"iana","compressible":true},"application/vnd.dataresource+json":{"source":"iana","compressible":true},"application/vnd.dbf":{"source":"iana","extensions":["dbf"]},"application/vnd.debian.binary-package":{"source":"iana"},"application/vnd.dece.data":{"source":"iana","extensions":["uvf","uvvf","uvd","uvvd"]},"application/vnd.dece.ttml+xml":{"source":"iana","compressible":true,"extensions":["uvt","uvvt"]},"application/vnd.dece.unspecified":{"source":"iana","extensions":["uvx","uvvx"]},"application/vnd.dece.zip":{"source":"iana","extensions":["uvz","uvvz"]},"application/vnd.denovo.fcselayout-link":{"source":"iana","extensions":["fe_launch"]},"application/vnd.desmume.movie":{"source":"iana"},"application/vnd.dir-bi.plate-dl-nosuffix":{"source":"iana"},"application/vnd.dm.delegation+xml":{"source":"iana","compressible":true},"application/vnd.dna":{"source":"iana","extensions":["dna"]},"application/vnd.document+json":{"source":"iana","compressible":true},"application/vnd.dolby.mlp":{"source":"apache","extensions":["mlp"]},"application/vnd.dolby.mobile.1":{"source":"iana"},"application/vnd.dolby.mobile.2":{"source":"iana"},"application/vnd.doremir.scorecloud-binary-document":{"source":"iana"},"application/vnd.dpgraph":{"source":"iana","extensions":["dpg"]},"application/vnd.dreamfactory":{"source":"iana","extensions":["dfac"]},"application/vnd.drive+json":{"source":"iana","compressible":true},"application/vnd.ds-keypoint":{"source":"apache","extensions":["kpxx"]},"application/vnd.dtg.local":{"source":"iana"},"application/vnd.dtg.local.flash":{"source":"iana"},"application/vnd.dtg.local.html":{"source":"iana"},"application/vnd.dvb.ait":{"source":"iana","extensions":["ait"]},"application/vnd.dvb.dvbisl+xml":{"source":"iana","compressible":true},"application/vnd.dvb.dvbj":{"source":"iana"},"application/vnd.dvb.esgcontainer":{"source":"iana"},"application/vnd.dvb.ipdcdftnotifaccess":{"source":"iana"},"application/vnd.dvb.ipdcesgaccess":{"source":"iana"},"application/vnd.dvb.ipdcesgaccess2":{"source":"iana"},"application/vnd.dvb.ipdcesgpdd":{"source":"iana"},"application/vnd.dvb.ipdcroaming":{"source":"iana"},"application/vnd.dvb.iptv.alfec-base":{"source":"iana"},"application/vnd.dvb.iptv.alfec-enhancement":{"source":"iana"},"application/vnd.dvb.notif-aggregate-root+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-container+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-generic+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-ia-msglist+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-ia-registration-request+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-ia-registration-response+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-init+xml":{"source":"iana","compressible":true},"application/vnd.dvb.pfr":{"source":"iana"},"application/vnd.dvb.service":{"source":"iana","extensions":["svc"]},"application/vnd.dxr":{"source":"iana"},"application/vnd.dynageo":{"source":"iana","extensions":["geo"]},"application/vnd.dzr":{"source":"iana"},"application/vnd.easykaraoke.cdgdownload":{"source":"iana"},"application/vnd.ecdis-update":{"source":"iana"},"application/vnd.ecip.rlp":{"source":"iana"},"application/vnd.eclipse.ditto+json":{"source":"iana","compressible":true},"application/vnd.ecowin.chart":{"source":"iana","extensions":["mag"]},"application/vnd.ecowin.filerequest":{"source":"iana"},"application/vnd.ecowin.fileupdate":{"source":"iana"},"application/vnd.ecowin.series":{"source":"iana"},"application/vnd.ecowin.seriesrequest":{"source":"iana"},"application/vnd.ecowin.seriesupdate":{"source":"iana"},"application/vnd.efi.img":{"source":"iana"},"application/vnd.efi.iso":{"source":"iana"},"application/vnd.emclient.accessrequest+xml":{"source":"iana","compressible":true},"application/vnd.enliven":{"source":"iana","extensions":["nml"]},"application/vnd.enphase.envoy":{"source":"iana"},"application/vnd.eprints.data+xml":{"source":"iana","compressible":true},"application/vnd.epson.esf":{"source":"iana","extensions":["esf"]},"application/vnd.epson.msf":{"source":"iana","extensions":["msf"]},"application/vnd.epson.quickanime":{"source":"iana","extensions":["qam"]},"application/vnd.epson.salt":{"source":"iana","extensions":["slt"]},"application/vnd.epson.ssf":{"source":"iana","extensions":["ssf"]},"application/vnd.ericsson.quickcall":{"source":"iana"},"application/vnd.espass-espass+zip":{"source":"iana","compressible":false},"application/vnd.eszigno3+xml":{"source":"iana","compressible":true,"extensions":["es3","et3"]},"application/vnd.etsi.aoc+xml":{"source":"iana","compressible":true},"application/vnd.etsi.asic-e+zip":{"source":"iana","compressible":false},"application/vnd.etsi.asic-s+zip":{"source":"iana","compressible":false},"application/vnd.etsi.cug+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvcommand+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvdiscovery+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvprofile+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvsad-bc+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvsad-cod+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvsad-npvr+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvservice+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvsync+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvueprofile+xml":{"source":"iana","compressible":true},"application/vnd.etsi.mcid+xml":{"source":"iana","compressible":true},"application/vnd.etsi.mheg5":{"source":"iana"},"application/vnd.etsi.overload-control-policy-dataset+xml":{"source":"iana","compressible":true},"application/vnd.etsi.pstn+xml":{"source":"iana","compressible":true},"application/vnd.etsi.sci+xml":{"source":"iana","compressible":true},"application/vnd.etsi.simservs+xml":{"source":"iana","compressible":true},"application/vnd.etsi.timestamp-token":{"source":"iana"},"application/vnd.etsi.tsl+xml":{"source":"iana","compressible":true},"application/vnd.etsi.tsl.der":{"source":"iana"},"application/vnd.eu.kasparian.car+json":{"source":"iana","compressible":true},"application/vnd.eudora.data":{"source":"iana"},"application/vnd.evolv.ecig.profile":{"source":"iana"},"application/vnd.evolv.ecig.settings":{"source":"iana"},"application/vnd.evolv.ecig.theme":{"source":"iana"},"application/vnd.exstream-empower+zip":{"source":"iana","compressible":false},"application/vnd.exstream-package":{"source":"iana"},"application/vnd.ezpix-album":{"source":"iana","extensions":["ez2"]},"application/vnd.ezpix-package":{"source":"iana","extensions":["ez3"]},"application/vnd.f-secure.mobile":{"source":"iana"},"application/vnd.familysearch.gedcom+zip":{"source":"iana","compressible":false},"application/vnd.fastcopy-disk-image":{"source":"iana"},"application/vnd.fdf":{"source":"iana","extensions":["fdf"]},"application/vnd.fdsn.mseed":{"source":"iana","extensions":["mseed"]},"application/vnd.fdsn.seed":{"source":"iana","extensions":["seed","dataless"]},"application/vnd.ffsns":{"source":"iana"},"application/vnd.ficlab.flb+zip":{"source":"iana","compressible":false},"application/vnd.filmit.zfc":{"source":"iana"},"application/vnd.fints":{"source":"iana"},"application/vnd.firemonkeys.cloudcell":{"source":"iana"},"application/vnd.flographit":{"source":"iana","extensions":["gph"]},"application/vnd.fluxtime.clip":{"source":"iana","extensions":["ftc"]},"application/vnd.font-fontforge-sfd":{"source":"iana"},"application/vnd.framemaker":{"source":"iana","extensions":["fm","frame","maker","book"]},"application/vnd.frogans.fnc":{"source":"iana","extensions":["fnc"]},"application/vnd.frogans.ltf":{"source":"iana","extensions":["ltf"]},"application/vnd.fsc.weblaunch":{"source":"iana","extensions":["fsc"]},"application/vnd.fujifilm.fb.docuworks":{"source":"iana"},"application/vnd.fujifilm.fb.docuworks.binder":{"source":"iana"},"application/vnd.fujifilm.fb.docuworks.container":{"source":"iana"},"application/vnd.fujifilm.fb.jfi+xml":{"source":"iana","compressible":true},"application/vnd.fujitsu.oasys":{"source":"iana","extensions":["oas"]},"application/vnd.fujitsu.oasys2":{"source":"iana","extensions":["oa2"]},"application/vnd.fujitsu.oasys3":{"source":"iana","extensions":["oa3"]},"application/vnd.fujitsu.oasysgp":{"source":"iana","extensions":["fg5"]},"application/vnd.fujitsu.oasysprs":{"source":"iana","extensions":["bh2"]},"application/vnd.fujixerox.art-ex":{"source":"iana"},"application/vnd.fujixerox.art4":{"source":"iana"},"application/vnd.fujixerox.ddd":{"source":"iana","extensions":["ddd"]},"application/vnd.fujixerox.docuworks":{"source":"iana","extensions":["xdw"]},"application/vnd.fujixerox.docuworks.binder":{"source":"iana","extensions":["xbd"]},"application/vnd.fujixerox.docuworks.container":{"source":"iana"},"application/vnd.fujixerox.hbpl":{"source":"iana"},"application/vnd.fut-misnet":{"source":"iana"},"application/vnd.futoin+cbor":{"source":"iana"},"application/vnd.futoin+json":{"source":"iana","compressible":true},"application/vnd.fuzzysheet":{"source":"iana","extensions":["fzs"]},"application/vnd.genomatix.tuxedo":{"source":"iana","extensions":["txd"]},"application/vnd.gentics.grd+json":{"source":"iana","compressible":true},"application/vnd.geo+json":{"source":"iana","compressible":true},"application/vnd.geocube+xml":{"source":"iana","compressible":true},"application/vnd.geogebra.file":{"source":"iana","extensions":["ggb"]},"application/vnd.geogebra.slides":{"source":"iana"},"application/vnd.geogebra.tool":{"source":"iana","extensions":["ggt"]},"application/vnd.geometry-explorer":{"source":"iana","extensions":["gex","gre"]},"application/vnd.geonext":{"source":"iana","extensions":["gxt"]},"application/vnd.geoplan":{"source":"iana","extensions":["g2w"]},"application/vnd.geospace":{"source":"iana","extensions":["g3w"]},"application/vnd.gerber":{"source":"iana"},"application/vnd.globalplatform.card-content-mgt":{"source":"iana"},"application/vnd.globalplatform.card-content-mgt-response":{"source":"iana"},"application/vnd.gmx":{"source":"iana","extensions":["gmx"]},"application/vnd.google-apps.document":{"compressible":false,"extensions":["gdoc"]},"application/vnd.google-apps.presentation":{"compressible":false,"extensions":["gslides"]},"application/vnd.google-apps.spreadsheet":{"compressible":false,"extensions":["gsheet"]},"application/vnd.google-earth.kml+xml":{"source":"iana","compressible":true,"extensions":["kml"]},"application/vnd.google-earth.kmz":{"source":"iana","compressible":false,"extensions":["kmz"]},"application/vnd.gov.sk.e-form+xml":{"source":"iana","compressible":true},"application/vnd.gov.sk.e-form+zip":{"source":"iana","compressible":false},"application/vnd.gov.sk.xmldatacontainer+xml":{"source":"iana","compressible":true},"application/vnd.grafeq":{"source":"iana","extensions":["gqf","gqs"]},"application/vnd.gridmp":{"source":"iana"},"application/vnd.groove-account":{"source":"iana","extensions":["gac"]},"application/vnd.groove-help":{"source":"iana","extensions":["ghf"]},"application/vnd.groove-identity-message":{"source":"iana","extensions":["gim"]},"application/vnd.groove-injector":{"source":"iana","extensions":["grv"]},"application/vnd.groove-tool-message":{"source":"iana","extensions":["gtm"]},"application/vnd.groove-tool-template":{"source":"iana","extensions":["tpl"]},"application/vnd.groove-vcard":{"source":"iana","extensions":["vcg"]},"application/vnd.hal+json":{"source":"iana","compressible":true},"application/vnd.hal+xml":{"source":"iana","compressible":true,"extensions":["hal"]},"application/vnd.handheld-entertainment+xml":{"source":"iana","compressible":true,"extensions":["zmm"]},"application/vnd.hbci":{"source":"iana","extensions":["hbci"]},"application/vnd.hc+json":{"source":"iana","compressible":true},"application/vnd.hcl-bireports":{"source":"iana"},"application/vnd.hdt":{"source":"iana"},"application/vnd.heroku+json":{"source":"iana","compressible":true},"application/vnd.hhe.lesson-player":{"source":"iana","extensions":["les"]},"application/vnd.hl7cda+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.hl7v2+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.hp-hpgl":{"source":"iana","extensions":["hpgl"]},"application/vnd.hp-hpid":{"source":"iana","extensions":["hpid"]},"application/vnd.hp-hps":{"source":"iana","extensions":["hps"]},"application/vnd.hp-jlyt":{"source":"iana","extensions":["jlt"]},"application/vnd.hp-pcl":{"source":"iana","extensions":["pcl"]},"application/vnd.hp-pclxl":{"source":"iana","extensions":["pclxl"]},"application/vnd.httphone":{"source":"iana"},"application/vnd.hydrostatix.sof-data":{"source":"iana","extensions":["sfd-hdstx"]},"application/vnd.hyper+json":{"source":"iana","compressible":true},"application/vnd.hyper-item+json":{"source":"iana","compressible":true},"application/vnd.hyperdrive+json":{"source":"iana","compressible":true},"application/vnd.hzn-3d-crossword":{"source":"iana"},"application/vnd.ibm.afplinedata":{"source":"iana"},"application/vnd.ibm.electronic-media":{"source":"iana"},"application/vnd.ibm.minipay":{"source":"iana","extensions":["mpy"]},"application/vnd.ibm.modcap":{"source":"iana","extensions":["afp","listafp","list3820"]},"application/vnd.ibm.rights-management":{"source":"iana","extensions":["irm"]},"application/vnd.ibm.secure-container":{"source":"iana","extensions":["sc"]},"application/vnd.iccprofile":{"source":"iana","extensions":["icc","icm"]},"application/vnd.ieee.1905":{"source":"iana"},"application/vnd.igloader":{"source":"iana","extensions":["igl"]},"application/vnd.imagemeter.folder+zip":{"source":"iana","compressible":false},"application/vnd.imagemeter.image+zip":{"source":"iana","compressible":false},"application/vnd.immervision-ivp":{"source":"iana","extensions":["ivp"]},"application/vnd.immervision-ivu":{"source":"iana","extensions":["ivu"]},"application/vnd.ims.imsccv1p1":{"source":"iana"},"application/vnd.ims.imsccv1p2":{"source":"iana"},"application/vnd.ims.imsccv1p3":{"source":"iana"},"application/vnd.ims.lis.v2.result+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolconsumerprofile+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolproxy+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolproxy.id+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolsettings+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolsettings.simple+json":{"source":"iana","compressible":true},"application/vnd.informedcontrol.rms+xml":{"source":"iana","compressible":true},"application/vnd.informix-visionary":{"source":"iana"},"application/vnd.infotech.project":{"source":"iana"},"application/vnd.infotech.project+xml":{"source":"iana","compressible":true},"application/vnd.innopath.wamp.notification":{"source":"iana"},"application/vnd.insors.igm":{"source":"iana","extensions":["igm"]},"application/vnd.intercon.formnet":{"source":"iana","extensions":["xpw","xpx"]},"application/vnd.intergeo":{"source":"iana","extensions":["i2g"]},"application/vnd.intertrust.digibox":{"source":"iana"},"application/vnd.intertrust.nncp":{"source":"iana"},"application/vnd.intu.qbo":{"source":"iana","extensions":["qbo"]},"application/vnd.intu.qfx":{"source":"iana","extensions":["qfx"]},"application/vnd.iptc.g2.catalogitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.conceptitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.knowledgeitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.newsitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.newsmessage+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.packageitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.planningitem+xml":{"source":"iana","compressible":true},"application/vnd.ipunplugged.rcprofile":{"source":"iana","extensions":["rcprofile"]},"application/vnd.irepository.package+xml":{"source":"iana","compressible":true,"extensions":["irp"]},"application/vnd.is-xpr":{"source":"iana","extensions":["xpr"]},"application/vnd.isac.fcs":{"source":"iana","extensions":["fcs"]},"application/vnd.iso11783-10+zip":{"source":"iana","compressible":false},"application/vnd.jam":{"source":"iana","extensions":["jam"]},"application/vnd.japannet-directory-service":{"source":"iana"},"application/vnd.japannet-jpnstore-wakeup":{"source":"iana"},"application/vnd.japannet-payment-wakeup":{"source":"iana"},"application/vnd.japannet-registration":{"source":"iana"},"application/vnd.japannet-registration-wakeup":{"source":"iana"},"application/vnd.japannet-setstore-wakeup":{"source":"iana"},"application/vnd.japannet-verification":{"source":"iana"},"application/vnd.japannet-verification-wakeup":{"source":"iana"},"application/vnd.jcp.javame.midlet-rms":{"source":"iana","extensions":["rms"]},"application/vnd.jisp":{"source":"iana","extensions":["jisp"]},"application/vnd.joost.joda-archive":{"source":"iana","extensions":["joda"]},"application/vnd.jsk.isdn-ngn":{"source":"iana"},"application/vnd.kahootz":{"source":"iana","extensions":["ktz","ktr"]},"application/vnd.kde.karbon":{"source":"iana","extensions":["karbon"]},"application/vnd.kde.kchart":{"source":"iana","extensions":["chrt"]},"application/vnd.kde.kformula":{"source":"iana","extensions":["kfo"]},"application/vnd.kde.kivio":{"source":"iana","extensions":["flw"]},"application/vnd.kde.kontour":{"source":"iana","extensions":["kon"]},"application/vnd.kde.kpresenter":{"source":"iana","extensions":["kpr","kpt"]},"application/vnd.kde.kspread":{"source":"iana","extensions":["ksp"]},"application/vnd.kde.kword":{"source":"iana","extensions":["kwd","kwt"]},"application/vnd.kenameaapp":{"source":"iana","extensions":["htke"]},"application/vnd.kidspiration":{"source":"iana","extensions":["kia"]},"application/vnd.kinar":{"source":"iana","extensions":["kne","knp"]},"application/vnd.koan":{"source":"iana","extensions":["skp","skd","skt","skm"]},"application/vnd.kodak-descriptor":{"source":"iana","extensions":["sse"]},"application/vnd.las":{"source":"iana"},"application/vnd.las.las+json":{"source":"iana","compressible":true},"application/vnd.las.las+xml":{"source":"iana","compressible":true,"extensions":["lasxml"]},"application/vnd.laszip":{"source":"iana"},"application/vnd.leap+json":{"source":"iana","compressible":true},"application/vnd.liberty-request+xml":{"source":"iana","compressible":true},"application/vnd.llamagraphics.life-balance.desktop":{"source":"iana","extensions":["lbd"]},"application/vnd.llamagraphics.life-balance.exchange+xml":{"source":"iana","compressible":true,"extensions":["lbe"]},"application/vnd.logipipe.circuit+zip":{"source":"iana","compressible":false},"application/vnd.loom":{"source":"iana"},"application/vnd.lotus-1-2-3":{"source":"iana","extensions":["123"]},"application/vnd.lotus-approach":{"source":"iana","extensions":["apr"]},"application/vnd.lotus-freelance":{"source":"iana","extensions":["pre"]},"application/vnd.lotus-notes":{"source":"iana","extensions":["nsf"]},"application/vnd.lotus-organizer":{"source":"iana","extensions":["org"]},"application/vnd.lotus-screencam":{"source":"iana","extensions":["scm"]},"application/vnd.lotus-wordpro":{"source":"iana","extensions":["lwp"]},"application/vnd.macports.portpkg":{"source":"iana","extensions":["portpkg"]},"application/vnd.mapbox-vector-tile":{"source":"iana","extensions":["mvt"]},"application/vnd.marlin.drm.actiontoken+xml":{"source":"iana","compressible":true},"application/vnd.marlin.drm.conftoken+xml":{"source":"iana","compressible":true},"application/vnd.marlin.drm.license+xml":{"source":"iana","compressible":true},"application/vnd.marlin.drm.mdcf":{"source":"iana"},"application/vnd.mason+json":{"source":"iana","compressible":true},"application/vnd.maxar.archive.3tz+zip":{"source":"iana","compressible":false},"application/vnd.maxmind.maxmind-db":{"source":"iana"},"application/vnd.mcd":{"source":"iana","extensions":["mcd"]},"application/vnd.medcalcdata":{"source":"iana","extensions":["mc1"]},"application/vnd.mediastation.cdkey":{"source":"iana","extensions":["cdkey"]},"application/vnd.meridian-slingshot":{"source":"iana"},"application/vnd.mfer":{"source":"iana","extensions":["mwf"]},"application/vnd.mfmp":{"source":"iana","extensions":["mfm"]},"application/vnd.micro+json":{"source":"iana","compressible":true},"application/vnd.micrografx.flo":{"source":"iana","extensions":["flo"]},"application/vnd.micrografx.igx":{"source":"iana","extensions":["igx"]},"application/vnd.microsoft.portable-executable":{"source":"iana"},"application/vnd.microsoft.windows.thumbnail-cache":{"source":"iana"},"application/vnd.miele+json":{"source":"iana","compressible":true},"application/vnd.mif":{"source":"iana","extensions":["mif"]},"application/vnd.minisoft-hp3000-save":{"source":"iana"},"application/vnd.mitsubishi.misty-guard.trustweb":{"source":"iana"},"application/vnd.mobius.daf":{"source":"iana","extensions":["daf"]},"application/vnd.mobius.dis":{"source":"iana","extensions":["dis"]},"application/vnd.mobius.mbk":{"source":"iana","extensions":["mbk"]},"application/vnd.mobius.mqy":{"source":"iana","extensions":["mqy"]},"application/vnd.mobius.msl":{"source":"iana","extensions":["msl"]},"application/vnd.mobius.plc":{"source":"iana","extensions":["plc"]},"application/vnd.mobius.txf":{"source":"iana","extensions":["txf"]},"application/vnd.mophun.application":{"source":"iana","extensions":["mpn"]},"application/vnd.mophun.certificate":{"source":"iana","extensions":["mpc"]},"application/vnd.motorola.flexsuite":{"source":"iana"},"application/vnd.motorola.flexsuite.adsi":{"source":"iana"},"application/vnd.motorola.flexsuite.fis":{"source":"iana"},"application/vnd.motorola.flexsuite.gotap":{"source":"iana"},"application/vnd.motorola.flexsuite.kmr":{"source":"iana"},"application/vnd.motorola.flexsuite.ttc":{"source":"iana"},"application/vnd.motorola.flexsuite.wem":{"source":"iana"},"application/vnd.motorola.iprm":{"source":"iana"},"application/vnd.mozilla.xul+xml":{"source":"iana","compressible":true,"extensions":["xul"]},"application/vnd.ms-3mfdocument":{"source":"iana"},"application/vnd.ms-artgalry":{"source":"iana","extensions":["cil"]},"application/vnd.ms-asf":{"source":"iana"},"application/vnd.ms-cab-compressed":{"source":"iana","extensions":["cab"]},"application/vnd.ms-color.iccprofile":{"source":"apache"},"application/vnd.ms-excel":{"source":"iana","compressible":false,"extensions":["xls","xlm","xla","xlc","xlt","xlw"]},"application/vnd.ms-excel.addin.macroenabled.12":{"source":"iana","extensions":["xlam"]},"application/vnd.ms-excel.sheet.binary.macroenabled.12":{"source":"iana","extensions":["xlsb"]},"application/vnd.ms-excel.sheet.macroenabled.12":{"source":"iana","extensions":["xlsm"]},"application/vnd.ms-excel.template.macroenabled.12":{"source":"iana","extensions":["xltm"]},"application/vnd.ms-fontobject":{"source":"iana","compressible":true,"extensions":["eot"]},"application/vnd.ms-htmlhelp":{"source":"iana","extensions":["chm"]},"application/vnd.ms-ims":{"source":"iana","extensions":["ims"]},"application/vnd.ms-lrm":{"source":"iana","extensions":["lrm"]},"application/vnd.ms-office.activex+xml":{"source":"iana","compressible":true},"application/vnd.ms-officetheme":{"source":"iana","extensions":["thmx"]},"application/vnd.ms-opentype":{"source":"apache","compressible":true},"application/vnd.ms-outlook":{"compressible":false,"extensions":["msg"]},"application/vnd.ms-package.obfuscated-opentype":{"source":"apache"},"application/vnd.ms-pki.seccat":{"source":"apache","extensions":["cat"]},"application/vnd.ms-pki.stl":{"source":"apache","extensions":["stl"]},"application/vnd.ms-playready.initiator+xml":{"source":"iana","compressible":true},"application/vnd.ms-powerpoint":{"source":"iana","compressible":false,"extensions":["ppt","pps","pot"]},"application/vnd.ms-powerpoint.addin.macroenabled.12":{"source":"iana","extensions":["ppam"]},"application/vnd.ms-powerpoint.presentation.macroenabled.12":{"source":"iana","extensions":["pptm"]},"application/vnd.ms-powerpoint.slide.macroenabled.12":{"source":"iana","extensions":["sldm"]},"application/vnd.ms-powerpoint.slideshow.macroenabled.12":{"source":"iana","extensions":["ppsm"]},"application/vnd.ms-powerpoint.template.macroenabled.12":{"source":"iana","extensions":["potm"]},"application/vnd.ms-printdevicecapabilities+xml":{"source":"iana","compressible":true},"application/vnd.ms-printing.printticket+xml":{"source":"apache","compressible":true},"application/vnd.ms-printschematicket+xml":{"source":"iana","compressible":true},"application/vnd.ms-project":{"source":"iana","extensions":["mpp","mpt"]},"application/vnd.ms-tnef":{"source":"iana"},"application/vnd.ms-windows.devicepairing":{"source":"iana"},"application/vnd.ms-windows.nwprinting.oob":{"source":"iana"},"application/vnd.ms-windows.printerpairing":{"source":"iana"},"application/vnd.ms-windows.wsd.oob":{"source":"iana"},"application/vnd.ms-wmdrm.lic-chlg-req":{"source":"iana"},"application/vnd.ms-wmdrm.lic-resp":{"source":"iana"},"application/vnd.ms-wmdrm.meter-chlg-req":{"source":"iana"},"application/vnd.ms-wmdrm.meter-resp":{"source":"iana"},"application/vnd.ms-word.document.macroenabled.12":{"source":"iana","extensions":["docm"]},"application/vnd.ms-word.template.macroenabled.12":{"source":"iana","extensions":["dotm"]},"application/vnd.ms-works":{"source":"iana","extensions":["wps","wks","wcm","wdb"]},"application/vnd.ms-wpl":{"source":"iana","extensions":["wpl"]},"application/vnd.ms-xpsdocument":{"source":"iana","compressible":false,"extensions":["xps"]},"application/vnd.msa-disk-image":{"source":"iana"},"application/vnd.mseq":{"source":"iana","extensions":["mseq"]},"application/vnd.msign":{"source":"iana"},"application/vnd.multiad.creator":{"source":"iana"},"application/vnd.multiad.creator.cif":{"source":"iana"},"application/vnd.music-niff":{"source":"iana"},"application/vnd.musician":{"source":"iana","extensions":["mus"]},"application/vnd.muvee.style":{"source":"iana","extensions":["msty"]},"application/vnd.mynfc":{"source":"iana","extensions":["taglet"]},"application/vnd.nacamar.ybrid+json":{"source":"iana","compressible":true},"application/vnd.ncd.control":{"source":"iana"},"application/vnd.ncd.reference":{"source":"iana"},"application/vnd.nearst.inv+json":{"source":"iana","compressible":true},"application/vnd.nebumind.line":{"source":"iana"},"application/vnd.nervana":{"source":"iana"},"application/vnd.netfpx":{"source":"iana"},"application/vnd.neurolanguage.nlu":{"source":"iana","extensions":["nlu"]},"application/vnd.nimn":{"source":"iana"},"application/vnd.nintendo.nitro.rom":{"source":"iana"},"application/vnd.nintendo.snes.rom":{"source":"iana"},"application/vnd.nitf":{"source":"iana","extensions":["ntf","nitf"]},"application/vnd.noblenet-directory":{"source":"iana","extensions":["nnd"]},"application/vnd.noblenet-sealer":{"source":"iana","extensions":["nns"]},"application/vnd.noblenet-web":{"source":"iana","extensions":["nnw"]},"application/vnd.nokia.catalogs":{"source":"iana"},"application/vnd.nokia.conml+wbxml":{"source":"iana"},"application/vnd.nokia.conml+xml":{"source":"iana","compressible":true},"application/vnd.nokia.iptv.config+xml":{"source":"iana","compressible":true},"application/vnd.nokia.isds-radio-presets":{"source":"iana"},"application/vnd.nokia.landmark+wbxml":{"source":"iana"},"application/vnd.nokia.landmark+xml":{"source":"iana","compressible":true},"application/vnd.nokia.landmarkcollection+xml":{"source":"iana","compressible":true},"application/vnd.nokia.n-gage.ac+xml":{"source":"iana","compressible":true,"extensions":["ac"]},"application/vnd.nokia.n-gage.data":{"source":"iana","extensions":["ngdat"]},"application/vnd.nokia.n-gage.symbian.install":{"source":"iana","extensions":["n-gage"]},"application/vnd.nokia.ncd":{"source":"iana"},"application/vnd.nokia.pcd+wbxml":{"source":"iana"},"application/vnd.nokia.pcd+xml":{"source":"iana","compressible":true},"application/vnd.nokia.radio-preset":{"source":"iana","extensions":["rpst"]},"application/vnd.nokia.radio-presets":{"source":"iana","extensions":["rpss"]},"application/vnd.novadigm.edm":{"source":"iana","extensions":["edm"]},"application/vnd.novadigm.edx":{"source":"iana","extensions":["edx"]},"application/vnd.novadigm.ext":{"source":"iana","extensions":["ext"]},"application/vnd.ntt-local.content-share":{"source":"iana"},"application/vnd.ntt-local.file-transfer":{"source":"iana"},"application/vnd.ntt-local.ogw_remote-access":{"source":"iana"},"application/vnd.ntt-local.sip-ta_remote":{"source":"iana"},"application/vnd.ntt-local.sip-ta_tcp_stream":{"source":"iana"},"application/vnd.oasis.opendocument.chart":{"source":"iana","extensions":["odc"]},"application/vnd.oasis.opendocument.chart-template":{"source":"iana","extensions":["otc"]},"application/vnd.oasis.opendocument.database":{"source":"iana","extensions":["odb"]},"application/vnd.oasis.opendocument.formula":{"source":"iana","extensions":["odf"]},"application/vnd.oasis.opendocument.formula-template":{"source":"iana","extensions":["odft"]},"application/vnd.oasis.opendocument.graphics":{"source":"iana","compressible":false,"extensions":["odg"]},"application/vnd.oasis.opendocument.graphics-template":{"source":"iana","extensions":["otg"]},"application/vnd.oasis.opendocument.image":{"source":"iana","extensions":["odi"]},"application/vnd.oasis.opendocument.image-template":{"source":"iana","extensions":["oti"]},"application/vnd.oasis.opendocument.presentation":{"source":"iana","compressible":false,"extensions":["odp"]},"application/vnd.oasis.opendocument.presentation-template":{"source":"iana","extensions":["otp"]},"application/vnd.oasis.opendocument.spreadsheet":{"source":"iana","compressible":false,"extensions":["ods"]},"application/vnd.oasis.opendocument.spreadsheet-template":{"source":"iana","extensions":["ots"]},"application/vnd.oasis.opendocument.text":{"source":"iana","compressible":false,"extensions":["odt"]},"application/vnd.oasis.opendocument.text-master":{"source":"iana","extensions":["odm"]},"application/vnd.oasis.opendocument.text-template":{"source":"iana","extensions":["ott"]},"application/vnd.oasis.opendocument.text-web":{"source":"iana","extensions":["oth"]},"application/vnd.obn":{"source":"iana"},"application/vnd.ocf+cbor":{"source":"iana"},"application/vnd.oci.image.manifest.v1+json":{"source":"iana","compressible":true},"application/vnd.oftn.l10n+json":{"source":"iana","compressible":true},"application/vnd.oipf.contentaccessdownload+xml":{"source":"iana","compressible":true},"application/vnd.oipf.contentaccessstreaming+xml":{"source":"iana","compressible":true},"application/vnd.oipf.cspg-hexbinary":{"source":"iana"},"application/vnd.oipf.dae.svg+xml":{"source":"iana","compressible":true},"application/vnd.oipf.dae.xhtml+xml":{"source":"iana","compressible":true},"application/vnd.oipf.mippvcontrolmessage+xml":{"source":"iana","compressible":true},"application/vnd.oipf.pae.gem":{"source":"iana"},"application/vnd.oipf.spdiscovery+xml":{"source":"iana","compressible":true},"application/vnd.oipf.spdlist+xml":{"source":"iana","compressible":true},"application/vnd.oipf.ueprofile+xml":{"source":"iana","compressible":true},"application/vnd.oipf.userprofile+xml":{"source":"iana","compressible":true},"application/vnd.olpc-sugar":{"source":"iana","extensions":["xo"]},"application/vnd.oma-scws-config":{"source":"iana"},"application/vnd.oma-scws-http-request":{"source":"iana"},"application/vnd.oma-scws-http-response":{"source":"iana"},"application/vnd.oma.bcast.associated-procedure-parameter+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.drm-trigger+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.imd+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.ltkm":{"source":"iana"},"application/vnd.oma.bcast.notification+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.provisioningtrigger":{"source":"iana"},"application/vnd.oma.bcast.sgboot":{"source":"iana"},"application/vnd.oma.bcast.sgdd+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.sgdu":{"source":"iana"},"application/vnd.oma.bcast.simple-symbol-container":{"source":"iana"},"application/vnd.oma.bcast.smartcard-trigger+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.sprov+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.stkm":{"source":"iana"},"application/vnd.oma.cab-address-book+xml":{"source":"iana","compressible":true},"application/vnd.oma.cab-feature-handler+xml":{"source":"iana","compressible":true},"application/vnd.oma.cab-pcc+xml":{"source":"iana","compressible":true},"application/vnd.oma.cab-subs-invite+xml":{"source":"iana","compressible":true},"application/vnd.oma.cab-user-prefs+xml":{"source":"iana","compressible":true},"application/vnd.oma.dcd":{"source":"iana"},"application/vnd.oma.dcdc":{"source":"iana"},"application/vnd.oma.dd2+xml":{"source":"iana","compressible":true,"extensions":["dd2"]},"application/vnd.oma.drm.risd+xml":{"source":"iana","compressible":true},"application/vnd.oma.group-usage-list+xml":{"source":"iana","compressible":true},"application/vnd.oma.lwm2m+cbor":{"source":"iana"},"application/vnd.oma.lwm2m+json":{"source":"iana","compressible":true},"application/vnd.oma.lwm2m+tlv":{"source":"iana"},"application/vnd.oma.pal+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.detailed-progress-report+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.final-report+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.groups+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.invocation-descriptor+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.optimized-progress-report+xml":{"source":"iana","compressible":true},"application/vnd.oma.push":{"source":"iana"},"application/vnd.oma.scidm.messages+xml":{"source":"iana","compressible":true},"application/vnd.oma.xcap-directory+xml":{"source":"iana","compressible":true},"application/vnd.omads-email+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.omads-file+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.omads-folder+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.omaloc-supl-init":{"source":"iana"},"application/vnd.onepager":{"source":"iana"},"application/vnd.onepagertamp":{"source":"iana"},"application/vnd.onepagertamx":{"source":"iana"},"application/vnd.onepagertat":{"source":"iana"},"application/vnd.onepagertatp":{"source":"iana"},"application/vnd.onepagertatx":{"source":"iana"},"application/vnd.openblox.game+xml":{"source":"iana","compressible":true,"extensions":["obgx"]},"application/vnd.openblox.game-binary":{"source":"iana"},"application/vnd.openeye.oeb":{"source":"iana"},"application/vnd.openofficeorg.extension":{"source":"apache","extensions":["oxt"]},"application/vnd.openstreetmap.data+xml":{"source":"iana","compressible":true,"extensions":["osm"]},"application/vnd.opentimestamps.ots":{"source":"iana"},"application/vnd.openxmlformats-officedocument.custom-properties+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.customxmlproperties+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawing+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.chart+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.extended-properties+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.comments+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.presentation":{"source":"iana","compressible":false,"extensions":["pptx"]},"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.presprops+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slide":{"source":"iana","extensions":["sldx"]},"application/vnd.openxmlformats-officedocument.presentationml.slide+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slideshow":{"source":"iana","extensions":["ppsx"]},"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.tags+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.template":{"source":"iana","extensions":["potx"]},"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"source":"iana","compressible":false,"extensions":["xlsx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.template":{"source":"iana","extensions":["xltx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.theme+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.themeoverride+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.vmldrawing":{"source":"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{"source":"iana","compressible":false,"extensions":["docx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.template":{"source":"iana","extensions":["dotx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-package.core-properties+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-package.relationships+xml":{"source":"iana","compressible":true},"application/vnd.oracle.resource+json":{"source":"iana","compressible":true},"application/vnd.orange.indata":{"source":"iana"},"application/vnd.osa.netdeploy":{"source":"iana"},"application/vnd.osgeo.mapguide.package":{"source":"iana","extensions":["mgp"]},"application/vnd.osgi.bundle":{"source":"iana"},"application/vnd.osgi.dp":{"source":"iana","extensions":["dp"]},"application/vnd.osgi.subsystem":{"source":"iana","extensions":["esa"]},"application/vnd.otps.ct-kip+xml":{"source":"iana","compressible":true},"application/vnd.oxli.countgraph":{"source":"iana"},"application/vnd.pagerduty+json":{"source":"iana","compressible":true},"application/vnd.palm":{"source":"iana","extensions":["pdb","pqa","oprc"]},"application/vnd.panoply":{"source":"iana"},"application/vnd.paos.xml":{"source":"iana"},"application/vnd.patentdive":{"source":"iana"},"application/vnd.patientecommsdoc":{"source":"iana"},"application/vnd.pawaafile":{"source":"iana","extensions":["paw"]},"application/vnd.pcos":{"source":"iana"},"application/vnd.pg.format":{"source":"iana","extensions":["str"]},"application/vnd.pg.osasli":{"source":"iana","extensions":["ei6"]},"application/vnd.piaccess.application-licence":{"source":"iana"},"application/vnd.picsel":{"source":"iana","extensions":["efif"]},"application/vnd.pmi.widget":{"source":"iana","extensions":["wg"]},"application/vnd.poc.group-advertisement+xml":{"source":"iana","compressible":true},"application/vnd.pocketlearn":{"source":"iana","extensions":["plf"]},"application/vnd.powerbuilder6":{"source":"iana","extensions":["pbd"]},"application/vnd.powerbuilder6-s":{"source":"iana"},"application/vnd.powerbuilder7":{"source":"iana"},"application/vnd.powerbuilder7-s":{"source":"iana"},"application/vnd.powerbuilder75":{"source":"iana"},"application/vnd.powerbuilder75-s":{"source":"iana"},"application/vnd.preminet":{"source":"iana"},"application/vnd.previewsystems.box":{"source":"iana","extensions":["box"]},"application/vnd.proteus.magazine":{"source":"iana","extensions":["mgz"]},"application/vnd.psfs":{"source":"iana"},"application/vnd.publishare-delta-tree":{"source":"iana","extensions":["qps"]},"application/vnd.pvi.ptid1":{"source":"iana","extensions":["ptid"]},"application/vnd.pwg-multiplexed":{"source":"iana"},"application/vnd.pwg-xhtml-print+xml":{"source":"iana","compressible":true},"application/vnd.qualcomm.brew-app-res":{"source":"iana"},"application/vnd.quarantainenet":{"source":"iana"},"application/vnd.quark.quarkxpress":{"source":"iana","extensions":["qxd","qxt","qwd","qwt","qxl","qxb"]},"application/vnd.quobject-quoxdocument":{"source":"iana"},"application/vnd.radisys.moml+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit-conf+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit-conn+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit-dialog+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit-stream+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-conf+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-base+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-fax-detect+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-fax-sendrecv+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-group+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-speech+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-transform+xml":{"source":"iana","compressible":true},"application/vnd.rainstor.data":{"source":"iana"},"application/vnd.rapid":{"source":"iana"},"application/vnd.rar":{"source":"iana","extensions":["rar"]},"application/vnd.realvnc.bed":{"source":"iana","extensions":["bed"]},"application/vnd.recordare.musicxml":{"source":"iana","extensions":["mxl"]},"application/vnd.recordare.musicxml+xml":{"source":"iana","compressible":true,"extensions":["musicxml"]},"application/vnd.renlearn.rlprint":{"source":"iana"},"application/vnd.resilient.logic":{"source":"iana"},"application/vnd.restful+json":{"source":"iana","compressible":true},"application/vnd.rig.cryptonote":{"source":"iana","extensions":["cryptonote"]},"application/vnd.rim.cod":{"source":"apache","extensions":["cod"]},"application/vnd.rn-realmedia":{"source":"apache","extensions":["rm"]},"application/vnd.rn-realmedia-vbr":{"source":"apache","extensions":["rmvb"]},"application/vnd.route66.link66+xml":{"source":"iana","compressible":true,"extensions":["link66"]},"application/vnd.rs-274x":{"source":"iana"},"application/vnd.ruckus.download":{"source":"iana"},"application/vnd.s3sms":{"source":"iana"},"application/vnd.sailingtracker.track":{"source":"iana","extensions":["st"]},"application/vnd.sar":{"source":"iana"},"application/vnd.sbm.cid":{"source":"iana"},"application/vnd.sbm.mid2":{"source":"iana"},"application/vnd.scribus":{"source":"iana"},"application/vnd.sealed.3df":{"source":"iana"},"application/vnd.sealed.csf":{"source":"iana"},"application/vnd.sealed.doc":{"source":"iana"},"application/vnd.sealed.eml":{"source":"iana"},"application/vnd.sealed.mht":{"source":"iana"},"application/vnd.sealed.net":{"source":"iana"},"application/vnd.sealed.ppt":{"source":"iana"},"application/vnd.sealed.tiff":{"source":"iana"},"application/vnd.sealed.xls":{"source":"iana"},"application/vnd.sealedmedia.softseal.html":{"source":"iana"},"application/vnd.sealedmedia.softseal.pdf":{"source":"iana"},"application/vnd.seemail":{"source":"iana","extensions":["see"]},"application/vnd.seis+json":{"source":"iana","compressible":true},"application/vnd.sema":{"source":"iana","extensions":["sema"]},"application/vnd.semd":{"source":"iana","extensions":["semd"]},"application/vnd.semf":{"source":"iana","extensions":["semf"]},"application/vnd.shade-save-file":{"source":"iana"},"application/vnd.shana.informed.formdata":{"source":"iana","extensions":["ifm"]},"application/vnd.shana.informed.formtemplate":{"source":"iana","extensions":["itp"]},"application/vnd.shana.informed.interchange":{"source":"iana","extensions":["iif"]},"application/vnd.shana.informed.package":{"source":"iana","extensions":["ipk"]},"application/vnd.shootproof+json":{"source":"iana","compressible":true},"application/vnd.shopkick+json":{"source":"iana","compressible":true},"application/vnd.shp":{"source":"iana"},"application/vnd.shx":{"source":"iana"},"application/vnd.sigrok.session":{"source":"iana"},"application/vnd.simtech-mindmapper":{"source":"iana","extensions":["twd","twds"]},"application/vnd.siren+json":{"source":"iana","compressible":true},"application/vnd.smaf":{"source":"iana","extensions":["mmf"]},"application/vnd.smart.notebook":{"source":"iana"},"application/vnd.smart.teacher":{"source":"iana","extensions":["teacher"]},"application/vnd.snesdev-page-table":{"source":"iana"},"application/vnd.software602.filler.form+xml":{"source":"iana","compressible":true,"extensions":["fo"]},"application/vnd.software602.filler.form-xml-zip":{"source":"iana"},"application/vnd.solent.sdkm+xml":{"source":"iana","compressible":true,"extensions":["sdkm","sdkd"]},"application/vnd.spotfire.dxp":{"source":"iana","extensions":["dxp"]},"application/vnd.spotfire.sfs":{"source":"iana","extensions":["sfs"]},"application/vnd.sqlite3":{"source":"iana"},"application/vnd.sss-cod":{"source":"iana"},"application/vnd.sss-dtf":{"source":"iana"},"application/vnd.sss-ntf":{"source":"iana"},"application/vnd.stardivision.calc":{"source":"apache","extensions":["sdc"]},"application/vnd.stardivision.draw":{"source":"apache","extensions":["sda"]},"application/vnd.stardivision.impress":{"source":"apache","extensions":["sdd"]},"application/vnd.stardivision.math":{"source":"apache","extensions":["smf"]},"application/vnd.stardivision.writer":{"source":"apache","extensions":["sdw","vor"]},"application/vnd.stardivision.writer-global":{"source":"apache","extensions":["sgl"]},"application/vnd.stepmania.package":{"source":"iana","extensions":["smzip"]},"application/vnd.stepmania.stepchart":{"source":"iana","extensions":["sm"]},"application/vnd.street-stream":{"source":"iana"},"application/vnd.sun.wadl+xml":{"source":"iana","compressible":true,"extensions":["wadl"]},"application/vnd.sun.xml.calc":{"source":"apache","extensions":["sxc"]},"application/vnd.sun.xml.calc.template":{"source":"apache","extensions":["stc"]},"application/vnd.sun.xml.draw":{"source":"apache","extensions":["sxd"]},"application/vnd.sun.xml.draw.template":{"source":"apache","extensions":["std"]},"application/vnd.sun.xml.impress":{"source":"apache","extensions":["sxi"]},"application/vnd.sun.xml.impress.template":{"source":"apache","extensions":["sti"]},"application/vnd.sun.xml.math":{"source":"apache","extensions":["sxm"]},"application/vnd.sun.xml.writer":{"source":"apache","extensions":["sxw"]},"application/vnd.sun.xml.writer.global":{"source":"apache","extensions":["sxg"]},"application/vnd.sun.xml.writer.template":{"source":"apache","extensions":["stw"]},"application/vnd.sus-calendar":{"source":"iana","extensions":["sus","susp"]},"application/vnd.svd":{"source":"iana","extensions":["svd"]},"application/vnd.swiftview-ics":{"source":"iana"},"application/vnd.sycle+xml":{"source":"iana","compressible":true},"application/vnd.syft+json":{"source":"iana","compressible":true},"application/vnd.symbian.install":{"source":"apache","extensions":["sis","sisx"]},"application/vnd.syncml+xml":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["xsm"]},"application/vnd.syncml.dm+wbxml":{"source":"iana","charset":"UTF-8","extensions":["bdm"]},"application/vnd.syncml.dm+xml":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["xdm"]},"application/vnd.syncml.dm.notification":{"source":"iana"},"application/vnd.syncml.dmddf+wbxml":{"source":"iana"},"application/vnd.syncml.dmddf+xml":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["ddf"]},"application/vnd.syncml.dmtnds+wbxml":{"source":"iana"},"application/vnd.syncml.dmtnds+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.syncml.ds.notification":{"source":"iana"},"application/vnd.tableschema+json":{"source":"iana","compressible":true},"application/vnd.tao.intent-module-archive":{"source":"iana","extensions":["tao"]},"application/vnd.tcpdump.pcap":{"source":"iana","extensions":["pcap","cap","dmp"]},"application/vnd.think-cell.ppttc+json":{"source":"iana","compressible":true},"application/vnd.tmd.mediaflex.api+xml":{"source":"iana","compressible":true},"application/vnd.tml":{"source":"iana"},"application/vnd.tmobile-livetv":{"source":"iana","extensions":["tmo"]},"application/vnd.tri.onesource":{"source":"iana"},"application/vnd.trid.tpt":{"source":"iana","extensions":["tpt"]},"application/vnd.triscape.mxs":{"source":"iana","extensions":["mxs"]},"application/vnd.trueapp":{"source":"iana","extensions":["tra"]},"application/vnd.truedoc":{"source":"iana"},"application/vnd.ubisoft.webplayer":{"source":"iana"},"application/vnd.ufdl":{"source":"iana","extensions":["ufd","ufdl"]},"application/vnd.uiq.theme":{"source":"iana","extensions":["utz"]},"application/vnd.umajin":{"source":"iana","extensions":["umj"]},"application/vnd.unity":{"source":"iana","extensions":["unityweb"]},"application/vnd.uoml+xml":{"source":"iana","compressible":true,"extensions":["uoml"]},"application/vnd.uplanet.alert":{"source":"iana"},"application/vnd.uplanet.alert-wbxml":{"source":"iana"},"application/vnd.uplanet.bearer-choice":{"source":"iana"},"application/vnd.uplanet.bearer-choice-wbxml":{"source":"iana"},"application/vnd.uplanet.cacheop":{"source":"iana"},"application/vnd.uplanet.cacheop-wbxml":{"source":"iana"},"application/vnd.uplanet.channel":{"source":"iana"},"application/vnd.uplanet.channel-wbxml":{"source":"iana"},"application/vnd.uplanet.list":{"source":"iana"},"application/vnd.uplanet.list-wbxml":{"source":"iana"},"application/vnd.uplanet.listcmd":{"source":"iana"},"application/vnd.uplanet.listcmd-wbxml":{"source":"iana"},"application/vnd.uplanet.signal":{"source":"iana"},"application/vnd.uri-map":{"source":"iana"},"application/vnd.valve.source.material":{"source":"iana"},"application/vnd.vcx":{"source":"iana","extensions":["vcx"]},"application/vnd.vd-study":{"source":"iana"},"application/vnd.vectorworks":{"source":"iana"},"application/vnd.vel+json":{"source":"iana","compressible":true},"application/vnd.verimatrix.vcas":{"source":"iana"},"application/vnd.veritone.aion+json":{"source":"iana","compressible":true},"application/vnd.veryant.thin":{"source":"iana"},"application/vnd.ves.encrypted":{"source":"iana"},"application/vnd.vidsoft.vidconference":{"source":"iana"},"application/vnd.visio":{"source":"iana","extensions":["vsd","vst","vss","vsw"]},"application/vnd.visionary":{"source":"iana","extensions":["vis"]},"application/vnd.vividence.scriptfile":{"source":"iana"},"application/vnd.vsf":{"source":"iana","extensions":["vsf"]},"application/vnd.wap.sic":{"source":"iana"},"application/vnd.wap.slc":{"source":"iana"},"application/vnd.wap.wbxml":{"source":"iana","charset":"UTF-8","extensions":["wbxml"]},"application/vnd.wap.wmlc":{"source":"iana","extensions":["wmlc"]},"application/vnd.wap.wmlscriptc":{"source":"iana","extensions":["wmlsc"]},"application/vnd.webturbo":{"source":"iana","extensions":["wtb"]},"application/vnd.wfa.dpp":{"source":"iana"},"application/vnd.wfa.p2p":{"source":"iana"},"application/vnd.wfa.wsc":{"source":"iana"},"application/vnd.windows.devicepairing":{"source":"iana"},"application/vnd.wmc":{"source":"iana"},"application/vnd.wmf.bootstrap":{"source":"iana"},"application/vnd.wolfram.mathematica":{"source":"iana"},"application/vnd.wolfram.mathematica.package":{"source":"iana"},"application/vnd.wolfram.player":{"source":"iana","extensions":["nbp"]},"application/vnd.wordperfect":{"source":"iana","extensions":["wpd"]},"application/vnd.wqd":{"source":"iana","extensions":["wqd"]},"application/vnd.wrq-hp3000-labelled":{"source":"iana"},"application/vnd.wt.stf":{"source":"iana","extensions":["stf"]},"application/vnd.wv.csp+wbxml":{"source":"iana"},"application/vnd.wv.csp+xml":{"source":"iana","compressible":true},"application/vnd.wv.ssp+xml":{"source":"iana","compressible":true},"application/vnd.xacml+json":{"source":"iana","compressible":true},"application/vnd.xara":{"source":"iana","extensions":["xar"]},"application/vnd.xfdl":{"source":"iana","extensions":["xfdl"]},"application/vnd.xfdl.webform":{"source":"iana"},"application/vnd.xmi+xml":{"source":"iana","compressible":true},"application/vnd.xmpie.cpkg":{"source":"iana"},"application/vnd.xmpie.dpkg":{"source":"iana"},"application/vnd.xmpie.plan":{"source":"iana"},"application/vnd.xmpie.ppkg":{"source":"iana"},"application/vnd.xmpie.xlim":{"source":"iana"},"application/vnd.yamaha.hv-dic":{"source":"iana","extensions":["hvd"]},"application/vnd.yamaha.hv-script":{"source":"iana","extensions":["hvs"]},"application/vnd.yamaha.hv-voice":{"source":"iana","extensions":["hvp"]},"application/vnd.yamaha.openscoreformat":{"source":"iana","extensions":["osf"]},"application/vnd.yamaha.openscoreformat.osfpvg+xml":{"source":"iana","compressible":true,"extensions":["osfpvg"]},"application/vnd.yamaha.remote-setup":{"source":"iana"},"application/vnd.yamaha.smaf-audio":{"source":"iana","extensions":["saf"]},"application/vnd.yamaha.smaf-phrase":{"source":"iana","extensions":["spf"]},"application/vnd.yamaha.through-ngn":{"source":"iana"},"application/vnd.yamaha.tunnel-udpencap":{"source":"iana"},"application/vnd.yaoweme":{"source":"iana"},"application/vnd.yellowriver-custom-menu":{"source":"iana","extensions":["cmp"]},"application/vnd.youtube.yt":{"source":"iana"},"application/vnd.zul":{"source":"iana","extensions":["zir","zirz"]},"application/vnd.zzazz.deck+xml":{"source":"iana","compressible":true,"extensions":["zaz"]},"application/voicexml+xml":{"source":"iana","compressible":true,"extensions":["vxml"]},"application/voucher-cms+json":{"source":"iana","compressible":true},"application/vq-rtcpxr":{"source":"iana"},"application/wasm":{"source":"iana","compressible":true,"extensions":["wasm"]},"application/watcherinfo+xml":{"source":"iana","compressible":true,"extensions":["wif"]},"application/webpush-options+json":{"source":"iana","compressible":true},"application/whoispp-query":{"source":"iana"},"application/whoispp-response":{"source":"iana"},"application/widget":{"source":"iana","extensions":["wgt"]},"application/winhlp":{"source":"apache","extensions":["hlp"]},"application/wita":{"source":"iana"},"application/wordperfect5.1":{"source":"iana"},"application/wsdl+xml":{"source":"iana","compressible":true,"extensions":["wsdl"]},"application/wspolicy+xml":{"source":"iana","compressible":true,"extensions":["wspolicy"]},"application/x-7z-compressed":{"source":"apache","compressible":false,"extensions":["7z"]},"application/x-abiword":{"source":"apache","extensions":["abw"]},"application/x-ace-compressed":{"source":"apache","extensions":["ace"]},"application/x-amf":{"source":"apache"},"application/x-apple-diskimage":{"source":"apache","extensions":["dmg"]},"application/x-arj":{"compressible":false,"extensions":["arj"]},"application/x-authorware-bin":{"source":"apache","extensions":["aab","x32","u32","vox"]},"application/x-authorware-map":{"source":"apache","extensions":["aam"]},"application/x-authorware-seg":{"source":"apache","extensions":["aas"]},"application/x-bcpio":{"source":"apache","extensions":["bcpio"]},"application/x-bdoc":{"compressible":false,"extensions":["bdoc"]},"application/x-bittorrent":{"source":"apache","extensions":["torrent"]},"application/x-blorb":{"source":"apache","extensions":["blb","blorb"]},"application/x-bzip":{"source":"apache","compressible":false,"extensions":["bz"]},"application/x-bzip2":{"source":"apache","compressible":false,"extensions":["bz2","boz"]},"application/x-cbr":{"source":"apache","extensions":["cbr","cba","cbt","cbz","cb7"]},"application/x-cdlink":{"source":"apache","extensions":["vcd"]},"application/x-cfs-compressed":{"source":"apache","extensions":["cfs"]},"application/x-chat":{"source":"apache","extensions":["chat"]},"application/x-chess-pgn":{"source":"apache","extensions":["pgn"]},"application/x-chrome-extension":{"extensions":["crx"]},"application/x-cocoa":{"source":"nginx","extensions":["cco"]},"application/x-compress":{"source":"apache"},"application/x-conference":{"source":"apache","extensions":["nsc"]},"application/x-cpio":{"source":"apache","extensions":["cpio"]},"application/x-csh":{"source":"apache","extensions":["csh"]},"application/x-deb":{"compressible":false},"application/x-debian-package":{"source":"apache","extensions":["deb","udeb"]},"application/x-dgc-compressed":{"source":"apache","extensions":["dgc"]},"application/x-director":{"source":"apache","extensions":["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"]},"application/x-doom":{"source":"apache","extensions":["wad"]},"application/x-dtbncx+xml":{"source":"apache","compressible":true,"extensions":["ncx"]},"application/x-dtbook+xml":{"source":"apache","compressible":true,"extensions":["dtb"]},"application/x-dtbresource+xml":{"source":"apache","compressible":true,"extensions":["res"]},"application/x-dvi":{"source":"apache","compressible":false,"extensions":["dvi"]},"application/x-envoy":{"source":"apache","extensions":["evy"]},"application/x-eva":{"source":"apache","extensions":["eva"]},"application/x-font-bdf":{"source":"apache","extensions":["bdf"]},"application/x-font-dos":{"source":"apache"},"application/x-font-framemaker":{"source":"apache"},"application/x-font-ghostscript":{"source":"apache","extensions":["gsf"]},"application/x-font-libgrx":{"source":"apache"},"application/x-font-linux-psf":{"source":"apache","extensions":["psf"]},"application/x-font-pcf":{"source":"apache","extensions":["pcf"]},"application/x-font-snf":{"source":"apache","extensions":["snf"]},"application/x-font-speedo":{"source":"apache"},"application/x-font-sunos-news":{"source":"apache"},"application/x-font-type1":{"source":"apache","extensions":["pfa","pfb","pfm","afm"]},"application/x-font-vfont":{"source":"apache"},"application/x-freearc":{"source":"apache","extensions":["arc"]},"application/x-futuresplash":{"source":"apache","extensions":["spl"]},"application/x-gca-compressed":{"source":"apache","extensions":["gca"]},"application/x-glulx":{"source":"apache","extensions":["ulx"]},"application/x-gnumeric":{"source":"apache","extensions":["gnumeric"]},"application/x-gramps-xml":{"source":"apache","extensions":["gramps"]},"application/x-gtar":{"source":"apache","extensions":["gtar"]},"application/x-gzip":{"source":"apache"},"application/x-hdf":{"source":"apache","extensions":["hdf"]},"application/x-httpd-php":{"compressible":true,"extensions":["php"]},"application/x-install-instructions":{"source":"apache","extensions":["install"]},"application/x-iso9660-image":{"source":"apache","extensions":["iso"]},"application/x-iwork-keynote-sffkey":{"extensions":["key"]},"application/x-iwork-numbers-sffnumbers":{"extensions":["numbers"]},"application/x-iwork-pages-sffpages":{"extensions":["pages"]},"application/x-java-archive-diff":{"source":"nginx","extensions":["jardiff"]},"application/x-java-jnlp-file":{"source":"apache","compressible":false,"extensions":["jnlp"]},"application/x-javascript":{"compressible":true},"application/x-keepass2":{"extensions":["kdbx"]},"application/x-latex":{"source":"apache","compressible":false,"extensions":["latex"]},"application/x-lua-bytecode":{"extensions":["luac"]},"application/x-lzh-compressed":{"source":"apache","extensions":["lzh","lha"]},"application/x-makeself":{"source":"nginx","extensions":["run"]},"application/x-mie":{"source":"apache","extensions":["mie"]},"application/x-mobipocket-ebook":{"source":"apache","extensions":["prc","mobi"]},"application/x-mpegurl":{"compressible":false},"application/x-ms-application":{"source":"apache","extensions":["application"]},"application/x-ms-shortcut":{"source":"apache","extensions":["lnk"]},"application/x-ms-wmd":{"source":"apache","extensions":["wmd"]},"application/x-ms-wmz":{"source":"apache","extensions":["wmz"]},"application/x-ms-xbap":{"source":"apache","extensions":["xbap"]},"application/x-msaccess":{"source":"apache","extensions":["mdb"]},"application/x-msbinder":{"source":"apache","extensions":["obd"]},"application/x-mscardfile":{"source":"apache","extensions":["crd"]},"application/x-msclip":{"source":"apache","extensions":["clp"]},"application/x-msdos-program":{"extensions":["exe"]},"application/x-msdownload":{"source":"apache","extensions":["exe","dll","com","bat","msi"]},"application/x-msmediaview":{"source":"apache","extensions":["mvb","m13","m14"]},"application/x-msmetafile":{"source":"apache","extensions":["wmf","wmz","emf","emz"]},"application/x-msmoney":{"source":"apache","extensions":["mny"]},"application/x-mspublisher":{"source":"apache","extensions":["pub"]},"application/x-msschedule":{"source":"apache","extensions":["scd"]},"application/x-msterminal":{"source":"apache","extensions":["trm"]},"application/x-mswrite":{"source":"apache","extensions":["wri"]},"application/x-netcdf":{"source":"apache","extensions":["nc","cdf"]},"application/x-ns-proxy-autoconfig":{"compressible":true,"extensions":["pac"]},"application/x-nzb":{"source":"apache","extensions":["nzb"]},"application/x-perl":{"source":"nginx","extensions":["pl","pm"]},"application/x-pilot":{"source":"nginx","extensions":["prc","pdb"]},"application/x-pkcs12":{"source":"apache","compressible":false,"extensions":["p12","pfx"]},"application/x-pkcs7-certificates":{"source":"apache","extensions":["p7b","spc"]},"application/x-pkcs7-certreqresp":{"source":"apache","extensions":["p7r"]},"application/x-pki-message":{"source":"iana"},"application/x-rar-compressed":{"source":"apache","compressible":false,"extensions":["rar"]},"application/x-redhat-package-manager":{"source":"nginx","extensions":["rpm"]},"application/x-research-info-systems":{"source":"apache","extensions":["ris"]},"application/x-sea":{"source":"nginx","extensions":["sea"]},"application/x-sh":{"source":"apache","compressible":true,"extensions":["sh"]},"application/x-shar":{"source":"apache","extensions":["shar"]},"application/x-shockwave-flash":{"source":"apache","compressible":false,"extensions":["swf"]},"application/x-silverlight-app":{"source":"apache","extensions":["xap"]},"application/x-sql":{"source":"apache","extensions":["sql"]},"application/x-stuffit":{"source":"apache","compressible":false,"extensions":["sit"]},"application/x-stuffitx":{"source":"apache","extensions":["sitx"]},"application/x-subrip":{"source":"apache","extensions":["srt"]},"application/x-sv4cpio":{"source":"apache","extensions":["sv4cpio"]},"application/x-sv4crc":{"source":"apache","extensions":["sv4crc"]},"application/x-t3vm-image":{"source":"apache","extensions":["t3"]},"application/x-tads":{"source":"apache","extensions":["gam"]},"application/x-tar":{"source":"apache","compressible":true,"extensions":["tar"]},"application/x-tcl":{"source":"apache","extensions":["tcl","tk"]},"application/x-tex":{"source":"apache","extensions":["tex"]},"application/x-tex-tfm":{"source":"apache","extensions":["tfm"]},"application/x-texinfo":{"source":"apache","extensions":["texinfo","texi"]},"application/x-tgif":{"source":"apache","extensions":["obj"]},"application/x-ustar":{"source":"apache","extensions":["ustar"]},"application/x-virtualbox-hdd":{"compressible":true,"extensions":["hdd"]},"application/x-virtualbox-ova":{"compressible":true,"extensions":["ova"]},"application/x-virtualbox-ovf":{"compressible":true,"extensions":["ovf"]},"application/x-virtualbox-vbox":{"compressible":true,"extensions":["vbox"]},"application/x-virtualbox-vbox-extpack":{"compressible":false,"extensions":["vbox-extpack"]},"application/x-virtualbox-vdi":{"compressible":true,"extensions":["vdi"]},"application/x-virtualbox-vhd":{"compressible":true,"extensions":["vhd"]},"application/x-virtualbox-vmdk":{"compressible":true,"extensions":["vmdk"]},"application/x-wais-source":{"source":"apache","extensions":["src"]},"application/x-web-app-manifest+json":{"compressible":true,"extensions":["webapp"]},"application/x-www-form-urlencoded":{"source":"iana","compressible":true},"application/x-x509-ca-cert":{"source":"iana","extensions":["der","crt","pem"]},"application/x-x509-ca-ra-cert":{"source":"iana"},"application/x-x509-next-ca-cert":{"source":"iana"},"application/x-xfig":{"source":"apache","extensions":["fig"]},"application/x-xliff+xml":{"source":"apache","compressible":true,"extensions":["xlf"]},"application/x-xpinstall":{"source":"apache","compressible":false,"extensions":["xpi"]},"application/x-xz":{"source":"apache","extensions":["xz"]},"application/x-zmachine":{"source":"apache","extensions":["z1","z2","z3","z4","z5","z6","z7","z8"]},"application/x400-bp":{"source":"iana"},"application/xacml+xml":{"source":"iana","compressible":true},"application/xaml+xml":{"source":"apache","compressible":true,"extensions":["xaml"]},"application/xcap-att+xml":{"source":"iana","compressible":true,"extensions":["xav"]},"application/xcap-caps+xml":{"source":"iana","compressible":true,"extensions":["xca"]},"application/xcap-diff+xml":{"source":"iana","compressible":true,"extensions":["xdf"]},"application/xcap-el+xml":{"source":"iana","compressible":true,"extensions":["xel"]},"application/xcap-error+xml":{"source":"iana","compressible":true},"application/xcap-ns+xml":{"source":"iana","compressible":true,"extensions":["xns"]},"application/xcon-conference-info+xml":{"source":"iana","compressible":true},"application/xcon-conference-info-diff+xml":{"source":"iana","compressible":true},"application/xenc+xml":{"source":"iana","compressible":true,"extensions":["xenc"]},"application/xhtml+xml":{"source":"iana","compressible":true,"extensions":["xhtml","xht"]},"application/xhtml-voice+xml":{"source":"apache","compressible":true},"application/xliff+xml":{"source":"iana","compressible":true,"extensions":["xlf"]},"application/xml":{"source":"iana","compressible":true,"extensions":["xml","xsl","xsd","rng"]},"application/xml-dtd":{"source":"iana","compressible":true,"extensions":["dtd"]},"application/xml-external-parsed-entity":{"source":"iana"},"application/xml-patch+xml":{"source":"iana","compressible":true},"application/xmpp+xml":{"source":"iana","compressible":true},"application/xop+xml":{"source":"iana","compressible":true,"extensions":["xop"]},"application/xproc+xml":{"source":"apache","compressible":true,"extensions":["xpl"]},"application/xslt+xml":{"source":"iana","compressible":true,"extensions":["xsl","xslt"]},"application/xspf+xml":{"source":"apache","compressible":true,"extensions":["xspf"]},"application/xv+xml":{"source":"iana","compressible":true,"extensions":["mxml","xhvml","xvml","xvm"]},"application/yang":{"source":"iana","extensions":["yang"]},"application/yang-data+json":{"source":"iana","compressible":true},"application/yang-data+xml":{"source":"iana","compressible":true},"application/yang-patch+json":{"source":"iana","compressible":true},"application/yang-patch+xml":{"source":"iana","compressible":true},"application/yin+xml":{"source":"iana","compressible":true,"extensions":["yin"]},"application/zip":{"source":"iana","compressible":false,"extensions":["zip"]},"application/zlib":{"source":"iana"},"application/zstd":{"source":"iana"},"audio/1d-interleaved-parityfec":{"source":"iana"},"audio/32kadpcm":{"source":"iana"},"audio/3gpp":{"source":"iana","compressible":false,"extensions":["3gpp"]},"audio/3gpp2":{"source":"iana"},"audio/aac":{"source":"iana"},"audio/ac3":{"source":"iana"},"audio/adpcm":{"source":"apache","extensions":["adp"]},"audio/amr":{"source":"iana","extensions":["amr"]},"audio/amr-wb":{"source":"iana"},"audio/amr-wb+":{"source":"iana"},"audio/aptx":{"source":"iana"},"audio/asc":{"source":"iana"},"audio/atrac-advanced-lossless":{"source":"iana"},"audio/atrac-x":{"source":"iana"},"audio/atrac3":{"source":"iana"},"audio/basic":{"source":"iana","compressible":false,"extensions":["au","snd"]},"audio/bv16":{"source":"iana"},"audio/bv32":{"source":"iana"},"audio/clearmode":{"source":"iana"},"audio/cn":{"source":"iana"},"audio/dat12":{"source":"iana"},"audio/dls":{"source":"iana"},"audio/dsr-es201108":{"source":"iana"},"audio/dsr-es202050":{"source":"iana"},"audio/dsr-es202211":{"source":"iana"},"audio/dsr-es202212":{"source":"iana"},"audio/dv":{"source":"iana"},"audio/dvi4":{"source":"iana"},"audio/eac3":{"source":"iana"},"audio/encaprtp":{"source":"iana"},"audio/evrc":{"source":"iana"},"audio/evrc-qcp":{"source":"iana"},"audio/evrc0":{"source":"iana"},"audio/evrc1":{"source":"iana"},"audio/evrcb":{"source":"iana"},"audio/evrcb0":{"source":"iana"},"audio/evrcb1":{"source":"iana"},"audio/evrcnw":{"source":"iana"},"audio/evrcnw0":{"source":"iana"},"audio/evrcnw1":{"source":"iana"},"audio/evrcwb":{"source":"iana"},"audio/evrcwb0":{"source":"iana"},"audio/evrcwb1":{"source":"iana"},"audio/evs":{"source":"iana"},"audio/flexfec":{"source":"iana"},"audio/fwdred":{"source":"iana"},"audio/g711-0":{"source":"iana"},"audio/g719":{"source":"iana"},"audio/g722":{"source":"iana"},"audio/g7221":{"source":"iana"},"audio/g723":{"source":"iana"},"audio/g726-16":{"source":"iana"},"audio/g726-24":{"source":"iana"},"audio/g726-32":{"source":"iana"},"audio/g726-40":{"source":"iana"},"audio/g728":{"source":"iana"},"audio/g729":{"source":"iana"},"audio/g7291":{"source":"iana"},"audio/g729d":{"source":"iana"},"audio/g729e":{"source":"iana"},"audio/gsm":{"source":"iana"},"audio/gsm-efr":{"source":"iana"},"audio/gsm-hr-08":{"source":"iana"},"audio/ilbc":{"source":"iana"},"audio/ip-mr_v2.5":{"source":"iana"},"audio/isac":{"source":"apache"},"audio/l16":{"source":"iana"},"audio/l20":{"source":"iana"},"audio/l24":{"source":"iana","compressible":false},"audio/l8":{"source":"iana"},"audio/lpc":{"source":"iana"},"audio/melp":{"source":"iana"},"audio/melp1200":{"source":"iana"},"audio/melp2400":{"source":"iana"},"audio/melp600":{"source":"iana"},"audio/mhas":{"source":"iana"},"audio/midi":{"source":"apache","extensions":["mid","midi","kar","rmi"]},"audio/mobile-xmf":{"source":"iana","extensions":["mxmf"]},"audio/mp3":{"compressible":false,"extensions":["mp3"]},"audio/mp4":{"source":"iana","compressible":false,"extensions":["m4a","mp4a"]},"audio/mp4a-latm":{"source":"iana"},"audio/mpa":{"source":"iana"},"audio/mpa-robust":{"source":"iana"},"audio/mpeg":{"source":"iana","compressible":false,"extensions":["mpga","mp2","mp2a","mp3","m2a","m3a"]},"audio/mpeg4-generic":{"source":"iana"},"audio/musepack":{"source":"apache"},"audio/ogg":{"source":"iana","compressible":false,"extensions":["oga","ogg","spx","opus"]},"audio/opus":{"source":"iana"},"audio/parityfec":{"source":"iana"},"audio/pcma":{"source":"iana"},"audio/pcma-wb":{"source":"iana"},"audio/pcmu":{"source":"iana"},"audio/pcmu-wb":{"source":"iana"},"audio/prs.sid":{"source":"iana"},"audio/qcelp":{"source":"iana"},"audio/raptorfec":{"source":"iana"},"audio/red":{"source":"iana"},"audio/rtp-enc-aescm128":{"source":"iana"},"audio/rtp-midi":{"source":"iana"},"audio/rtploopback":{"source":"iana"},"audio/rtx":{"source":"iana"},"audio/s3m":{"source":"apache","extensions":["s3m"]},"audio/scip":{"source":"iana"},"audio/silk":{"source":"apache","extensions":["sil"]},"audio/smv":{"source":"iana"},"audio/smv-qcp":{"source":"iana"},"audio/smv0":{"source":"iana"},"audio/sofa":{"source":"iana"},"audio/sp-midi":{"source":"iana"},"audio/speex":{"source":"iana"},"audio/t140c":{"source":"iana"},"audio/t38":{"source":"iana"},"audio/telephone-event":{"source":"iana"},"audio/tetra_acelp":{"source":"iana"},"audio/tetra_acelp_bb":{"source":"iana"},"audio/tone":{"source":"iana"},"audio/tsvcis":{"source":"iana"},"audio/uemclip":{"source":"iana"},"audio/ulpfec":{"source":"iana"},"audio/usac":{"source":"iana"},"audio/vdvi":{"source":"iana"},"audio/vmr-wb":{"source":"iana"},"audio/vnd.3gpp.iufp":{"source":"iana"},"audio/vnd.4sb":{"source":"iana"},"audio/vnd.audiokoz":{"source":"iana"},"audio/vnd.celp":{"source":"iana"},"audio/vnd.cisco.nse":{"source":"iana"},"audio/vnd.cmles.radio-events":{"source":"iana"},"audio/vnd.cns.anp1":{"source":"iana"},"audio/vnd.cns.inf1":{"source":"iana"},"audio/vnd.dece.audio":{"source":"iana","extensions":["uva","uvva"]},"audio/vnd.digital-winds":{"source":"iana","extensions":["eol"]},"audio/vnd.dlna.adts":{"source":"iana"},"audio/vnd.dolby.heaac.1":{"source":"iana"},"audio/vnd.dolby.heaac.2":{"source":"iana"},"audio/vnd.dolby.mlp":{"source":"iana"},"audio/vnd.dolby.mps":{"source":"iana"},"audio/vnd.dolby.pl2":{"source":"iana"},"audio/vnd.dolby.pl2x":{"source":"iana"},"audio/vnd.dolby.pl2z":{"source":"iana"},"audio/vnd.dolby.pulse.1":{"source":"iana"},"audio/vnd.dra":{"source":"iana","extensions":["dra"]},"audio/vnd.dts":{"source":"iana","extensions":["dts"]},"audio/vnd.dts.hd":{"source":"iana","extensions":["dtshd"]},"audio/vnd.dts.uhd":{"source":"iana"},"audio/vnd.dvb.file":{"source":"iana"},"audio/vnd.everad.plj":{"source":"iana"},"audio/vnd.hns.audio":{"source":"iana"},"audio/vnd.lucent.voice":{"source":"iana","extensions":["lvp"]},"audio/vnd.ms-playready.media.pya":{"source":"iana","extensions":["pya"]},"audio/vnd.nokia.mobile-xmf":{"source":"iana"},"audio/vnd.nortel.vbk":{"source":"iana"},"audio/vnd.nuera.ecelp4800":{"source":"iana","extensions":["ecelp4800"]},"audio/vnd.nuera.ecelp7470":{"source":"iana","extensions":["ecelp7470"]},"audio/vnd.nuera.ecelp9600":{"source":"iana","extensions":["ecelp9600"]},"audio/vnd.octel.sbc":{"source":"iana"},"audio/vnd.presonus.multitrack":{"source":"iana"},"audio/vnd.qcelp":{"source":"iana"},"audio/vnd.rhetorex.32kadpcm":{"source":"iana"},"audio/vnd.rip":{"source":"iana","extensions":["rip"]},"audio/vnd.rn-realaudio":{"compressible":false},"audio/vnd.sealedmedia.softseal.mpeg":{"source":"iana"},"audio/vnd.vmx.cvsd":{"source":"iana"},"audio/vnd.wave":{"compressible":false},"audio/vorbis":{"source":"iana","compressible":false},"audio/vorbis-config":{"source":"iana"},"audio/wav":{"compressible":false,"extensions":["wav"]},"audio/wave":{"compressible":false,"extensions":["wav"]},"audio/webm":{"source":"apache","compressible":false,"extensions":["weba"]},"audio/x-aac":{"source":"apache","compressible":false,"extensions":["aac"]},"audio/x-aiff":{"source":"apache","extensions":["aif","aiff","aifc"]},"audio/x-caf":{"source":"apache","compressible":false,"extensions":["caf"]},"audio/x-flac":{"source":"apache","extensions":["flac"]},"audio/x-m4a":{"source":"nginx","extensions":["m4a"]},"audio/x-matroska":{"source":"apache","extensions":["mka"]},"audio/x-mpegurl":{"source":"apache","extensions":["m3u"]},"audio/x-ms-wax":{"source":"apache","extensions":["wax"]},"audio/x-ms-wma":{"source":"apache","extensions":["wma"]},"audio/x-pn-realaudio":{"source":"apache","extensions":["ram","ra"]},"audio/x-pn-realaudio-plugin":{"source":"apache","extensions":["rmp"]},"audio/x-realaudio":{"source":"nginx","extensions":["ra"]},"audio/x-tta":{"source":"apache"},"audio/x-wav":{"source":"apache","extensions":["wav"]},"audio/xm":{"source":"apache","extensions":["xm"]},"chemical/x-cdx":{"source":"apache","extensions":["cdx"]},"chemical/x-cif":{"source":"apache","extensions":["cif"]},"chemical/x-cmdf":{"source":"apache","extensions":["cmdf"]},"chemical/x-cml":{"source":"apache","extensions":["cml"]},"chemical/x-csml":{"source":"apache","extensions":["csml"]},"chemical/x-pdb":{"source":"apache"},"chemical/x-xyz":{"source":"apache","extensions":["xyz"]},"font/collection":{"source":"iana","extensions":["ttc"]},"font/otf":{"source":"iana","compressible":true,"extensions":["otf"]},"font/sfnt":{"source":"iana"},"font/ttf":{"source":"iana","compressible":true,"extensions":["ttf"]},"font/woff":{"source":"iana","extensions":["woff"]},"font/woff2":{"source":"iana","extensions":["woff2"]},"image/aces":{"source":"iana","extensions":["exr"]},"image/apng":{"compressible":false,"extensions":["apng"]},"image/avci":{"source":"iana","extensions":["avci"]},"image/avcs":{"source":"iana","extensions":["avcs"]},"image/avif":{"source":"iana","compressible":false,"extensions":["avif"]},"image/bmp":{"source":"iana","compressible":true,"extensions":["bmp"]},"image/cgm":{"source":"iana","extensions":["cgm"]},"image/dicom-rle":{"source":"iana","extensions":["drle"]},"image/emf":{"source":"iana","extensions":["emf"]},"image/fits":{"source":"iana","extensions":["fits"]},"image/g3fax":{"source":"iana","extensions":["g3"]},"image/gif":{"source":"iana","compressible":false,"extensions":["gif"]},"image/heic":{"source":"iana","extensions":["heic"]},"image/heic-sequence":{"source":"iana","extensions":["heics"]},"image/heif":{"source":"iana","extensions":["heif"]},"image/heif-sequence":{"source":"iana","extensions":["heifs"]},"image/hej2k":{"source":"iana","extensions":["hej2"]},"image/hsj2":{"source":"iana","extensions":["hsj2"]},"image/ief":{"source":"iana","extensions":["ief"]},"image/jls":{"source":"iana","extensions":["jls"]},"image/jp2":{"source":"iana","compressible":false,"extensions":["jp2","jpg2"]},"image/jpeg":{"source":"iana","compressible":false,"extensions":["jpeg","jpg","jpe"]},"image/jph":{"source":"iana","extensions":["jph"]},"image/jphc":{"source":"iana","extensions":["jhc"]},"image/jpm":{"source":"iana","compressible":false,"extensions":["jpm"]},"image/jpx":{"source":"iana","compressible":false,"extensions":["jpx","jpf"]},"image/jxr":{"source":"iana","extensions":["jxr"]},"image/jxra":{"source":"iana","extensions":["jxra"]},"image/jxrs":{"source":"iana","extensions":["jxrs"]},"image/jxs":{"source":"iana","extensions":["jxs"]},"image/jxsc":{"source":"iana","extensions":["jxsc"]},"image/jxsi":{"source":"iana","extensions":["jxsi"]},"image/jxss":{"source":"iana","extensions":["jxss"]},"image/ktx":{"source":"iana","extensions":["ktx"]},"image/ktx2":{"source":"iana","extensions":["ktx2"]},"image/naplps":{"source":"iana"},"image/pjpeg":{"compressible":false},"image/png":{"source":"iana","compressible":false,"extensions":["png"]},"image/prs.btif":{"source":"iana","extensions":["btif"]},"image/prs.pti":{"source":"iana","extensions":["pti"]},"image/pwg-raster":{"source":"iana"},"image/sgi":{"source":"apache","extensions":["sgi"]},"image/svg+xml":{"source":"iana","compressible":true,"extensions":["svg","svgz"]},"image/t38":{"source":"iana","extensions":["t38"]},"image/tiff":{"source":"iana","compressible":false,"extensions":["tif","tiff"]},"image/tiff-fx":{"source":"iana","extensions":["tfx"]},"image/vnd.adobe.photoshop":{"source":"iana","compressible":true,"extensions":["psd"]},"image/vnd.airzip.accelerator.azv":{"source":"iana","extensions":["azv"]},"image/vnd.cns.inf2":{"source":"iana"},"image/vnd.dece.graphic":{"source":"iana","extensions":["uvi","uvvi","uvg","uvvg"]},"image/vnd.djvu":{"source":"iana","extensions":["djvu","djv"]},"image/vnd.dvb.subtitle":{"source":"iana","extensions":["sub"]},"image/vnd.dwg":{"source":"iana","extensions":["dwg"]},"image/vnd.dxf":{"source":"iana","extensions":["dxf"]},"image/vnd.fastbidsheet":{"source":"iana","extensions":["fbs"]},"image/vnd.fpx":{"source":"iana","extensions":["fpx"]},"image/vnd.fst":{"source":"iana","extensions":["fst"]},"image/vnd.fujixerox.edmics-mmr":{"source":"iana","extensions":["mmr"]},"image/vnd.fujixerox.edmics-rlc":{"source":"iana","extensions":["rlc"]},"image/vnd.globalgraphics.pgb":{"source":"iana"},"image/vnd.microsoft.icon":{"source":"iana","compressible":true,"extensions":["ico"]},"image/vnd.mix":{"source":"iana"},"image/vnd.mozilla.apng":{"source":"iana"},"image/vnd.ms-dds":{"compressible":true,"extensions":["dds"]},"image/vnd.ms-modi":{"source":"iana","extensions":["mdi"]},"image/vnd.ms-photo":{"source":"apache","extensions":["wdp"]},"image/vnd.net-fpx":{"source":"iana","extensions":["npx"]},"image/vnd.pco.b16":{"source":"iana","extensions":["b16"]},"image/vnd.radiance":{"source":"iana"},"image/vnd.sealed.png":{"source":"iana"},"image/vnd.sealedmedia.softseal.gif":{"source":"iana"},"image/vnd.sealedmedia.softseal.jpg":{"source":"iana"},"image/vnd.svf":{"source":"iana"},"image/vnd.tencent.tap":{"source":"iana","extensions":["tap"]},"image/vnd.valve.source.texture":{"source":"iana","extensions":["vtf"]},"image/vnd.wap.wbmp":{"source":"iana","extensions":["wbmp"]},"image/vnd.xiff":{"source":"iana","extensions":["xif"]},"image/vnd.zbrush.pcx":{"source":"iana","extensions":["pcx"]},"image/webp":{"source":"apache","extensions":["webp"]},"image/wmf":{"source":"iana","extensions":["wmf"]},"image/x-3ds":{"source":"apache","extensions":["3ds"]},"image/x-cmu-raster":{"source":"apache","extensions":["ras"]},"image/x-cmx":{"source":"apache","extensions":["cmx"]},"image/x-freehand":{"source":"apache","extensions":["fh","fhc","fh4","fh5","fh7"]},"image/x-icon":{"source":"apache","compressible":true,"extensions":["ico"]},"image/x-jng":{"source":"nginx","extensions":["jng"]},"image/x-mrsid-image":{"source":"apache","extensions":["sid"]},"image/x-ms-bmp":{"source":"nginx","compressible":true,"extensions":["bmp"]},"image/x-pcx":{"source":"apache","extensions":["pcx"]},"image/x-pict":{"source":"apache","extensions":["pic","pct"]},"image/x-portable-anymap":{"source":"apache","extensions":["pnm"]},"image/x-portable-bitmap":{"source":"apache","extensions":["pbm"]},"image/x-portable-graymap":{"source":"apache","extensions":["pgm"]},"image/x-portable-pixmap":{"source":"apache","extensions":["ppm"]},"image/x-rgb":{"source":"apache","extensions":["rgb"]},"image/x-tga":{"source":"apache","extensions":["tga"]},"image/x-xbitmap":{"source":"apache","extensions":["xbm"]},"image/x-xcf":{"compressible":false},"image/x-xpixmap":{"source":"apache","extensions":["xpm"]},"image/x-xwindowdump":{"source":"apache","extensions":["xwd"]},"message/cpim":{"source":"iana"},"message/delivery-status":{"source":"iana"},"message/disposition-notification":{"source":"iana","extensions":["disposition-notification"]},"message/external-body":{"source":"iana"},"message/feedback-report":{"source":"iana"},"message/global":{"source":"iana","extensions":["u8msg"]},"message/global-delivery-status":{"source":"iana","extensions":["u8dsn"]},"message/global-disposition-notification":{"source":"iana","extensions":["u8mdn"]},"message/global-headers":{"source":"iana","extensions":["u8hdr"]},"message/http":{"source":"iana","compressible":false},"message/imdn+xml":{"source":"iana","compressible":true},"message/news":{"source":"iana"},"message/partial":{"source":"iana","compressible":false},"message/rfc822":{"source":"iana","compressible":true,"extensions":["eml","mime"]},"message/s-http":{"source":"iana"},"message/sip":{"source":"iana"},"message/sipfrag":{"source":"iana"},"message/tracking-status":{"source":"iana"},"message/vnd.si.simp":{"source":"iana"},"message/vnd.wfa.wsc":{"source":"iana","extensions":["wsc"]},"model/3mf":{"source":"iana","extensions":["3mf"]},"model/e57":{"source":"iana"},"model/gltf+json":{"source":"iana","compressible":true,"extensions":["gltf"]},"model/gltf-binary":{"source":"iana","compressible":true,"extensions":["glb"]},"model/iges":{"source":"iana","compressible":false,"extensions":["igs","iges"]},"model/mesh":{"source":"iana","compressible":false,"extensions":["msh","mesh","silo"]},"model/mtl":{"source":"iana","extensions":["mtl"]},"model/obj":{"source":"iana","extensions":["obj"]},"model/step":{"source":"iana"},"model/step+xml":{"source":"iana","compressible":true,"extensions":["stpx"]},"model/step+zip":{"source":"iana","compressible":false,"extensions":["stpz"]},"model/step-xml+zip":{"source":"iana","compressible":false,"extensions":["stpxz"]},"model/stl":{"source":"iana","extensions":["stl"]},"model/vnd.collada+xml":{"source":"iana","compressible":true,"extensions":["dae"]},"model/vnd.dwf":{"source":"iana","extensions":["dwf"]},"model/vnd.flatland.3dml":{"source":"iana"},"model/vnd.gdl":{"source":"iana","extensions":["gdl"]},"model/vnd.gs-gdl":{"source":"apache"},"model/vnd.gs.gdl":{"source":"iana"},"model/vnd.gtw":{"source":"iana","extensions":["gtw"]},"model/vnd.moml+xml":{"source":"iana","compressible":true},"model/vnd.mts":{"source":"iana","extensions":["mts"]},"model/vnd.opengex":{"source":"iana","extensions":["ogex"]},"model/vnd.parasolid.transmit.binary":{"source":"iana","extensions":["x_b"]},"model/vnd.parasolid.transmit.text":{"source":"iana","extensions":["x_t"]},"model/vnd.pytha.pyox":{"source":"iana"},"model/vnd.rosette.annotated-data-model":{"source":"iana"},"model/vnd.sap.vds":{"source":"iana","extensions":["vds"]},"model/vnd.usdz+zip":{"source":"iana","compressible":false,"extensions":["usdz"]},"model/vnd.valve.source.compiled-map":{"source":"iana","extensions":["bsp"]},"model/vnd.vtu":{"source":"iana","extensions":["vtu"]},"model/vrml":{"source":"iana","compressible":false,"extensions":["wrl","vrml"]},"model/x3d+binary":{"source":"apache","compressible":false,"extensions":["x3db","x3dbz"]},"model/x3d+fastinfoset":{"source":"iana","extensions":["x3db"]},"model/x3d+vrml":{"source":"apache","compressible":false,"extensions":["x3dv","x3dvz"]},"model/x3d+xml":{"source":"iana","compressible":true,"extensions":["x3d","x3dz"]},"model/x3d-vrml":{"source":"iana","extensions":["x3dv"]},"multipart/alternative":{"source":"iana","compressible":false},"multipart/appledouble":{"source":"iana"},"multipart/byteranges":{"source":"iana"},"multipart/digest":{"source":"iana"},"multipart/encrypted":{"source":"iana","compressible":false},"multipart/form-data":{"source":"iana","compressible":false},"multipart/header-set":{"source":"iana"},"multipart/mixed":{"source":"iana"},"multipart/multilingual":{"source":"iana"},"multipart/parallel":{"source":"iana"},"multipart/related":{"source":"iana","compressible":false},"multipart/report":{"source":"iana"},"multipart/signed":{"source":"iana","compressible":false},"multipart/vnd.bint.med-plus":{"source":"iana"},"multipart/voice-message":{"source":"iana"},"multipart/x-mixed-replace":{"source":"iana"},"text/1d-interleaved-parityfec":{"source":"iana"},"text/cache-manifest":{"source":"iana","compressible":true,"extensions":["appcache","manifest"]},"text/calendar":{"source":"iana","extensions":["ics","ifb"]},"text/calender":{"compressible":true},"text/cmd":{"compressible":true},"text/coffeescript":{"extensions":["coffee","litcoffee"]},"text/cql":{"source":"iana"},"text/cql-expression":{"source":"iana"},"text/cql-identifier":{"source":"iana"},"text/css":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["css"]},"text/csv":{"source":"iana","compressible":true,"extensions":["csv"]},"text/csv-schema":{"source":"iana"},"text/directory":{"source":"iana"},"text/dns":{"source":"iana"},"text/ecmascript":{"source":"iana"},"text/encaprtp":{"source":"iana"},"text/enriched":{"source":"iana"},"text/fhirpath":{"source":"iana"},"text/flexfec":{"source":"iana"},"text/fwdred":{"source":"iana"},"text/gff3":{"source":"iana"},"text/grammar-ref-list":{"source":"iana"},"text/html":{"source":"iana","compressible":true,"extensions":["html","htm","shtml"]},"text/jade":{"extensions":["jade"]},"text/javascript":{"source":"iana","compressible":true},"text/jcr-cnd":{"source":"iana"},"text/jsx":{"compressible":true,"extensions":["jsx"]},"text/less":{"compressible":true,"extensions":["less"]},"text/markdown":{"source":"iana","compressible":true,"extensions":["markdown","md"]},"text/mathml":{"source":"nginx","extensions":["mml"]},"text/mdx":{"compressible":true,"extensions":["mdx"]},"text/mizar":{"source":"iana"},"text/n3":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["n3"]},"text/parameters":{"source":"iana","charset":"UTF-8"},"text/parityfec":{"source":"iana"},"text/plain":{"source":"iana","compressible":true,"extensions":["txt","text","conf","def","list","log","in","ini"]},"text/provenance-notation":{"source":"iana","charset":"UTF-8"},"text/prs.fallenstein.rst":{"source":"iana"},"text/prs.lines.tag":{"source":"iana","extensions":["dsc"]},"text/prs.prop.logic":{"source":"iana"},"text/raptorfec":{"source":"iana"},"text/red":{"source":"iana"},"text/rfc822-headers":{"source":"iana"},"text/richtext":{"source":"iana","compressible":true,"extensions":["rtx"]},"text/rtf":{"source":"iana","compressible":true,"extensions":["rtf"]},"text/rtp-enc-aescm128":{"source":"iana"},"text/rtploopback":{"source":"iana"},"text/rtx":{"source":"iana"},"text/sgml":{"source":"iana","extensions":["sgml","sgm"]},"text/shaclc":{"source":"iana"},"text/shex":{"source":"iana","extensions":["shex"]},"text/slim":{"extensions":["slim","slm"]},"text/spdx":{"source":"iana","extensions":["spdx"]},"text/strings":{"source":"iana"},"text/stylus":{"extensions":["stylus","styl"]},"text/t140":{"source":"iana"},"text/tab-separated-values":{"source":"iana","compressible":true,"extensions":["tsv"]},"text/troff":{"source":"iana","extensions":["t","tr","roff","man","me","ms"]},"text/turtle":{"source":"iana","charset":"UTF-8","extensions":["ttl"]},"text/ulpfec":{"source":"iana"},"text/uri-list":{"source":"iana","compressible":true,"extensions":["uri","uris","urls"]},"text/vcard":{"source":"iana","compressible":true,"extensions":["vcard"]},"text/vnd.a":{"source":"iana"},"text/vnd.abc":{"source":"iana"},"text/vnd.ascii-art":{"source":"iana"},"text/vnd.curl":{"source":"iana","extensions":["curl"]},"text/vnd.curl.dcurl":{"source":"apache","extensions":["dcurl"]},"text/vnd.curl.mcurl":{"source":"apache","extensions":["mcurl"]},"text/vnd.curl.scurl":{"source":"apache","extensions":["scurl"]},"text/vnd.debian.copyright":{"source":"iana","charset":"UTF-8"},"text/vnd.dmclientscript":{"source":"iana"},"text/vnd.dvb.subtitle":{"source":"iana","extensions":["sub"]},"text/vnd.esmertec.theme-descriptor":{"source":"iana","charset":"UTF-8"},"text/vnd.familysearch.gedcom":{"source":"iana","extensions":["ged"]},"text/vnd.ficlab.flt":{"source":"iana"},"text/vnd.fly":{"source":"iana","extensions":["fly"]},"text/vnd.fmi.flexstor":{"source":"iana","extensions":["flx"]},"text/vnd.gml":{"source":"iana"},"text/vnd.graphviz":{"source":"iana","extensions":["gv"]},"text/vnd.hans":{"source":"iana"},"text/vnd.hgl":{"source":"iana"},"text/vnd.in3d.3dml":{"source":"iana","extensions":["3dml"]},"text/vnd.in3d.spot":{"source":"iana","extensions":["spot"]},"text/vnd.iptc.newsml":{"source":"iana"},"text/vnd.iptc.nitf":{"source":"iana"},"text/vnd.latex-z":{"source":"iana"},"text/vnd.motorola.reflex":{"source":"iana"},"text/vnd.ms-mediapackage":{"source":"iana"},"text/vnd.net2phone.commcenter.command":{"source":"iana"},"text/vnd.radisys.msml-basic-layout":{"source":"iana"},"text/vnd.senx.warpscript":{"source":"iana"},"text/vnd.si.uricatalogue":{"source":"iana"},"text/vnd.sosi":{"source":"iana"},"text/vnd.sun.j2me.app-descriptor":{"source":"iana","charset":"UTF-8","extensions":["jad"]},"text/vnd.trolltech.linguist":{"source":"iana","charset":"UTF-8"},"text/vnd.wap.si":{"source":"iana"},"text/vnd.wap.sl":{"source":"iana"},"text/vnd.wap.wml":{"source":"iana","extensions":["wml"]},"text/vnd.wap.wmlscript":{"source":"iana","extensions":["wmls"]},"text/vtt":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["vtt"]},"text/x-asm":{"source":"apache","extensions":["s","asm"]},"text/x-c":{"source":"apache","extensions":["c","cc","cxx","cpp","h","hh","dic"]},"text/x-component":{"source":"nginx","extensions":["htc"]},"text/x-fortran":{"source":"apache","extensions":["f","for","f77","f90"]},"text/x-gwt-rpc":{"compressible":true},"text/x-handlebars-template":{"extensions":["hbs"]},"text/x-java-source":{"source":"apache","extensions":["java"]},"text/x-jquery-tmpl":{"compressible":true},"text/x-lua":{"extensions":["lua"]},"text/x-markdown":{"compressible":true,"extensions":["mkd"]},"text/x-nfo":{"source":"apache","extensions":["nfo"]},"text/x-opml":{"source":"apache","extensions":["opml"]},"text/x-org":{"compressible":true,"extensions":["org"]},"text/x-pascal":{"source":"apache","extensions":["p","pas"]},"text/x-processing":{"compressible":true,"extensions":["pde"]},"text/x-sass":{"extensions":["sass"]},"text/x-scss":{"extensions":["scss"]},"text/x-setext":{"source":"apache","extensions":["etx"]},"text/x-sfv":{"source":"apache","extensions":["sfv"]},"text/x-suse-ymp":{"compressible":true,"extensions":["ymp"]},"text/x-uuencode":{"source":"apache","extensions":["uu"]},"text/x-vcalendar":{"source":"apache","extensions":["vcs"]},"text/x-vcard":{"source":"apache","extensions":["vcf"]},"text/xml":{"source":"iana","compressible":true,"extensions":["xml"]},"text/xml-external-parsed-entity":{"source":"iana"},"text/yaml":{"compressible":true,"extensions":["yaml","yml"]},"video/1d-interleaved-parityfec":{"source":"iana"},"video/3gpp":{"source":"iana","extensions":["3gp","3gpp"]},"video/3gpp-tt":{"source":"iana"},"video/3gpp2":{"source":"iana","extensions":["3g2"]},"video/av1":{"source":"iana"},"video/bmpeg":{"source":"iana"},"video/bt656":{"source":"iana"},"video/celb":{"source":"iana"},"video/dv":{"source":"iana"},"video/encaprtp":{"source":"iana"},"video/ffv1":{"source":"iana"},"video/flexfec":{"source":"iana"},"video/h261":{"source":"iana","extensions":["h261"]},"video/h263":{"source":"iana","extensions":["h263"]},"video/h263-1998":{"source":"iana"},"video/h263-2000":{"source":"iana"},"video/h264":{"source":"iana","extensions":["h264"]},"video/h264-rcdo":{"source":"iana"},"video/h264-svc":{"source":"iana"},"video/h265":{"source":"iana"},"video/iso.segment":{"source":"iana","extensions":["m4s"]},"video/jpeg":{"source":"iana","extensions":["jpgv"]},"video/jpeg2000":{"source":"iana"},"video/jpm":{"source":"apache","extensions":["jpm","jpgm"]},"video/jxsv":{"source":"iana"},"video/mj2":{"source":"iana","extensions":["mj2","mjp2"]},"video/mp1s":{"source":"iana"},"video/mp2p":{"source":"iana"},"video/mp2t":{"source":"iana","extensions":["ts"]},"video/mp4":{"source":"iana","compressible":false,"extensions":["mp4","mp4v","mpg4"]},"video/mp4v-es":{"source":"iana"},"video/mpeg":{"source":"iana","compressible":false,"extensions":["mpeg","mpg","mpe","m1v","m2v"]},"video/mpeg4-generic":{"source":"iana"},"video/mpv":{"source":"iana"},"video/nv":{"source":"iana"},"video/ogg":{"source":"iana","compressible":false,"extensions":["ogv"]},"video/parityfec":{"source":"iana"},"video/pointer":{"source":"iana"},"video/quicktime":{"source":"iana","compressible":false,"extensions":["qt","mov"]},"video/raptorfec":{"source":"iana"},"video/raw":{"source":"iana"},"video/rtp-enc-aescm128":{"source":"iana"},"video/rtploopback":{"source":"iana"},"video/rtx":{"source":"iana"},"video/scip":{"source":"iana"},"video/smpte291":{"source":"iana"},"video/smpte292m":{"source":"iana"},"video/ulpfec":{"source":"iana"},"video/vc1":{"source":"iana"},"video/vc2":{"source":"iana"},"video/vnd.cctv":{"source":"iana"},"video/vnd.dece.hd":{"source":"iana","extensions":["uvh","uvvh"]},"video/vnd.dece.mobile":{"source":"iana","extensions":["uvm","uvvm"]},"video/vnd.dece.mp4":{"source":"iana"},"video/vnd.dece.pd":{"source":"iana","extensions":["uvp","uvvp"]},"video/vnd.dece.sd":{"source":"iana","extensions":["uvs","uvvs"]},"video/vnd.dece.video":{"source":"iana","extensions":["uvv","uvvv"]},"video/vnd.directv.mpeg":{"source":"iana"},"video/vnd.directv.mpeg-tts":{"source":"iana"},"video/vnd.dlna.mpeg-tts":{"source":"iana"},"video/vnd.dvb.file":{"source":"iana","extensions":["dvb"]},"video/vnd.fvt":{"source":"iana","extensions":["fvt"]},"video/vnd.hns.video":{"source":"iana"},"video/vnd.iptvforum.1dparityfec-1010":{"source":"iana"},"video/vnd.iptvforum.1dparityfec-2005":{"source":"iana"},"video/vnd.iptvforum.2dparityfec-1010":{"source":"iana"},"video/vnd.iptvforum.2dparityfec-2005":{"source":"iana"},"video/vnd.iptvforum.ttsavc":{"source":"iana"},"video/vnd.iptvforum.ttsmpeg2":{"source":"iana"},"video/vnd.motorola.video":{"source":"iana"},"video/vnd.motorola.videop":{"source":"iana"},"video/vnd.mpegurl":{"source":"iana","extensions":["mxu","m4u"]},"video/vnd.ms-playready.media.pyv":{"source":"iana","extensions":["pyv"]},"video/vnd.nokia.interleaved-multimedia":{"source":"iana"},"video/vnd.nokia.mp4vr":{"source":"iana"},"video/vnd.nokia.videovoip":{"source":"iana"},"video/vnd.objectvideo":{"source":"iana"},"video/vnd.radgamettools.bink":{"source":"iana"},"video/vnd.radgamettools.smacker":{"source":"iana"},"video/vnd.sealed.mpeg1":{"source":"iana"},"video/vnd.sealed.mpeg4":{"source":"iana"},"video/vnd.sealed.swf":{"source":"iana"},"video/vnd.sealedmedia.softseal.mov":{"source":"iana"},"video/vnd.uvvu.mp4":{"source":"iana","extensions":["uvu","uvvu"]},"video/vnd.vivo":{"source":"iana","extensions":["viv"]},"video/vnd.youtube.yt":{"source":"iana"},"video/vp8":{"source":"iana"},"video/vp9":{"source":"iana"},"video/webm":{"source":"apache","compressible":false,"extensions":["webm"]},"video/x-f4v":{"source":"apache","extensions":["f4v"]},"video/x-fli":{"source":"apache","extensions":["fli"]},"video/x-flv":{"source":"apache","compressible":false,"extensions":["flv"]},"video/x-m4v":{"source":"apache","extensions":["m4v"]},"video/x-matroska":{"source":"apache","compressible":false,"extensions":["mkv","mk3d","mks"]},"video/x-mng":{"source":"apache","extensions":["mng"]},"video/x-ms-asf":{"source":"apache","extensions":["asf","asx"]},"video/x-ms-vob":{"source":"apache","extensions":["vob"]},"video/x-ms-wm":{"source":"apache","extensions":["wm"]},"video/x-ms-wmv":{"source":"apache","compressible":false,"extensions":["wmv"]},"video/x-ms-wmx":{"source":"apache","extensions":["wmx"]},"video/x-ms-wvx":{"source":"apache","extensions":["wvx"]},"video/x-msvideo":{"source":"apache","extensions":["avi"]},"video/x-sgi-movie":{"source":"apache","extensions":["movie"]},"video/x-smv":{"source":"apache","extensions":["smv"]},"x-conference/x-cooltalk":{"source":"apache","extensions":["ice"]},"x-shader/x-fragment":{"compressible":true},"x-shader/x-vertex":{"compressible":true}}');
1846
60
  }
1847
61
  }, __webpack_module_cache__ = {};
1848
62
  function __webpack_require__(moduleId) {
@@ -1873,11 +87,7 @@ __webpack_require__.n = (module)=>{
1873
87
  var __webpack_exports__ = {};
1874
88
  for(var __rspack_i in (()=>{
1875
89
  "use strict";
1876
- let runtimeProcessArgs, runtimeInfo, cache, TypedArray, origin, isMSIE;
1877
- __webpack_require__.r(__webpack_exports__), __webpack_require__.d(__webpack_exports__, {
1878
- execute: ()=>execute
1879
- });
1880
- var setImmediateSupported, postMessageSupported, token, callbacks, common_utils_namespaceObject = {};
90
+ let runtimeProcessArgs, runtimeInfo;
1881
91
  function toArr(any) {
1882
92
  return null == any ? [] : Array.isArray(any) ? any : [
1883
93
  any
@@ -1895,12 +105,8 @@ for(var __rspack_i in (()=>{
1895
105
  function camelcaseOptionName(name) {
1896
106
  return name.split(".").map((v, i)=>0 === i ? v.replaceAll(/([a-z])-([a-z])/g, (_, p1, p2)=>p1 + p2.toUpperCase()) : v).join(".");
1897
107
  }
1898
- __webpack_require__.r(common_utils_namespaceObject), __webpack_require__.d(common_utils_namespaceObject, {
1899
- hasBrowserEnv: ()=>hasBrowserEnv,
1900
- hasStandardBrowserEnv: ()=>hasStandardBrowserEnv,
1901
- hasStandardBrowserWebWorkerEnv: ()=>hasStandardBrowserWebWorkerEnv,
1902
- navigator: ()=>_navigator,
1903
- origin: ()=>utils_origin
108
+ __webpack_require__.r(__webpack_exports__), __webpack_require__.d(__webpack_exports__, {
109
+ execute: ()=>execute
1904
110
  });
1905
111
  var CACError = class extends Error {
1906
112
  constructor(message){
@@ -2260,2034 +466,29 @@ for(var __rspack_i in (()=>{
2260
466
  }, picocolors = __webpack_require__("../../node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/picocolors.js");
2261
467
  let common_namespaceObject = require("@rsdoctor/utils/common"), types_namespaceObject = require("@rsdoctor/types"), sdk_namespaceObject = require("@rsdoctor/sdk"), external_ora_namespaceObject = require("ora");
2262
468
  var external_ora_default = __webpack_require__.n(external_ora_namespaceObject);
2263
- function bind(fn, thisArg) {
2264
- return function() {
2265
- return fn.apply(thisArg, arguments);
2266
- };
2267
- }
2268
- let { toString: utils_toString } = Object.prototype, { getPrototypeOf } = Object, { iterator: utils_iterator, toStringTag } = Symbol, kindOf = (cache = Object.create(null), (thing)=>{
2269
- let str = utils_toString.call(thing);
2270
- return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
2271
- }), kindOfTest = (type)=>(type = type.toLowerCase(), (thing)=>kindOf(thing) === type), typeOfTest = (type)=>(thing)=>typeof thing === type, { isArray } = Array, isUndefined = typeOfTest('undefined');
2272
- function isBuffer(val) {
2273
- return null !== val && !isUndefined(val) && null !== val.constructor && !isUndefined(val.constructor) && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
2274
- }
2275
- let isArrayBuffer = kindOfTest('ArrayBuffer'), isString = typeOfTest('string'), isFunction = typeOfTest('function'), isNumber = typeOfTest('number'), isObject = (thing)=>null !== thing && 'object' == typeof thing, isPlainObject = (val)=>{
2276
- if ('object' !== kindOf(val)) return !1;
2277
- let prototype = getPrototypeOf(val);
2278
- return (null === prototype || prototype === Object.prototype || null === Object.getPrototypeOf(prototype)) && !(toStringTag in val) && !(utils_iterator in val);
2279
- }, isDate = kindOfTest('Date'), isFile = kindOfTest('File'), isBlob = kindOfTest('Blob'), utils_isFileList = kindOfTest('FileList'), G = "u" > typeof globalThis ? globalThis : "u" > typeof self ? self : "u" > typeof window ? window : "u" > typeof global ? global : {}, FormDataCtor = void 0 !== G.FormData ? G.FormData : void 0, isURLSearchParams = kindOfTest('URLSearchParams'), [isReadableStream, isRequest, isResponse, isHeaders] = [
2280
- 'ReadableStream',
2281
- 'Request',
2282
- 'Response',
2283
- 'Headers'
2284
- ].map(kindOfTest);
2285
- function forEach(obj, fn, { allOwnKeys = !1 } = {}) {
2286
- let i, l;
2287
- if (null != obj) if ('object' != typeof obj && (obj = [
2288
- obj
2289
- ]), isArray(obj)) for(i = 0, l = obj.length; i < l; i++)fn.call(null, obj[i], i, obj);
2290
- else {
2291
- let key;
2292
- if (isBuffer(obj)) return;
2293
- let keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj), len = keys.length;
2294
- for(i = 0; i < len; i++)key = keys[i], fn.call(null, obj[key], key, obj);
2295
- }
2296
- }
2297
- function findKey(obj, key) {
2298
- let _key;
2299
- if (isBuffer(obj)) return null;
2300
- key = key.toLowerCase();
2301
- let keys = Object.keys(obj), i = keys.length;
2302
- for(; i-- > 0;)if (key === (_key = keys[i]).toLowerCase()) return _key;
2303
- return null;
2304
- }
2305
- let _global = "u" > typeof globalThis ? globalThis : "u" > typeof self ? self : "u" > typeof window ? window : global, isContextDefined = (context)=>!isUndefined(context) && context !== _global, isTypedArray = (TypedArray = "u" > typeof Uint8Array && getPrototypeOf(Uint8Array), (thing)=>TypedArray && thing instanceof TypedArray), isHTMLForm = kindOfTest('HTMLFormElement'), utils_hasOwnProperty = (({ hasOwnProperty })=>(obj, prop)=>hasOwnProperty.call(obj, prop))(Object.prototype), isRegExp = kindOfTest('RegExp'), reduceDescriptors = (obj, reducer)=>{
2306
- let descriptors = Object.getOwnPropertyDescriptors(obj), reducedDescriptors = {};
2307
- forEach(descriptors, (descriptor, name)=>{
2308
- let ret;
2309
- !1 !== (ret = reducer(descriptor, name, obj)) && (reducedDescriptors[name] = ret || descriptor);
2310
- }), Object.defineProperties(obj, reducedDescriptors);
2311
- }, isAsyncFn = kindOfTest('AsyncFunction'), _setImmediate = (setImmediateSupported = 'function' == typeof setImmediate, postMessageSupported = isFunction(_global.postMessage), setImmediateSupported ? setImmediate : postMessageSupported ? (token = `axios@${Math.random()}`, callbacks = [], _global.addEventListener('message', ({ source, data })=>{
2312
- source === _global && data === token && callbacks.length && callbacks.shift()();
2313
- }, !1), (cb)=>{
2314
- callbacks.push(cb), _global.postMessage(token, '*');
2315
- }) : (cb)=>setTimeout(cb)), asap = "u" > typeof queueMicrotask ? queueMicrotask.bind(_global) : "u" > typeof process && process.nextTick || _setImmediate, utils = {
2316
- isArray,
2317
- isArrayBuffer,
2318
- isBuffer,
2319
- isFormData: (thing)=>{
2320
- let kind;
2321
- return thing && (FormDataCtor && thing instanceof FormDataCtor || isFunction(thing.append) && ('formdata' === (kind = kindOf(thing)) || 'object' === kind && isFunction(thing.toString) && '[object FormData]' === thing.toString()));
2322
- },
2323
- isArrayBufferView: function(val) {
2324
- return "u" > typeof ArrayBuffer && ArrayBuffer.isView ? ArrayBuffer.isView(val) : val && val.buffer && isArrayBuffer(val.buffer);
2325
- },
2326
- isString,
2327
- isNumber,
2328
- isBoolean: (thing)=>!0 === thing || !1 === thing,
2329
- isObject,
2330
- isPlainObject,
2331
- isEmptyObject: (val)=>{
2332
- if (!isObject(val) || isBuffer(val)) return !1;
2333
- try {
2334
- return 0 === Object.keys(val).length && Object.getPrototypeOf(val) === Object.prototype;
2335
- } catch (e) {
2336
- return !1;
2337
- }
2338
- },
2339
- isReadableStream,
2340
- isRequest,
2341
- isResponse,
2342
- isHeaders,
2343
- isUndefined,
2344
- isDate,
2345
- isFile,
2346
- isReactNativeBlob: (value)=>!!(value && void 0 !== value.uri),
2347
- isReactNative: (formData)=>formData && void 0 !== formData.getParts,
2348
- isBlob,
2349
- isRegExp,
2350
- isFunction,
2351
- isStream: (val)=>isObject(val) && isFunction(val.pipe),
2352
- isURLSearchParams,
2353
- isTypedArray,
2354
- isFileList: utils_isFileList,
2355
- forEach,
2356
- merge: function utils_merge() {
2357
- let { caseless, skipUndefined } = isContextDefined(this) && this || {}, result = {}, assignValue = (val, key)=>{
2358
- if ('__proto__' === key || 'constructor' === key || 'prototype' === key) return;
2359
- let targetKey = caseless && findKey(result, key) || key;
2360
- isPlainObject(result[targetKey]) && isPlainObject(val) ? result[targetKey] = utils_merge(result[targetKey], val) : isPlainObject(val) ? result[targetKey] = utils_merge({}, val) : isArray(val) ? result[targetKey] = val.slice() : skipUndefined && isUndefined(val) || (result[targetKey] = val);
2361
- };
2362
- for(let i = 0, l = arguments.length; i < l; i++)arguments[i] && forEach(arguments[i], assignValue);
2363
- return result;
2364
- },
2365
- extend: (a, b, thisArg, { allOwnKeys } = {})=>(forEach(b, (val, key)=>{
2366
- thisArg && isFunction(val) ? Object.defineProperty(a, key, {
2367
- value: bind(val, thisArg),
2368
- writable: !0,
2369
- enumerable: !0,
2370
- configurable: !0
2371
- }) : Object.defineProperty(a, key, {
2372
- value: val,
2373
- writable: !0,
2374
- enumerable: !0,
2375
- configurable: !0
2376
- });
2377
- }, {
2378
- allOwnKeys
2379
- }), a),
2380
- trim: (str)=>str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''),
2381
- stripBOM: (content)=>(0xfeff === content.charCodeAt(0) && (content = content.slice(1)), content),
2382
- inherits: (constructor, superConstructor, props, descriptors)=>{
2383
- constructor.prototype = Object.create(superConstructor.prototype, descriptors), Object.defineProperty(constructor.prototype, 'constructor', {
2384
- value: constructor,
2385
- writable: !0,
2386
- enumerable: !1,
2387
- configurable: !0
2388
- }), Object.defineProperty(constructor, 'super', {
2389
- value: superConstructor.prototype
2390
- }), props && Object.assign(constructor.prototype, props);
2391
- },
2392
- toFlatObject: (sourceObj, destObj, filter, propFilter)=>{
2393
- let props, i, prop, merged = {};
2394
- if (destObj = destObj || {}, null == sourceObj) return destObj;
2395
- do {
2396
- for(i = (props = Object.getOwnPropertyNames(sourceObj)).length; i-- > 0;)prop = props[i], (!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop] && (destObj[prop] = sourceObj[prop], merged[prop] = !0);
2397
- sourceObj = !1 !== filter && getPrototypeOf(sourceObj);
2398
- }while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);
2399
- return destObj;
2400
- },
2401
- kindOf,
2402
- kindOfTest,
2403
- endsWith: (str, searchString, position)=>{
2404
- str = String(str), (void 0 === position || position > str.length) && (position = str.length), position -= searchString.length;
2405
- let lastIndex = str.indexOf(searchString, position);
2406
- return -1 !== lastIndex && lastIndex === position;
2407
- },
2408
- toArray: (thing)=>{
2409
- if (!thing) return null;
2410
- if (isArray(thing)) return thing;
2411
- let i = thing.length;
2412
- if (!isNumber(i)) return null;
2413
- let arr = Array(i);
2414
- for(; i-- > 0;)arr[i] = thing[i];
2415
- return arr;
2416
- },
2417
- forEachEntry: (obj, fn)=>{
2418
- let result, _iterator = (obj && obj[utils_iterator]).call(obj);
2419
- for(; (result = _iterator.next()) && !result.done;){
2420
- let pair = result.value;
2421
- fn.call(obj, pair[0], pair[1]);
2422
- }
2423
- },
2424
- matchAll: (regExp, str)=>{
2425
- let matches, arr = [];
2426
- for(; null !== (matches = regExp.exec(str));)arr.push(matches);
2427
- return arr;
2428
- },
2429
- isHTMLForm,
2430
- hasOwnProperty: utils_hasOwnProperty,
2431
- hasOwnProp: utils_hasOwnProperty,
2432
- reduceDescriptors,
2433
- freezeMethods: (obj)=>{
2434
- reduceDescriptors(obj, (descriptor, name)=>{
2435
- if (isFunction(obj) && -1 !== [
2436
- 'arguments',
2437
- 'caller',
2438
- 'callee'
2439
- ].indexOf(name)) return !1;
2440
- if (isFunction(obj[name])) {
2441
- if (descriptor.enumerable = !1, 'writable' in descriptor) {
2442
- descriptor.writable = !1;
2443
- return;
2444
- }
2445
- descriptor.set || (descriptor.set = ()=>{
2446
- throw Error("Can not rewrite read-only method '" + name + "'");
2447
- });
2448
- }
2449
- });
2450
- },
2451
- toObjectSet: (arrayOrString, delimiter)=>{
2452
- let obj = {}, define = (arr)=>{
2453
- arr.forEach((value)=>{
2454
- obj[value] = !0;
2455
- });
2456
- };
2457
- return define(isArray(arrayOrString) ? arrayOrString : String(arrayOrString).split(delimiter)), obj;
2458
- },
2459
- toCamelCase: (str)=>str.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g, function(m, p1, p2) {
2460
- return p1.toUpperCase() + p2;
2461
- }),
2462
- noop: ()=>{},
2463
- toFiniteNumber: (value, defaultValue)=>null != value && Number.isFinite(value *= 1) ? value : defaultValue,
2464
- findKey,
2465
- global: _global,
2466
- isContextDefined,
2467
- isSpecCompliantForm: function(thing) {
2468
- return !!(thing && isFunction(thing.append) && 'FormData' === thing[toStringTag] && thing[utils_iterator]);
2469
- },
2470
- toJSONObject: (obj)=>{
2471
- let stack = Array(10), visit = (source, i)=>{
2472
- if (isObject(source)) {
2473
- if (stack.indexOf(source) >= 0) return;
2474
- if (isBuffer(source)) return source;
2475
- if (!('toJSON' in source)) {
2476
- stack[i] = source;
2477
- let target = isArray(source) ? [] : {};
2478
- return forEach(source, (value, key)=>{
2479
- let reducedValue = visit(value, i + 1);
2480
- isUndefined(reducedValue) || (target[key] = reducedValue);
2481
- }), stack[i] = void 0, target;
2482
- }
2483
- }
2484
- return source;
2485
- };
2486
- return visit(obj, 0);
2487
- },
2488
- isAsyncFn,
2489
- isThenable: (thing)=>thing && (isObject(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch),
2490
- setImmediate: _setImmediate,
2491
- asap,
2492
- isIterable: (thing)=>null != thing && isFunction(thing[utils_iterator])
2493
- };
2494
- class AxiosError extends Error {
2495
- static from(error, code, config, request, response, customProps) {
2496
- let axiosError = new AxiosError(error.message, code || error.code, config, request, response);
2497
- return axiosError.cause = error, axiosError.name = error.name, null != error.status && null == axiosError.status && (axiosError.status = error.status), customProps && Object.assign(axiosError, customProps), axiosError;
2498
- }
2499
- constructor(message, code, config, request, response){
2500
- super(message), Object.defineProperty(this, 'message', {
2501
- value: message,
2502
- enumerable: !0,
2503
- writable: !0,
2504
- configurable: !0
2505
- }), this.name = 'AxiosError', this.isAxiosError = !0, code && (this.code = code), config && (this.config = config), request && (this.request = request), response && (this.response = response, this.status = response.status);
2506
- }
2507
- toJSON() {
2508
- return {
2509
- message: this.message,
2510
- name: this.name,
2511
- description: this.description,
2512
- number: this.number,
2513
- fileName: this.fileName,
2514
- lineNumber: this.lineNumber,
2515
- columnNumber: this.columnNumber,
2516
- stack: this.stack,
2517
- config: utils.toJSONObject(this.config),
2518
- code: this.code,
2519
- status: this.status
2520
- };
2521
- }
2522
- }
2523
- AxiosError.ERR_BAD_OPTION_VALUE = 'ERR_BAD_OPTION_VALUE', AxiosError.ERR_BAD_OPTION = 'ERR_BAD_OPTION', AxiosError.ECONNABORTED = 'ECONNABORTED', AxiosError.ETIMEDOUT = 'ETIMEDOUT', AxiosError.ERR_NETWORK = 'ERR_NETWORK', AxiosError.ERR_FR_TOO_MANY_REDIRECTS = 'ERR_FR_TOO_MANY_REDIRECTS', AxiosError.ERR_DEPRECATED = 'ERR_DEPRECATED', AxiosError.ERR_BAD_RESPONSE = 'ERR_BAD_RESPONSE', AxiosError.ERR_BAD_REQUEST = 'ERR_BAD_REQUEST', AxiosError.ERR_CANCELED = 'ERR_CANCELED', AxiosError.ERR_NOT_SUPPORT = 'ERR_NOT_SUPPORT', AxiosError.ERR_INVALID_URL = 'ERR_INVALID_URL';
2524
- let core_AxiosError = AxiosError;
2525
- var form_data = __webpack_require__("../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/form_data.js");
2526
- function isVisitable(thing) {
2527
- return utils.isPlainObject(thing) || utils.isArray(thing);
2528
- }
2529
- function toFormData_removeBrackets(key) {
2530
- return utils.endsWith(key, '[]') ? key.slice(0, -2) : key;
2531
- }
2532
- function renderKey(path, key, dots) {
2533
- return path ? path.concat(key).map(function(token, i) {
2534
- return token = toFormData_removeBrackets(token), !dots && i ? '[' + token + ']' : token;
2535
- }).join(dots ? '.' : '') : key;
2536
- }
2537
- let predicates = utils.toFlatObject(utils, {}, null, function(prop) {
2538
- return /^is[A-Z]/.test(prop);
2539
- }), helpers_toFormData = function(obj, formData, options) {
2540
- if (!utils.isObject(obj)) throw TypeError('target must be an object');
2541
- formData = formData || new (form_data || FormData)();
2542
- let metaTokens = (options = utils.toFlatObject(options, {
2543
- metaTokens: !0,
2544
- dots: !1,
2545
- indexes: !1
2546
- }, !1, function(option, source) {
2547
- return !utils.isUndefined(source[option]);
2548
- })).metaTokens, visitor = options.visitor || defaultVisitor, dots = options.dots, indexes = options.indexes, useBlob = (options.Blob || "u" > typeof Blob && Blob) && utils.isSpecCompliantForm(formData);
2549
- if (!utils.isFunction(visitor)) throw TypeError('visitor must be a function');
2550
- function convertValue(value) {
2551
- if (null === value) return '';
2552
- if (utils.isDate(value)) return value.toISOString();
2553
- if (utils.isBoolean(value)) return value.toString();
2554
- if (!useBlob && utils.isBlob(value)) throw new core_AxiosError('Blob is not supported. Use a Buffer instead.');
2555
- return utils.isArrayBuffer(value) || utils.isTypedArray(value) ? useBlob && 'function' == typeof Blob ? new Blob([
2556
- value
2557
- ]) : Buffer.from(value) : value;
2558
- }
2559
- function defaultVisitor(value, key, path) {
2560
- let arr = value;
2561
- if (utils.isReactNative(formData) && utils.isReactNativeBlob(value)) return formData.append(renderKey(path, key, dots), convertValue(value)), !1;
2562
- if (value && !path && 'object' == typeof value) if (utils.endsWith(key, '{}')) key = metaTokens ? key : key.slice(0, -2), value = JSON.stringify(value);
2563
- else {
2564
- var arr1;
2565
- if (utils.isArray(value) && (arr1 = value, utils.isArray(arr1) && !arr1.some(isVisitable)) || (utils.isFileList(value) || utils.endsWith(key, '[]')) && (arr = utils.toArray(value))) return key = toFormData_removeBrackets(key), arr.forEach(function(el, index) {
2566
- utils.isUndefined(el) || null === el || formData.append(!0 === indexes ? renderKey([
2567
- key
2568
- ], index, dots) : null === indexes ? key : key + '[]', convertValue(el));
2569
- }), !1;
2570
- }
2571
- return !!isVisitable(value) || (formData.append(renderKey(path, key, dots), convertValue(value)), !1);
2572
- }
2573
- let stack = [], exposedHelpers = Object.assign(predicates, {
2574
- defaultVisitor,
2575
- convertValue,
2576
- isVisitable
2577
- });
2578
- if (!utils.isObject(obj)) throw TypeError('data must be an object');
2579
- return !function build(value, path) {
2580
- if (!utils.isUndefined(value)) {
2581
- if (-1 !== stack.indexOf(value)) throw Error('Circular reference detected in ' + path.join('.'));
2582
- stack.push(value), utils.forEach(value, function(el, key) {
2583
- !0 === (!(utils.isUndefined(el) || null === el) && visitor.call(formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers)) && build(el, path ? path.concat(key) : [
2584
- key
2585
- ]);
2586
- }), stack.pop();
2587
- }
2588
- }(obj), formData;
2589
- };
2590
- function encode(str) {
2591
- let charMap = {
2592
- '!': '%21',
2593
- "'": '%27',
2594
- '(': '%28',
2595
- ')': '%29',
2596
- '~': '%7E',
2597
- '%20': '+',
2598
- '%00': '\x00'
2599
- };
2600
- return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function(match) {
2601
- return charMap[match];
2602
- });
2603
- }
2604
- function AxiosURLSearchParams(params, options) {
2605
- this._pairs = [], params && helpers_toFormData(params, this, options);
2606
- }
2607
- let AxiosURLSearchParams_prototype = AxiosURLSearchParams.prototype;
2608
- function buildURL_encode(val) {
2609
- return encodeURIComponent(val).replace(/%3A/gi, ':').replace(/%24/g, '$').replace(/%2C/gi, ',').replace(/%20/g, '+');
2610
- }
2611
- function buildURL(url, params, options) {
2612
- let serializedParams;
2613
- if (!params) return url;
2614
- let _encode = options && options.encode || buildURL_encode, _options = utils.isFunction(options) ? {
2615
- serialize: options
2616
- } : options, serializeFn = _options && _options.serialize;
2617
- if (serializedParams = serializeFn ? serializeFn(params, _options) : utils.isURLSearchParams(params) ? params.toString() : new AxiosURLSearchParams(params, _options).toString(_encode)) {
2618
- let hashmarkIndex = url.indexOf('#');
2619
- -1 !== hashmarkIndex && (url = url.slice(0, hashmarkIndex)), url += (-1 === url.indexOf('?') ? '?' : '&') + serializedParams;
2620
- }
2621
- return url;
2622
- }
2623
- AxiosURLSearchParams_prototype.append = function(name, value) {
2624
- this._pairs.push([
2625
- name,
2626
- value
2627
- ]);
2628
- }, AxiosURLSearchParams_prototype.toString = function(encoder) {
2629
- let _encode = encoder ? function(value) {
2630
- return encoder.call(this, value, encode);
2631
- } : encode;
2632
- return this._pairs.map(function(pair) {
2633
- return _encode(pair[0]) + '=' + _encode(pair[1]);
2634
- }, '').join('&');
2635
- };
2636
- let core_InterceptorManager = class {
2637
- constructor(){
2638
- this.handlers = [];
2639
- }
2640
- use(fulfilled, rejected, options) {
2641
- return this.handlers.push({
2642
- fulfilled,
2643
- rejected,
2644
- synchronous: !!options && options.synchronous,
2645
- runWhen: options ? options.runWhen : null
2646
- }), this.handlers.length - 1;
2647
- }
2648
- eject(id) {
2649
- this.handlers[id] && (this.handlers[id] = null);
2650
- }
2651
- clear() {
2652
- this.handlers && (this.handlers = []);
2653
- }
2654
- forEach(fn) {
2655
- utils.forEach(this.handlers, function(h) {
2656
- null !== h && fn(h);
2657
- });
2658
- }
2659
- }, defaults_transitional = {
2660
- silentJSONParsing: !0,
2661
- forcedJSONParsing: !0,
2662
- clarifyTimeoutError: !1,
2663
- legacyInterceptorReqResOrdering: !0
2664
- };
2665
- var external_crypto_ = __webpack_require__("crypto");
2666
- let URLSearchParams = __webpack_require__("url").URLSearchParams, ALPHA = 'abcdefghijklmnopqrstuvwxyz', DIGIT = '0123456789', ALPHABET = {
2667
- DIGIT,
2668
- ALPHA,
2669
- ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
2670
- }, node = {
2671
- isNode: !0,
2672
- classes: {
2673
- URLSearchParams: URLSearchParams,
2674
- FormData: form_data,
2675
- Blob: "u" > typeof Blob && Blob || null
2676
- },
2677
- ALPHABET,
2678
- generateString: (size = 16, alphabet = ALPHABET.ALPHA_DIGIT)=>{
2679
- let str = '', { length } = alphabet, randomValues = new Uint32Array(size);
2680
- external_crypto_.randomFillSync(randomValues);
2681
- for(let i = 0; i < size; i++)str += alphabet[randomValues[i] % length];
2682
- return str;
2683
- },
2684
- protocols: [
2685
- 'http',
2686
- 'https',
2687
- 'file',
2688
- 'data'
2689
- ]
2690
- }, hasBrowserEnv = "u" > typeof window && "u" > typeof document, _navigator = 'object' == typeof navigator && navigator || void 0, hasStandardBrowserEnv = hasBrowserEnv && (!_navigator || 0 > [
2691
- 'ReactNative',
2692
- 'NativeScript',
2693
- 'NS'
2694
- ].indexOf(_navigator.product)), hasStandardBrowserWebWorkerEnv = "u" > typeof WorkerGlobalScope && self instanceof WorkerGlobalScope && 'function' == typeof self.importScripts, utils_origin = hasBrowserEnv && window.location.href || 'http://localhost', platform = {
2695
- ...common_utils_namespaceObject,
2696
- ...node
2697
- }, helpers_formDataToJSON = function(formData) {
2698
- if (utils.isFormData(formData) && utils.isFunction(formData.entries)) {
2699
- let obj = {};
2700
- return utils.forEachEntry(formData, (name, value)=>{
2701
- var name1;
2702
- !function buildPath(path, value, target, index) {
2703
- let name = path[index++];
2704
- if ('__proto__' === name) return !0;
2705
- let isNumericKey = Number.isFinite(+name), isLast = index >= path.length;
2706
- return (name = !name && utils.isArray(target) ? target.length : name, isLast) ? utils.hasOwnProp(target, name) ? target[name] = [
2707
- target[name],
2708
- value
2709
- ] : target[name] = value : (target[name] && utils.isObject(target[name]) || (target[name] = []), buildPath(path, value, target[name], index) && utils.isArray(target[name]) && (target[name] = function(arr) {
2710
- let i, key, obj = {}, keys = Object.keys(arr), len = keys.length;
2711
- for(i = 0; i < len; i++)obj[key = keys[i]] = arr[key];
2712
- return obj;
2713
- }(target[name]))), !isNumericKey;
2714
- }((name1 = name, utils.matchAll(/\w+|\[(\w*)]/g, name1).map((match)=>'[]' === match[0] ? '' : match[1] || match[0])), value, obj, 0);
2715
- }), obj;
2716
- }
2717
- return null;
2718
- }, defaults_defaults = {
2719
- transitional: defaults_transitional,
2720
- adapter: [
2721
- 'xhr',
2722
- 'http',
2723
- 'fetch'
2724
- ],
2725
- transformRequest: [
2726
- function(data, headers) {
2727
- let isFileList, contentType = headers.getContentType() || '', hasJSONContentType = contentType.indexOf('application/json') > -1, isObjectPayload = utils.isObject(data);
2728
- if (isObjectPayload && utils.isHTMLForm(data) && (data = new FormData(data)), utils.isFormData(data)) return hasJSONContentType ? JSON.stringify(helpers_formDataToJSON(data)) : data;
2729
- if (utils.isArrayBuffer(data) || utils.isBuffer(data) || utils.isStream(data) || utils.isFile(data) || utils.isBlob(data) || utils.isReadableStream(data)) return data;
2730
- if (utils.isArrayBufferView(data)) return data.buffer;
2731
- if (utils.isURLSearchParams(data)) return headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', !1), data.toString();
2732
- if (isObjectPayload) {
2733
- if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {
2734
- var data1, options;
2735
- return (data1 = data, options = this.formSerializer, helpers_toFormData(data1, new platform.classes.URLSearchParams(), {
2736
- visitor: function(value, key, path, helpers) {
2737
- return platform.isNode && utils.isBuffer(value) ? (this.append(key, value.toString('base64')), !1) : helpers.defaultVisitor.apply(this, arguments);
2738
- },
2739
- ...options
2740
- })).toString();
2741
- }
2742
- if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {
2743
- let _FormData = this.env && this.env.FormData;
2744
- return helpers_toFormData(isFileList ? {
2745
- 'files[]': data
2746
- } : data, _FormData && new _FormData(), this.formSerializer);
2747
- }
2748
- }
2749
- if (isObjectPayload || hasJSONContentType) {
2750
- headers.setContentType('application/json', !1);
2751
- var rawValue = data;
2752
- if (utils.isString(rawValue)) try {
2753
- return (0, JSON.parse)(rawValue), utils.trim(rawValue);
2754
- } catch (e) {
2755
- if ('SyntaxError' !== e.name) throw e;
2756
- }
2757
- return (0, JSON.stringify)(rawValue);
2758
- }
2759
- return data;
2760
- }
2761
- ],
2762
- transformResponse: [
2763
- function(data) {
2764
- let transitional = this.transitional || defaults_defaults.transitional, forcedJSONParsing = transitional && transitional.forcedJSONParsing, JSONRequested = 'json' === this.responseType;
2765
- if (utils.isResponse(data) || utils.isReadableStream(data)) return data;
2766
- if (data && utils.isString(data) && (forcedJSONParsing && !this.responseType || JSONRequested)) {
2767
- let silentJSONParsing = transitional && transitional.silentJSONParsing;
2768
- try {
2769
- return JSON.parse(data, this.parseReviver);
2770
- } catch (e) {
2771
- if (!silentJSONParsing && JSONRequested) {
2772
- if ('SyntaxError' === e.name) throw core_AxiosError.from(e, core_AxiosError.ERR_BAD_RESPONSE, this, null, this.response);
2773
- throw e;
2774
- }
2775
- }
2776
- }
2777
- return data;
2778
- }
2779
- ],
2780
- timeout: 0,
2781
- xsrfCookieName: 'XSRF-TOKEN',
2782
- xsrfHeaderName: 'X-XSRF-TOKEN',
2783
- maxContentLength: -1,
2784
- maxBodyLength: -1,
2785
- env: {
2786
- FormData: platform.classes.FormData,
2787
- Blob: platform.classes.Blob
2788
- },
2789
- validateStatus: function(status) {
2790
- return status >= 200 && status < 300;
2791
- },
2792
- headers: {
2793
- common: {
2794
- Accept: 'application/json, text/plain, */*',
2795
- 'Content-Type': void 0
2796
- }
2797
- }
2798
- };
2799
- utils.forEach([
2800
- 'delete',
2801
- 'get',
2802
- 'head',
2803
- 'post',
2804
- 'put',
2805
- 'patch'
2806
- ], (method)=>{
2807
- defaults_defaults.headers[method] = {};
2808
- });
2809
- let ignoreDuplicateOf = utils.toObjectSet([
2810
- 'age',
2811
- 'authorization',
2812
- 'content-length',
2813
- 'content-type',
2814
- 'etag',
2815
- 'expires',
2816
- 'from',
2817
- 'host',
2818
- 'if-modified-since',
2819
- 'if-unmodified-since',
2820
- 'last-modified',
2821
- 'location',
2822
- 'max-forwards',
2823
- 'proxy-authorization',
2824
- 'referer',
2825
- 'retry-after',
2826
- 'user-agent'
2827
- ]), $internals = Symbol('internals');
2828
- function normalizeHeader(header) {
2829
- return header && String(header).trim().toLowerCase();
2830
- }
2831
- function normalizeValue(value) {
2832
- return !1 === value || null == value ? value : utils.isArray(value) ? value.map(normalizeValue) : String(value);
2833
- }
2834
- function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {
2835
- if (utils.isFunction(filter)) return filter.call(this, value, header);
2836
- if (isHeaderNameFilter && (value = header), utils.isString(value)) {
2837
- if (utils.isString(filter)) return -1 !== value.indexOf(filter);
2838
- if (utils.isRegExp(filter)) return filter.test(value);
2839
- }
2840
- }
2841
- class AxiosHeaders {
2842
- constructor(headers){
2843
- headers && this.set(headers);
2844
- }
2845
- set(header, valueOrRewrite, rewrite) {
2846
- let self1 = this;
2847
- function setHeader(_value, _header, _rewrite) {
2848
- let lHeader = normalizeHeader(_header);
2849
- if (!lHeader) throw Error('header name must be a non-empty string');
2850
- let key = utils.findKey(self1, lHeader);
2851
- key && void 0 !== self1[key] && !0 !== _rewrite && (void 0 !== _rewrite || !1 === self1[key]) || (self1[key || _header] = normalizeValue(_value));
2852
- }
2853
- let setHeaders = (headers, _rewrite)=>utils.forEach(headers, (_value, _header)=>setHeader(_value, _header, _rewrite));
2854
- if (utils.isPlainObject(header) || header instanceof this.constructor) setHeaders(header, valueOrRewrite);
2855
- else {
2856
- let str;
2857
- if (utils.isString(header) && (header = header.trim()) && (str = header, !/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim()))) {
2858
- var rawHeaders;
2859
- let key, val, i, parsed;
2860
- setHeaders((parsed = {}, (rawHeaders = header) && rawHeaders.split('\n').forEach(function(line) {
2861
- i = line.indexOf(':'), key = line.substring(0, i).trim().toLowerCase(), val = line.substring(i + 1).trim(), !key || parsed[key] && ignoreDuplicateOf[key] || ('set-cookie' === key ? parsed[key] ? parsed[key].push(val) : parsed[key] = [
2862
- val
2863
- ] : parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val);
2864
- }), parsed), valueOrRewrite);
2865
- } else if (utils.isObject(header) && utils.isIterable(header)) {
2866
- let obj = {}, dest, key;
2867
- for (let entry of header){
2868
- if (!utils.isArray(entry)) throw TypeError('Object iterator must return a key-value pair');
2869
- obj[key = entry[0]] = (dest = obj[key]) ? utils.isArray(dest) ? [
2870
- ...dest,
2871
- entry[1]
2872
- ] : [
2873
- dest,
2874
- entry[1]
2875
- ] : entry[1];
2876
- }
2877
- setHeaders(obj, valueOrRewrite);
2878
- } else null != header && setHeader(valueOrRewrite, header, rewrite);
2879
- }
2880
- return this;
2881
- }
2882
- get(header, parser) {
2883
- if (header = normalizeHeader(header)) {
2884
- let key = utils.findKey(this, header);
2885
- if (key) {
2886
- let value = this[key];
2887
- if (!parser) return value;
2888
- if (!0 === parser) {
2889
- let match;
2890
- var str = value;
2891
- let tokens = Object.create(null), tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
2892
- for(; match = tokensRE.exec(str);)tokens[match[1]] = match[2];
2893
- return tokens;
2894
- }
2895
- if (utils.isFunction(parser)) return parser.call(this, value, key);
2896
- if (utils.isRegExp(parser)) return parser.exec(value);
2897
- throw TypeError('parser must be boolean|regexp|function');
2898
- }
2899
- }
2900
- }
2901
- has(header, matcher) {
2902
- if (header = normalizeHeader(header)) {
2903
- let key = utils.findKey(this, header);
2904
- return !!(key && void 0 !== this[key] && (!matcher || matchHeaderValue(this, this[key], key, matcher)));
2905
- }
2906
- return !1;
2907
- }
2908
- delete(header, matcher) {
2909
- let self1 = this, deleted = !1;
2910
- function deleteHeader(_header) {
2911
- if (_header = normalizeHeader(_header)) {
2912
- let key = utils.findKey(self1, _header);
2913
- key && (!matcher || matchHeaderValue(self1, self1[key], key, matcher)) && (delete self1[key], deleted = !0);
2914
- }
2915
- }
2916
- return utils.isArray(header) ? header.forEach(deleteHeader) : deleteHeader(header), deleted;
2917
- }
2918
- clear(matcher) {
2919
- let keys = Object.keys(this), i = keys.length, deleted = !1;
2920
- for(; i--;){
2921
- let key = keys[i];
2922
- (!matcher || matchHeaderValue(this, this[key], key, matcher, !0)) && (delete this[key], deleted = !0);
2923
- }
2924
- return deleted;
2925
- }
2926
- normalize(format) {
2927
- let self1 = this, headers = {};
2928
- return utils.forEach(this, (value, header)=>{
2929
- let key = utils.findKey(headers, header);
2930
- if (key) {
2931
- self1[key] = normalizeValue(value), delete self1[header];
2932
- return;
2933
- }
2934
- let normalized = format ? header.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (w, char, str)=>char.toUpperCase() + str) : String(header).trim();
2935
- normalized !== header && delete self1[header], self1[normalized] = normalizeValue(value), headers[normalized] = !0;
2936
- }), this;
2937
- }
2938
- concat(...targets) {
2939
- return this.constructor.concat(this, ...targets);
2940
- }
2941
- toJSON(asStrings) {
2942
- let obj = Object.create(null);
2943
- return utils.forEach(this, (value, header)=>{
2944
- null != value && !1 !== value && (obj[header] = asStrings && utils.isArray(value) ? value.join(', ') : value);
2945
- }), obj;
2946
- }
2947
- [Symbol.iterator]() {
2948
- return Object.entries(this.toJSON())[Symbol.iterator]();
2949
- }
2950
- toString() {
2951
- return Object.entries(this.toJSON()).map(([header, value])=>header + ': ' + value).join('\n');
2952
- }
2953
- getSetCookie() {
2954
- return this.get('set-cookie') || [];
2955
- }
2956
- get [Symbol.toStringTag]() {
2957
- return 'AxiosHeaders';
2958
- }
2959
- static from(thing) {
2960
- return thing instanceof this ? thing : new this(thing);
2961
- }
2962
- static concat(first, ...targets) {
2963
- let computed = new this(first);
2964
- return targets.forEach((target)=>computed.set(target)), computed;
2965
- }
2966
- static accessor(header) {
2967
- let accessors = (this[$internals] = this[$internals] = {
2968
- accessors: {}
2969
- }).accessors, prototype = this.prototype;
2970
- function defineAccessor(_header) {
2971
- let lHeader = normalizeHeader(_header);
2972
- if (!accessors[lHeader]) {
2973
- var obj, header;
2974
- let accessorName;
2975
- obj = prototype, header = _header, accessorName = utils.toCamelCase(' ' + header), [
2976
- 'get',
2977
- 'set',
2978
- 'has'
2979
- ].forEach((methodName)=>{
2980
- Object.defineProperty(obj, methodName + accessorName, {
2981
- value: function(arg1, arg2, arg3) {
2982
- return this[methodName].call(this, header, arg1, arg2, arg3);
2983
- },
2984
- configurable: !0
2985
- });
2986
- }), accessors[lHeader] = !0;
2987
- }
2988
- }
2989
- return utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header), this;
2990
- }
2991
- }
2992
- function transformData(fns, response) {
2993
- let config = this || defaults_defaults, context = response || config, headers = AxiosHeaders.from(context.headers), data = context.data;
2994
- return utils.forEach(fns, function(fn) {
2995
- data = fn.call(config, data, headers.normalize(), response ? response.status : void 0);
2996
- }), headers.normalize(), data;
2997
- }
2998
- function isCancel(value) {
2999
- return !!(value && value.__CANCEL__);
3000
- }
3001
- AxiosHeaders.accessor([
3002
- 'Content-Type',
3003
- 'Content-Length',
3004
- 'Accept',
3005
- 'Accept-Encoding',
3006
- 'User-Agent',
3007
- 'Authorization'
3008
- ]), utils.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key)=>{
3009
- let mapped = key[0].toUpperCase() + key.slice(1);
3010
- return {
3011
- get: ()=>value,
3012
- set (headerValue) {
3013
- this[mapped] = headerValue;
3014
- }
3015
- };
3016
- }), utils.freezeMethods(AxiosHeaders);
3017
- let cancel_CanceledError = class extends core_AxiosError {
3018
- constructor(message, config, request){
3019
- super(null == message ? 'canceled' : message, core_AxiosError.ERR_CANCELED, config, request), this.name = 'CanceledError', this.__CANCEL__ = !0;
3020
- }
3021
- };
3022
- function settle(resolve, reject, response) {
3023
- let validateStatus = response.config.validateStatus;
3024
- !response.status || !validateStatus || validateStatus(response.status) ? resolve(response) : reject(new core_AxiosError('Request failed with status code ' + response.status, [
3025
- core_AxiosError.ERR_BAD_REQUEST,
3026
- core_AxiosError.ERR_BAD_RESPONSE
3027
- ][Math.floor(response.status / 100) - 4], response.config, response.request, response));
3028
- }
3029
- function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
3030
- var url, baseURL1, relativeURL;
3031
- let isRelativeUrl = !('string' == typeof (url = requestedURL) && /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url));
3032
- return baseURL && (isRelativeUrl || !1 == allowAbsoluteUrls) ? (baseURL1 = baseURL, (relativeURL = requestedURL) ? baseURL1.replace(/\/?\/$/, '') + '/' + relativeURL.replace(/^\/+/, '') : baseURL1) : requestedURL;
3033
- }
3034
- var proxy_from_env = __webpack_require__("../../node_modules/.pnpm/proxy-from-env@1.1.0/node_modules/proxy-from-env/index.js"), external_http_ = __webpack_require__("http"), external_https_ = __webpack_require__("https");
3035
- let external_http2_namespaceObject = require("http2");
3036
- var external_util_ = __webpack_require__("util"), follow_redirects = __webpack_require__("../../node_modules/.pnpm/follow-redirects@1.15.11/node_modules/follow-redirects/index.js");
3037
- let external_zlib_namespaceObject = require("zlib");
3038
- function parseProtocol(url) {
3039
- let match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
3040
- return match && match[1] || '';
3041
- }
3042
- let DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
3043
- var external_stream_ = __webpack_require__("stream");
3044
- let kInternals = Symbol('internals');
3045
- class AxiosTransformStream extends external_stream_.Transform {
3046
- constructor(options){
3047
- super({
3048
- readableHighWaterMark: (options = utils.toFlatObject(options, {
3049
- maxRate: 0,
3050
- chunkSize: 65536,
3051
- minChunkSize: 100,
3052
- timeWindow: 500,
3053
- ticksRate: 2,
3054
- samplesCount: 15
3055
- }, null, (prop, source)=>!utils.isUndefined(source[prop]))).chunkSize
3056
- });
3057
- const internals = this[kInternals] = {
3058
- timeWindow: options.timeWindow,
3059
- chunkSize: options.chunkSize,
3060
- maxRate: options.maxRate,
3061
- minChunkSize: options.minChunkSize,
3062
- bytesSeen: 0,
3063
- isCaptured: !1,
3064
- notifiedBytesLoaded: 0,
3065
- ts: Date.now(),
3066
- bytes: 0,
3067
- onReadCallback: null
3068
- };
3069
- this.on('newListener', (event)=>{
3070
- 'progress' !== event || internals.isCaptured || (internals.isCaptured = !0);
3071
- });
3072
- }
3073
- _read(size) {
3074
- let internals = this[kInternals];
3075
- return internals.onReadCallback && internals.onReadCallback(), super._read(size);
3076
- }
3077
- _transform(chunk, encoding, callback) {
3078
- let internals = this[kInternals], maxRate = internals.maxRate, readableHighWaterMark = this.readableHighWaterMark, timeWindow = internals.timeWindow, bytesThreshold = maxRate / (1000 / timeWindow), minChunkSize = !1 !== internals.minChunkSize ? Math.max(internals.minChunkSize, 0.01 * bytesThreshold) : 0, pushChunk = (_chunk, _callback)=>{
3079
- let bytes = Buffer.byteLength(_chunk);
3080
- internals.bytesSeen += bytes, internals.bytes += bytes, internals.isCaptured && this.emit('progress', internals.bytesSeen), this.push(_chunk) ? process.nextTick(_callback) : internals.onReadCallback = ()=>{
3081
- internals.onReadCallback = null, process.nextTick(_callback);
3082
- };
3083
- }, transformChunk = (_chunk, _callback)=>{
3084
- let bytesLeft, chunkSize = Buffer.byteLength(_chunk), chunkRemainder = null, maxChunkSize = readableHighWaterMark, passed = 0;
3085
- if (maxRate) {
3086
- let now = Date.now();
3087
- (!internals.ts || (passed = now - internals.ts) >= timeWindow) && (internals.ts = now, bytesLeft = bytesThreshold - internals.bytes, internals.bytes = bytesLeft < 0 ? -bytesLeft : 0, passed = 0), bytesLeft = bytesThreshold - internals.bytes;
3088
- }
3089
- if (maxRate) {
3090
- if (bytesLeft <= 0) return setTimeout(()=>{
3091
- _callback(null, _chunk);
3092
- }, timeWindow - passed);
3093
- bytesLeft < maxChunkSize && (maxChunkSize = bytesLeft);
3094
- }
3095
- maxChunkSize && chunkSize > maxChunkSize && chunkSize - maxChunkSize > minChunkSize && (chunkRemainder = _chunk.subarray(maxChunkSize), _chunk = _chunk.subarray(0, maxChunkSize)), pushChunk(_chunk, chunkRemainder ? ()=>{
3096
- process.nextTick(_callback, null, chunkRemainder);
3097
- } : _callback);
3098
- };
3099
- transformChunk(chunk, function transformNextChunk(err, _chunk) {
3100
- if (err) return callback(err);
3101
- _chunk ? transformChunk(_chunk, transformNextChunk) : callback(null);
3102
- });
3103
- }
3104
- }
3105
- let external_events_namespaceObject = require("events"), { asyncIterator } = Symbol, readBlob = async function*(blob) {
3106
- blob.stream ? yield* blob.stream() : blob.arrayBuffer ? yield await blob.arrayBuffer() : blob[asyncIterator] ? yield* blob[asyncIterator]() : yield blob;
3107
- }, BOUNDARY_ALPHABET = platform.ALPHABET.ALPHA_DIGIT + '-_', textEncoder = 'function' == typeof TextEncoder ? new TextEncoder() : new external_util_.TextEncoder(), CRLF_BYTES = textEncoder.encode('\r\n');
3108
- class FormDataPart {
3109
- constructor(name, value){
3110
- const { escapeName } = this.constructor, isStringValue = utils.isString(value);
3111
- let headers = `Content-Disposition: form-data; name="${escapeName(name)}"${!isStringValue && value.name ? `; filename="${escapeName(value.name)}"` : ''}\r\n`;
3112
- isStringValue ? value = textEncoder.encode(String(value).replace(/\r?\n|\r\n?/g, '\r\n')) : headers += `Content-Type: ${value.type || 'application/octet-stream'}\r\n`, this.headers = textEncoder.encode(headers + '\r\n'), this.contentLength = isStringValue ? value.byteLength : value.size, this.size = this.headers.byteLength + this.contentLength + 2, this.name = name, this.value = value;
3113
- }
3114
- async *encode() {
3115
- yield this.headers;
3116
- let { value } = this;
3117
- utils.isTypedArray(value) ? yield value : yield* readBlob(value), yield CRLF_BYTES;
3118
- }
3119
- static escapeName(name) {
3120
- return String(name).replace(/[\r\n"]/g, (match)=>({
3121
- '\r': '%0D',
3122
- '\n': '%0A',
3123
- '"': '%22'
3124
- })[match]);
3125
- }
3126
- }
3127
- class ZlibHeaderTransformStream extends external_stream_.Transform {
3128
- __transform(chunk, encoding, callback) {
3129
- this.push(chunk), callback();
3130
- }
3131
- _transform(chunk, encoding, callback) {
3132
- if (0 !== chunk.length && (this._transform = this.__transform, 120 !== chunk[0])) {
3133
- let header = Buffer.alloc(2);
3134
- header[0] = 120, header[1] = 156, this.push(header, encoding);
3135
- }
3136
- this.__transform(chunk, encoding, callback);
3137
- }
3138
- }
3139
- let helpers_speedometer = function(samplesCount, min) {
3140
- let firstSampleTS, bytes = Array(samplesCount = samplesCount || 10), timestamps = Array(samplesCount), head = 0, tail = 0;
3141
- return min = void 0 !== min ? min : 1000, function(chunkLength) {
3142
- let now = Date.now(), startedAt = timestamps[tail];
3143
- firstSampleTS || (firstSampleTS = now), bytes[head] = chunkLength, timestamps[head] = now;
3144
- let i = tail, bytesCount = 0;
3145
- for(; i !== head;)bytesCount += bytes[i++], i %= samplesCount;
3146
- if ((head = (head + 1) % samplesCount) === tail && (tail = (tail + 1) % samplesCount), now - firstSampleTS < min) return;
3147
- let passed = startedAt && now - startedAt;
3148
- return passed ? Math.round(1000 * bytesCount / passed) : void 0;
3149
- };
3150
- }, helpers_throttle = function(fn, freq) {
3151
- let lastArgs, timer, timestamp = 0, threshold = 1000 / freq, invoke = (args, now = Date.now())=>{
3152
- timestamp = now, lastArgs = null, timer && (clearTimeout(timer), timer = null), fn(...args);
3153
- };
3154
- return [
3155
- (...args)=>{
3156
- let now = Date.now(), passed = now - timestamp;
3157
- passed >= threshold ? invoke(args, now) : (lastArgs = args, timer || (timer = setTimeout(()=>{
3158
- timer = null, invoke(lastArgs);
3159
- }, threshold - passed)));
3160
- },
3161
- ()=>lastArgs && invoke(lastArgs)
3162
- ];
3163
- }, progressEventReducer = (listener, isDownloadStream, freq = 3)=>{
3164
- let bytesNotified = 0, _speedometer = helpers_speedometer(50, 250);
3165
- return helpers_throttle((e)=>{
3166
- let loaded = e.loaded, total = e.lengthComputable ? e.total : void 0, progressBytes = loaded - bytesNotified, rate = _speedometer(progressBytes);
3167
- bytesNotified = loaded, listener({
3168
- loaded,
3169
- total,
3170
- progress: total ? loaded / total : void 0,
3171
- bytes: progressBytes,
3172
- rate: rate || void 0,
3173
- estimated: rate && total && loaded <= total ? (total - loaded) / rate : void 0,
3174
- event: e,
3175
- lengthComputable: null != total,
3176
- [isDownloadStream ? 'download' : 'upload']: !0
3177
- });
3178
- }, freq);
3179
- }, progressEventDecorator = (total, throttled)=>{
3180
- let lengthComputable = null != total;
3181
- return [
3182
- (loaded)=>throttled[0]({
3183
- lengthComputable,
3184
- total,
3185
- loaded
3186
- }),
3187
- throttled[1]
3188
- ];
3189
- }, asyncDecorator = (fn)=>(...args)=>utils.asap(()=>fn(...args)), zlibOptions = {
3190
- flush: external_zlib_namespaceObject.constants.Z_SYNC_FLUSH,
3191
- finishFlush: external_zlib_namespaceObject.constants.Z_SYNC_FLUSH
3192
- }, brotliOptions = {
3193
- flush: external_zlib_namespaceObject.constants.BROTLI_OPERATION_FLUSH,
3194
- finishFlush: external_zlib_namespaceObject.constants.BROTLI_OPERATION_FLUSH
3195
- }, isBrotliSupported = utils.isFunction(external_zlib_namespaceObject.createBrotliDecompress), { http: httpFollow, https: httpsFollow } = follow_redirects, isHttps = /https:?/, supportedProtocols = platform.protocols.map((protocol)=>protocol + ':'), flushOnFinish = (stream, [throttled, flush])=>(stream.on('end', flush).on('error', flush), throttled), http2Sessions = new class {
3196
- constructor(){
3197
- this.sessions = Object.create(null);
3198
- }
3199
- getSession(authority, options) {
3200
- let removed;
3201
- options = Object.assign({
3202
- sessionTimeout: 1000
3203
- }, options);
3204
- let authoritySessions = this.sessions[authority];
3205
- if (authoritySessions) {
3206
- let len = authoritySessions.length;
3207
- for(let i = 0; i < len; i++){
3208
- let [sessionHandle, sessionOptions] = authoritySessions[i];
3209
- if (!sessionHandle.destroyed && !sessionHandle.closed && external_util_.isDeepStrictEqual(sessionOptions, options)) return sessionHandle;
3210
- }
3211
- }
3212
- let session = external_http2_namespaceObject.connect(authority, options), removeSession = ()=>{
3213
- if (removed) return;
3214
- removed = !0;
3215
- let entries = authoritySessions, len = entries.length, i = len;
3216
- for(; i--;)if (entries[i][0] === session) return void (1 === len ? delete this.sessions[authority] : entries.splice(i, 1));
3217
- }, originalRequestFn = session.request, { sessionTimeout } = options;
3218
- if (null != sessionTimeout) {
3219
- let timer, streamsCount = 0;
3220
- session.request = function() {
3221
- let stream = originalRequestFn.apply(this, arguments);
3222
- return streamsCount++, timer && (clearTimeout(timer), timer = null), stream.once('close', ()=>{
3223
- --streamsCount || (timer = setTimeout(()=>{
3224
- timer = null, removeSession();
3225
- }, sessionTimeout));
3226
- }), stream;
3227
- };
3228
- }
3229
- session.once('close', removeSession);
3230
- let entry = [
3231
- session,
3232
- options
3233
- ];
3234
- return authoritySessions ? authoritySessions.push(entry) : authoritySessions = this.sessions[authority] = [
3235
- entry
3236
- ], session;
3237
- }
3238
- }();
3239
- function dispatchBeforeRedirect(options, responseDetails) {
3240
- options.beforeRedirects.proxy && options.beforeRedirects.proxy(options), options.beforeRedirects.config && options.beforeRedirects.config(options, responseDetails);
3241
- }
3242
- let isHttpAdapterSupported = "u" > typeof process && 'process' === utils.kindOf(process), buildAddressEntry = (address, family)=>(({ address, family })=>{
3243
- if (!utils.isString(address)) throw TypeError('address must be a string');
3244
- return {
3245
- address,
3246
- family: family || (0 > address.indexOf('.') ? 6 : 4)
3247
- };
3248
- })(utils.isObject(address) ? address : {
3249
- address,
3250
- family
3251
- }), http2Transport = {
3252
- request (options, cb) {
3253
- let authority = options.protocol + '//' + options.hostname + ':' + (options.port || ('https:' === options.protocol ? 443 : 80)), { http2Options, headers } = options, session = http2Sessions.getSession(authority, http2Options), { HTTP2_HEADER_SCHEME, HTTP2_HEADER_METHOD, HTTP2_HEADER_PATH, HTTP2_HEADER_STATUS } = external_http2_namespaceObject.constants, http2Headers = {
3254
- [HTTP2_HEADER_SCHEME]: options.protocol.replace(':', ''),
3255
- [HTTP2_HEADER_METHOD]: options.method,
3256
- [HTTP2_HEADER_PATH]: options.path
3257
- };
3258
- utils.forEach(headers, (header, name)=>{
3259
- ':' !== name.charAt(0) && (http2Headers[name] = header);
3260
- });
3261
- let req = session.request(http2Headers);
3262
- return req.once('response', (responseHeaders)=>{
3263
- let status = (responseHeaders = Object.assign({}, responseHeaders))[HTTP2_HEADER_STATUS];
3264
- delete responseHeaders[HTTP2_HEADER_STATUS], req.headers = responseHeaders, req.statusCode = +status, cb(req);
3265
- }), req;
3266
- }
3267
- }, http = isHttpAdapterSupported && function(config) {
3268
- let asyncExecutor;
3269
- return asyncExecutor = async function(resolve, reject, onDone) {
3270
- let maxUploadRate, maxDownloadRate, auth, isDone, req, path, transport, { data, lookup, family, httpVersion = 1, http2Options } = config, { responseType, responseEncoding } = config, method = config.method.toUpperCase(), rejected = !1;
3271
- if (Number.isNaN(httpVersion *= 1)) throw TypeError(`Invalid protocol version: '${config.httpVersion}' is not a number`);
3272
- if (1 !== httpVersion && 2 !== httpVersion) throw TypeError(`Unsupported protocol version '${httpVersion}'`);
3273
- let isHttp2 = 2 === httpVersion;
3274
- if (lookup) {
3275
- let fn, reducer, _lookup = (fn = lookup, reducer = (value)=>utils.isArray(value) ? value : [
3276
- value
3277
- ], utils.isAsyncFn(fn) ? function(...args) {
3278
- let cb = args.pop();
3279
- fn.apply(this, args).then((value)=>{
3280
- try {
3281
- reducer ? cb(null, ...reducer(value)) : cb(null, value);
3282
- } catch (err) {
3283
- cb(err);
3284
- }
3285
- }, cb);
3286
- } : fn);
3287
- lookup = (hostname, opt, cb)=>{
3288
- _lookup(hostname, opt, (err, arg0, arg1)=>{
3289
- if (err) return cb(err);
3290
- let addresses = utils.isArray(arg0) ? arg0.map((addr)=>buildAddressEntry(addr)) : [
3291
- buildAddressEntry(arg0, arg1)
3292
- ];
3293
- opt.all ? cb(err, addresses) : cb(err, addresses[0].address, addresses[0].family);
3294
- });
3295
- };
3296
- }
3297
- let abortEmitter = new external_events_namespaceObject.EventEmitter();
3298
- function abort(reason) {
3299
- try {
3300
- abortEmitter.emit('abort', !reason || reason.type ? new cancel_CanceledError(null, config, req) : reason);
3301
- } catch (err) {
3302
- console.warn('emit error', err);
3303
- }
3304
- }
3305
- abortEmitter.once('abort', reject);
3306
- let onFinished = ()=>{
3307
- config.cancelToken && config.cancelToken.unsubscribe(abort), config.signal && config.signal.removeEventListener('abort', abort), abortEmitter.removeAllListeners();
3308
- };
3309
- (config.cancelToken || config.signal) && (config.cancelToken && config.cancelToken.subscribe(abort), config.signal && (config.signal.aborted ? abort() : config.signal.addEventListener('abort', abort))), onDone((response, isRejected)=>{
3310
- if (isDone = !0, isRejected) {
3311
- rejected = !0, onFinished();
3312
- return;
3313
- }
3314
- let { data } = response;
3315
- if (data instanceof external_stream_.Readable || data instanceof external_stream_.Duplex) {
3316
- let offListeners = external_stream_.finished(data, ()=>{
3317
- offListeners(), onFinished();
3318
- });
3319
- } else onFinished();
3320
- });
3321
- let fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls), parsed = new URL(fullPath, platform.hasBrowserEnv ? platform.origin : void 0), protocol = parsed.protocol || supportedProtocols[0];
3322
- if ('data:' === protocol) {
3323
- let convertedData;
3324
- if (config.maxContentLength > -1 && function(url) {
3325
- if (!url || 'string' != typeof url || !url.startsWith('data:')) return 0;
3326
- let comma = url.indexOf(',');
3327
- if (comma < 0) return 0;
3328
- let meta = url.slice(5, comma), body = url.slice(comma + 1);
3329
- if (/;base64/i.test(meta)) {
3330
- let effectiveLen = body.length, len = body.length;
3331
- for(let i = 0; i < len; i++)if (37 === body.charCodeAt(i) && i + 2 < len) {
3332
- let a = body.charCodeAt(i + 1), b = body.charCodeAt(i + 2);
3333
- (a >= 48 && a <= 57 || a >= 65 && a <= 70 || a >= 97 && a <= 102) && (b >= 48 && b <= 57 || b >= 65 && b <= 70 || b >= 97 && b <= 102) && (effectiveLen -= 2, i += 2);
3334
- }
3335
- let pad = 0, idx = len - 1, tailIsPct3D = (j)=>j >= 2 && 37 === body.charCodeAt(j - 2) && 51 === body.charCodeAt(j - 1) && (68 === body.charCodeAt(j) || 100 === body.charCodeAt(j));
3336
- idx >= 0 && (61 === body.charCodeAt(idx) ? (pad++, idx--) : tailIsPct3D(idx) && (pad++, idx -= 3)), 1 === pad && idx >= 0 && (61 === body.charCodeAt(idx) ? pad++ : tailIsPct3D(idx) && pad++);
3337
- let bytes = 3 * Math.floor(effectiveLen / 4) - (pad || 0);
3338
- return bytes > 0 ? bytes : 0;
3339
- }
3340
- return Buffer.byteLength(body, 'utf8');
3341
- }(String(config.url || fullPath || '')) > config.maxContentLength) return reject(new core_AxiosError('maxContentLength size of ' + config.maxContentLength + ' exceeded', core_AxiosError.ERR_BAD_RESPONSE, config));
3342
- if ('GET' !== method) return settle(resolve, reject, {
3343
- status: 405,
3344
- statusText: 'method not allowed',
3345
- headers: {},
3346
- config
3347
- });
3348
- try {
3349
- convertedData = function(uri, asBlob, options) {
3350
- let _Blob = options && options.Blob || platform.classes.Blob, protocol = parseProtocol(uri);
3351
- if (void 0 === asBlob && _Blob && (asBlob = !0), 'data' === protocol) {
3352
- uri = protocol.length ? uri.slice(protocol.length + 1) : uri;
3353
- let match = DATA_URL_PATTERN.exec(uri);
3354
- if (!match) throw new core_AxiosError('Invalid URL', core_AxiosError.ERR_INVALID_URL);
3355
- let mime = match[1], isBase64 = match[2], body = match[3], buffer = Buffer.from(decodeURIComponent(body), isBase64 ? 'base64' : 'utf8');
3356
- if (asBlob) {
3357
- if (!_Blob) throw new core_AxiosError('Blob is not supported', core_AxiosError.ERR_NOT_SUPPORT);
3358
- return new _Blob([
3359
- buffer
3360
- ], {
3361
- type: mime
3362
- });
3363
- }
3364
- return buffer;
3365
- }
3366
- throw new core_AxiosError('Unsupported protocol ' + protocol, core_AxiosError.ERR_NOT_SUPPORT);
3367
- }(config.url, 'blob' === responseType, {
3368
- Blob: config.env && config.env.Blob
3369
- });
3370
- } catch (err) {
3371
- throw core_AxiosError.from(err, core_AxiosError.ERR_BAD_REQUEST, config);
3372
- }
3373
- return 'text' === responseType ? (convertedData = convertedData.toString(responseEncoding), responseEncoding && 'utf8' !== responseEncoding || (convertedData = utils.stripBOM(convertedData))) : 'stream' === responseType && (convertedData = external_stream_.Readable.from(convertedData)), settle(resolve, reject, {
3374
- data: convertedData,
3375
- status: 200,
3376
- statusText: 'OK',
3377
- headers: new AxiosHeaders(),
3378
- config
3379
- });
3380
- }
3381
- if (-1 === supportedProtocols.indexOf(protocol)) return reject(new core_AxiosError('Unsupported protocol ' + protocol, core_AxiosError.ERR_BAD_REQUEST, config));
3382
- let headers = AxiosHeaders.from(config.headers).normalize();
3383
- headers.set('User-Agent', "axios/1.13.6", !1);
3384
- let { onUploadProgress, onDownloadProgress } = config, maxRate = config.maxRate;
3385
- if (utils.isSpecCompliantForm(data)) {
3386
- let userBoundary = headers.getContentType(/boundary=([-_\w\d]{10,70})/i);
3387
- data = ((form, headersHandler, options)=>{
3388
- let { tag = 'form-data-boundary', size = 25, boundary = tag + '-' + platform.generateString(size, BOUNDARY_ALPHABET) } = options || {};
3389
- if (!utils.isFormData(form)) throw TypeError('FormData instance required');
3390
- if (boundary.length < 1 || boundary.length > 70) throw Error('boundary must be 10-70 characters long');
3391
- let boundaryBytes = textEncoder.encode('--' + boundary + '\r\n'), footerBytes = textEncoder.encode('--' + boundary + "--\r\n"), contentLength = footerBytes.byteLength, parts = Array.from(form.entries()).map(([name, value])=>{
3392
- let part = new FormDataPart(name, value);
3393
- return contentLength += part.size, part;
3394
- });
3395
- contentLength += boundaryBytes.byteLength * parts.length;
3396
- let computedHeaders = {
3397
- 'Content-Type': `multipart/form-data; boundary=${boundary}`
3398
- };
3399
- return Number.isFinite(contentLength = utils.toFiniteNumber(contentLength)) && (computedHeaders['Content-Length'] = contentLength), headersHandler && headersHandler(computedHeaders), external_stream_.Readable.from(async function*() {
3400
- for (let part of parts)yield boundaryBytes, yield* part.encode();
3401
- yield footerBytes;
3402
- }());
3403
- })(data, (formHeaders)=>{
3404
- headers.set(formHeaders);
3405
- }, {
3406
- tag: "axios-1.13.6-boundary",
3407
- boundary: userBoundary && userBoundary[1] || void 0
3408
- });
3409
- } else if (utils.isFormData(data) && utils.isFunction(data.getHeaders)) {
3410
- if (headers.set(data.getHeaders()), !headers.hasContentLength()) try {
3411
- let knownLength = await external_util_.promisify(data.getLength).call(data);
3412
- Number.isFinite(knownLength) && knownLength >= 0 && headers.setContentLength(knownLength);
3413
- } catch (e) {}
3414
- } else if (utils.isBlob(data) || utils.isFile(data)) data.size && headers.setContentType(data.type || 'application/octet-stream'), headers.setContentLength(data.size || 0), data = external_stream_.Readable.from(readBlob(data));
3415
- else if (data && !utils.isStream(data)) {
3416
- if (Buffer.isBuffer(data)) ;
3417
- else if (utils.isArrayBuffer(data)) data = Buffer.from(new Uint8Array(data));
3418
- else {
3419
- if (!utils.isString(data)) return reject(new core_AxiosError('Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream', core_AxiosError.ERR_BAD_REQUEST, config));
3420
- data = Buffer.from(data, 'utf-8');
3421
- }
3422
- if (headers.setContentLength(data.length, !1), config.maxBodyLength > -1 && data.length > config.maxBodyLength) return reject(new core_AxiosError('Request body larger than maxBodyLength limit', core_AxiosError.ERR_BAD_REQUEST, config));
3423
- }
3424
- let contentLength = utils.toFiniteNumber(headers.getContentLength());
3425
- utils.isArray(maxRate) ? (maxUploadRate = maxRate[0], maxDownloadRate = maxRate[1]) : maxUploadRate = maxDownloadRate = maxRate, data && (onUploadProgress || maxUploadRate) && (utils.isStream(data) || (data = external_stream_.Readable.from(data, {
3426
- objectMode: !1
3427
- })), data = external_stream_.pipeline([
3428
- data,
3429
- new AxiosTransformStream({
3430
- maxRate: utils.toFiniteNumber(maxUploadRate)
3431
- })
3432
- ], utils.noop), onUploadProgress && data.on('progress', flushOnFinish(data, progressEventDecorator(contentLength, progressEventReducer(asyncDecorator(onUploadProgress), !1, 3))))), config.auth && (auth = (config.auth.username || '') + ':' + (config.auth.password || '')), !auth && parsed.username && (auth = parsed.username + ':' + parsed.password), auth && headers.delete('authorization');
3433
- try {
3434
- path = buildURL(parsed.pathname + parsed.search, config.params, config.paramsSerializer).replace(/^\?/, '');
3435
- } catch (err) {
3436
- let customErr = Error(err.message);
3437
- return customErr.config = config, customErr.url = config.url, customErr.exists = !0, reject(customErr);
3438
- }
3439
- headers.set('Accept-Encoding', 'gzip, compress, deflate' + (isBrotliSupported ? ', br' : ''), !1);
3440
- let options = {
3441
- path,
3442
- method: method,
3443
- headers: headers.toJSON(),
3444
- agents: {
3445
- http: config.httpAgent,
3446
- https: config.httpsAgent
3447
- },
3448
- auth,
3449
- protocol,
3450
- family,
3451
- beforeRedirect: dispatchBeforeRedirect,
3452
- beforeRedirects: {},
3453
- http2Options
3454
- };
3455
- utils.isUndefined(lookup) || (options.lookup = lookup), config.socketPath ? options.socketPath = config.socketPath : (options.hostname = parsed.hostname.startsWith('[') ? parsed.hostname.slice(1, -1) : parsed.hostname, options.port = parsed.port, function setProxy(options, configProxy, location) {
3456
- let proxy = configProxy;
3457
- if (!proxy && !1 !== proxy) {
3458
- let proxyUrl = proxy_from_env.getProxyForUrl(location);
3459
- proxyUrl && (proxy = new URL(proxyUrl));
3460
- }
3461
- if (proxy) {
3462
- if (proxy.username && (proxy.auth = (proxy.username || '') + ':' + (proxy.password || '')), proxy.auth) {
3463
- if (proxy.auth.username || proxy.auth.password) proxy.auth = (proxy.auth.username || '') + ':' + (proxy.auth.password || '');
3464
- else if ('object' == typeof proxy.auth) throw new core_AxiosError('Invalid proxy authorization', core_AxiosError.ERR_BAD_OPTION, {
3465
- proxy
3466
- });
3467
- let base64 = Buffer.from(proxy.auth, 'utf8').toString('base64');
3468
- options.headers['Proxy-Authorization'] = 'Basic ' + base64;
3469
- }
3470
- options.headers.host = options.hostname + (options.port ? ':' + options.port : '');
3471
- let proxyHost = proxy.hostname || proxy.host;
3472
- options.hostname = proxyHost, options.host = proxyHost, options.port = proxy.port, options.path = location, proxy.protocol && (options.protocol = proxy.protocol.includes(':') ? proxy.protocol : `${proxy.protocol}:`);
3473
- }
3474
- options.beforeRedirects.proxy = function(redirectOptions) {
3475
- setProxy(redirectOptions, configProxy, redirectOptions.href);
3476
- };
3477
- }(options, config.proxy, protocol + '//' + parsed.hostname + (parsed.port ? ':' + parsed.port : '') + options.path));
3478
- let isHttpsRequest = isHttps.test(options.protocol);
3479
- if (options.agent = isHttpsRequest ? config.httpsAgent : config.httpAgent, isHttp2 ? transport = http2Transport : config.transport ? transport = config.transport : 0 === config.maxRedirects ? transport = isHttpsRequest ? external_https_ : external_http_ : (config.maxRedirects && (options.maxRedirects = config.maxRedirects), config.beforeRedirect && (options.beforeRedirects.config = config.beforeRedirect), transport = isHttpsRequest ? httpsFollow : httpFollow), config.maxBodyLength > -1 ? options.maxBodyLength = config.maxBodyLength : options.maxBodyLength = 1 / 0, config.insecureHTTPParser && (options.insecureHTTPParser = config.insecureHTTPParser), req = transport.request(options, function(res) {
3480
- if (req.destroyed) return;
3481
- let streams = [
3482
- res
3483
- ], responseLength = utils.toFiniteNumber(res.headers['content-length']);
3484
- if (onDownloadProgress || maxDownloadRate) {
3485
- let transformStream = new AxiosTransformStream({
3486
- maxRate: utils.toFiniteNumber(maxDownloadRate)
3487
- });
3488
- onDownloadProgress && transformStream.on('progress', flushOnFinish(transformStream, progressEventDecorator(responseLength, progressEventReducer(asyncDecorator(onDownloadProgress), !0, 3)))), streams.push(transformStream);
3489
- }
3490
- let responseStream = res, lastRequest = res.req || req;
3491
- if (!1 !== config.decompress && res.headers['content-encoding']) switch(('HEAD' === method || 204 === res.statusCode) && delete res.headers['content-encoding'], (res.headers['content-encoding'] || '').toLowerCase()){
3492
- case 'gzip':
3493
- case 'x-gzip':
3494
- case 'compress':
3495
- case 'x-compress':
3496
- streams.push(external_zlib_namespaceObject.createUnzip(zlibOptions)), delete res.headers['content-encoding'];
3497
- break;
3498
- case 'deflate':
3499
- streams.push(new ZlibHeaderTransformStream()), streams.push(external_zlib_namespaceObject.createUnzip(zlibOptions)), delete res.headers['content-encoding'];
3500
- break;
3501
- case 'br':
3502
- isBrotliSupported && (streams.push(external_zlib_namespaceObject.createBrotliDecompress(brotliOptions)), delete res.headers['content-encoding']);
3503
- }
3504
- responseStream = streams.length > 1 ? external_stream_.pipeline(streams, utils.noop) : streams[0];
3505
- let response = {
3506
- status: res.statusCode,
3507
- statusText: res.statusMessage,
3508
- headers: new AxiosHeaders(res.headers),
3509
- config,
3510
- request: lastRequest
3511
- };
3512
- if ('stream' === responseType) response.data = responseStream, settle(resolve, reject, response);
3513
- else {
3514
- let responseBuffer = [], totalResponseBytes = 0;
3515
- responseStream.on('data', function(chunk) {
3516
- responseBuffer.push(chunk), totalResponseBytes += chunk.length, config.maxContentLength > -1 && totalResponseBytes > config.maxContentLength && (rejected = !0, responseStream.destroy(), abort(new core_AxiosError('maxContentLength size of ' + config.maxContentLength + ' exceeded', core_AxiosError.ERR_BAD_RESPONSE, config, lastRequest)));
3517
- }), responseStream.on('aborted', function() {
3518
- if (rejected) return;
3519
- let err = new core_AxiosError('stream has been aborted', core_AxiosError.ERR_BAD_RESPONSE, config, lastRequest);
3520
- responseStream.destroy(err), reject(err);
3521
- }), responseStream.on('error', function(err) {
3522
- req.destroyed || reject(core_AxiosError.from(err, null, config, lastRequest));
3523
- }), responseStream.on('end', function() {
3524
- try {
3525
- let responseData = 1 === responseBuffer.length ? responseBuffer[0] : Buffer.concat(responseBuffer);
3526
- 'arraybuffer' !== responseType && (responseData = responseData.toString(responseEncoding), responseEncoding && 'utf8' !== responseEncoding || (responseData = utils.stripBOM(responseData))), response.data = responseData;
3527
- } catch (err) {
3528
- return reject(core_AxiosError.from(err, null, config, response.request, response));
3529
- }
3530
- settle(resolve, reject, response);
3531
- });
3532
- }
3533
- abortEmitter.once('abort', (err)=>{
3534
- responseStream.destroyed || (responseStream.emit('error', err), responseStream.destroy());
3535
- });
3536
- }), abortEmitter.once('abort', (err)=>{
3537
- req.close ? req.close() : req.destroy(err);
3538
- }), req.on('error', function(err) {
3539
- reject(core_AxiosError.from(err, null, config, req));
3540
- }), req.on('socket', function(socket) {
3541
- socket.setKeepAlive(!0, 60000);
3542
- }), config.timeout) {
3543
- let timeout = parseInt(config.timeout, 10);
3544
- if (Number.isNaN(timeout)) return void abort(new core_AxiosError('error trying to parse `config.timeout` to int', core_AxiosError.ERR_BAD_OPTION_VALUE, config, req));
3545
- req.setTimeout(timeout, function() {
3546
- if (isDone) return;
3547
- let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded', transitional = config.transitional || defaults_transitional;
3548
- config.timeoutErrorMessage && (timeoutErrorMessage = config.timeoutErrorMessage), abort(new core_AxiosError(timeoutErrorMessage, transitional.clarifyTimeoutError ? core_AxiosError.ETIMEDOUT : core_AxiosError.ECONNABORTED, config, req));
3549
- });
3550
- } else req.setTimeout(0);
3551
- if (utils.isStream(data)) {
3552
- let ended = !1, errored = !1;
3553
- data.on('end', ()=>{
3554
- ended = !0;
3555
- }), data.once('error', (err)=>{
3556
- errored = !0, req.destroy(err);
3557
- }), data.on('close', ()=>{
3558
- ended || errored || abort(new cancel_CanceledError('Request stream has been aborted', config, req));
3559
- }), data.pipe(req);
3560
- } else data && req.write(data), req.end();
3561
- }, new Promise((resolve, reject)=>{
3562
- let onDone, isDone, done = (value, isRejected)=>{
3563
- !isDone && (isDone = !0, onDone && onDone(value, isRejected));
3564
- }, _reject = (reason)=>{
3565
- done(reason, !0), reject(reason);
3566
- };
3567
- asyncExecutor((value)=>{
3568
- done(value), resolve(value);
3569
- }, _reject, (onDoneHandler)=>onDone = onDoneHandler).catch(_reject);
3570
- });
3571
- }, isURLSameOrigin = platform.hasStandardBrowserEnv ? (origin = new URL(platform.origin), isMSIE = platform.navigator && /(msie|trident)/i.test(platform.navigator.userAgent), (url)=>(url = new URL(url, platform.origin), origin.protocol === url.protocol && origin.host === url.host && (isMSIE || origin.port === url.port))) : ()=>!0, cookies = platform.hasStandardBrowserEnv ? {
3572
- write (name, value, expires, path, domain, secure, sameSite) {
3573
- if ("u" < typeof document) return;
3574
- let cookie = [
3575
- `${name}=${encodeURIComponent(value)}`
3576
- ];
3577
- utils.isNumber(expires) && cookie.push(`expires=${new Date(expires).toUTCString()}`), utils.isString(path) && cookie.push(`path=${path}`), utils.isString(domain) && cookie.push(`domain=${domain}`), !0 === secure && cookie.push('secure'), utils.isString(sameSite) && cookie.push(`SameSite=${sameSite}`), document.cookie = cookie.join('; ');
3578
- },
3579
- read (name) {
3580
- if ("u" < typeof document) return null;
3581
- let match = document.cookie.match(RegExp('(?:^|; )' + name + '=([^;]*)'));
3582
- return match ? decodeURIComponent(match[1]) : null;
3583
- },
3584
- remove (name) {
3585
- this.write(name, '', Date.now() - 86400000, '/');
3586
- }
3587
- } : {
3588
- write () {},
3589
- read: ()=>null,
3590
- remove () {}
3591
- }, headersToObject = (thing)=>thing instanceof AxiosHeaders ? {
3592
- ...thing
3593
- } : thing;
3594
- function mergeConfig(config1, config2) {
3595
- config2 = config2 || {};
3596
- let config = {};
3597
- function getMergedValue(target, source, prop, caseless) {
3598
- return utils.isPlainObject(target) && utils.isPlainObject(source) ? utils.merge.call({
3599
- caseless
3600
- }, target, source) : utils.isPlainObject(source) ? utils.merge({}, source) : utils.isArray(source) ? source.slice() : source;
3601
- }
3602
- function mergeDeepProperties(a, b, prop, caseless) {
3603
- return utils.isUndefined(b) ? utils.isUndefined(a) ? void 0 : getMergedValue(void 0, a, prop, caseless) : getMergedValue(a, b, prop, caseless);
3604
- }
3605
- function valueFromConfig2(a, b) {
3606
- if (!utils.isUndefined(b)) return getMergedValue(void 0, b);
3607
- }
3608
- function defaultToConfig2(a, b) {
3609
- return utils.isUndefined(b) ? utils.isUndefined(a) ? void 0 : getMergedValue(void 0, a) : getMergedValue(void 0, b);
3610
- }
3611
- function mergeDirectKeys(a, b, prop) {
3612
- return prop in config2 ? getMergedValue(a, b) : prop in config1 ? getMergedValue(void 0, a) : void 0;
3613
- }
3614
- let mergeMap = {
3615
- url: valueFromConfig2,
3616
- method: valueFromConfig2,
3617
- data: valueFromConfig2,
3618
- baseURL: defaultToConfig2,
3619
- transformRequest: defaultToConfig2,
3620
- transformResponse: defaultToConfig2,
3621
- paramsSerializer: defaultToConfig2,
3622
- timeout: defaultToConfig2,
3623
- timeoutMessage: defaultToConfig2,
3624
- withCredentials: defaultToConfig2,
3625
- withXSRFToken: defaultToConfig2,
3626
- adapter: defaultToConfig2,
3627
- responseType: defaultToConfig2,
3628
- xsrfCookieName: defaultToConfig2,
3629
- xsrfHeaderName: defaultToConfig2,
3630
- onUploadProgress: defaultToConfig2,
3631
- onDownloadProgress: defaultToConfig2,
3632
- decompress: defaultToConfig2,
3633
- maxContentLength: defaultToConfig2,
3634
- maxBodyLength: defaultToConfig2,
3635
- beforeRedirect: defaultToConfig2,
3636
- transport: defaultToConfig2,
3637
- httpAgent: defaultToConfig2,
3638
- httpsAgent: defaultToConfig2,
3639
- cancelToken: defaultToConfig2,
3640
- socketPath: defaultToConfig2,
3641
- responseEncoding: defaultToConfig2,
3642
- validateStatus: mergeDirectKeys,
3643
- headers: (a, b, prop)=>mergeDeepProperties(headersToObject(a), headersToObject(b), prop, !0)
3644
- };
3645
- return utils.forEach(Object.keys({
3646
- ...config1,
3647
- ...config2
3648
- }), function(prop) {
3649
- if ('__proto__' === prop || 'constructor' === prop || 'prototype' === prop) return;
3650
- let merge = utils.hasOwnProp(mergeMap, prop) ? mergeMap[prop] : mergeDeepProperties, configValue = merge(config1[prop], config2[prop], prop);
3651
- utils.isUndefined(configValue) && merge !== mergeDirectKeys || (config[prop] = configValue);
3652
- }), config;
3653
- }
3654
- let resolveConfig = (config)=>{
3655
- let newConfig = mergeConfig({}, config), { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
3656
- if (newConfig.headers = headers = AxiosHeaders.from(headers), newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer), auth && headers.set('Authorization', 'Basic ' + btoa((auth.username || '') + ':' + (auth.password ? unescape(encodeURIComponent(auth.password)) : ''))), utils.isFormData(data)) {
3657
- if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) headers.setContentType(void 0);
3658
- else if (utils.isFunction(data.getHeaders)) {
3659
- let formHeaders = data.getHeaders(), allowedHeaders = [
3660
- 'content-type',
3661
- 'content-length'
3662
- ];
3663
- Object.entries(formHeaders).forEach(([key, val])=>{
3664
- allowedHeaders.includes(key.toLowerCase()) && headers.set(key, val);
3665
- });
3666
- }
3667
- }
3668
- if (platform.hasStandardBrowserEnv && (withXSRFToken && utils.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(newConfig)), withXSRFToken || !1 !== withXSRFToken && isURLSameOrigin(newConfig.url))) {
3669
- let xsrfValue = xsrfHeaderName && xsrfCookieName && cookies.read(xsrfCookieName);
3670
- xsrfValue && headers.set(xsrfHeaderName, xsrfValue);
3671
- }
3672
- return newConfig;
3673
- }, xhr = "u" > typeof XMLHttpRequest && function(config) {
3674
- return new Promise(function(resolve, reject) {
3675
- let onCanceled, uploadThrottled, downloadThrottled, flushUpload, flushDownload, _config = resolveConfig(config), requestData = _config.data, requestHeaders = AxiosHeaders.from(_config.headers).normalize(), { responseType, onUploadProgress, onDownloadProgress } = _config;
3676
- function done() {
3677
- flushUpload && flushUpload(), flushDownload && flushDownload(), _config.cancelToken && _config.cancelToken.unsubscribe(onCanceled), _config.signal && _config.signal.removeEventListener('abort', onCanceled);
3678
- }
3679
- let request = new XMLHttpRequest();
3680
- function onloadend() {
3681
- if (!request) return;
3682
- let responseHeaders = AxiosHeaders.from('getAllResponseHeaders' in request && request.getAllResponseHeaders());
3683
- settle(function(value) {
3684
- resolve(value), done();
3685
- }, function(err) {
3686
- reject(err), done();
3687
- }, {
3688
- data: responseType && 'text' !== responseType && 'json' !== responseType ? request.response : request.responseText,
3689
- status: request.status,
3690
- statusText: request.statusText,
3691
- headers: responseHeaders,
3692
- config,
3693
- request
3694
- }), request = null;
3695
- }
3696
- request.open(_config.method.toUpperCase(), _config.url, !0), request.timeout = _config.timeout, 'onloadend' in request ? request.onloadend = onloadend : request.onreadystatechange = function() {
3697
- !request || 4 !== request.readyState || (0 !== request.status || request.responseURL && 0 === request.responseURL.indexOf('file:')) && setTimeout(onloadend);
3698
- }, request.onabort = function() {
3699
- request && (reject(new core_AxiosError('Request aborted', core_AxiosError.ECONNABORTED, config, request)), request = null);
3700
- }, request.onerror = function(event) {
3701
- let err = new core_AxiosError(event && event.message ? event.message : 'Network Error', core_AxiosError.ERR_NETWORK, config, request);
3702
- err.event = event || null, reject(err), request = null;
3703
- }, request.ontimeout = function() {
3704
- let timeoutErrorMessage = _config.timeout ? 'timeout of ' + _config.timeout + 'ms exceeded' : 'timeout exceeded', transitional = _config.transitional || defaults_transitional;
3705
- _config.timeoutErrorMessage && (timeoutErrorMessage = _config.timeoutErrorMessage), reject(new core_AxiosError(timeoutErrorMessage, transitional.clarifyTimeoutError ? core_AxiosError.ETIMEDOUT : core_AxiosError.ECONNABORTED, config, request)), request = null;
3706
- }, void 0 === requestData && requestHeaders.setContentType(null), 'setRequestHeader' in request && utils.forEach(requestHeaders.toJSON(), function(val, key) {
3707
- request.setRequestHeader(key, val);
3708
- }), utils.isUndefined(_config.withCredentials) || (request.withCredentials = !!_config.withCredentials), responseType && 'json' !== responseType && (request.responseType = _config.responseType), onDownloadProgress && ([downloadThrottled, flushDownload] = progressEventReducer(onDownloadProgress, !0), request.addEventListener('progress', downloadThrottled)), onUploadProgress && request.upload && ([uploadThrottled, flushUpload] = progressEventReducer(onUploadProgress), request.upload.addEventListener('progress', uploadThrottled), request.upload.addEventListener('loadend', flushUpload)), (_config.cancelToken || _config.signal) && (onCanceled = (cancel)=>{
3709
- request && (reject(!cancel || cancel.type ? new cancel_CanceledError(null, config, request) : cancel), request.abort(), request = null);
3710
- }, _config.cancelToken && _config.cancelToken.subscribe(onCanceled), _config.signal && (_config.signal.aborted ? onCanceled() : _config.signal.addEventListener('abort', onCanceled)));
3711
- let protocol = parseProtocol(_config.url);
3712
- protocol && -1 === platform.protocols.indexOf(protocol) ? reject(new core_AxiosError('Unsupported protocol ' + protocol + ':', core_AxiosError.ERR_BAD_REQUEST, config)) : request.send(requestData || null);
3713
- });
3714
- }, streamChunk = function*(chunk, chunkSize) {
3715
- let end, len = chunk.byteLength;
3716
- if (!chunkSize || len < chunkSize) return void (yield chunk);
3717
- let pos = 0;
3718
- for(; pos < len;)end = pos + chunkSize, yield chunk.slice(pos, end), pos = end;
3719
- }, readBytes = async function*(iterable, chunkSize) {
3720
- for await (let chunk of readStream(iterable))yield* streamChunk(chunk, chunkSize);
3721
- }, readStream = async function*(stream) {
3722
- if (stream[Symbol.asyncIterator]) return void (yield* stream);
3723
- let reader = stream.getReader();
3724
- try {
3725
- for(;;){
3726
- let { done, value } = await reader.read();
3727
- if (done) break;
3728
- yield value;
3729
- }
3730
- } finally{
3731
- await reader.cancel();
3732
- }
3733
- }, trackStream = (stream, chunkSize, onProgress, onFinish)=>{
3734
- let done, iterator = readBytes(stream, chunkSize), bytes = 0, _onFinish = (e)=>{
3735
- !done && (done = !0, onFinish && onFinish(e));
3736
- };
3737
- return new ReadableStream({
3738
- async pull (controller) {
3739
- try {
3740
- let { done, value } = await iterator.next();
3741
- if (done) {
3742
- _onFinish(), controller.close();
3743
- return;
3744
- }
3745
- let len = value.byteLength;
3746
- if (onProgress) {
3747
- let loadedBytes = bytes += len;
3748
- onProgress(loadedBytes);
3749
- }
3750
- controller.enqueue(new Uint8Array(value));
3751
- } catch (err) {
3752
- throw _onFinish(err), err;
3753
- }
3754
- },
3755
- cancel: (reason)=>(_onFinish(reason), iterator.return())
3756
- }, {
3757
- highWaterMark: 2
3758
- });
3759
- }, { isFunction: fetch_isFunction } = utils, globalFetchAPI = (({ Request, Response })=>({
3760
- Request,
3761
- Response
3762
- }))(utils.global), { ReadableStream: fetch_ReadableStream, TextEncoder: fetch_TextEncoder } = utils.global, test = (fn, ...args)=>{
3763
- try {
3764
- return !!fn(...args);
3765
- } catch (e) {
3766
- return !1;
3767
- }
3768
- }, factory = (env)=>{
3769
- let encoder, { fetch: envFetch, Request, Response } = env = utils.merge.call({
3770
- skipUndefined: !0
3771
- }, globalFetchAPI, env), isFetchSupported = envFetch ? fetch_isFunction(envFetch) : 'function' == typeof fetch, isRequestSupported = fetch_isFunction(Request), isResponseSupported = fetch_isFunction(Response);
3772
- if (!isFetchSupported) return !1;
3773
- let isReadableStreamSupported = isFetchSupported && fetch_isFunction(fetch_ReadableStream), encodeText = isFetchSupported && ('function' == typeof fetch_TextEncoder ? (encoder = new fetch_TextEncoder(), (str)=>encoder.encode(str)) : async (str)=>new Uint8Array(await new Request(str).arrayBuffer())), supportsRequestStream = isRequestSupported && isReadableStreamSupported && test(()=>{
3774
- let duplexAccessed = !1, hasContentType = new Request(platform.origin, {
3775
- body: new fetch_ReadableStream(),
3776
- method: 'POST',
3777
- get duplex () {
3778
- return duplexAccessed = !0, 'half';
3779
- }
3780
- }).headers.has('Content-Type');
3781
- return duplexAccessed && !hasContentType;
3782
- }), supportsResponseStream = isResponseSupported && isReadableStreamSupported && test(()=>utils.isReadableStream(new Response('').body)), resolvers = {
3783
- stream: supportsResponseStream && ((res)=>res.body)
3784
- };
3785
- isFetchSupported && [
3786
- 'text',
3787
- 'arrayBuffer',
3788
- 'blob',
3789
- 'formData',
3790
- 'stream'
3791
- ].forEach((type)=>{
3792
- resolvers[type] || (resolvers[type] = (res, config)=>{
3793
- let method = res && res[type];
3794
- if (method) return method.call(res);
3795
- throw new core_AxiosError(`Response type '${type}' is not supported`, core_AxiosError.ERR_NOT_SUPPORT, config);
3796
- });
3797
- });
3798
- let getBodyLength = async (body)=>{
3799
- if (null == body) return 0;
3800
- if (utils.isBlob(body)) return body.size;
3801
- if (utils.isSpecCompliantForm(body)) {
3802
- let _request = new Request(platform.origin, {
3803
- method: 'POST',
3804
- body
3805
- });
3806
- return (await _request.arrayBuffer()).byteLength;
3807
- }
3808
- return utils.isArrayBufferView(body) || utils.isArrayBuffer(body) ? body.byteLength : (utils.isURLSearchParams(body) && (body += ''), utils.isString(body)) ? (await encodeText(body)).byteLength : void 0;
3809
- }, resolveBodyLength = async (headers, body)=>{
3810
- let length = utils.toFiniteNumber(headers.getContentLength());
3811
- return null == length ? getBodyLength(body) : length;
3812
- };
3813
- return async (config)=>{
3814
- let requestContentLength, { url, method, data, signal, cancelToken, timeout, onDownloadProgress, onUploadProgress, responseType, headers, withCredentials = 'same-origin', fetchOptions } = resolveConfig(config), _fetch = envFetch || fetch;
3815
- responseType = responseType ? (responseType + '').toLowerCase() : 'text';
3816
- let composedSignal = ((signals, timeout)=>{
3817
- let { length } = signals = signals ? signals.filter(Boolean) : [];
3818
- if (timeout || length) {
3819
- let aborted, controller = new AbortController(), onabort = function(reason) {
3820
- if (!aborted) {
3821
- aborted = !0, unsubscribe();
3822
- let err = reason instanceof Error ? reason : this.reason;
3823
- controller.abort(err instanceof core_AxiosError ? err : new cancel_CanceledError(err instanceof Error ? err.message : err));
3824
- }
3825
- }, timer = timeout && setTimeout(()=>{
3826
- timer = null, onabort(new core_AxiosError(`timeout of ${timeout}ms exceeded`, core_AxiosError.ETIMEDOUT));
3827
- }, timeout), unsubscribe = ()=>{
3828
- signals && (timer && clearTimeout(timer), timer = null, signals.forEach((signal)=>{
3829
- signal.unsubscribe ? signal.unsubscribe(onabort) : signal.removeEventListener('abort', onabort);
3830
- }), signals = null);
3831
- };
3832
- signals.forEach((signal)=>signal.addEventListener('abort', onabort));
3833
- let { signal } = controller;
3834
- return signal.unsubscribe = ()=>utils.asap(unsubscribe), signal;
3835
- }
3836
- })([
3837
- signal,
3838
- cancelToken && cancelToken.toAbortSignal()
3839
- ], timeout), request = null, unsubscribe = composedSignal && composedSignal.unsubscribe && (()=>{
3840
- composedSignal.unsubscribe();
3841
- });
3842
- try {
3843
- if (onUploadProgress && supportsRequestStream && 'get' !== method && 'head' !== method && 0 !== (requestContentLength = await resolveBodyLength(headers, data))) {
3844
- let contentTypeHeader, _request = new Request(url, {
3845
- method: 'POST',
3846
- body: data,
3847
- duplex: 'half'
3848
- });
3849
- if (utils.isFormData(data) && (contentTypeHeader = _request.headers.get('content-type')) && headers.setContentType(contentTypeHeader), _request.body) {
3850
- let [onProgress, flush] = progressEventDecorator(requestContentLength, progressEventReducer(asyncDecorator(onUploadProgress)));
3851
- data = trackStream(_request.body, 65536, onProgress, flush);
3852
- }
3853
- }
3854
- utils.isString(withCredentials) || (withCredentials = withCredentials ? 'include' : 'omit');
3855
- let isCredentialsSupported = isRequestSupported && 'credentials' in Request.prototype, resolvedOptions = {
3856
- ...fetchOptions,
3857
- signal: composedSignal,
3858
- method: method.toUpperCase(),
3859
- headers: headers.normalize().toJSON(),
3860
- body: data,
3861
- duplex: 'half',
3862
- credentials: isCredentialsSupported ? withCredentials : void 0
3863
- };
3864
- request = isRequestSupported && new Request(url, resolvedOptions);
3865
- let response = await (isRequestSupported ? _fetch(request, fetchOptions) : _fetch(url, resolvedOptions)), isStreamResponse = supportsResponseStream && ('stream' === responseType || 'response' === responseType);
3866
- if (supportsResponseStream && (onDownloadProgress || isStreamResponse && unsubscribe)) {
3867
- let options = {};
3868
- [
3869
- 'status',
3870
- 'statusText',
3871
- 'headers'
3872
- ].forEach((prop)=>{
3873
- options[prop] = response[prop];
3874
- });
3875
- let responseContentLength = utils.toFiniteNumber(response.headers.get('content-length')), [onProgress, flush] = onDownloadProgress && progressEventDecorator(responseContentLength, progressEventReducer(asyncDecorator(onDownloadProgress), !0)) || [];
3876
- response = new Response(trackStream(response.body, 65536, onProgress, ()=>{
3877
- flush && flush(), unsubscribe && unsubscribe();
3878
- }), options);
3879
- }
3880
- responseType = responseType || 'text';
3881
- let responseData = await resolvers[utils.findKey(resolvers, responseType) || 'text'](response, config);
3882
- return !isStreamResponse && unsubscribe && unsubscribe(), await new Promise((resolve, reject)=>{
3883
- settle(resolve, reject, {
3884
- data: responseData,
3885
- headers: AxiosHeaders.from(response.headers),
3886
- status: response.status,
3887
- statusText: response.statusText,
3888
- config,
3889
- request
3890
- });
3891
- });
3892
- } catch (err) {
3893
- if (unsubscribe && unsubscribe(), err && 'TypeError' === err.name && /Load failed|fetch/i.test(err.message)) throw Object.assign(new core_AxiosError('Network Error', core_AxiosError.ERR_NETWORK, config, request, err && err.response), {
3894
- cause: err.cause || err
3895
- });
3896
- throw core_AxiosError.from(err, err && err.code, config, request, err && err.response);
3897
- }
3898
- };
3899
- }, seedCache = new Map(), getFetch = (config)=>{
3900
- let env = config && config.env || {}, { fetch: fetch1, Request, Response } = env, seeds = [
3901
- Request,
3902
- Response,
3903
- fetch1
3904
- ], i = seeds.length, seed, target, map = seedCache;
3905
- for(; i--;)seed = seeds[i], void 0 === (target = map.get(seed)) && map.set(seed, target = i ? new Map() : factory(env)), map = target;
3906
- return target;
3907
- };
3908
- getFetch();
3909
- let knownAdapters = {
3910
- http: http,
3911
- xhr: xhr,
3912
- fetch: {
3913
- get: getFetch
3914
- }
3915
- };
3916
- utils.forEach(knownAdapters, (fn, value)=>{
3917
- if (fn) {
3918
- try {
3919
- Object.defineProperty(fn, 'name', {
3920
- value
3921
- });
3922
- } catch (e) {}
3923
- Object.defineProperty(fn, 'adapterName', {
3924
- value
3925
- });
3926
- }
3927
- });
3928
- let renderReason = (reason)=>`- ${reason}`, isResolvedHandle = (adapter)=>utils.isFunction(adapter) || null === adapter || !1 === adapter, adapters_adapters_getAdapter = function(adapters, config) {
3929
- let nameOrAdapter, adapter, { length } = adapters = utils.isArray(adapters) ? adapters : [
3930
- adapters
3931
- ], rejectedReasons = {};
3932
- for(let i = 0; i < length; i++){
3933
- let id;
3934
- if (adapter = nameOrAdapter = adapters[i], !isResolvedHandle(nameOrAdapter) && void 0 === (adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()])) throw new core_AxiosError(`Unknown adapter '${id}'`);
3935
- if (adapter && (utils.isFunction(adapter) || (adapter = adapter.get(config)))) break;
3936
- rejectedReasons[id || '#' + i] = adapter;
3937
- }
3938
- if (!adapter) {
3939
- let reasons = Object.entries(rejectedReasons).map(([id, state])=>`adapter ${id} ` + (!1 === state ? 'is not supported by the environment' : 'is not available in the build'));
3940
- throw new core_AxiosError("There is no suitable adapter to dispatch the request " + (length ? reasons.length > 1 ? 'since :\n' + reasons.map(renderReason).join('\n') : ' ' + renderReason(reasons[0]) : 'as no adapter specified'), 'ERR_NOT_SUPPORT');
3941
- }
3942
- return adapter;
3943
- };
3944
- function throwIfCancellationRequested(config) {
3945
- if (config.cancelToken && config.cancelToken.throwIfRequested(), config.signal && config.signal.aborted) throw new cancel_CanceledError(null, config);
3946
- }
3947
- function dispatchRequest(config) {
3948
- return throwIfCancellationRequested(config), config.headers = AxiosHeaders.from(config.headers), config.data = transformData.call(config, config.transformRequest), -1 !== [
3949
- 'post',
3950
- 'put',
3951
- 'patch'
3952
- ].indexOf(config.method) && config.headers.setContentType('application/x-www-form-urlencoded', !1), adapters_adapters_getAdapter(config.adapter || defaults_defaults.adapter, config)(config).then(function(response) {
3953
- return throwIfCancellationRequested(config), response.data = transformData.call(config, config.transformResponse, response), response.headers = AxiosHeaders.from(response.headers), response;
3954
- }, function(reason) {
3955
- return !isCancel(reason) && (throwIfCancellationRequested(config), reason && reason.response && (reason.response.data = transformData.call(config, config.transformResponse, reason.response), reason.response.headers = AxiosHeaders.from(reason.response.headers))), Promise.reject(reason);
3956
- });
3957
- }
3958
- let validators = {};
3959
- [
3960
- 'object',
3961
- 'boolean',
3962
- 'number',
3963
- 'function',
3964
- 'string',
3965
- 'symbol'
3966
- ].forEach((type, i)=>{
3967
- validators[type] = function(thing) {
3968
- return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;
3969
- };
3970
- });
3971
- let deprecatedWarnings = {};
3972
- validators.transitional = function(validator, version, message) {
3973
- function formatMessage(opt, desc) {
3974
- return "[Axios v1.13.6] Transitional option '" + opt + "'" + desc + (message ? '. ' + message : '');
3975
- }
3976
- return (value, opt, opts)=>{
3977
- if (!1 === validator) throw new core_AxiosError(formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')), core_AxiosError.ERR_DEPRECATED);
3978
- return version && !deprecatedWarnings[opt] && (deprecatedWarnings[opt] = !0, console.warn(formatMessage(opt, ' has been deprecated since v' + version + ' and will be removed in the near future'))), !validator || validator(value, opt, opts);
3979
- };
3980
- }, validators.spelling = function(correctSpelling) {
3981
- return (value, opt)=>(console.warn(`${opt} is likely a misspelling of ${correctSpelling}`), !0);
3982
- };
3983
- let helpers_validator_assertOptions = function(options, schema, allowUnknown) {
3984
- if ('object' != typeof options) throw new core_AxiosError('options must be an object', core_AxiosError.ERR_BAD_OPTION_VALUE);
3985
- let keys = Object.keys(options), i = keys.length;
3986
- for(; i-- > 0;){
3987
- let opt = keys[i], validator = schema[opt];
3988
- if (validator) {
3989
- let value = options[opt], result = void 0 === value || validator(value, opt, options);
3990
- if (!0 !== result) throw new core_AxiosError('option ' + opt + ' must be ' + result, core_AxiosError.ERR_BAD_OPTION_VALUE);
3991
- continue;
3992
- }
3993
- if (!0 !== allowUnknown) throw new core_AxiosError('Unknown option ' + opt, core_AxiosError.ERR_BAD_OPTION);
3994
- }
3995
- }, helpers_validator_validators = validators, Axios_validators = helpers_validator_validators;
3996
- class Axios {
3997
- constructor(instanceConfig){
3998
- this.defaults = instanceConfig || {}, this.interceptors = {
3999
- request: new core_InterceptorManager(),
4000
- response: new core_InterceptorManager()
4001
- };
4002
- }
4003
- async request(configOrUrl, config) {
4004
- try {
4005
- return await this._request(configOrUrl, config);
4006
- } catch (err) {
4007
- if (err instanceof Error) {
4008
- let dummy = {};
4009
- Error.captureStackTrace ? Error.captureStackTrace(dummy) : dummy = Error();
4010
- let stack = dummy.stack ? dummy.stack.replace(/^.+\n/, '') : '';
4011
- try {
4012
- err.stack ? stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, '')) && (err.stack += '\n' + stack) : err.stack = stack;
4013
- } catch (e) {}
4014
- }
4015
- throw err;
4016
- }
4017
- }
4018
- _request(configOrUrl, config) {
4019
- let promise, len;
4020
- 'string' == typeof configOrUrl ? (config = config || {}).url = configOrUrl : config = configOrUrl || {};
4021
- let { transitional, paramsSerializer, headers } = config = mergeConfig(this.defaults, config);
4022
- void 0 !== transitional && helpers_validator_assertOptions(transitional, {
4023
- silentJSONParsing: Axios_validators.transitional(Axios_validators.boolean),
4024
- forcedJSONParsing: Axios_validators.transitional(Axios_validators.boolean),
4025
- clarifyTimeoutError: Axios_validators.transitional(Axios_validators.boolean),
4026
- legacyInterceptorReqResOrdering: Axios_validators.transitional(Axios_validators.boolean)
4027
- }, !1), null != paramsSerializer && (utils.isFunction(paramsSerializer) ? config.paramsSerializer = {
4028
- serialize: paramsSerializer
4029
- } : helpers_validator_assertOptions(paramsSerializer, {
4030
- encode: Axios_validators.function,
4031
- serialize: Axios_validators.function
4032
- }, !0)), void 0 !== config.allowAbsoluteUrls || (void 0 !== this.defaults.allowAbsoluteUrls ? config.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls : config.allowAbsoluteUrls = !0), helpers_validator_assertOptions(config, {
4033
- baseUrl: Axios_validators.spelling('baseURL'),
4034
- withXsrfToken: Axios_validators.spelling('withXSRFToken')
4035
- }, !0), config.method = (config.method || this.defaults.method || 'get').toLowerCase();
4036
- let contextHeaders = headers && utils.merge(headers.common, headers[config.method]);
4037
- headers && utils.forEach([
4038
- 'delete',
4039
- 'get',
4040
- 'head',
4041
- 'post',
4042
- 'put',
4043
- 'patch',
4044
- 'common'
4045
- ], (method)=>{
4046
- delete headers[method];
4047
- }), config.headers = AxiosHeaders.concat(contextHeaders, headers);
4048
- let requestInterceptorChain = [], synchronousRequestInterceptors = !0;
4049
- this.interceptors.request.forEach(function(interceptor) {
4050
- if ('function' == typeof interceptor.runWhen && !1 === interceptor.runWhen(config)) return;
4051
- synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
4052
- let transitional = config.transitional || defaults_transitional;
4053
- transitional && transitional.legacyInterceptorReqResOrdering ? requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected) : requestInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
4054
- });
4055
- let responseInterceptorChain = [];
4056
- this.interceptors.response.forEach(function(interceptor) {
4057
- responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
4058
- });
4059
- let i = 0;
4060
- if (!synchronousRequestInterceptors) {
4061
- let chain = [
4062
- dispatchRequest.bind(this),
4063
- void 0
4064
- ];
4065
- for(chain.unshift(...requestInterceptorChain), chain.push(...responseInterceptorChain), len = chain.length, promise = Promise.resolve(config); i < len;)promise = promise.then(chain[i++], chain[i++]);
4066
- return promise;
4067
- }
4068
- len = requestInterceptorChain.length;
4069
- let newConfig = config;
4070
- for(; i < len;){
4071
- let onFulfilled = requestInterceptorChain[i++], onRejected = requestInterceptorChain[i++];
4072
- try {
4073
- newConfig = onFulfilled(newConfig);
4074
- } catch (error) {
4075
- onRejected.call(this, error);
4076
- break;
4077
- }
4078
- }
4079
- try {
4080
- promise = dispatchRequest.call(this, newConfig);
4081
- } catch (error) {
4082
- return Promise.reject(error);
4083
- }
4084
- for(i = 0, len = responseInterceptorChain.length; i < len;)promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);
4085
- return promise;
4086
- }
4087
- getUri(config) {
4088
- return buildURL(buildFullPath((config = mergeConfig(this.defaults, config)).baseURL, config.url, config.allowAbsoluteUrls), config.params, config.paramsSerializer);
4089
- }
4090
- }
4091
- utils.forEach([
4092
- 'delete',
4093
- 'get',
4094
- 'head',
4095
- 'options'
4096
- ], function(method) {
4097
- Axios.prototype[method] = function(url, config) {
4098
- return this.request(mergeConfig(config || {}, {
4099
- method,
4100
- url,
4101
- data: (config || {}).data
4102
- }));
4103
- };
4104
- }), utils.forEach([
4105
- 'post',
4106
- 'put',
4107
- 'patch'
4108
- ], function(method) {
4109
- function generateHTTPMethod(isForm) {
4110
- return function(url, data, config) {
4111
- return this.request(mergeConfig(config || {}, {
4112
- method,
4113
- headers: isForm ? {
4114
- 'Content-Type': 'multipart/form-data'
4115
- } : {},
4116
- url,
4117
- data
4118
- }));
4119
- };
4120
- }
4121
- Axios.prototype[method] = generateHTTPMethod(), Axios.prototype[method + 'Form'] = generateHTTPMethod(!0);
4122
- });
4123
- class CancelToken {
4124
- constructor(executor){
4125
- let resolvePromise;
4126
- if ('function' != typeof executor) throw TypeError('executor must be a function.');
4127
- this.promise = new Promise(function(resolve) {
4128
- resolvePromise = resolve;
4129
- });
4130
- const token = this;
4131
- this.promise.then((cancel)=>{
4132
- if (!token._listeners) return;
4133
- let i = token._listeners.length;
4134
- for(; i-- > 0;)token._listeners[i](cancel);
4135
- token._listeners = null;
4136
- }), this.promise.then = (onfulfilled)=>{
4137
- let _resolve, promise = new Promise((resolve)=>{
4138
- token.subscribe(resolve), _resolve = resolve;
4139
- }).then(onfulfilled);
4140
- return promise.cancel = function() {
4141
- token.unsubscribe(_resolve);
4142
- }, promise;
4143
- }, executor(function(message, config, request) {
4144
- token.reason || (token.reason = new cancel_CanceledError(message, config, request), resolvePromise(token.reason));
4145
- });
4146
- }
4147
- throwIfRequested() {
4148
- if (this.reason) throw this.reason;
4149
- }
4150
- subscribe(listener) {
4151
- this.reason ? listener(this.reason) : this._listeners ? this._listeners.push(listener) : this._listeners = [
4152
- listener
4153
- ];
4154
- }
4155
- unsubscribe(listener) {
4156
- if (!this._listeners) return;
4157
- let index = this._listeners.indexOf(listener);
4158
- -1 !== index && this._listeners.splice(index, 1);
4159
- }
4160
- toAbortSignal() {
4161
- let controller = new AbortController(), abort = (err)=>{
4162
- controller.abort(err);
4163
- };
4164
- return this.subscribe(abort), controller.signal.unsubscribe = ()=>this.unsubscribe(abort), controller.signal;
4165
- }
4166
- static source() {
4167
- let cancel;
4168
- return {
4169
- token: new CancelToken(function(c) {
4170
- cancel = c;
4171
- }),
4172
- cancel
4173
- };
4174
- }
4175
- }
4176
- let HttpStatusCode = {
4177
- Continue: 100,
4178
- SwitchingProtocols: 101,
4179
- Processing: 102,
4180
- EarlyHints: 103,
4181
- Ok: 200,
4182
- Created: 201,
4183
- Accepted: 202,
4184
- NonAuthoritativeInformation: 203,
4185
- NoContent: 204,
4186
- ResetContent: 205,
4187
- PartialContent: 206,
4188
- MultiStatus: 207,
4189
- AlreadyReported: 208,
4190
- ImUsed: 226,
4191
- MultipleChoices: 300,
4192
- MovedPermanently: 301,
4193
- Found: 302,
4194
- SeeOther: 303,
4195
- NotModified: 304,
4196
- UseProxy: 305,
4197
- Unused: 306,
4198
- TemporaryRedirect: 307,
4199
- PermanentRedirect: 308,
4200
- BadRequest: 400,
4201
- Unauthorized: 401,
4202
- PaymentRequired: 402,
4203
- Forbidden: 403,
4204
- NotFound: 404,
4205
- MethodNotAllowed: 405,
4206
- NotAcceptable: 406,
4207
- ProxyAuthenticationRequired: 407,
4208
- RequestTimeout: 408,
4209
- Conflict: 409,
4210
- Gone: 410,
4211
- LengthRequired: 411,
4212
- PreconditionFailed: 412,
4213
- PayloadTooLarge: 413,
4214
- UriTooLong: 414,
4215
- UnsupportedMediaType: 415,
4216
- RangeNotSatisfiable: 416,
4217
- ExpectationFailed: 417,
4218
- ImATeapot: 418,
4219
- MisdirectedRequest: 421,
4220
- UnprocessableEntity: 422,
4221
- Locked: 423,
4222
- FailedDependency: 424,
4223
- TooEarly: 425,
4224
- UpgradeRequired: 426,
4225
- PreconditionRequired: 428,
4226
- TooManyRequests: 429,
4227
- RequestHeaderFieldsTooLarge: 431,
4228
- UnavailableForLegalReasons: 451,
4229
- InternalServerError: 500,
4230
- NotImplemented: 501,
4231
- BadGateway: 502,
4232
- ServiceUnavailable: 503,
4233
- GatewayTimeout: 504,
4234
- HttpVersionNotSupported: 505,
4235
- VariantAlsoNegotiates: 506,
4236
- InsufficientStorage: 507,
4237
- LoopDetected: 508,
4238
- NotExtended: 510,
4239
- NetworkAuthenticationRequired: 511,
4240
- WebServerIsDown: 521,
4241
- ConnectionTimedOut: 522,
4242
- OriginIsUnreachable: 523,
4243
- TimeoutOccurred: 524,
4244
- SslHandshakeFailed: 525,
4245
- InvalidSslCertificate: 526
4246
- };
4247
- Object.entries(HttpStatusCode).forEach(([key, value])=>{
4248
- HttpStatusCode[value] = key;
4249
- });
4250
- let axios = function createInstance(defaultConfig) {
4251
- let context = new Axios(defaultConfig), instance = bind(Axios.prototype.request, context);
4252
- return utils.extend(instance, Axios.prototype, context, {
4253
- allOwnKeys: !0
4254
- }), utils.extend(instance, context, null, {
4255
- allOwnKeys: !0
4256
- }), instance.create = function(instanceConfig) {
4257
- return createInstance(mergeConfig(defaultConfig, instanceConfig));
4258
- }, instance;
4259
- }(defaults_defaults);
4260
- axios.Axios = Axios, axios.CanceledError = cancel_CanceledError, axios.CancelToken = CancelToken, axios.isCancel = isCancel, axios.VERSION = "1.13.6", axios.toFormData = helpers_toFormData, axios.AxiosError = core_AxiosError, axios.Cancel = axios.CanceledError, axios.all = function(promises) {
4261
- return Promise.all(promises);
4262
- }, axios.spread = function(callback) {
4263
- return function(arr) {
4264
- return callback.apply(null, arr);
4265
- };
4266
- }, axios.isAxiosError = function(payload) {
4267
- return utils.isObject(payload) && !0 === payload.isAxiosError;
4268
- }, axios.mergeConfig = mergeConfig, axios.AxiosHeaders = AxiosHeaders, axios.formToJSON = (thing)=>helpers_formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing), axios.getAdapter = adapters_adapters_getAdapter, axios.HttpStatusCode = HttpStatusCode, axios.default = axios;
4269
- var external_path_ = __webpack_require__("path"), external_path_default = __webpack_require__.n(external_path_);
469
+ let external_path_namespaceObject = require("path");
470
+ var external_path_default = __webpack_require__.n(external_path_namespaceObject);
4270
471
  let external_node_fs_namespaceObject = require("node:fs");
4271
472
  var external_node_fs_default = __webpack_require__.n(external_node_fs_namespaceObject);
4272
473
  function enhanceCommand(fn) {
4273
474
  return (ctx)=>fn(ctx);
4274
475
  }
4275
476
  async function fetchText(url) {
4276
- let { data } = await axios.get(url, {
477
+ var url1, options;
478
+ return (await (url1 = url, options = {
4277
479
  timeout: 60000,
4278
480
  headers: {
4279
- 'Content-Type': 'text/plain; charset=utf-8',
481
+ Accept: 'text/plain; charset=utf-8',
4280
482
  'Accept-Encoding': 'gzip,deflate,compress'
4281
483
  }
4282
- });
4283
- return data;
484
+ }, common_namespaceObject.Fetch.fetchWithTimeout(url1, options))).text();
4284
485
  }
4285
486
  async function readFile(url, cwd) {
4286
487
  let file = external_path_default().resolve(cwd, url);
4287
488
  return external_node_fs_default().readFileSync(file, 'utf-8');
4288
489
  }
4289
490
  async function loadJSON(uri, cwd) {
4290
- return common_namespaceObject.Url.isUrl(uri) ? await fetchText(uri) : JSON.parse(await readFile(uri, cwd));
491
+ return common_namespaceObject.Url.isUrl(uri) ? JSON.parse(await fetchText(uri)) : JSON.parse(await readFile(uri, cwd));
4291
492
  }
4292
493
  async function loadShardingFile(uri, cwd) {
4293
494
  return common_namespaceObject.Url.isUrl(uri) ? fetchText(uri) : common_namespaceObject.Url.isFilePath(uri) ? readFile(uri, cwd) : Promise.resolve(uri);
@@ -4295,7 +496,7 @@ for(var __rspack_i in (()=>{
4295
496
  async function loadShardingFileWithSpinner(uri, cwd, spinner) {
4296
497
  return loadShardingFile(uri, cwd).then((res)=>(spinner.text = `loaded "${uri}"`, res));
4297
498
  }
4298
- var package_namespaceObject = JSON.parse('{"name":"@rsdoctor/cli","version":"1.5.6","repository":{"type":"git","url":"https://github.com/web-infra-dev/rsdoctor","directory":"packages/cli"},"bin":{"rsdoctor":"./bin/rsdoctor"},"files":["bin","dist"],"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","default":"./dist/index.cjs"}},"license":"MIT","main":"dist/index.js","types":"dist/index.d.ts","scripts":{"dev":"npm run start","build":"rslib build","start":"rslib build -w","test":"rstest run"},"type":"module","dependencies":{"ora":"^5.4.1","@rsdoctor/sdk":"workspace:*","@rsdoctor/types":"workspace:*","@rsdoctor/utils":"workspace:*","@rsdoctor/graph":"workspace:*"},"devDependencies":{"@rsdoctor/client":"workspace:*","cac":"^7.0.0","typescript":"^5.9.2","axios":"^1.13.6","picocolors":"^1.1.1"},"peerDependencies":{"@rsdoctor/client":"workspace:*"},"publishConfig":{"access":"public","registry":"https://registry.npmjs.org/"}}');
499
+ var package_namespaceObject = JSON.parse('{"name":"@rsdoctor/cli","version":"1.5.8","repository":{"type":"git","url":"https://github.com/web-infra-dev/rsdoctor","directory":"packages/cli"},"bin":{"rsdoctor":"./bin/rsdoctor"},"files":["bin","dist"],"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","default":"./dist/index.cjs"}},"license":"MIT","main":"dist/index.js","types":"dist/index.d.ts","scripts":{"dev":"npm run start","build":"rslib build","start":"rslib build -w","test":"rstest run"},"type":"module","dependencies":{"ora":"^5.4.1","@rsdoctor/sdk":"workspace:*","@rsdoctor/types":"workspace:*","@rsdoctor/utils":"workspace:*","@rsdoctor/graph":"workspace:*"},"devDependencies":{"@rsdoctor/client":"workspace:*","cac":"^7.0.0","typescript":"^5.9.2","picocolors":"^1.1.1"},"peerDependencies":{"@rsdoctor/client":"workspace:*"},"publishConfig":{"access":"public","registry":"https://registry.npmjs.org/"}}');
4299
500
  let constants_bin = Object.keys(package_namespaceObject.bin)[0], analyze = enhanceCommand(({ cwd, name, bin })=>({
4300
501
  command: "analyze",
4301
502
  description: `
@@ -4335,8 +536,8 @@ example: ${bin} analyze --profile "${types_namespaceObject.Constants.RsdoctorOut
4335
536
  }));
4336
537
  return sdk.server.proxy(types_namespaceObject.SDK.ServerAPI.API.Manifest, 'GET', ()=>manifestBuffer), open && (spinner.succeed("open browser automatically"), await sdk.server.openClientPage('homepage')), spinner.succeed(`the local url: ${(0, picocolors.cyan)(sdk.server.getClientUrl('homepage'))}`), sdk;
4337
538
  }
4338
- }));
4339
- var external_fs_ = __webpack_require__("fs"), external_fs_default = __webpack_require__.n(external_fs_);
539
+ })), external_fs_namespaceObject = require("fs");
540
+ var external_fs_default = __webpack_require__.n(external_fs_namespaceObject);
4340
541
  let external_node_module_namespaceObject = require("node:module"), bundleDiff = enhanceCommand(({ cwd, bin, name })=>({
4341
542
  command: "bundle-diff",
4342
543
  description: `
@@ -4345,9 +546,9 @@ use ${name} to open the bundle diff result in browser for analysis.
4345
546
  example: ${bin} bundle-diff --baseline="x.json" --current="x.json"
4346
547
  `.trim(),
4347
548
  options (cli) {
4348
- cli.option('--current <path>', 'the url or file path of the profile json as the current').option('--baseline <path>', 'the url or file path of the profile json as the baseline').option('--html', 'output as a standalone HTML file').option('--output <path>', 'output file path for HTML mode (default: rsdoctor-diff.html)');
549
+ cli.option('--current <path>', 'the url or file path of the profile json as the current').option('--baseline <path>', 'the url or file path of the profile json as the baseline').option('--html', 'output as a standalone HTML file').option('--json [path]', 'output as a JSON file, optionally specify file path (default: rsdoctor-diff.json)').option('--output <path>', 'output file path for HTML mode (default: rsdoctor-diff.html). For JSON output, use --json [path] to specify the file path.');
4349
550
  },
4350
- async action ({ baseline, current, open = !0, html = !1, output = 'rsdoctor-diff.html' }) {
551
+ async action ({ baseline, current, open = !0, html = !1, json = !1, output }) {
4351
552
  let baselineDataValue, currentDataValue, spinner = external_ora_default()({
4352
553
  prefixText: (0, picocolors.cyan)(`[${name}]`)
4353
554
  }).start();
@@ -4377,6 +578,16 @@ example: ${bin} bundle-diff --baseline="x.json" --current="x.json"
4377
578
  if (currentData.cloudData) spinner.text = 'load the "currentData.cloudData" instead of the "currentData.data"', currentDataValue = await common_namespaceObject.Manifest.fetchShardingFiles(currentData.cloudData, (url)=>loadShardingFileWithSpinner(url, cwd, spinner));
4378
579
  else throw spinner.fail((0, picocolors.red)(error.message)), error;
4379
580
  }
581
+ if (json && html) return spinner.fail((0, picocolors.red)('Options "--json" and "--html" cannot be used together. Please choose one.')), null;
582
+ if (json) {
583
+ spinner.text = 'Generating JSON output file...';
584
+ let outputPath = external_path_default().resolve(cwd, 'string' == typeof json ? json : output || 'rsdoctor-diff.json');
585
+ external_fs_default().mkdirSync(external_path_default().dirname(outputPath), {
586
+ recursive: !0
587
+ });
588
+ let jsonData = common_namespaceObject.Graph.getBundleDiffResult(baselineDataValue, currentDataValue);
589
+ return external_fs_default().writeFileSync(outputPath, JSON.stringify(jsonData, null, 2), 'utf-8'), spinner.succeed(`Generated JSON output file at: ${outputPath}`), null;
590
+ }
4380
591
  if (!html) {
4381
592
  spinner.text = "start server";
4382
593
  let baselineSdk = new sdk_namespaceObject.RsdoctorSDK({
@@ -4437,7 +648,7 @@ example: ${bin} bundle-diff --baseline="x.json" --current="x.json"
4437
648
  `window.${types_namespaceObject.Constants.WINDOW_RSDOCTOR_TAG}.mode = 'diff';`
4438
649
  ].map((script)=>`<script>${script}</script>`).join('\n');
4439
650
  htmlContent = htmlContent.replace('<body>', `<body>${compressTextScripts}`);
4440
- let outputPath = external_path_default().resolve(cwd, output);
651
+ let outputPath = external_path_default().resolve(cwd, output || 'rsdoctor-diff.html');
4441
652
  external_fs_default().mkdirSync(external_path_default().dirname(outputPath), {
4442
653
  recursive: !0
4443
654
  }), external_fs_default().writeFileSync(outputPath, htmlContent, 'utf-8'), spinner.succeed(`Generated standalone HTML file at: ${outputPath}`);