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