byt-lingxiao-ai 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2702 @@
1
+ (function webpackUniversalModuleDefinition(root, factory) {
2
+ if(typeof exports === 'object' && typeof module === 'object')
3
+ module.exports = factory();
4
+ else if(typeof define === 'function' && define.amd)
5
+ define([], factory);
6
+ else if(typeof exports === 'object')
7
+ exports["index"] = factory();
8
+ else
9
+ root["index"] = factory();
10
+ })((typeof self !== 'undefined' ? self : this), function() {
11
+ return /******/ (function() { // webpackBootstrap
12
+ /******/ "use strict";
13
+ /******/ var __webpack_modules__ = ({
14
+
15
+ /***/ 34:
16
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17
+
18
+
19
+ var isCallable = __webpack_require__(4901);
20
+
21
+ module.exports = function (it) {
22
+ return typeof it == 'object' ? it !== null : isCallable(it);
23
+ };
24
+
25
+
26
+ /***/ }),
27
+
28
+ /***/ 81:
29
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
30
+
31
+
32
+ var call = __webpack_require__(9565);
33
+ var aCallable = __webpack_require__(9306);
34
+ var anObject = __webpack_require__(8551);
35
+ var tryToString = __webpack_require__(6823);
36
+ var getIteratorMethod = __webpack_require__(851);
37
+
38
+ var $TypeError = TypeError;
39
+
40
+ module.exports = function (argument, usingIterator) {
41
+ var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
42
+ if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
43
+ throw new $TypeError(tryToString(argument) + ' is not iterable');
44
+ };
45
+
46
+
47
+ /***/ }),
48
+
49
+ /***/ 283:
50
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
51
+
52
+
53
+ var uncurryThis = __webpack_require__(9504);
54
+ var fails = __webpack_require__(9039);
55
+ var isCallable = __webpack_require__(4901);
56
+ var hasOwn = __webpack_require__(9297);
57
+ var DESCRIPTORS = __webpack_require__(3724);
58
+ var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(350).CONFIGURABLE);
59
+ var inspectSource = __webpack_require__(3706);
60
+ var InternalStateModule = __webpack_require__(1181);
61
+
62
+ var enforceInternalState = InternalStateModule.enforce;
63
+ var getInternalState = InternalStateModule.get;
64
+ var $String = String;
65
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
66
+ var defineProperty = Object.defineProperty;
67
+ var stringSlice = uncurryThis(''.slice);
68
+ var replace = uncurryThis(''.replace);
69
+ var join = uncurryThis([].join);
70
+
71
+ var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
72
+ return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
73
+ });
74
+
75
+ var TEMPLATE = String(String).split('String');
76
+
77
+ var makeBuiltIn = module.exports = function (value, name, options) {
78
+ if (stringSlice($String(name), 0, 7) === 'Symbol(') {
79
+ name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
80
+ }
81
+ if (options && options.getter) name = 'get ' + name;
82
+ if (options && options.setter) name = 'set ' + name;
83
+ if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
84
+ if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
85
+ else value.name = name;
86
+ }
87
+ if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
88
+ defineProperty(value, 'length', { value: options.arity });
89
+ }
90
+ try {
91
+ if (options && hasOwn(options, 'constructor') && options.constructor) {
92
+ if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
93
+ // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
94
+ } else if (value.prototype) value.prototype = undefined;
95
+ } catch (error) { /* empty */ }
96
+ var state = enforceInternalState(value);
97
+ if (!hasOwn(state, 'source')) {
98
+ state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
99
+ } return value;
100
+ };
101
+
102
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
103
+ // eslint-disable-next-line no-extend-native -- required
104
+ Function.prototype.toString = makeBuiltIn(function toString() {
105
+ return isCallable(this) && getInternalState(this).source || inspectSource(this);
106
+ }, 'toString');
107
+
108
+
109
+ /***/ }),
110
+
111
+ /***/ 350:
112
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
113
+
114
+
115
+ var DESCRIPTORS = __webpack_require__(3724);
116
+ var hasOwn = __webpack_require__(9297);
117
+
118
+ var FunctionPrototype = Function.prototype;
119
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
120
+ var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
121
+
122
+ var EXISTS = hasOwn(FunctionPrototype, 'name');
123
+ // additional protection from minified / mangled / dropped function names
124
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
125
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
126
+
127
+ module.exports = {
128
+ EXISTS: EXISTS,
129
+ PROPER: PROPER,
130
+ CONFIGURABLE: CONFIGURABLE
131
+ };
132
+
133
+
134
+ /***/ }),
135
+
136
+ /***/ 397:
137
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
138
+
139
+
140
+ var getBuiltIn = __webpack_require__(7751);
141
+
142
+ module.exports = getBuiltIn('document', 'documentElement');
143
+
144
+
145
+ /***/ }),
146
+
147
+ /***/ 421:
148
+ /***/ (function(module) {
149
+
150
+
151
+ module.exports = {};
152
+
153
+
154
+ /***/ }),
155
+
156
+ /***/ 616:
157
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
158
+
159
+
160
+ var fails = __webpack_require__(9039);
161
+
162
+ module.exports = !fails(function () {
163
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
164
+ var test = (function () { /* empty */ }).bind();
165
+ // eslint-disable-next-line no-prototype-builtins -- safe
166
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
167
+ });
168
+
169
+
170
+ /***/ }),
171
+
172
+ /***/ 679:
173
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
174
+
175
+
176
+ var isPrototypeOf = __webpack_require__(1625);
177
+
178
+ var $TypeError = TypeError;
179
+
180
+ module.exports = function (it, Prototype) {
181
+ if (isPrototypeOf(Prototype, it)) return it;
182
+ throw new $TypeError('Incorrect invocation');
183
+ };
184
+
185
+
186
+ /***/ }),
187
+
188
+ /***/ 741:
189
+ /***/ (function(module) {
190
+
191
+
192
+ var ceil = Math.ceil;
193
+ var floor = Math.floor;
194
+
195
+ // `Math.trunc` method
196
+ // https://tc39.es/ecma262/#sec-math.trunc
197
+ // eslint-disable-next-line es/no-math-trunc -- safe
198
+ module.exports = Math.trunc || function trunc(x) {
199
+ var n = +x;
200
+ return (n > 0 ? floor : ceil)(n);
201
+ };
202
+
203
+
204
+ /***/ }),
205
+
206
+ /***/ 757:
207
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
208
+
209
+
210
+ var getBuiltIn = __webpack_require__(7751);
211
+ var isCallable = __webpack_require__(4901);
212
+ var isPrototypeOf = __webpack_require__(1625);
213
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
214
+
215
+ var $Object = Object;
216
+
217
+ module.exports = USE_SYMBOL_AS_UID ? function (it) {
218
+ return typeof it == 'symbol';
219
+ } : function (it) {
220
+ var $Symbol = getBuiltIn('Symbol');
221
+ return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
222
+ };
223
+
224
+
225
+ /***/ }),
226
+
227
+ /***/ 851:
228
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
229
+
230
+
231
+ var classof = __webpack_require__(6955);
232
+ var getMethod = __webpack_require__(5966);
233
+ var isNullOrUndefined = __webpack_require__(4117);
234
+ var Iterators = __webpack_require__(6269);
235
+ var wellKnownSymbol = __webpack_require__(8227);
236
+
237
+ var ITERATOR = wellKnownSymbol('iterator');
238
+
239
+ module.exports = function (it) {
240
+ if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
241
+ || getMethod(it, '@@iterator')
242
+ || Iterators[classof(it)];
243
+ };
244
+
245
+
246
+ /***/ }),
247
+
248
+ /***/ 1072:
249
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
250
+
251
+
252
+ var internalObjectKeys = __webpack_require__(1828);
253
+ var enumBugKeys = __webpack_require__(8727);
254
+
255
+ // `Object.keys` method
256
+ // https://tc39.es/ecma262/#sec-object.keys
257
+ // eslint-disable-next-line es/no-object-keys -- safe
258
+ module.exports = Object.keys || function keys(O) {
259
+ return internalObjectKeys(O, enumBugKeys);
260
+ };
261
+
262
+
263
+ /***/ }),
264
+
265
+ /***/ 1181:
266
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
267
+
268
+
269
+ var NATIVE_WEAK_MAP = __webpack_require__(8622);
270
+ var globalThis = __webpack_require__(4576);
271
+ var isObject = __webpack_require__(34);
272
+ var createNonEnumerableProperty = __webpack_require__(6699);
273
+ var hasOwn = __webpack_require__(9297);
274
+ var shared = __webpack_require__(7629);
275
+ var sharedKey = __webpack_require__(6119);
276
+ var hiddenKeys = __webpack_require__(421);
277
+
278
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
279
+ var TypeError = globalThis.TypeError;
280
+ var WeakMap = globalThis.WeakMap;
281
+ var set, get, has;
282
+
283
+ var enforce = function (it) {
284
+ return has(it) ? get(it) : set(it, {});
285
+ };
286
+
287
+ var getterFor = function (TYPE) {
288
+ return function (it) {
289
+ var state;
290
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
291
+ throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
292
+ } return state;
293
+ };
294
+ };
295
+
296
+ if (NATIVE_WEAK_MAP || shared.state) {
297
+ var store = shared.state || (shared.state = new WeakMap());
298
+ /* eslint-disable no-self-assign -- prototype methods protection */
299
+ store.get = store.get;
300
+ store.has = store.has;
301
+ store.set = store.set;
302
+ /* eslint-enable no-self-assign -- prototype methods protection */
303
+ set = function (it, metadata) {
304
+ if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
305
+ metadata.facade = it;
306
+ store.set(it, metadata);
307
+ return metadata;
308
+ };
309
+ get = function (it) {
310
+ return store.get(it) || {};
311
+ };
312
+ has = function (it) {
313
+ return store.has(it);
314
+ };
315
+ } else {
316
+ var STATE = sharedKey('state');
317
+ hiddenKeys[STATE] = true;
318
+ set = function (it, metadata) {
319
+ if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
320
+ metadata.facade = it;
321
+ createNonEnumerableProperty(it, STATE, metadata);
322
+ return metadata;
323
+ };
324
+ get = function (it) {
325
+ return hasOwn(it, STATE) ? it[STATE] : {};
326
+ };
327
+ has = function (it) {
328
+ return hasOwn(it, STATE);
329
+ };
330
+ }
331
+
332
+ module.exports = {
333
+ set: set,
334
+ get: get,
335
+ has: has,
336
+ enforce: enforce,
337
+ getterFor: getterFor
338
+ };
339
+
340
+
341
+ /***/ }),
342
+
343
+ /***/ 1291:
344
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
345
+
346
+
347
+ var trunc = __webpack_require__(741);
348
+
349
+ // `ToIntegerOrInfinity` abstract operation
350
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
351
+ module.exports = function (argument) {
352
+ var number = +argument;
353
+ // eslint-disable-next-line no-self-compare -- NaN check
354
+ return number !== number || number === 0 ? 0 : trunc(number);
355
+ };
356
+
357
+
358
+ /***/ }),
359
+
360
+ /***/ 1625:
361
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
362
+
363
+
364
+ var uncurryThis = __webpack_require__(9504);
365
+
366
+ module.exports = uncurryThis({}.isPrototypeOf);
367
+
368
+
369
+ /***/ }),
370
+
371
+ /***/ 1767:
372
+ /***/ (function(module) {
373
+
374
+
375
+ // `GetIteratorDirect(obj)` abstract operation
376
+ // https://tc39.es/ecma262/#sec-getiteratordirect
377
+ module.exports = function (obj) {
378
+ return {
379
+ iterator: obj,
380
+ next: obj.next,
381
+ done: false
382
+ };
383
+ };
384
+
385
+
386
+ /***/ }),
387
+
388
+ /***/ 1828:
389
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
390
+
391
+
392
+ var uncurryThis = __webpack_require__(9504);
393
+ var hasOwn = __webpack_require__(9297);
394
+ var toIndexedObject = __webpack_require__(5397);
395
+ var indexOf = (__webpack_require__(9617).indexOf);
396
+ var hiddenKeys = __webpack_require__(421);
397
+
398
+ var push = uncurryThis([].push);
399
+
400
+ module.exports = function (object, names) {
401
+ var O = toIndexedObject(object);
402
+ var i = 0;
403
+ var result = [];
404
+ var key;
405
+ for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
406
+ // Don't enum bug & hidden keys
407
+ while (names.length > i) if (hasOwn(O, key = names[i++])) {
408
+ ~indexOf(result, key) || push(result, key);
409
+ }
410
+ return result;
411
+ };
412
+
413
+
414
+ /***/ }),
415
+
416
+ /***/ 2106:
417
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
418
+
419
+
420
+ var makeBuiltIn = __webpack_require__(283);
421
+ var defineProperty = __webpack_require__(4913);
422
+
423
+ module.exports = function (target, name, descriptor) {
424
+ if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
425
+ if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
426
+ return defineProperty.f(target, name, descriptor);
427
+ };
428
+
429
+
430
+ /***/ }),
431
+
432
+ /***/ 2140:
433
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
434
+
435
+
436
+ var wellKnownSymbol = __webpack_require__(8227);
437
+
438
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
439
+ var test = {};
440
+
441
+ test[TO_STRING_TAG] = 'z';
442
+
443
+ module.exports = String(test) === '[object z]';
444
+
445
+
446
+ /***/ }),
447
+
448
+ /***/ 2195:
449
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
450
+
451
+
452
+ var uncurryThis = __webpack_require__(9504);
453
+
454
+ var toString = uncurryThis({}.toString);
455
+ var stringSlice = uncurryThis(''.slice);
456
+
457
+ module.exports = function (it) {
458
+ return stringSlice(toString(it), 8, -1);
459
+ };
460
+
461
+
462
+ /***/ }),
463
+
464
+ /***/ 2211:
465
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
466
+
467
+
468
+ var fails = __webpack_require__(9039);
469
+
470
+ module.exports = !fails(function () {
471
+ function F() { /* empty */ }
472
+ F.prototype.constructor = null;
473
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
474
+ return Object.getPrototypeOf(new F()) !== F.prototype;
475
+ });
476
+
477
+
478
+ /***/ }),
479
+
480
+ /***/ 2360:
481
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
482
+
483
+
484
+ /* global ActiveXObject -- old IE, WSH */
485
+ var anObject = __webpack_require__(8551);
486
+ var definePropertiesModule = __webpack_require__(6801);
487
+ var enumBugKeys = __webpack_require__(8727);
488
+ var hiddenKeys = __webpack_require__(421);
489
+ var html = __webpack_require__(397);
490
+ var documentCreateElement = __webpack_require__(4055);
491
+ var sharedKey = __webpack_require__(6119);
492
+
493
+ var GT = '>';
494
+ var LT = '<';
495
+ var PROTOTYPE = 'prototype';
496
+ var SCRIPT = 'script';
497
+ var IE_PROTO = sharedKey('IE_PROTO');
498
+
499
+ var EmptyConstructor = function () { /* empty */ };
500
+
501
+ var scriptTag = function (content) {
502
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
503
+ };
504
+
505
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
506
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
507
+ activeXDocument.write(scriptTag(''));
508
+ activeXDocument.close();
509
+ var temp = activeXDocument.parentWindow.Object;
510
+ // eslint-disable-next-line no-useless-assignment -- avoid memory leak
511
+ activeXDocument = null;
512
+ return temp;
513
+ };
514
+
515
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
516
+ var NullProtoObjectViaIFrame = function () {
517
+ // Thrash, waste and sodomy: IE GC bug
518
+ var iframe = documentCreateElement('iframe');
519
+ var JS = 'java' + SCRIPT + ':';
520
+ var iframeDocument;
521
+ iframe.style.display = 'none';
522
+ html.appendChild(iframe);
523
+ // https://github.com/zloirock/core-js/issues/475
524
+ iframe.src = String(JS);
525
+ iframeDocument = iframe.contentWindow.document;
526
+ iframeDocument.open();
527
+ iframeDocument.write(scriptTag('document.F=Object'));
528
+ iframeDocument.close();
529
+ return iframeDocument.F;
530
+ };
531
+
532
+ // Check for document.domain and active x support
533
+ // No need to use active x approach when document.domain is not set
534
+ // see https://github.com/es-shims/es5-shim/issues/150
535
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
536
+ // avoid IE GC bug
537
+ var activeXDocument;
538
+ var NullProtoObject = function () {
539
+ try {
540
+ activeXDocument = new ActiveXObject('htmlfile');
541
+ } catch (error) { /* ignore */ }
542
+ NullProtoObject = typeof document != 'undefined'
543
+ ? document.domain && activeXDocument
544
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
545
+ : NullProtoObjectViaIFrame()
546
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
547
+ var length = enumBugKeys.length;
548
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
549
+ return NullProtoObject();
550
+ };
551
+
552
+ hiddenKeys[IE_PROTO] = true;
553
+
554
+ // `Object.create` method
555
+ // https://tc39.es/ecma262/#sec-object.create
556
+ // eslint-disable-next-line es/no-object-create -- safe
557
+ module.exports = Object.create || function create(O, Properties) {
558
+ var result;
559
+ if (O !== null) {
560
+ EmptyConstructor[PROTOTYPE] = anObject(O);
561
+ result = new EmptyConstructor();
562
+ EmptyConstructor[PROTOTYPE] = null;
563
+ // add "__proto__" for Object.getPrototypeOf polyfill
564
+ result[IE_PROTO] = O;
565
+ } else result = NullProtoObject();
566
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
567
+ };
568
+
569
+
570
+ /***/ }),
571
+
572
+ /***/ 2652:
573
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
574
+
575
+
576
+ var bind = __webpack_require__(6080);
577
+ var call = __webpack_require__(9565);
578
+ var anObject = __webpack_require__(8551);
579
+ var tryToString = __webpack_require__(6823);
580
+ var isArrayIteratorMethod = __webpack_require__(4209);
581
+ var lengthOfArrayLike = __webpack_require__(6198);
582
+ var isPrototypeOf = __webpack_require__(1625);
583
+ var getIterator = __webpack_require__(81);
584
+ var getIteratorMethod = __webpack_require__(851);
585
+ var iteratorClose = __webpack_require__(9539);
586
+
587
+ var $TypeError = TypeError;
588
+
589
+ var Result = function (stopped, result) {
590
+ this.stopped = stopped;
591
+ this.result = result;
592
+ };
593
+
594
+ var ResultPrototype = Result.prototype;
595
+
596
+ module.exports = function (iterable, unboundFunction, options) {
597
+ var that = options && options.that;
598
+ var AS_ENTRIES = !!(options && options.AS_ENTRIES);
599
+ var IS_RECORD = !!(options && options.IS_RECORD);
600
+ var IS_ITERATOR = !!(options && options.IS_ITERATOR);
601
+ var INTERRUPTED = !!(options && options.INTERRUPTED);
602
+ var fn = bind(unboundFunction, that);
603
+ var iterator, iterFn, index, length, result, next, step;
604
+
605
+ var stop = function (condition) {
606
+ if (iterator) iteratorClose(iterator, 'normal');
607
+ return new Result(true, condition);
608
+ };
609
+
610
+ var callFn = function (value) {
611
+ if (AS_ENTRIES) {
612
+ anObject(value);
613
+ return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
614
+ } return INTERRUPTED ? fn(value, stop) : fn(value);
615
+ };
616
+
617
+ if (IS_RECORD) {
618
+ iterator = iterable.iterator;
619
+ } else if (IS_ITERATOR) {
620
+ iterator = iterable;
621
+ } else {
622
+ iterFn = getIteratorMethod(iterable);
623
+ if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
624
+ // optimisation for array iterators
625
+ if (isArrayIteratorMethod(iterFn)) {
626
+ for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
627
+ result = callFn(iterable[index]);
628
+ if (result && isPrototypeOf(ResultPrototype, result)) return result;
629
+ } return new Result(false);
630
+ }
631
+ iterator = getIterator(iterable, iterFn);
632
+ }
633
+
634
+ next = IS_RECORD ? iterable.next : iterator.next;
635
+ while (!(step = call(next, iterator)).done) {
636
+ try {
637
+ result = callFn(step.value);
638
+ } catch (error) {
639
+ iteratorClose(iterator, 'throw', error);
640
+ }
641
+ if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
642
+ } return new Result(false);
643
+ };
644
+
645
+
646
+ /***/ }),
647
+
648
+ /***/ 2777:
649
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
650
+
651
+
652
+ var call = __webpack_require__(9565);
653
+ var isObject = __webpack_require__(34);
654
+ var isSymbol = __webpack_require__(757);
655
+ var getMethod = __webpack_require__(5966);
656
+ var ordinaryToPrimitive = __webpack_require__(4270);
657
+ var wellKnownSymbol = __webpack_require__(8227);
658
+
659
+ var $TypeError = TypeError;
660
+ var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
661
+
662
+ // `ToPrimitive` abstract operation
663
+ // https://tc39.es/ecma262/#sec-toprimitive
664
+ module.exports = function (input, pref) {
665
+ if (!isObject(input) || isSymbol(input)) return input;
666
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
667
+ var result;
668
+ if (exoticToPrim) {
669
+ if (pref === undefined) pref = 'default';
670
+ result = call(exoticToPrim, input, pref);
671
+ if (!isObject(result) || isSymbol(result)) return result;
672
+ throw new $TypeError("Can't convert object to primitive value");
673
+ }
674
+ if (pref === undefined) pref = 'number';
675
+ return ordinaryToPrimitive(input, pref);
676
+ };
677
+
678
+
679
+ /***/ }),
680
+
681
+ /***/ 2787:
682
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
683
+
684
+
685
+ var hasOwn = __webpack_require__(9297);
686
+ var isCallable = __webpack_require__(4901);
687
+ var toObject = __webpack_require__(8981);
688
+ var sharedKey = __webpack_require__(6119);
689
+ var CORRECT_PROTOTYPE_GETTER = __webpack_require__(2211);
690
+
691
+ var IE_PROTO = sharedKey('IE_PROTO');
692
+ var $Object = Object;
693
+ var ObjectPrototype = $Object.prototype;
694
+
695
+ // `Object.getPrototypeOf` method
696
+ // https://tc39.es/ecma262/#sec-object.getprototypeof
697
+ // eslint-disable-next-line es/no-object-getprototypeof -- safe
698
+ module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
699
+ var object = toObject(O);
700
+ if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
701
+ var constructor = object.constructor;
702
+ if (isCallable(constructor) && object instanceof constructor) {
703
+ return constructor.prototype;
704
+ } return object instanceof $Object ? ObjectPrototype : null;
705
+ };
706
+
707
+
708
+ /***/ }),
709
+
710
+ /***/ 2796:
711
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
712
+
713
+
714
+ var fails = __webpack_require__(9039);
715
+ var isCallable = __webpack_require__(4901);
716
+
717
+ var replacement = /#|\.prototype\./;
718
+
719
+ var isForced = function (feature, detection) {
720
+ var value = data[normalize(feature)];
721
+ return value === POLYFILL ? true
722
+ : value === NATIVE ? false
723
+ : isCallable(detection) ? fails(detection)
724
+ : !!detection;
725
+ };
726
+
727
+ var normalize = isForced.normalize = function (string) {
728
+ return String(string).replace(replacement, '.').toLowerCase();
729
+ };
730
+
731
+ var data = isForced.data = {};
732
+ var NATIVE = isForced.NATIVE = 'N';
733
+ var POLYFILL = isForced.POLYFILL = 'P';
734
+
735
+ module.exports = isForced;
736
+
737
+
738
+ /***/ }),
739
+
740
+ /***/ 2839:
741
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
742
+
743
+
744
+ var globalThis = __webpack_require__(4576);
745
+
746
+ var navigator = globalThis.navigator;
747
+ var userAgent = navigator && navigator.userAgent;
748
+
749
+ module.exports = userAgent ? String(userAgent) : '';
750
+
751
+
752
+ /***/ }),
753
+
754
+ /***/ 3392:
755
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
756
+
757
+
758
+ var uncurryThis = __webpack_require__(9504);
759
+
760
+ var id = 0;
761
+ var postfix = Math.random();
762
+ var toString = uncurryThis(1.1.toString);
763
+
764
+ module.exports = function (key) {
765
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
766
+ };
767
+
768
+
769
+ /***/ }),
770
+
771
+ /***/ 3706:
772
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
773
+
774
+
775
+ var uncurryThis = __webpack_require__(9504);
776
+ var isCallable = __webpack_require__(4901);
777
+ var store = __webpack_require__(7629);
778
+
779
+ var functionToString = uncurryThis(Function.toString);
780
+
781
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
782
+ if (!isCallable(store.inspectSource)) {
783
+ store.inspectSource = function (it) {
784
+ return functionToString(it);
785
+ };
786
+ }
787
+
788
+ module.exports = store.inspectSource;
789
+
790
+
791
+ /***/ }),
792
+
793
+ /***/ 3717:
794
+ /***/ (function(__unused_webpack_module, exports) {
795
+
796
+
797
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
798
+ exports.f = Object.getOwnPropertySymbols;
799
+
800
+
801
+ /***/ }),
802
+
803
+ /***/ 3724:
804
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
805
+
806
+
807
+ var fails = __webpack_require__(9039);
808
+
809
+ // Detect IE8's incomplete defineProperty implementation
810
+ module.exports = !fails(function () {
811
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
812
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
813
+ });
814
+
815
+
816
+ /***/ }),
817
+
818
+ /***/ 4055:
819
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
820
+
821
+
822
+ var globalThis = __webpack_require__(4576);
823
+ var isObject = __webpack_require__(34);
824
+
825
+ var document = globalThis.document;
826
+ // typeof document.createElement is 'object' in old IE
827
+ var EXISTS = isObject(document) && isObject(document.createElement);
828
+
829
+ module.exports = function (it) {
830
+ return EXISTS ? document.createElement(it) : {};
831
+ };
832
+
833
+
834
+ /***/ }),
835
+
836
+ /***/ 4117:
837
+ /***/ (function(module) {
838
+
839
+
840
+ // we can't use just `it == null` since of `document.all` special case
841
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
842
+ module.exports = function (it) {
843
+ return it === null || it === undefined;
844
+ };
845
+
846
+
847
+ /***/ }),
848
+
849
+ /***/ 4209:
850
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
851
+
852
+
853
+ var wellKnownSymbol = __webpack_require__(8227);
854
+ var Iterators = __webpack_require__(6269);
855
+
856
+ var ITERATOR = wellKnownSymbol('iterator');
857
+ var ArrayPrototype = Array.prototype;
858
+
859
+ // check on default Array iterator
860
+ module.exports = function (it) {
861
+ return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
862
+ };
863
+
864
+
865
+ /***/ }),
866
+
867
+ /***/ 4270:
868
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
869
+
870
+
871
+ var call = __webpack_require__(9565);
872
+ var isCallable = __webpack_require__(4901);
873
+ var isObject = __webpack_require__(34);
874
+
875
+ var $TypeError = TypeError;
876
+
877
+ // `OrdinaryToPrimitive` abstract operation
878
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
879
+ module.exports = function (input, pref) {
880
+ var fn, val;
881
+ if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
882
+ if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
883
+ if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
884
+ throw new $TypeError("Can't convert object to primitive value");
885
+ };
886
+
887
+
888
+ /***/ }),
889
+
890
+ /***/ 4495:
891
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
892
+
893
+
894
+ /* eslint-disable es/no-symbol -- required for testing */
895
+ var V8_VERSION = __webpack_require__(9519);
896
+ var fails = __webpack_require__(9039);
897
+ var globalThis = __webpack_require__(4576);
898
+
899
+ var $String = globalThis.String;
900
+
901
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
902
+ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
903
+ var symbol = Symbol('symbol detection');
904
+ // Chrome 38 Symbol has incorrect toString conversion
905
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
906
+ // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
907
+ // of course, fail.
908
+ return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
909
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
910
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
911
+ });
912
+
913
+
914
+ /***/ }),
915
+
916
+ /***/ 4549:
917
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
918
+
919
+
920
+ var globalThis = __webpack_require__(4576);
921
+
922
+ // https://github.com/tc39/ecma262/pull/3467
923
+ module.exports = function (METHOD_NAME, ExpectedError) {
924
+ var Iterator = globalThis.Iterator;
925
+ var IteratorPrototype = Iterator && Iterator.prototype;
926
+ var method = IteratorPrototype && IteratorPrototype[METHOD_NAME];
927
+
928
+ var CLOSED = false;
929
+
930
+ if (method) try {
931
+ method.call({
932
+ next: function () { return { done: true }; },
933
+ 'return': function () { CLOSED = true; }
934
+ }, -1);
935
+ } catch (error) {
936
+ // https://bugs.webkit.org/show_bug.cgi?id=291195
937
+ if (!(error instanceof ExpectedError)) CLOSED = false;
938
+ }
939
+
940
+ if (!CLOSED) return method;
941
+ };
942
+
943
+
944
+ /***/ }),
945
+
946
+ /***/ 4576:
947
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
948
+
949
+
950
+ var check = function (it) {
951
+ return it && it.Math === Math && it;
952
+ };
953
+
954
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
955
+ module.exports =
956
+ // eslint-disable-next-line es/no-global-this -- safe
957
+ check(typeof globalThis == 'object' && globalThis) ||
958
+ check(typeof window == 'object' && window) ||
959
+ // eslint-disable-next-line no-restricted-globals -- safe
960
+ check(typeof self == 'object' && self) ||
961
+ check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
962
+ check(typeof this == 'object' && this) ||
963
+ // eslint-disable-next-line no-new-func -- fallback
964
+ (function () { return this; })() || Function('return this')();
965
+
966
+
967
+ /***/ }),
968
+
969
+ /***/ 4659:
970
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
971
+
972
+
973
+ var DESCRIPTORS = __webpack_require__(3724);
974
+ var definePropertyModule = __webpack_require__(4913);
975
+ var createPropertyDescriptor = __webpack_require__(6980);
976
+
977
+ module.exports = function (object, key, value) {
978
+ if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
979
+ else object[key] = value;
980
+ };
981
+
982
+
983
+ /***/ }),
984
+
985
+ /***/ 4901:
986
+ /***/ (function(module) {
987
+
988
+
989
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
990
+ var documentAll = typeof document == 'object' && document.all;
991
+
992
+ // `IsCallable` abstract operation
993
+ // https://tc39.es/ecma262/#sec-iscallable
994
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
995
+ module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
996
+ return typeof argument == 'function' || argument === documentAll;
997
+ } : function (argument) {
998
+ return typeof argument == 'function';
999
+ };
1000
+
1001
+
1002
+ /***/ }),
1003
+
1004
+ /***/ 4913:
1005
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1006
+
1007
+
1008
+ var DESCRIPTORS = __webpack_require__(3724);
1009
+ var IE8_DOM_DEFINE = __webpack_require__(5917);
1010
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
1011
+ var anObject = __webpack_require__(8551);
1012
+ var toPropertyKey = __webpack_require__(6969);
1013
+
1014
+ var $TypeError = TypeError;
1015
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1016
+ var $defineProperty = Object.defineProperty;
1017
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1018
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1019
+ var ENUMERABLE = 'enumerable';
1020
+ var CONFIGURABLE = 'configurable';
1021
+ var WRITABLE = 'writable';
1022
+
1023
+ // `Object.defineProperty` method
1024
+ // https://tc39.es/ecma262/#sec-object.defineproperty
1025
+ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
1026
+ anObject(O);
1027
+ P = toPropertyKey(P);
1028
+ anObject(Attributes);
1029
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
1030
+ var current = $getOwnPropertyDescriptor(O, P);
1031
+ if (current && current[WRITABLE]) {
1032
+ O[P] = Attributes.value;
1033
+ Attributes = {
1034
+ configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
1035
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
1036
+ writable: false
1037
+ };
1038
+ }
1039
+ } return $defineProperty(O, P, Attributes);
1040
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
1041
+ anObject(O);
1042
+ P = toPropertyKey(P);
1043
+ anObject(Attributes);
1044
+ if (IE8_DOM_DEFINE) try {
1045
+ return $defineProperty(O, P, Attributes);
1046
+ } catch (error) { /* empty */ }
1047
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
1048
+ if ('value' in Attributes) O[P] = Attributes.value;
1049
+ return O;
1050
+ };
1051
+
1052
+
1053
+ /***/ }),
1054
+
1055
+ /***/ 5031:
1056
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1057
+
1058
+
1059
+ var getBuiltIn = __webpack_require__(7751);
1060
+ var uncurryThis = __webpack_require__(9504);
1061
+ var getOwnPropertyNamesModule = __webpack_require__(8480);
1062
+ var getOwnPropertySymbolsModule = __webpack_require__(3717);
1063
+ var anObject = __webpack_require__(8551);
1064
+
1065
+ var concat = uncurryThis([].concat);
1066
+
1067
+ // all object keys, includes non-enumerable and symbols
1068
+ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
1069
+ var keys = getOwnPropertyNamesModule.f(anObject(it));
1070
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1071
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
1072
+ };
1073
+
1074
+
1075
+ /***/ }),
1076
+
1077
+ /***/ 5397:
1078
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1079
+
1080
+
1081
+ // toObject with fallback for non-array-like ES3 strings
1082
+ var IndexedObject = __webpack_require__(7055);
1083
+ var requireObjectCoercible = __webpack_require__(7750);
1084
+
1085
+ module.exports = function (it) {
1086
+ return IndexedObject(requireObjectCoercible(it));
1087
+ };
1088
+
1089
+
1090
+ /***/ }),
1091
+
1092
+ /***/ 5610:
1093
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1094
+
1095
+
1096
+ var toIntegerOrInfinity = __webpack_require__(1291);
1097
+
1098
+ var max = Math.max;
1099
+ var min = Math.min;
1100
+
1101
+ // Helper for a popular repeating case of the spec:
1102
+ // Let integer be ? ToInteger(index).
1103
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
1104
+ module.exports = function (index, length) {
1105
+ var integer = toIntegerOrInfinity(index);
1106
+ return integer < 0 ? max(integer + length, 0) : min(integer, length);
1107
+ };
1108
+
1109
+
1110
+ /***/ }),
1111
+
1112
+ /***/ 5745:
1113
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1114
+
1115
+
1116
+ var store = __webpack_require__(7629);
1117
+
1118
+ module.exports = function (key, value) {
1119
+ return store[key] || (store[key] = value || {});
1120
+ };
1121
+
1122
+
1123
+ /***/ }),
1124
+
1125
+ /***/ 5917:
1126
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1127
+
1128
+
1129
+ var DESCRIPTORS = __webpack_require__(3724);
1130
+ var fails = __webpack_require__(9039);
1131
+ var createElement = __webpack_require__(4055);
1132
+
1133
+ // Thanks to IE8 for its funny defineProperty
1134
+ module.exports = !DESCRIPTORS && !fails(function () {
1135
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1136
+ return Object.defineProperty(createElement('div'), 'a', {
1137
+ get: function () { return 7; }
1138
+ }).a !== 7;
1139
+ });
1140
+
1141
+
1142
+ /***/ }),
1143
+
1144
+ /***/ 5966:
1145
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1146
+
1147
+
1148
+ var aCallable = __webpack_require__(9306);
1149
+ var isNullOrUndefined = __webpack_require__(4117);
1150
+
1151
+ // `GetMethod` abstract operation
1152
+ // https://tc39.es/ecma262/#sec-getmethod
1153
+ module.exports = function (V, P) {
1154
+ var func = V[P];
1155
+ return isNullOrUndefined(func) ? undefined : aCallable(func);
1156
+ };
1157
+
1158
+
1159
+ /***/ }),
1160
+
1161
+ /***/ 6080:
1162
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1163
+
1164
+
1165
+ var uncurryThis = __webpack_require__(7476);
1166
+ var aCallable = __webpack_require__(9306);
1167
+ var NATIVE_BIND = __webpack_require__(616);
1168
+
1169
+ var bind = uncurryThis(uncurryThis.bind);
1170
+
1171
+ // optional / simple context binding
1172
+ module.exports = function (fn, that) {
1173
+ aCallable(fn);
1174
+ return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
1175
+ return fn.apply(that, arguments);
1176
+ };
1177
+ };
1178
+
1179
+
1180
+ /***/ }),
1181
+
1182
+ /***/ 6119:
1183
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1184
+
1185
+
1186
+ var shared = __webpack_require__(5745);
1187
+ var uid = __webpack_require__(3392);
1188
+
1189
+ var keys = shared('keys');
1190
+
1191
+ module.exports = function (key) {
1192
+ return keys[key] || (keys[key] = uid(key));
1193
+ };
1194
+
1195
+
1196
+ /***/ }),
1197
+
1198
+ /***/ 6198:
1199
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1200
+
1201
+
1202
+ var toLength = __webpack_require__(8014);
1203
+
1204
+ // `LengthOfArrayLike` abstract operation
1205
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
1206
+ module.exports = function (obj) {
1207
+ return toLength(obj.length);
1208
+ };
1209
+
1210
+
1211
+ /***/ }),
1212
+
1213
+ /***/ 6269:
1214
+ /***/ (function(module) {
1215
+
1216
+
1217
+ module.exports = {};
1218
+
1219
+
1220
+ /***/ }),
1221
+
1222
+ /***/ 6395:
1223
+ /***/ (function(module) {
1224
+
1225
+
1226
+ module.exports = false;
1227
+
1228
+
1229
+ /***/ }),
1230
+
1231
+ /***/ 6518:
1232
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1233
+
1234
+
1235
+ var globalThis = __webpack_require__(4576);
1236
+ var getOwnPropertyDescriptor = (__webpack_require__(7347).f);
1237
+ var createNonEnumerableProperty = __webpack_require__(6699);
1238
+ var defineBuiltIn = __webpack_require__(6840);
1239
+ var defineGlobalProperty = __webpack_require__(9433);
1240
+ var copyConstructorProperties = __webpack_require__(7740);
1241
+ var isForced = __webpack_require__(2796);
1242
+
1243
+ /*
1244
+ options.target - name of the target object
1245
+ options.global - target is the global object
1246
+ options.stat - export as static methods of target
1247
+ options.proto - export as prototype methods of target
1248
+ options.real - real prototype method for the `pure` version
1249
+ options.forced - export even if the native feature is available
1250
+ options.bind - bind methods to the target, required for the `pure` version
1251
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
1252
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
1253
+ options.sham - add a flag to not completely full polyfills
1254
+ options.enumerable - export as enumerable property
1255
+ options.dontCallGetSet - prevent calling a getter on target
1256
+ options.name - the .name of the function if it does not match the key
1257
+ */
1258
+ module.exports = function (options, source) {
1259
+ var TARGET = options.target;
1260
+ var GLOBAL = options.global;
1261
+ var STATIC = options.stat;
1262
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1263
+ if (GLOBAL) {
1264
+ target = globalThis;
1265
+ } else if (STATIC) {
1266
+ target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
1267
+ } else {
1268
+ target = globalThis[TARGET] && globalThis[TARGET].prototype;
1269
+ }
1270
+ if (target) for (key in source) {
1271
+ sourceProperty = source[key];
1272
+ if (options.dontCallGetSet) {
1273
+ descriptor = getOwnPropertyDescriptor(target, key);
1274
+ targetProperty = descriptor && descriptor.value;
1275
+ } else targetProperty = target[key];
1276
+ FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1277
+ // contained in target
1278
+ if (!FORCED && targetProperty !== undefined) {
1279
+ if (typeof sourceProperty == typeof targetProperty) continue;
1280
+ copyConstructorProperties(sourceProperty, targetProperty);
1281
+ }
1282
+ // add a flag to not completely full polyfills
1283
+ if (options.sham || (targetProperty && targetProperty.sham)) {
1284
+ createNonEnumerableProperty(sourceProperty, 'sham', true);
1285
+ }
1286
+ defineBuiltIn(target, key, sourceProperty, options);
1287
+ }
1288
+ };
1289
+
1290
+
1291
+ /***/ }),
1292
+
1293
+ /***/ 6699:
1294
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1295
+
1296
+
1297
+ var DESCRIPTORS = __webpack_require__(3724);
1298
+ var definePropertyModule = __webpack_require__(4913);
1299
+ var createPropertyDescriptor = __webpack_require__(6980);
1300
+
1301
+ module.exports = DESCRIPTORS ? function (object, key, value) {
1302
+ return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
1303
+ } : function (object, key, value) {
1304
+ object[key] = value;
1305
+ return object;
1306
+ };
1307
+
1308
+
1309
+ /***/ }),
1310
+
1311
+ /***/ 6801:
1312
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1313
+
1314
+
1315
+ var DESCRIPTORS = __webpack_require__(3724);
1316
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
1317
+ var definePropertyModule = __webpack_require__(4913);
1318
+ var anObject = __webpack_require__(8551);
1319
+ var toIndexedObject = __webpack_require__(5397);
1320
+ var objectKeys = __webpack_require__(1072);
1321
+
1322
+ // `Object.defineProperties` method
1323
+ // https://tc39.es/ecma262/#sec-object.defineproperties
1324
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
1325
+ exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1326
+ anObject(O);
1327
+ var props = toIndexedObject(Properties);
1328
+ var keys = objectKeys(Properties);
1329
+ var length = keys.length;
1330
+ var index = 0;
1331
+ var key;
1332
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1333
+ return O;
1334
+ };
1335
+
1336
+
1337
+ /***/ }),
1338
+
1339
+ /***/ 6823:
1340
+ /***/ (function(module) {
1341
+
1342
+
1343
+ var $String = String;
1344
+
1345
+ module.exports = function (argument) {
1346
+ try {
1347
+ return $String(argument);
1348
+ } catch (error) {
1349
+ return 'Object';
1350
+ }
1351
+ };
1352
+
1353
+
1354
+ /***/ }),
1355
+
1356
+ /***/ 6840:
1357
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1358
+
1359
+
1360
+ var isCallable = __webpack_require__(4901);
1361
+ var definePropertyModule = __webpack_require__(4913);
1362
+ var makeBuiltIn = __webpack_require__(283);
1363
+ var defineGlobalProperty = __webpack_require__(9433);
1364
+
1365
+ module.exports = function (O, key, value, options) {
1366
+ if (!options) options = {};
1367
+ var simple = options.enumerable;
1368
+ var name = options.name !== undefined ? options.name : key;
1369
+ if (isCallable(value)) makeBuiltIn(value, name, options);
1370
+ if (options.global) {
1371
+ if (simple) O[key] = value;
1372
+ else defineGlobalProperty(key, value);
1373
+ } else {
1374
+ try {
1375
+ if (!options.unsafe) delete O[key];
1376
+ else if (O[key]) simple = true;
1377
+ } catch (error) { /* empty */ }
1378
+ if (simple) O[key] = value;
1379
+ else definePropertyModule.f(O, key, {
1380
+ value: value,
1381
+ enumerable: false,
1382
+ configurable: !options.nonConfigurable,
1383
+ writable: !options.nonWritable
1384
+ });
1385
+ } return O;
1386
+ };
1387
+
1388
+
1389
+ /***/ }),
1390
+
1391
+ /***/ 6955:
1392
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1393
+
1394
+
1395
+ var TO_STRING_TAG_SUPPORT = __webpack_require__(2140);
1396
+ var isCallable = __webpack_require__(4901);
1397
+ var classofRaw = __webpack_require__(2195);
1398
+ var wellKnownSymbol = __webpack_require__(8227);
1399
+
1400
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1401
+ var $Object = Object;
1402
+
1403
+ // ES3 wrong here
1404
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
1405
+
1406
+ // fallback for IE11 Script Access Denied error
1407
+ var tryGet = function (it, key) {
1408
+ try {
1409
+ return it[key];
1410
+ } catch (error) { /* empty */ }
1411
+ };
1412
+
1413
+ // getting tag from ES6+ `Object.prototype.toString`
1414
+ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1415
+ var O, tag, result;
1416
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
1417
+ // @@toStringTag case
1418
+ : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1419
+ // builtinTag case
1420
+ : CORRECT_ARGUMENTS ? classofRaw(O)
1421
+ // ES3 arguments fallback
1422
+ : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1423
+ };
1424
+
1425
+
1426
+ /***/ }),
1427
+
1428
+ /***/ 6969:
1429
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1430
+
1431
+
1432
+ var toPrimitive = __webpack_require__(2777);
1433
+ var isSymbol = __webpack_require__(757);
1434
+
1435
+ // `ToPropertyKey` abstract operation
1436
+ // https://tc39.es/ecma262/#sec-topropertykey
1437
+ module.exports = function (argument) {
1438
+ var key = toPrimitive(argument, 'string');
1439
+ return isSymbol(key) ? key : key + '';
1440
+ };
1441
+
1442
+
1443
+ /***/ }),
1444
+
1445
+ /***/ 6980:
1446
+ /***/ (function(module) {
1447
+
1448
+
1449
+ module.exports = function (bitmap, value) {
1450
+ return {
1451
+ enumerable: !(bitmap & 1),
1452
+ configurable: !(bitmap & 2),
1453
+ writable: !(bitmap & 4),
1454
+ value: value
1455
+ };
1456
+ };
1457
+
1458
+
1459
+ /***/ }),
1460
+
1461
+ /***/ 7040:
1462
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1463
+
1464
+
1465
+ /* eslint-disable es/no-symbol -- required for testing */
1466
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1467
+
1468
+ module.exports = NATIVE_SYMBOL &&
1469
+ !Symbol.sham &&
1470
+ typeof Symbol.iterator == 'symbol';
1471
+
1472
+
1473
+ /***/ }),
1474
+
1475
+ /***/ 7055:
1476
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1477
+
1478
+
1479
+ var uncurryThis = __webpack_require__(9504);
1480
+ var fails = __webpack_require__(9039);
1481
+ var classof = __webpack_require__(2195);
1482
+
1483
+ var $Object = Object;
1484
+ var split = uncurryThis(''.split);
1485
+
1486
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
1487
+ module.exports = fails(function () {
1488
+ // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
1489
+ // eslint-disable-next-line no-prototype-builtins -- safe
1490
+ return !$Object('z').propertyIsEnumerable(0);
1491
+ }) ? function (it) {
1492
+ return classof(it) === 'String' ? split(it, '') : $Object(it);
1493
+ } : $Object;
1494
+
1495
+
1496
+ /***/ }),
1497
+
1498
+ /***/ 7347:
1499
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1500
+
1501
+
1502
+ var DESCRIPTORS = __webpack_require__(3724);
1503
+ var call = __webpack_require__(9565);
1504
+ var propertyIsEnumerableModule = __webpack_require__(8773);
1505
+ var createPropertyDescriptor = __webpack_require__(6980);
1506
+ var toIndexedObject = __webpack_require__(5397);
1507
+ var toPropertyKey = __webpack_require__(6969);
1508
+ var hasOwn = __webpack_require__(9297);
1509
+ var IE8_DOM_DEFINE = __webpack_require__(5917);
1510
+
1511
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1512
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1513
+
1514
+ // `Object.getOwnPropertyDescriptor` method
1515
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
1516
+ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
1517
+ O = toIndexedObject(O);
1518
+ P = toPropertyKey(P);
1519
+ if (IE8_DOM_DEFINE) try {
1520
+ return $getOwnPropertyDescriptor(O, P);
1521
+ } catch (error) { /* empty */ }
1522
+ if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
1523
+ };
1524
+
1525
+
1526
+ /***/ }),
1527
+
1528
+ /***/ 7476:
1529
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1530
+
1531
+
1532
+ var classofRaw = __webpack_require__(2195);
1533
+ var uncurryThis = __webpack_require__(9504);
1534
+
1535
+ module.exports = function (fn) {
1536
+ // Nashorn bug:
1537
+ // https://github.com/zloirock/core-js/issues/1128
1538
+ // https://github.com/zloirock/core-js/issues/1130
1539
+ if (classofRaw(fn) === 'Function') return uncurryThis(fn);
1540
+ };
1541
+
1542
+
1543
+ /***/ }),
1544
+
1545
+ /***/ 7588:
1546
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1547
+
1548
+
1549
+ var $ = __webpack_require__(6518);
1550
+ var call = __webpack_require__(9565);
1551
+ var iterate = __webpack_require__(2652);
1552
+ var aCallable = __webpack_require__(9306);
1553
+ var anObject = __webpack_require__(8551);
1554
+ var getIteratorDirect = __webpack_require__(1767);
1555
+ var iteratorClose = __webpack_require__(9539);
1556
+ var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(4549);
1557
+
1558
+ var forEachWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('forEach', TypeError);
1559
+
1560
+ // `Iterator.prototype.forEach` method
1561
+ // https://tc39.es/ecma262/#sec-iterator.prototype.foreach
1562
+ $({ target: 'Iterator', proto: true, real: true, forced: forEachWithoutClosingOnEarlyError }, {
1563
+ forEach: function forEach(fn) {
1564
+ anObject(this);
1565
+ try {
1566
+ aCallable(fn);
1567
+ } catch (error) {
1568
+ iteratorClose(this, 'throw', error);
1569
+ }
1570
+
1571
+ if (forEachWithoutClosingOnEarlyError) return call(forEachWithoutClosingOnEarlyError, this, fn);
1572
+
1573
+ var record = getIteratorDirect(this);
1574
+ var counter = 0;
1575
+ iterate(record, function (value) {
1576
+ fn(value, counter++);
1577
+ }, { IS_RECORD: true });
1578
+ }
1579
+ });
1580
+
1581
+
1582
+ /***/ }),
1583
+
1584
+ /***/ 7629:
1585
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1586
+
1587
+
1588
+ var IS_PURE = __webpack_require__(6395);
1589
+ var globalThis = __webpack_require__(4576);
1590
+ var defineGlobalProperty = __webpack_require__(9433);
1591
+
1592
+ var SHARED = '__core-js_shared__';
1593
+ var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
1594
+
1595
+ (store.versions || (store.versions = [])).push({
1596
+ version: '3.46.0',
1597
+ mode: IS_PURE ? 'pure' : 'global',
1598
+ copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)',
1599
+ license: 'https://github.com/zloirock/core-js/blob/v3.46.0/LICENSE',
1600
+ source: 'https://github.com/zloirock/core-js'
1601
+ });
1602
+
1603
+
1604
+ /***/ }),
1605
+
1606
+ /***/ 7657:
1607
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1608
+
1609
+
1610
+ var fails = __webpack_require__(9039);
1611
+ var isCallable = __webpack_require__(4901);
1612
+ var isObject = __webpack_require__(34);
1613
+ var create = __webpack_require__(2360);
1614
+ var getPrototypeOf = __webpack_require__(2787);
1615
+ var defineBuiltIn = __webpack_require__(6840);
1616
+ var wellKnownSymbol = __webpack_require__(8227);
1617
+ var IS_PURE = __webpack_require__(6395);
1618
+
1619
+ var ITERATOR = wellKnownSymbol('iterator');
1620
+ var BUGGY_SAFARI_ITERATORS = false;
1621
+
1622
+ // `%IteratorPrototype%` object
1623
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
1624
+ var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
1625
+
1626
+ /* eslint-disable es/no-array-prototype-keys -- safe */
1627
+ if ([].keys) {
1628
+ arrayIterator = [].keys();
1629
+ // Safari 8 has buggy iterators w/o `next`
1630
+ if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
1631
+ else {
1632
+ PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
1633
+ if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
1634
+ }
1635
+ }
1636
+
1637
+ var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {
1638
+ var test = {};
1639
+ // FF44- legacy iterators case
1640
+ return IteratorPrototype[ITERATOR].call(test) !== test;
1641
+ });
1642
+
1643
+ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
1644
+ else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
1645
+
1646
+ // `%IteratorPrototype%[@@iterator]()` method
1647
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1648
+ if (!isCallable(IteratorPrototype[ITERATOR])) {
1649
+ defineBuiltIn(IteratorPrototype, ITERATOR, function () {
1650
+ return this;
1651
+ });
1652
+ }
1653
+
1654
+ module.exports = {
1655
+ IteratorPrototype: IteratorPrototype,
1656
+ BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
1657
+ };
1658
+
1659
+
1660
+ /***/ }),
1661
+
1662
+ /***/ 7740:
1663
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1664
+
1665
+
1666
+ var hasOwn = __webpack_require__(9297);
1667
+ var ownKeys = __webpack_require__(5031);
1668
+ var getOwnPropertyDescriptorModule = __webpack_require__(7347);
1669
+ var definePropertyModule = __webpack_require__(4913);
1670
+
1671
+ module.exports = function (target, source, exceptions) {
1672
+ var keys = ownKeys(source);
1673
+ var defineProperty = definePropertyModule.f;
1674
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1675
+ for (var i = 0; i < keys.length; i++) {
1676
+ var key = keys[i];
1677
+ if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
1678
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1679
+ }
1680
+ }
1681
+ };
1682
+
1683
+
1684
+ /***/ }),
1685
+
1686
+ /***/ 7750:
1687
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1688
+
1689
+
1690
+ var isNullOrUndefined = __webpack_require__(4117);
1691
+
1692
+ var $TypeError = TypeError;
1693
+
1694
+ // `RequireObjectCoercible` abstract operation
1695
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
1696
+ module.exports = function (it) {
1697
+ if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
1698
+ return it;
1699
+ };
1700
+
1701
+
1702
+ /***/ }),
1703
+
1704
+ /***/ 7751:
1705
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1706
+
1707
+
1708
+ var globalThis = __webpack_require__(4576);
1709
+ var isCallable = __webpack_require__(4901);
1710
+
1711
+ var aFunction = function (argument) {
1712
+ return isCallable(argument) ? argument : undefined;
1713
+ };
1714
+
1715
+ module.exports = function (namespace, method) {
1716
+ return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
1717
+ };
1718
+
1719
+
1720
+ /***/ }),
1721
+
1722
+ /***/ 8014:
1723
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1724
+
1725
+
1726
+ var toIntegerOrInfinity = __webpack_require__(1291);
1727
+
1728
+ var min = Math.min;
1729
+
1730
+ // `ToLength` abstract operation
1731
+ // https://tc39.es/ecma262/#sec-tolength
1732
+ module.exports = function (argument) {
1733
+ var len = toIntegerOrInfinity(argument);
1734
+ return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
1735
+ };
1736
+
1737
+
1738
+ /***/ }),
1739
+
1740
+ /***/ 8111:
1741
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1742
+
1743
+
1744
+ var $ = __webpack_require__(6518);
1745
+ var globalThis = __webpack_require__(4576);
1746
+ var anInstance = __webpack_require__(679);
1747
+ var anObject = __webpack_require__(8551);
1748
+ var isCallable = __webpack_require__(4901);
1749
+ var getPrototypeOf = __webpack_require__(2787);
1750
+ var defineBuiltInAccessor = __webpack_require__(2106);
1751
+ var createProperty = __webpack_require__(4659);
1752
+ var fails = __webpack_require__(9039);
1753
+ var hasOwn = __webpack_require__(9297);
1754
+ var wellKnownSymbol = __webpack_require__(8227);
1755
+ var IteratorPrototype = (__webpack_require__(7657).IteratorPrototype);
1756
+ var DESCRIPTORS = __webpack_require__(3724);
1757
+ var IS_PURE = __webpack_require__(6395);
1758
+
1759
+ var CONSTRUCTOR = 'constructor';
1760
+ var ITERATOR = 'Iterator';
1761
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1762
+
1763
+ var $TypeError = TypeError;
1764
+ var NativeIterator = globalThis[ITERATOR];
1765
+
1766
+ // FF56- have non-standard global helper `Iterator`
1767
+ var FORCED = IS_PURE
1768
+ || !isCallable(NativeIterator)
1769
+ || NativeIterator.prototype !== IteratorPrototype
1770
+ // FF44- non-standard `Iterator` passes previous tests
1771
+ || !fails(function () { NativeIterator({}); });
1772
+
1773
+ var IteratorConstructor = function Iterator() {
1774
+ anInstance(this, IteratorPrototype);
1775
+ if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
1776
+ };
1777
+
1778
+ var defineIteratorPrototypeAccessor = function (key, value) {
1779
+ if (DESCRIPTORS) {
1780
+ defineBuiltInAccessor(IteratorPrototype, key, {
1781
+ configurable: true,
1782
+ get: function () {
1783
+ return value;
1784
+ },
1785
+ set: function (replacement) {
1786
+ anObject(this);
1787
+ if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property");
1788
+ if (hasOwn(this, key)) this[key] = replacement;
1789
+ else createProperty(this, key, replacement);
1790
+ }
1791
+ });
1792
+ } else IteratorPrototype[key] = value;
1793
+ };
1794
+
1795
+ if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
1796
+
1797
+ if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
1798
+ defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
1799
+ }
1800
+
1801
+ IteratorConstructor.prototype = IteratorPrototype;
1802
+
1803
+ // `Iterator` constructor
1804
+ // https://tc39.es/ecma262/#sec-iterator
1805
+ $({ global: true, constructor: true, forced: FORCED }, {
1806
+ Iterator: IteratorConstructor
1807
+ });
1808
+
1809
+
1810
+ /***/ }),
1811
+
1812
+ /***/ 8227:
1813
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1814
+
1815
+
1816
+ var globalThis = __webpack_require__(4576);
1817
+ var shared = __webpack_require__(5745);
1818
+ var hasOwn = __webpack_require__(9297);
1819
+ var uid = __webpack_require__(3392);
1820
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1821
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
1822
+
1823
+ var Symbol = globalThis.Symbol;
1824
+ var WellKnownSymbolsStore = shared('wks');
1825
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
1826
+
1827
+ module.exports = function (name) {
1828
+ if (!hasOwn(WellKnownSymbolsStore, name)) {
1829
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
1830
+ ? Symbol[name]
1831
+ : createWellKnownSymbol('Symbol.' + name);
1832
+ } return WellKnownSymbolsStore[name];
1833
+ };
1834
+
1835
+
1836
+ /***/ }),
1837
+
1838
+ /***/ 8480:
1839
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1840
+
1841
+
1842
+ var internalObjectKeys = __webpack_require__(1828);
1843
+ var enumBugKeys = __webpack_require__(8727);
1844
+
1845
+ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
1846
+
1847
+ // `Object.getOwnPropertyNames` method
1848
+ // https://tc39.es/ecma262/#sec-object.getownpropertynames
1849
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
1850
+ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1851
+ return internalObjectKeys(O, hiddenKeys);
1852
+ };
1853
+
1854
+
1855
+ /***/ }),
1856
+
1857
+ /***/ 8551:
1858
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1859
+
1860
+
1861
+ var isObject = __webpack_require__(34);
1862
+
1863
+ var $String = String;
1864
+ var $TypeError = TypeError;
1865
+
1866
+ // `Assert: Type(argument) is Object`
1867
+ module.exports = function (argument) {
1868
+ if (isObject(argument)) return argument;
1869
+ throw new $TypeError($String(argument) + ' is not an object');
1870
+ };
1871
+
1872
+
1873
+ /***/ }),
1874
+
1875
+ /***/ 8622:
1876
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1877
+
1878
+
1879
+ var globalThis = __webpack_require__(4576);
1880
+ var isCallable = __webpack_require__(4901);
1881
+
1882
+ var WeakMap = globalThis.WeakMap;
1883
+
1884
+ module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
1885
+
1886
+
1887
+ /***/ }),
1888
+
1889
+ /***/ 8686:
1890
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1891
+
1892
+
1893
+ var DESCRIPTORS = __webpack_require__(3724);
1894
+ var fails = __webpack_require__(9039);
1895
+
1896
+ // V8 ~ Chrome 36-
1897
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
1898
+ module.exports = DESCRIPTORS && fails(function () {
1899
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1900
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
1901
+ value: 42,
1902
+ writable: false
1903
+ }).prototype !== 42;
1904
+ });
1905
+
1906
+
1907
+ /***/ }),
1908
+
1909
+ /***/ 8727:
1910
+ /***/ (function(module) {
1911
+
1912
+
1913
+ // IE8- don't enum bug keys
1914
+ module.exports = [
1915
+ 'constructor',
1916
+ 'hasOwnProperty',
1917
+ 'isPrototypeOf',
1918
+ 'propertyIsEnumerable',
1919
+ 'toLocaleString',
1920
+ 'toString',
1921
+ 'valueOf'
1922
+ ];
1923
+
1924
+
1925
+ /***/ }),
1926
+
1927
+ /***/ 8773:
1928
+ /***/ (function(__unused_webpack_module, exports) {
1929
+
1930
+
1931
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
1932
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1933
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1934
+
1935
+ // Nashorn ~ JDK8 bug
1936
+ var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
1937
+
1938
+ // `Object.prototype.propertyIsEnumerable` method implementation
1939
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
1940
+ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
1941
+ var descriptor = getOwnPropertyDescriptor(this, V);
1942
+ return !!descriptor && descriptor.enumerable;
1943
+ } : $propertyIsEnumerable;
1944
+
1945
+
1946
+ /***/ }),
1947
+
1948
+ /***/ 8981:
1949
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1950
+
1951
+
1952
+ var requireObjectCoercible = __webpack_require__(7750);
1953
+
1954
+ var $Object = Object;
1955
+
1956
+ // `ToObject` abstract operation
1957
+ // https://tc39.es/ecma262/#sec-toobject
1958
+ module.exports = function (argument) {
1959
+ return $Object(requireObjectCoercible(argument));
1960
+ };
1961
+
1962
+
1963
+ /***/ }),
1964
+
1965
+ /***/ 9039:
1966
+ /***/ (function(module) {
1967
+
1968
+
1969
+ module.exports = function (exec) {
1970
+ try {
1971
+ return !!exec();
1972
+ } catch (error) {
1973
+ return true;
1974
+ }
1975
+ };
1976
+
1977
+
1978
+ /***/ }),
1979
+
1980
+ /***/ 9297:
1981
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1982
+
1983
+
1984
+ var uncurryThis = __webpack_require__(9504);
1985
+ var toObject = __webpack_require__(8981);
1986
+
1987
+ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
1988
+
1989
+ // `HasOwnProperty` abstract operation
1990
+ // https://tc39.es/ecma262/#sec-hasownproperty
1991
+ // eslint-disable-next-line es/no-object-hasown -- safe
1992
+ module.exports = Object.hasOwn || function hasOwn(it, key) {
1993
+ return hasOwnProperty(toObject(it), key);
1994
+ };
1995
+
1996
+
1997
+ /***/ }),
1998
+
1999
+ /***/ 9306:
2000
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2001
+
2002
+
2003
+ var isCallable = __webpack_require__(4901);
2004
+ var tryToString = __webpack_require__(6823);
2005
+
2006
+ var $TypeError = TypeError;
2007
+
2008
+ // `Assert: IsCallable(argument) is true`
2009
+ module.exports = function (argument) {
2010
+ if (isCallable(argument)) return argument;
2011
+ throw new $TypeError(tryToString(argument) + ' is not a function');
2012
+ };
2013
+
2014
+
2015
+ /***/ }),
2016
+
2017
+ /***/ 9433:
2018
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2019
+
2020
+
2021
+ var globalThis = __webpack_require__(4576);
2022
+
2023
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
2024
+ var defineProperty = Object.defineProperty;
2025
+
2026
+ module.exports = function (key, value) {
2027
+ try {
2028
+ defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
2029
+ } catch (error) {
2030
+ globalThis[key] = value;
2031
+ } return value;
2032
+ };
2033
+
2034
+
2035
+ /***/ }),
2036
+
2037
+ /***/ 9504:
2038
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2039
+
2040
+
2041
+ var NATIVE_BIND = __webpack_require__(616);
2042
+
2043
+ var FunctionPrototype = Function.prototype;
2044
+ var call = FunctionPrototype.call;
2045
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
2046
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
2047
+
2048
+ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
2049
+ return function () {
2050
+ return call.apply(fn, arguments);
2051
+ };
2052
+ };
2053
+
2054
+
2055
+ /***/ }),
2056
+
2057
+ /***/ 9519:
2058
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2059
+
2060
+
2061
+ var globalThis = __webpack_require__(4576);
2062
+ var userAgent = __webpack_require__(2839);
2063
+
2064
+ var process = globalThis.process;
2065
+ var Deno = globalThis.Deno;
2066
+ var versions = process && process.versions || Deno && Deno.version;
2067
+ var v8 = versions && versions.v8;
2068
+ var match, version;
2069
+
2070
+ if (v8) {
2071
+ match = v8.split('.');
2072
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
2073
+ // but their correct versions are not interesting for us
2074
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
2075
+ }
2076
+
2077
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
2078
+ // so check `userAgent` even if `.v8` exists, but 0
2079
+ if (!version && userAgent) {
2080
+ match = userAgent.match(/Edge\/(\d+)/);
2081
+ if (!match || match[1] >= 74) {
2082
+ match = userAgent.match(/Chrome\/(\d+)/);
2083
+ if (match) version = +match[1];
2084
+ }
2085
+ }
2086
+
2087
+ module.exports = version;
2088
+
2089
+
2090
+ /***/ }),
2091
+
2092
+ /***/ 9539:
2093
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2094
+
2095
+
2096
+ var call = __webpack_require__(9565);
2097
+ var anObject = __webpack_require__(8551);
2098
+ var getMethod = __webpack_require__(5966);
2099
+
2100
+ module.exports = function (iterator, kind, value) {
2101
+ var innerResult, innerError;
2102
+ anObject(iterator);
2103
+ try {
2104
+ innerResult = getMethod(iterator, 'return');
2105
+ if (!innerResult) {
2106
+ if (kind === 'throw') throw value;
2107
+ return value;
2108
+ }
2109
+ innerResult = call(innerResult, iterator);
2110
+ } catch (error) {
2111
+ innerError = true;
2112
+ innerResult = error;
2113
+ }
2114
+ if (kind === 'throw') throw value;
2115
+ if (innerError) throw innerResult;
2116
+ anObject(innerResult);
2117
+ return value;
2118
+ };
2119
+
2120
+
2121
+ /***/ }),
2122
+
2123
+ /***/ 9565:
2124
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2125
+
2126
+
2127
+ var NATIVE_BIND = __webpack_require__(616);
2128
+
2129
+ var call = Function.prototype.call;
2130
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
2131
+ module.exports = NATIVE_BIND ? call.bind(call) : function () {
2132
+ return call.apply(call, arguments);
2133
+ };
2134
+
2135
+
2136
+ /***/ }),
2137
+
2138
+ /***/ 9617:
2139
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2140
+
2141
+
2142
+ var toIndexedObject = __webpack_require__(5397);
2143
+ var toAbsoluteIndex = __webpack_require__(5610);
2144
+ var lengthOfArrayLike = __webpack_require__(6198);
2145
+
2146
+ // `Array.prototype.{ indexOf, includes }` methods implementation
2147
+ var createMethod = function (IS_INCLUDES) {
2148
+ return function ($this, el, fromIndex) {
2149
+ var O = toIndexedObject($this);
2150
+ var length = lengthOfArrayLike(O);
2151
+ if (length === 0) return !IS_INCLUDES && -1;
2152
+ var index = toAbsoluteIndex(fromIndex, length);
2153
+ var value;
2154
+ // Array#includes uses SameValueZero equality algorithm
2155
+ // eslint-disable-next-line no-self-compare -- NaN check
2156
+ if (IS_INCLUDES && el !== el) while (length > index) {
2157
+ value = O[index++];
2158
+ // eslint-disable-next-line no-self-compare -- NaN check
2159
+ if (value !== value) return true;
2160
+ // Array#indexOf ignores holes, Array#includes - not
2161
+ } else for (;length > index; index++) {
2162
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
2163
+ } return !IS_INCLUDES && -1;
2164
+ };
2165
+ };
2166
+
2167
+ module.exports = {
2168
+ // `Array.prototype.includes` method
2169
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
2170
+ includes: createMethod(true),
2171
+ // `Array.prototype.indexOf` method
2172
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
2173
+ indexOf: createMethod(false)
2174
+ };
2175
+
2176
+
2177
+ /***/ })
2178
+
2179
+ /******/ });
2180
+ /************************************************************************/
2181
+ /******/ // The module cache
2182
+ /******/ var __webpack_module_cache__ = {};
2183
+ /******/
2184
+ /******/ // The require function
2185
+ /******/ function __webpack_require__(moduleId) {
2186
+ /******/ // Check if module is in cache
2187
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
2188
+ /******/ if (cachedModule !== undefined) {
2189
+ /******/ return cachedModule.exports;
2190
+ /******/ }
2191
+ /******/ // Create a new module (and put it into the cache)
2192
+ /******/ var module = __webpack_module_cache__[moduleId] = {
2193
+ /******/ // no module.id needed
2194
+ /******/ // no module.loaded needed
2195
+ /******/ exports: {}
2196
+ /******/ };
2197
+ /******/
2198
+ /******/ // Execute the module function
2199
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
2200
+ /******/
2201
+ /******/ // Return the exports of the module
2202
+ /******/ return module.exports;
2203
+ /******/ }
2204
+ /******/
2205
+ /************************************************************************/
2206
+ /******/ /* webpack/runtime/define property getters */
2207
+ /******/ !function() {
2208
+ /******/ // define getter functions for harmony exports
2209
+ /******/ __webpack_require__.d = function(exports, definition) {
2210
+ /******/ for(var key in definition) {
2211
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
2212
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
2213
+ /******/ }
2214
+ /******/ }
2215
+ /******/ };
2216
+ /******/ }();
2217
+ /******/
2218
+ /******/ /* webpack/runtime/global */
2219
+ /******/ !function() {
2220
+ /******/ __webpack_require__.g = (function() {
2221
+ /******/ if (typeof globalThis === 'object') return globalThis;
2222
+ /******/ try {
2223
+ /******/ return this || new Function('return this')();
2224
+ /******/ } catch (e) {
2225
+ /******/ if (typeof window === 'object') return window;
2226
+ /******/ }
2227
+ /******/ })();
2228
+ /******/ }();
2229
+ /******/
2230
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
2231
+ /******/ !function() {
2232
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
2233
+ /******/ }();
2234
+ /******/
2235
+ /******/ /* webpack/runtime/make namespace object */
2236
+ /******/ !function() {
2237
+ /******/ // define __esModule on exports
2238
+ /******/ __webpack_require__.r = function(exports) {
2239
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
2240
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2241
+ /******/ }
2242
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
2243
+ /******/ };
2244
+ /******/ }();
2245
+ /******/
2246
+ /******/ /* webpack/runtime/publicPath */
2247
+ /******/ !function() {
2248
+ /******/ __webpack_require__.p = "";
2249
+ /******/ }();
2250
+ /******/
2251
+ /************************************************************************/
2252
+ var __webpack_exports__ = {};
2253
+ // ESM COMPAT FLAG
2254
+ __webpack_require__.r(__webpack_exports__);
2255
+
2256
+ // EXPORTS
2257
+ __webpack_require__.d(__webpack_exports__, {
2258
+ ChatWindow: function() { return /* reexport */ ChatWindow; },
2259
+ "default": function() { return /* binding */ entry_lib; }
2260
+ });
2261
+
2262
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
2263
+ /* eslint-disable no-var */
2264
+ // This file is imported into lib/wc client bundles.
2265
+
2266
+ if (typeof window !== 'undefined') {
2267
+ var currentScript = window.document.currentScript
2268
+ if (false) // removed by dead control flow
2269
+ { var getCurrentScript; }
2270
+
2271
+ var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
2272
+ if (src) {
2273
+ __webpack_require__.p = src[1] // eslint-disable-line
2274
+ }
2275
+ }
2276
+
2277
+ // Indicate to webpack that this file can be concatenated
2278
+ /* harmony default export */ var setPublicPath = (null);
2279
+
2280
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.constructor.js
2281
+ var es_iterator_constructor = __webpack_require__(8111);
2282
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.for-each.js
2283
+ var es_iterator_for_each = __webpack_require__(7588);
2284
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/ChatWindow.vue?vue&type=template&id=1b440c14&scoped=true
2285
+ var render = function render() {
2286
+ var _vm = this,
2287
+ _c = _vm._self._c;
2288
+ return _c('div', {
2289
+ staticClass: "chat"
2290
+ }, [_c('div', {
2291
+ staticClass: "chat-ai",
2292
+ on: {
2293
+ "click": _vm.toggleWindow
2294
+ }
2295
+ }, [_c('div', {
2296
+ staticClass: "chat-ai-avater"
2297
+ }), _c('div', {
2298
+ staticClass: "chat-ai-text"
2299
+ }, [_vm._v("凌霄AI")])]), _c('div', {
2300
+ directives: [{
2301
+ name: "show",
2302
+ rawName: "v-show",
2303
+ value: _vm.visible,
2304
+ expression: "visible"
2305
+ }],
2306
+ staticClass: "chat-overlay",
2307
+ on: {
2308
+ "click": _vm.handleOverlayClick
2309
+ }
2310
+ }, [_c('div', {
2311
+ staticClass: "chat-window",
2312
+ on: {
2313
+ "click": function ($event) {
2314
+ $event.stopPropagation();
2315
+ }
2316
+ }
2317
+ }, [_c('div', {
2318
+ staticClass: "chat-window-header"
2319
+ }, [_c('div', {
2320
+ staticClass: "chat-window-header-title"
2321
+ }, [_vm._v("凌霄大模型AI对话")]), _c('div', {
2322
+ staticClass: "chat-window-header-close",
2323
+ on: {
2324
+ "click": function ($event) {
2325
+ _vm.visible = false;
2326
+ }
2327
+ }
2328
+ }, [_c('svg', {
2329
+ attrs: {
2330
+ "xmlns": "http://www.w3.org/2000/svg",
2331
+ "width": "24",
2332
+ "height": "24",
2333
+ "viewBox": "0 0 24 24",
2334
+ "fill": "none"
2335
+ }
2336
+ }, [_c('path', {
2337
+ attrs: {
2338
+ "d": "M5.50002 5.5L18.5 18.5",
2339
+ "stroke": "#4E5969",
2340
+ "stroke-width": "1.89404",
2341
+ "stroke-linecap": "round",
2342
+ "stroke-linejoin": "round"
2343
+ }
2344
+ }), _c('path', {
2345
+ attrs: {
2346
+ "d": "M5.50002 18.5L18.5 5.5",
2347
+ "stroke": "#4E5969",
2348
+ "stroke-width": "1.89404",
2349
+ "stroke-linecap": "round",
2350
+ "stroke-linejoin": "round"
2351
+ }
2352
+ })])])]), _c('div', {
2353
+ ref: "chatArea",
2354
+ staticClass: "chat-window-content scrollbar-hide"
2355
+ }, _vm._l(_vm.messages, function (message) {
2356
+ return _c('div', {
2357
+ key: message.id,
2358
+ staticClass: "chat-window-message"
2359
+ }, [message.type === 'user' ? _c('div', {
2360
+ staticClass: "chat-window-message-user"
2361
+ }, [_c('div', {
2362
+ staticClass: "user-message"
2363
+ }, [_vm._v(_vm._s(message.content))])]) : _c('div', {
2364
+ staticClass: "chat-window-message-ai"
2365
+ }, [_c('div', {
2366
+ staticClass: "ai-message"
2367
+ }, [_vm._v(_vm._s(message.content))])])]);
2368
+ }), 0), _c('div', {
2369
+ staticClass: "chat-window-footer"
2370
+ }, [_c('div', {
2371
+ staticClass: "chat-window-textarea"
2372
+ }, [_c('el-input', {
2373
+ staticClass: "chat-window-input",
2374
+ attrs: {
2375
+ "type": "textarea",
2376
+ "placeholder": "有什么我能帮您的吗?",
2377
+ "rows": "2",
2378
+ "resize": "none"
2379
+ },
2380
+ on: {
2381
+ "keydown": _vm.handleKeyDown
2382
+ },
2383
+ model: {
2384
+ value: _vm.inputMessage,
2385
+ callback: function ($$v) {
2386
+ _vm.inputMessage = $$v;
2387
+ },
2388
+ expression: "inputMessage"
2389
+ }
2390
+ }), _c('div', {
2391
+ staticClass: "chat-window-bar"
2392
+ }, [_c('div', {
2393
+ staticClass: "chat-window-send"
2394
+ }, [_c('svg', {
2395
+ attrs: {
2396
+ "xmlns": "http://www.w3.org/2000/svg",
2397
+ "width": "20",
2398
+ "height": "20",
2399
+ "viewBox": "0 0 20 20",
2400
+ "fill": "none"
2401
+ }
2402
+ }, [_c('g', {
2403
+ attrs: {
2404
+ "clip-path": "url(#clip0_640_2107)"
2405
+ }
2406
+ }, [_c('path', {
2407
+ attrs: {
2408
+ "d": "M18.6427 2.37822C19.3253 2.47432 19.8025 3.10738 19.7065 3.79002C19.6871 3.97072 19.5381 4.41327 19.5403 4.41161L14.9673 17.8079L14.9632 17.8093C14.7858 18.3838 14.212 18.7607 13.5971 18.6744C13.4173 18.6492 13.2504 18.5862 13.1055 18.4949L13.0973 18.4977L9.83449 16.3686C9.58371 16.2584 9.4276 15.9939 9.46729 15.7115C9.5154 15.3691 9.83278 15.1317 10.1751 15.1798C10.293 15.1964 10.3988 15.2448 10.4853 15.3161L13.4054 17.2314L13.4073 17.2317C13.4452 17.2566 13.4882 17.2746 13.5364 17.2814C13.6911 17.3029 13.8371 17.2052 13.8793 17.0593L18.0469 4.89796L8.27396 14.3367L7.77435 17.8916C7.72706 18.2281 7.41369 18.464 7.07727 18.4169C6.74073 18.3696 6.50469 18.0564 6.55198 17.7198L7.07633 13.9889C7.08231 13.9464 7.09382 13.9066 7.10727 13.867C7.13549 13.7645 7.19079 13.6657 7.27291 13.5866L17.0754 4.12041L2.68514 8.17767L2.68487 8.1796C2.58481 8.21873 2.50686 8.31058 2.49042 8.42643C2.47412 8.5424 2.52417 8.65007 2.6093 8.71729L2.60903 8.71922L3.28261 9.16101L3.28013 9.16461C3.47505 9.29254 3.58819 9.52563 3.55386 9.77111C3.50575 10.1134 3.18836 10.3509 2.84602 10.3028C2.75512 10.29 2.6708 10.2584 2.59833 10.2127L2.59806 10.2147L1.37843 9.42001L1.37951 9.41227C1.02215 9.14901 0.816644 8.70195 0.882687 8.23203C0.951867 7.74096 1.29791 7.35545 1.73968 7.21445L1.73995 7.21251L17.7833 2.57104C18.0287 2.41036 18.3294 2.3342 18.6427 2.37822Z",
2409
+ "fill": "#013378"
2410
+ }
2411
+ }), _c('path', {
2412
+ attrs: {
2413
+ "d": "M3.1309 10.9936C3.2178 10.5684 3.82528 10.5684 3.91218 10.9936C4.10411 11.9326 4.83794 12.6664 5.77697 12.8584C6.20213 12.9453 6.20213 13.5527 5.77697 13.6397C4.83794 13.8316 4.10411 14.5654 3.91218 15.5044C3.82528 15.9296 3.2178 15.9296 3.1309 15.5044C2.93897 14.5654 2.20513 13.8316 1.26611 13.6397C0.840944 13.5527 0.840944 12.9453 1.26611 12.8584C2.20513 12.6664 2.93897 11.9326 3.1309 10.9936Z",
2414
+ "fill": "#2B80F6"
2415
+ }
2416
+ }), _c('path', {
2417
+ attrs: {
2418
+ "d": "M6.20382 8.56242C6.25596 8.30732 6.62045 8.30732 6.67259 8.56242C6.78775 9.12583 7.22805 9.56613 7.79146 9.68129C8.04656 9.73343 8.04656 10.0979 7.79146 10.1501C7.22805 10.2652 6.78775 10.7055 6.67259 11.2689C6.62045 11.524 6.25596 11.524 6.20382 11.2689C6.08866 10.7055 5.64836 10.2652 5.08495 10.1501C4.82985 10.0979 4.82985 9.73343 5.08495 9.68129C5.64836 9.56613 6.08866 9.12583 6.20382 8.56242Z",
2419
+ "fill": "#2B80F6"
2420
+ }
2421
+ })]), _c('defs', [_c('clipPath', {
2422
+ attrs: {
2423
+ "id": "clip0_640_2107"
2424
+ }
2425
+ }, [_c('rect', {
2426
+ attrs: {
2427
+ "width": "20",
2428
+ "height": "20",
2429
+ "fill": "white"
2430
+ }
2431
+ })])])])])])], 1)])])])]);
2432
+ };
2433
+ var staticRenderFns = [];
2434
+
2435
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/ChatWindow.vue?vue&type=script&lang=js
2436
+ /* harmony default export */ var ChatWindowvue_type_script_lang_js = ({
2437
+ name: 'ChatWindow',
2438
+ props: {
2439
+ appendToBody: {
2440
+ type: Boolean,
2441
+ default: true
2442
+ }
2443
+ },
2444
+ data() {
2445
+ return {
2446
+ wsUrl: '',
2447
+ inputMessage: '',
2448
+ visible: false,
2449
+ messages: [{
2450
+ id: 1,
2451
+ type: 'user',
2452
+ sender: '',
2453
+ time: '',
2454
+ content: '你好,欢迎来到凌霄大模型AI对话。'
2455
+ }, {
2456
+ id: 2,
2457
+ type: 'ai',
2458
+ sender: 'AI',
2459
+ time: '',
2460
+ content: '欢迎来到凌霄大模型AI对话。'
2461
+ }, {
2462
+ id: 3,
2463
+ type: 'ai',
2464
+ sender: 'AI',
2465
+ time: '',
2466
+ content: '请输入您的问题。'
2467
+ }, {
2468
+ id: 4,
2469
+ type: 'user',
2470
+ sender: '用户',
2471
+ time: '',
2472
+ content: '你好,欢迎来到凌霄大模型AI对话。'
2473
+ }]
2474
+ };
2475
+ },
2476
+ mounted() {
2477
+ this.scrollToBottom();
2478
+
2479
+ // 处理append-to-body逻辑
2480
+ if (this.appendToBody) {
2481
+ this.appendToBodyHandler();
2482
+ }
2483
+ },
2484
+ beforeDestroy() {
2485
+ // 组件销毁前,如果元素被移动到body中,需要移除
2486
+ if (this.appendToBody && this.$el.parentElement === document.body) {
2487
+ document.body.removeChild(this.$el);
2488
+ }
2489
+ },
2490
+ methods: {
2491
+ initWebSocket() {},
2492
+ initAudio() {},
2493
+ handleSend() {},
2494
+ toggleWindow() {
2495
+ this.visible = !this.visible;
2496
+ },
2497
+ showWindow() {
2498
+ this.visible = true;
2499
+ },
2500
+ hideWindow() {
2501
+ this.visible = false;
2502
+ },
2503
+ scrollToBottom() {
2504
+ this.$nextTick(() => {
2505
+ const chatArea = this.$refs.chatArea;
2506
+ if (chatArea) {
2507
+ chatArea.scrollTop = chatArea.scrollHeight;
2508
+ }
2509
+ });
2510
+ },
2511
+ handleKeyDown(e) {
2512
+ if (e.key === 'Enter' && !e.shiftKey) {
2513
+ e.preventDefault();
2514
+ this.handleSend();
2515
+ }
2516
+ },
2517
+ // 添加到body的处理函数
2518
+ appendToBodyHandler() {
2519
+ // 确保DOM已经渲染完成
2520
+ this.$nextTick(() => {
2521
+ // 检查元素是否已经在body中
2522
+ if (this.$el.parentElement !== document.body) {
2523
+ // 将组件的根元素移动到body中
2524
+ document.body.appendChild(this.$el);
2525
+ }
2526
+ });
2527
+ },
2528
+ // 处理点击遮罩层事件
2529
+ handleOverlayClick() {
2530
+ this.visible = false;
2531
+ }
2532
+ },
2533
+ watch: {
2534
+ messages: {
2535
+ handler() {
2536
+ this.scrollToBottom();
2537
+ },
2538
+ deep: true
2539
+ }
2540
+ }
2541
+ });
2542
+ ;// ./components/ChatWindow.vue?vue&type=script&lang=js
2543
+ /* harmony default export */ var components_ChatWindowvue_type_script_lang_js = (ChatWindowvue_type_script_lang_js);
2544
+ ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-54.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-54.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-54.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./components/ChatWindow.vue?vue&type=style&index=0&id=1b440c14&prod&scoped=true&lang=css
2545
+ // extracted by mini-css-extract-plugin
2546
+
2547
+ ;// ./components/ChatWindow.vue?vue&type=style&index=0&id=1b440c14&prod&scoped=true&lang=css
2548
+
2549
+ ;// ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
2550
+ /* globals __VUE_SSR_CONTEXT__ */
2551
+
2552
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
2553
+ // This module is a runtime utility for cleaner component module output and will
2554
+ // be included in the final webpack user bundle.
2555
+
2556
+ function normalizeComponent(
2557
+ scriptExports,
2558
+ render,
2559
+ staticRenderFns,
2560
+ functionalTemplate,
2561
+ injectStyles,
2562
+ scopeId,
2563
+ moduleIdentifier /* server only */,
2564
+ shadowMode /* vue-cli only */
2565
+ ) {
2566
+ // Vue.extend constructor export interop
2567
+ var options =
2568
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
2569
+
2570
+ // render functions
2571
+ if (render) {
2572
+ options.render = render
2573
+ options.staticRenderFns = staticRenderFns
2574
+ options._compiled = true
2575
+ }
2576
+
2577
+ // functional template
2578
+ if (functionalTemplate) {
2579
+ options.functional = true
2580
+ }
2581
+
2582
+ // scopedId
2583
+ if (scopeId) {
2584
+ options._scopeId = 'data-v-' + scopeId
2585
+ }
2586
+
2587
+ var hook
2588
+ if (moduleIdentifier) {
2589
+ // server build
2590
+ hook = function (context) {
2591
+ // 2.3 injection
2592
+ context =
2593
+ context || // cached call
2594
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
2595
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
2596
+ // 2.2 with runInNewContext: true
2597
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
2598
+ context = __VUE_SSR_CONTEXT__
2599
+ }
2600
+ // inject component styles
2601
+ if (injectStyles) {
2602
+ injectStyles.call(this, context)
2603
+ }
2604
+ // register component module identifier for async chunk inferrence
2605
+ if (context && context._registeredComponents) {
2606
+ context._registeredComponents.add(moduleIdentifier)
2607
+ }
2608
+ }
2609
+ // used by ssr in case component is cached and beforeCreate
2610
+ // never gets called
2611
+ options._ssrRegister = hook
2612
+ } else if (injectStyles) {
2613
+ hook = shadowMode
2614
+ ? function () {
2615
+ injectStyles.call(
2616
+ this,
2617
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
2618
+ )
2619
+ }
2620
+ : injectStyles
2621
+ }
2622
+
2623
+ if (hook) {
2624
+ if (options.functional) {
2625
+ // for template-only hot-reload because in that case the render fn doesn't
2626
+ // go through the normalizer
2627
+ options._injectStyles = hook
2628
+ // register for functional component in vue file
2629
+ var originalRender = options.render
2630
+ options.render = function renderWithStyleInjection(h, context) {
2631
+ hook.call(context)
2632
+ return originalRender(h, context)
2633
+ }
2634
+ } else {
2635
+ // inject component registration as beforeCreate hook
2636
+ var existing = options.beforeCreate
2637
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
2638
+ }
2639
+ }
2640
+
2641
+ return {
2642
+ exports: scriptExports,
2643
+ options: options
2644
+ }
2645
+ }
2646
+
2647
+ ;// ./components/ChatWindow.vue
2648
+
2649
+
2650
+
2651
+ ;
2652
+
2653
+
2654
+ /* normalize component */
2655
+
2656
+ var component = normalizeComponent(
2657
+ components_ChatWindowvue_type_script_lang_js,
2658
+ render,
2659
+ staticRenderFns,
2660
+ false,
2661
+ null,
2662
+ "1b440c14",
2663
+ null
2664
+
2665
+ )
2666
+
2667
+ /* harmony default export */ var ChatWindow = (component.exports);
2668
+ ;// ./components/index.js
2669
+
2670
+
2671
+
2672
+ const components = {
2673
+ ChatWindow: ChatWindow
2674
+ };
2675
+ const install = function (Vue) {
2676
+ if (install.installed) return;
2677
+ install.installed = true;
2678
+ Object.keys(components).forEach(name => {
2679
+ Vue.component(name, components[name]);
2680
+ });
2681
+ };
2682
+
2683
+ // 自动注册
2684
+ if (typeof window !== 'undefined' && window.Vue) {
2685
+ install(window.Vue);
2686
+ }
2687
+ /* harmony default export */ var components_0 = ({
2688
+ install,
2689
+ ...components
2690
+ });
2691
+
2692
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
2693
+
2694
+
2695
+ /* harmony default export */ var entry_lib = (components_0);
2696
+
2697
+
2698
+ /******/ return __webpack_exports__;
2699
+ /******/ })()
2700
+ ;
2701
+ });
2702
+ //# sourceMappingURL=index.umd.js.map