client_plugin_logic_deb 1.8.364 → 1.8.366

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.
Files changed (38) hide show
  1. package/Kosi-Kaverit-kaverit.js +21 -21
  2. package/Kosi-Kodein-kodein-di.js +52 -52
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +124 -124
  4. package/Logic_Debertz-client_plugin.d.ts +6 -6
  5. package/Logic_Debertz-client_plugin.js +57 -57
  6. package/Logic_Debertz-core.js +83 -83
  7. package/Logic_Debertz-engine.js +225 -207
  8. package/Logic_Debertz-engine.js.map +1 -1
  9. package/Logic_Debertz-game_client.js +90 -90
  10. package/Logic_Debertz-game_server.js +55 -55
  11. package/Logic_Debertz-game_server.js.map +1 -1
  12. package/error-library-error.js +5 -5
  13. package/kotlin-kotlin-stdlib.js +473 -467
  14. package/kotlin-kotlin-stdlib.js.map +1 -1
  15. package/kotlinx-atomicfu.js +9 -9
  16. package/kotlinx-coroutines-core.js +110 -110
  17. package/kotlinx-coroutines-core.js.map +1 -1
  18. package/kotlinx-io-kotlinx-io-core.js +40 -40
  19. package/kotlinx-serialization-kotlinx-serialization-core.js +180 -180
  20. package/kotlinx-serialization-kotlinx-serialization-json.js +123 -123
  21. package/ktor-ktor-client-content-negotiation.js +27 -27
  22. package/ktor-ktor-client-core.js +83 -83
  23. package/ktor-ktor-client-logging.js +28 -28
  24. package/ktor-ktor-events.js +6 -6
  25. package/ktor-ktor-http.js +98 -98
  26. package/ktor-ktor-io.js +61 -61
  27. package/ktor-ktor-serialization-kotlinx-json.js +1 -1
  28. package/ktor-ktor-serialization-kotlinx.js +27 -27
  29. package/ktor-ktor-serialization.js +16 -16
  30. package/ktor-ktor-utils.js +73 -73
  31. package/ktor-ktor-websockets.js +16 -16
  32. package/package.json +1 -1
  33. package/random-library-crypto-rand.js +12 -12
  34. package/random-library-secure-random.js +8 -8
  35. package/raspberry-cardgame-lib-core.js +52 -52
  36. package/raspberry-cardgame-lib-logger.js +14 -14
  37. package/raspberry-cardgame-lib-random.js +59 -59
  38. package/uuid.js +20 -20
@@ -57,12 +57,6 @@ if (typeof Math.clz32 === 'undefined') {
57
57
  };
58
58
  }(Math.log, Math.LN2);
59
59
  }
60
- if (typeof String.prototype.startsWith === 'undefined') {
61
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
62
- position = position || 0;
63
- return this.lastIndexOf(searchString, position) === position;
64
- }});
65
- }
66
60
  if (typeof String.prototype.endsWith === 'undefined') {
67
61
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
68
62
  var subjectString = this.toString();
@@ -74,6 +68,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
74
68
  return lastIndex !== -1 && lastIndex === position;
75
69
  }});
76
70
  }
71
+ if (typeof String.prototype.startsWith === 'undefined') {
72
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
73
+ position = position || 0;
74
+ return this.lastIndexOf(searchString, position) === position;
75
+ }});
76
+ }
77
77
  //endregion
78
78
  (function (factory) {
79
79
  if (typeof define === 'function' && define.amd)
@@ -113,14 +113,14 @@ if (typeof String.prototype.endsWith === 'undefined') {
113
113
  }
114
114
  initMetadataForInterface(KtMap, 'Map');
115
115
  initMetadataForInterface(MutableIterable, 'MutableIterable');
116
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
116
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
117
117
  initMetadataForCompanion(Companion_2);
118
118
  function asJsReadonlySetView() {
119
119
  return createJsReadonlySetViewFrom(this);
120
120
  }
121
121
  initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
122
122
  initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
123
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
123
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
124
124
  initMetadataForCompanion(Companion_3);
125
125
  initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
126
126
  initMetadataForCompanion(Companion_4);
@@ -142,7 +142,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
142
142
  initMetadataForInterface(Comparator, 'Comparator');
143
143
  initMetadataForObject(Unit, 'Unit');
144
144
  initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
145
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
145
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
146
146
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
147
147
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
148
148
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
@@ -155,7 +155,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
155
155
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
156
156
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
157
157
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
158
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
158
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
159
159
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
160
160
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
161
161
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -6165,6 +6165,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
6165
6165
  Exception.call($this);
6166
6166
  return $this;
6167
6167
  }
6168
+ function Exception_init_$Create$_1(message, cause) {
6169
+ var tmp = Exception_init_$Init$_1(message, cause, objectCreate(protoOf(Exception)));
6170
+ captureStack(tmp, Exception_init_$Create$_1);
6171
+ return tmp;
6172
+ }
6168
6173
  function Exception_init_$Init$_2(cause, $this) {
6169
6174
  extendThrowable($this, VOID, cause);
6170
6175
  Exception.call($this);
@@ -16172,463 +16177,464 @@ if (typeof String.prototype.endsWith === 'undefined') {
16172
16177
  _.$_$.e1 = Exception_init_$Init$;
16173
16178
  _.$_$.f1 = Exception_init_$Init$_0;
16174
16179
  _.$_$.g1 = Exception_init_$Init$_1;
16175
- _.$_$.h1 = IllegalArgumentException_init_$Init$_2;
16176
- _.$_$.i1 = IllegalArgumentException_init_$Init$;
16177
- _.$_$.j1 = IllegalArgumentException_init_$Create$;
16178
- _.$_$.k1 = IllegalArgumentException_init_$Init$_0;
16179
- _.$_$.l1 = IllegalArgumentException_init_$Create$_0;
16180
- _.$_$.m1 = IllegalArgumentException_init_$Init$_1;
16181
- _.$_$.n1 = IllegalStateException_init_$Init$;
16182
- _.$_$.o1 = IllegalStateException_init_$Init$_0;
16183
- _.$_$.p1 = IllegalStateException_init_$Create$_0;
16184
- _.$_$.q1 = IllegalStateException_init_$Init$_1;
16185
- _.$_$.r1 = IllegalStateException_init_$Create$_1;
16186
- _.$_$.s1 = IndexOutOfBoundsException_init_$Create$;
16187
- _.$_$.t1 = IndexOutOfBoundsException_init_$Create$_0;
16188
- _.$_$.u1 = NoSuchElementException_init_$Create$;
16189
- _.$_$.v1 = NoSuchElementException_init_$Init$_0;
16190
- _.$_$.w1 = NoSuchElementException_init_$Create$_0;
16191
- _.$_$.x1 = RuntimeException_init_$Init$;
16192
- _.$_$.y1 = RuntimeException_init_$Init$_0;
16193
- _.$_$.z1 = RuntimeException_init_$Create$_0;
16194
- _.$_$.a2 = RuntimeException_init_$Init$_1;
16195
- _.$_$.b2 = RuntimeException_init_$Create$_1;
16196
- _.$_$.c2 = UnsupportedOperationException_init_$Init$;
16197
- _.$_$.d2 = UnsupportedOperationException_init_$Create$_0;
16198
- _.$_$.e2 = UnsupportedOperationException_init_$Create$_1;
16199
- _.$_$.f2 = Duration__compareTo_impl_pchp0f;
16200
- _.$_$.g2 = Duration__hashCode_impl_u4exz6;
16201
- _.$_$.h2 = _Duration___get_inWholeMilliseconds__impl__msfiry;
16202
- _.$_$.i2 = Duration__plus_impl_yu9v8f;
16203
- _.$_$.j2 = Duration__times_impl_sfuzvp;
16204
- _.$_$.k2 = Duration__toIsoString_impl_9h6wsm;
16205
- _.$_$.l2 = Duration__toString_impl_8d916b;
16206
- _.$_$.m2 = _Char___init__impl__6a9atx;
16207
- _.$_$.n2 = Char__compareTo_impl_ypi4mb;
16208
- _.$_$.o2 = Char__minus_impl_a2frrh;
16209
- _.$_$.p2 = Char__minus_impl_a2frrh_0;
16210
- _.$_$.q2 = Char__plus_impl_qi7pgj;
16211
- _.$_$.r2 = Char__rangeTo_impl_tkncvp;
16212
- _.$_$.s2 = Char__toInt_impl_vasixd;
16213
- _.$_$.t2 = toString;
16214
- _.$_$.u2 = _Result___init__impl__xyqfz8;
16215
- _.$_$.v2 = Result__exceptionOrNull_impl_p6xea9;
16216
- _.$_$.w2 = _Result___get_isFailure__impl__jpiriv;
16217
- _.$_$.x2 = _Result___get_isSuccess__impl__sndoy8;
16218
- _.$_$.y2 = _Result___get_value__impl__bjfvqg;
16219
- _.$_$.z2 = _UByte___init__impl__g9hnc4;
16220
- _.$_$.a3 = _UByte___get_data__impl__jof9qr;
16221
- _.$_$.b3 = UByte__toString_impl_v72jg;
16222
- _.$_$.c3 = _UByteArray___init__impl__ip4y9n;
16223
- _.$_$.d3 = _UByteArray___init__impl__ip4y9n_0;
16224
- _.$_$.e3 = UByteArray__get_impl_t5f3hv;
16225
- _.$_$.f3 = UByteArray__set_impl_jvcicn;
16226
- _.$_$.g3 = _UByteArray___get_size__impl__h6pkdv;
16227
- _.$_$.h3 = _UByteArray___get_storage__impl__d4kctt;
16228
- _.$_$.i3 = _UInt___init__impl__l7qpdl;
16229
- _.$_$.j3 = _UInt___get_data__impl__f0vqqw;
16230
- _.$_$.k3 = UInt__toString_impl_dbgl21;
16231
- _.$_$.l3 = _UIntArray___init__impl__ghjpc6_0;
16232
- _.$_$.m3 = _UIntArray___init__impl__ghjpc6;
16233
- _.$_$.n3 = UIntArray__get_impl_gp5kza;
16234
- _.$_$.o3 = UIntArray__set_impl_7f2zu2;
16235
- _.$_$.p3 = _UIntArray___get_size__impl__r6l8ci;
16236
- _.$_$.q3 = _UIntArray___get_storage__impl__92a0v0;
16237
- _.$_$.r3 = _ULong___init__impl__c78o9k;
16238
- _.$_$.s3 = _ULong___get_data__impl__fggpzb;
16239
- _.$_$.t3 = ULong__toString_impl_f9au7k;
16240
- _.$_$.u3 = _ULongArray___init__impl__twm1l3_0;
16241
- _.$_$.v3 = _ULongArray___init__impl__twm1l3;
16242
- _.$_$.w3 = ULongArray__get_impl_pr71q9;
16243
- _.$_$.x3 = ULongArray__set_impl_z19mvh;
16244
- _.$_$.y3 = _ULongArray___get_size__impl__ju6dtr;
16245
- _.$_$.z3 = _ULongArray___get_storage__impl__28e64j;
16246
- _.$_$.a4 = _UShort___init__impl__jigrne;
16247
- _.$_$.b4 = _UShort___get_data__impl__g0245;
16248
- _.$_$.c4 = UShort__toString_impl_edaoee;
16249
- _.$_$.d4 = _UShortArray___init__impl__9b26ef_0;
16250
- _.$_$.e4 = _UShortArray___init__impl__9b26ef;
16251
- _.$_$.f4 = UShortArray__get_impl_fnbhmx;
16252
- _.$_$.g4 = UShortArray__set_impl_6d8whp;
16253
- _.$_$.h4 = _UShortArray___get_size__impl__jqto1b;
16254
- _.$_$.i4 = _UShortArray___get_storage__impl__t2jpv5;
16255
- _.$_$.j4 = Key_instance;
16256
- _.$_$.k4 = EmptyCoroutineContext_getInstance;
16257
- _.$_$.l4 = BooleanCompanionObject_instance;
16258
- _.$_$.m4 = ByteCompanionObject_instance;
16259
- _.$_$.n4 = DoubleCompanionObject_instance;
16260
- _.$_$.o4 = FloatCompanionObject_instance;
16261
- _.$_$.p4 = IntCompanionObject_instance;
16262
- _.$_$.q4 = ShortCompanionObject_instance;
16263
- _.$_$.r4 = StringCompanionObject_instance;
16264
- _.$_$.s4 = Default_getInstance;
16265
- _.$_$.t4 = PrimitiveClasses_getInstance;
16266
- _.$_$.u4 = Companion_getInstance_19;
16267
- _.$_$.v4 = System_instance;
16268
- _.$_$.w4 = Companion_getInstance_23;
16269
- _.$_$.x4 = Companion_getInstance_24;
16270
- _.$_$.y4 = Companion_getInstance_27;
16271
- _.$_$.z4 = Companion_getInstance;
16272
- _.$_$.a5 = Companion_getInstance_4;
16273
- _.$_$.b5 = Companion_instance_26;
16274
- _.$_$.c5 = Companion_getInstance_28;
16275
- _.$_$.d5 = Companion_getInstance_29;
16276
- _.$_$.e5 = Companion_getInstance_30;
16277
- _.$_$.f5 = Companion_getInstance_31;
16278
- _.$_$.g5 = Unit_instance;
16279
- _.$_$.h5 = ArrayList;
16280
- _.$_$.i5 = Collection;
16281
- _.$_$.j5 = HashMap;
16282
- _.$_$.k5 = HashSet;
16283
- _.$_$.l5 = IndexedValue;
16284
- _.$_$.m5 = LinkedHashMap;
16285
- _.$_$.n5 = LinkedHashSet;
16286
- _.$_$.o5 = asJsReadonlyArrayView;
16287
- _.$_$.p5 = KtList;
16288
- _.$_$.q5 = Entry;
16289
- _.$_$.r5 = asJsReadonlyMapView;
16290
- _.$_$.s5 = KtMap;
16291
- _.$_$.t5 = KtMutableList;
16292
- _.$_$.u5 = KtMutableMap;
16293
- _.$_$.v5 = KtMutableSet;
16294
- _.$_$.w5 = asJsReadonlySetView;
16295
- _.$_$.x5 = KtSet;
16296
- _.$_$.y5 = addAll;
16297
- _.$_$.z5 = arrayCopy;
16298
- _.$_$.a6 = asList;
16299
- _.$_$.b6 = asReversed_0;
16300
- _.$_$.c6 = asReversed;
16301
- _.$_$.d6 = asSequence_0;
16302
- _.$_$.e6 = asSequence;
16303
- _.$_$.f6 = average;
16304
- _.$_$.g6 = binarySearch;
16305
- _.$_$.h6 = checkBuilderCapacity;
16306
- _.$_$.i6 = checkCountOverflow;
16307
- _.$_$.j6 = checkIndexOverflow;
16308
- _.$_$.k6 = collectionSizeOrDefault;
16309
- _.$_$.l6 = contains_0;
16310
- _.$_$.m6 = contentEquals;
16311
- _.$_$.n6 = contentEquals_0;
16312
- _.$_$.o6 = contentHashCode_0;
16313
- _.$_$.p6 = contentHashCode;
16314
- _.$_$.q6 = contentToString;
16315
- _.$_$.r6 = copyOf_5;
16316
- _.$_$.s6 = copyOf_3;
16317
- _.$_$.t6 = copyOf_7;
16318
- _.$_$.u6 = copyOf_0;
16319
- _.$_$.v6 = copyOf_6;
16320
- _.$_$.w6 = copyOf_1;
16321
- _.$_$.x6 = copyOf_2;
16322
- _.$_$.y6 = copyOf;
16323
- _.$_$.z6 = copyOf_4;
16324
- _.$_$.a7 = copyToArray;
16325
- _.$_$.b7 = count;
16326
- _.$_$.c7 = distinct;
16327
- _.$_$.d7 = dropLast;
16328
- _.$_$.e7 = drop;
16329
- _.$_$.f7 = emptyList;
16330
- _.$_$.g7 = emptyMap;
16331
- _.$_$.h7 = emptySet;
16332
- _.$_$.i7 = fill;
16333
- _.$_$.j7 = filterNotNull_0;
16334
- _.$_$.k7 = firstOrNull_0;
16335
- _.$_$.l7 = firstOrNull_1;
16336
- _.$_$.m7 = firstOrNull;
16337
- _.$_$.n7 = first_0;
16338
- _.$_$.o7 = first_1;
16339
- _.$_$.p7 = first;
16340
- _.$_$.q7 = flatten;
16341
- _.$_$.r7 = getOrNull;
16342
- _.$_$.s7 = getOrNull_0;
16343
- _.$_$.t7 = getValue;
16344
- _.$_$.u7 = indexOf;
16345
- _.$_$.v7 = get_indices_0;
16346
- _.$_$.w7 = get_indices;
16347
- _.$_$.x7 = get_indices_1;
16348
- _.$_$.y7 = joinToString_0;
16349
- _.$_$.z7 = joinTo_0;
16350
- _.$_$.a8 = get_lastIndex_0;
16351
- _.$_$.b8 = get_lastIndex_2;
16352
- _.$_$.c8 = get_lastIndex;
16353
- _.$_$.d8 = lastOrNull;
16354
- _.$_$.e8 = last_0;
16355
- _.$_$.f8 = last;
16356
- _.$_$.g8 = listOfNotNull_0;
16357
- _.$_$.h8 = listOfNotNull;
16358
- _.$_$.i8 = listOf;
16359
- _.$_$.j8 = listOf_0;
16360
- _.$_$.k8 = mapCapacity;
16361
- _.$_$.l8 = mapOf;
16362
- _.$_$.m8 = mapOf_0;
16363
- _.$_$.n8 = minus;
16364
- _.$_$.o8 = mutableListOf;
16365
- _.$_$.p8 = none;
16366
- _.$_$.q8 = plus_5;
16367
- _.$_$.r8 = plus_3;
16368
- _.$_$.s8 = plus_2;
16369
- _.$_$.t8 = plus_1;
16370
- _.$_$.u8 = plus_0;
16371
- _.$_$.v8 = removeFirstOrNull;
16372
- _.$_$.w8 = removeLastOrNull;
16373
- _.$_$.x8 = removeLast;
16374
- _.$_$.y8 = reversed;
16375
- _.$_$.z8 = reverse;
16376
- _.$_$.a9 = setOf;
16377
- _.$_$.b9 = setOf_0;
16378
- _.$_$.c9 = singleOrNull;
16379
- _.$_$.d9 = single_0;
16380
- _.$_$.e9 = sortWith_0;
16381
- _.$_$.f9 = sortedWith;
16382
- _.$_$.g9 = sorted;
16383
- _.$_$.h9 = sum;
16384
- _.$_$.i9 = takeLast;
16385
- _.$_$.j9 = take;
16386
- _.$_$.k9 = toBooleanArray;
16387
- _.$_$.l9 = toHashSet;
16388
- _.$_$.m9 = toList_1;
16389
- _.$_$.n9 = toList_0;
16390
- _.$_$.o9 = toList;
16391
- _.$_$.p9 = toMap_1;
16392
- _.$_$.q9 = toMap;
16393
- _.$_$.r9 = toMap_0;
16394
- _.$_$.s9 = toMutableList_0;
16395
- _.$_$.t9 = toMutableMap;
16396
- _.$_$.u9 = toMutableSet;
16397
- _.$_$.v9 = toSet_0;
16398
- _.$_$.w9 = toTypedArray;
16399
- _.$_$.x9 = withIndex;
16400
- _.$_$.y9 = zip_0;
16401
- _.$_$.z9 = zip;
16402
- _.$_$.aa = compareValuesBy;
16403
- _.$_$.ba = compareValues;
16404
- _.$_$.ca = CancellationException;
16405
- _.$_$.da = get_COROUTINE_SUSPENDED;
16406
- _.$_$.ea = createCoroutineUnintercepted;
16407
- _.$_$.fa = intercepted;
16408
- _.$_$.ga = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16409
- _.$_$.ha = AbstractCoroutineContextElement;
16410
- _.$_$.ia = AbstractCoroutineContextKey;
16411
- _.$_$.ja = get_0;
16412
- _.$_$.ka = minusKey_0;
16413
- _.$_$.la = ContinuationInterceptor;
16414
- _.$_$.ma = Continuation;
16415
- _.$_$.na = fold;
16416
- _.$_$.oa = get;
16417
- _.$_$.pa = minusKey;
16418
- _.$_$.qa = Element;
16419
- _.$_$.ra = plus;
16420
- _.$_$.sa = CoroutineImpl;
16421
- _.$_$.ta = startCoroutine;
16422
- _.$_$.ua = enumEntries;
16423
- _.$_$.va = println;
16424
- _.$_$.wa = get_ONE;
16425
- _.$_$.xa = add;
16426
- _.$_$.ya = bitwiseAnd;
16427
- _.$_$.za = bitwiseOr;
16428
- _.$_$.ab = bitwiseXor;
16429
- _.$_$.bb = compare;
16430
- _.$_$.cb = convertToByte;
16431
- _.$_$.db = convertToInt;
16432
- _.$_$.eb = convertToShort;
16433
- _.$_$.fb = divide;
16434
- _.$_$.gb = equalsLong;
16435
- _.$_$.hb = fromInt;
16436
- _.$_$.ib = invert;
16437
- _.$_$.jb = modulo;
16438
- _.$_$.kb = multiply;
16439
- _.$_$.lb = negate;
16440
- _.$_$.mb = numberToLong;
16441
- _.$_$.nb = shiftLeft;
16442
- _.$_$.ob = shiftRightUnsigned;
16443
- _.$_$.pb = shiftRight;
16444
- _.$_$.qb = subtract;
16445
- _.$_$.rb = toNumber;
16446
- _.$_$.sb = FunctionAdapter;
16447
- _.$_$.tb = anyToString;
16448
- _.$_$.ub = arrayIterator;
16449
- _.$_$.vb = booleanArray;
16450
- _.$_$.wb = captureStack;
16451
- _.$_$.xb = charArrayOf;
16452
- _.$_$.yb = charArray;
16453
- _.$_$.zb = charCodeAt;
16454
- _.$_$.ac = charSequenceGet;
16455
- _.$_$.bc = charSequenceLength;
16456
- _.$_$.cc = charSequenceSubSequence;
16457
- _.$_$.dc = compareTo;
16458
- _.$_$.ec = defineProp;
16459
- _.$_$.fc = equals;
16460
- _.$_$.gc = extendThrowable;
16461
- _.$_$.hc = getBooleanHashCode;
16462
- _.$_$.ic = getNumberHashCode;
16463
- _.$_$.jc = getPropertyCallableRef;
16464
- _.$_$.kc = getStringHashCode;
16465
- _.$_$.lc = hashCode_0;
16466
- _.$_$.mc = initMetadataForClass;
16467
- _.$_$.nc = initMetadataForCompanion;
16468
- _.$_$.oc = initMetadataForCoroutine;
16469
- _.$_$.pc = initMetadataForInterface;
16470
- _.$_$.qc = initMetadataForLambda;
16471
- _.$_$.rc = initMetadataForObject;
16472
- _.$_$.sc = isArray;
16473
- _.$_$.tc = isBooleanArray;
16474
- _.$_$.uc = isByteArray;
16475
- _.$_$.vc = isCharArray;
16476
- _.$_$.wc = isCharSequence;
16477
- _.$_$.xc = isDoubleArray;
16478
- _.$_$.yc = isFloatArray;
16479
- _.$_$.zc = isIntArray;
16480
- _.$_$.ad = isInterface;
16481
- _.$_$.bd = isLongArray;
16482
- _.$_$.cd = isNumber;
16483
- _.$_$.dd = isShortArray;
16484
- _.$_$.ed = isSuspendFunction;
16485
- _.$_$.fd = get_js;
16486
- _.$_$.gd = longArray;
16487
- _.$_$.hd = numberRangeToNumber;
16488
- _.$_$.id = numberToByte;
16489
- _.$_$.jd = numberToChar;
16490
- _.$_$.kd = numberToInt;
16491
- _.$_$.ld = objectCreate;
16492
- _.$_$.md = protoOf;
16493
- _.$_$.nd = toByte;
16494
- _.$_$.od = toShort;
16495
- _.$_$.pd = toString_1;
16496
- _.$_$.qd = abs_0;
16497
- _.$_$.rd = roundToInt;
16498
- _.$_$.sd = round;
16499
- _.$_$.td = ClosedRange;
16500
- _.$_$.ud = coerceAtLeast;
16501
- _.$_$.vd = coerceAtLeast_0;
16502
- _.$_$.wd = coerceAtMost_0;
16503
- _.$_$.xd = coerceAtMost;
16504
- _.$_$.yd = coerceIn;
16505
- _.$_$.zd = coerceIn_0;
16506
- _.$_$.ae = contains_5;
16507
- _.$_$.be = downTo;
16508
- _.$_$.ce = step;
16509
- _.$_$.de = until;
16510
- _.$_$.ee = createInvariantKTypeProjection;
16511
- _.$_$.fe = createKType;
16512
- _.$_$.ge = getKClassFromExpression;
16513
- _.$_$.he = getKClass;
16514
- _.$_$.ie = KClass;
16515
- _.$_$.je = KMutableProperty1;
16516
- _.$_$.ke = KProperty0;
16517
- _.$_$.le = KProperty1;
16518
- _.$_$.me = KTypeParameter;
16519
- _.$_$.ne = filter;
16520
- _.$_$.oe = firstOrNull_2;
16521
- _.$_$.pe = flatMap;
16522
- _.$_$.qe = mapNotNull;
16523
- _.$_$.re = map;
16524
- _.$_$.se = toList_2;
16525
- _.$_$.te = concatToString;
16526
- _.$_$.ue = contains_7;
16527
- _.$_$.ve = contains_8;
16528
- _.$_$.we = decodeToString;
16529
- _.$_$.xe = encodeToByteArray;
16530
- _.$_$.ye = endsWith_0;
16531
- _.$_$.ze = endsWith;
16532
- _.$_$.af = equals_0;
16533
- _.$_$.bf = first_2;
16534
- _.$_$.cf = indexOfAny;
16535
- _.$_$.df = indexOf_5;
16536
- _.$_$.ef = indexOf_4;
16537
- _.$_$.ff = isBlank;
16538
- _.$_$.gf = isHighSurrogate;
16539
- _.$_$.hf = isLowSurrogate;
16540
- _.$_$.if = isSurrogate;
16541
- _.$_$.jf = isWhitespace;
16542
- _.$_$.kf = get_lastIndex_3;
16543
- _.$_$.lf = lastIndexOf_0;
16544
- _.$_$.mf = last_2;
16545
- _.$_$.nf = padStart;
16546
- _.$_$.of = removePrefix;
16547
- _.$_$.pf = removeSuffix;
16548
- _.$_$.qf = repeat;
16549
- _.$_$.rf = replace;
16550
- _.$_$.sf = replace_0;
16551
- _.$_$.tf = single_2;
16552
- _.$_$.uf = split_0;
16553
- _.$_$.vf = split;
16554
- _.$_$.wf = startsWith;
16555
- _.$_$.xf = startsWith_1;
16556
- _.$_$.yf = substringAfter;
16557
- _.$_$.zf = substringBefore;
16558
- _.$_$.ag = substring_0;
16559
- _.$_$.bg = substring;
16560
- _.$_$.cg = take_0;
16561
- _.$_$.dg = toBooleanStrictOrNull;
16562
- _.$_$.eg = toDoubleOrNull;
16563
- _.$_$.fg = toDouble;
16564
- _.$_$.gg = toIntOrNull;
16565
- _.$_$.hg = toInt;
16566
- _.$_$.ig = toLongOrNull;
16567
- _.$_$.jg = toLong;
16568
- _.$_$.kg = toString_3;
16569
- _.$_$.lg = toUByte;
16570
- _.$_$.mg = toUInt;
16571
- _.$_$.ng = toULongOrNull;
16572
- _.$_$.og = toULong;
16573
- _.$_$.pg = toUShort;
16574
- _.$_$.qg = trimIndent;
16575
- _.$_$.rg = trimMargin;
16576
- _.$_$.sg = trim;
16577
- _.$_$.tg = Duration;
16578
- _.$_$.ug = Instant;
16579
- _.$_$.vg = toDuration_1;
16580
- _.$_$.wg = toDuration_0;
16581
- _.$_$.xg = toDuration;
16582
- _.$_$.yg = Uuid;
16583
- _.$_$.zg = ArithmeticException;
16584
- _.$_$.ah = Char;
16585
- _.$_$.bh = Comparable;
16586
- _.$_$.ch = Comparator;
16587
- _.$_$.dh = DeepRecursiveFunction;
16588
- _.$_$.eh = DeepRecursiveScope;
16589
- _.$_$.fh = Enum;
16590
- _.$_$.gh = Error_0;
16591
- _.$_$.hh = Exception;
16592
- _.$_$.ih = IllegalArgumentException;
16593
- _.$_$.jh = IllegalStateException;
16594
- _.$_$.kh = Long;
16595
- _.$_$.lh = NoSuchElementException;
16596
- _.$_$.mh = NotImplementedError;
16597
- _.$_$.nh = Pair;
16598
- _.$_$.oh = Result;
16599
- _.$_$.ph = RuntimeException;
16600
- _.$_$.qh = THROW_CCE;
16601
- _.$_$.rh = THROW_IAE;
16602
- _.$_$.sh = Triple;
16603
- _.$_$.th = UByteArray;
16604
- _.$_$.uh = UByte;
16605
- _.$_$.vh = UIntArray;
16606
- _.$_$.wh = UInt;
16607
- _.$_$.xh = ULongArray;
16608
- _.$_$.yh = ULong;
16609
- _.$_$.zh = UShortArray;
16610
- _.$_$.ai = UShort;
16611
- _.$_$.bi = Unit;
16612
- _.$_$.ci = UnsupportedOperationException;
16613
- _.$_$.di = addSuppressed;
16614
- _.$_$.ei = arrayOf;
16615
- _.$_$.fi = countTrailingZeroBits;
16616
- _.$_$.gi = createFailure;
16617
- _.$_$.hi = ensureNotNull;
16618
- _.$_$.ii = invoke;
16619
- _.$_$.ji = isFinite_0;
16620
- _.$_$.ki = isFinite;
16621
- _.$_$.li = isNaN_0;
16622
- _.$_$.mi = lazy;
16623
- _.$_$.ni = lazy_0;
16624
- _.$_$.oi = noWhenBranchMatchedException;
16625
- _.$_$.pi = plus_4;
16626
- _.$_$.qi = printStackTrace;
16627
- _.$_$.ri = stackTraceToString;
16628
- _.$_$.si = throwOnFailure;
16629
- _.$_$.ti = throwUninitializedPropertyAccessException;
16630
- _.$_$.ui = toString_0;
16631
- _.$_$.vi = to;
16180
+ _.$_$.h1 = Exception_init_$Create$_1;
16181
+ _.$_$.i1 = IllegalArgumentException_init_$Init$_2;
16182
+ _.$_$.j1 = IllegalArgumentException_init_$Init$;
16183
+ _.$_$.k1 = IllegalArgumentException_init_$Create$;
16184
+ _.$_$.l1 = IllegalArgumentException_init_$Init$_0;
16185
+ _.$_$.m1 = IllegalArgumentException_init_$Create$_0;
16186
+ _.$_$.n1 = IllegalArgumentException_init_$Init$_1;
16187
+ _.$_$.o1 = IllegalStateException_init_$Init$;
16188
+ _.$_$.p1 = IllegalStateException_init_$Init$_0;
16189
+ _.$_$.q1 = IllegalStateException_init_$Create$_0;
16190
+ _.$_$.r1 = IllegalStateException_init_$Init$_1;
16191
+ _.$_$.s1 = IllegalStateException_init_$Create$_1;
16192
+ _.$_$.t1 = IndexOutOfBoundsException_init_$Create$;
16193
+ _.$_$.u1 = IndexOutOfBoundsException_init_$Create$_0;
16194
+ _.$_$.v1 = NoSuchElementException_init_$Create$;
16195
+ _.$_$.w1 = NoSuchElementException_init_$Init$_0;
16196
+ _.$_$.x1 = NoSuchElementException_init_$Create$_0;
16197
+ _.$_$.y1 = RuntimeException_init_$Init$;
16198
+ _.$_$.z1 = RuntimeException_init_$Init$_0;
16199
+ _.$_$.a2 = RuntimeException_init_$Create$_0;
16200
+ _.$_$.b2 = RuntimeException_init_$Init$_1;
16201
+ _.$_$.c2 = RuntimeException_init_$Create$_1;
16202
+ _.$_$.d2 = UnsupportedOperationException_init_$Init$;
16203
+ _.$_$.e2 = UnsupportedOperationException_init_$Create$_0;
16204
+ _.$_$.f2 = UnsupportedOperationException_init_$Create$_1;
16205
+ _.$_$.g2 = Duration__compareTo_impl_pchp0f;
16206
+ _.$_$.h2 = Duration__hashCode_impl_u4exz6;
16207
+ _.$_$.i2 = _Duration___get_inWholeMilliseconds__impl__msfiry;
16208
+ _.$_$.j2 = Duration__plus_impl_yu9v8f;
16209
+ _.$_$.k2 = Duration__times_impl_sfuzvp;
16210
+ _.$_$.l2 = Duration__toIsoString_impl_9h6wsm;
16211
+ _.$_$.m2 = Duration__toString_impl_8d916b;
16212
+ _.$_$.n2 = _Char___init__impl__6a9atx;
16213
+ _.$_$.o2 = Char__compareTo_impl_ypi4mb;
16214
+ _.$_$.p2 = Char__minus_impl_a2frrh;
16215
+ _.$_$.q2 = Char__minus_impl_a2frrh_0;
16216
+ _.$_$.r2 = Char__plus_impl_qi7pgj;
16217
+ _.$_$.s2 = Char__rangeTo_impl_tkncvp;
16218
+ _.$_$.t2 = Char__toInt_impl_vasixd;
16219
+ _.$_$.u2 = toString;
16220
+ _.$_$.v2 = _Result___init__impl__xyqfz8;
16221
+ _.$_$.w2 = Result__exceptionOrNull_impl_p6xea9;
16222
+ _.$_$.x2 = _Result___get_isFailure__impl__jpiriv;
16223
+ _.$_$.y2 = _Result___get_isSuccess__impl__sndoy8;
16224
+ _.$_$.z2 = _Result___get_value__impl__bjfvqg;
16225
+ _.$_$.a3 = _UByte___init__impl__g9hnc4;
16226
+ _.$_$.b3 = _UByte___get_data__impl__jof9qr;
16227
+ _.$_$.c3 = UByte__toString_impl_v72jg;
16228
+ _.$_$.d3 = _UByteArray___init__impl__ip4y9n;
16229
+ _.$_$.e3 = _UByteArray___init__impl__ip4y9n_0;
16230
+ _.$_$.f3 = UByteArray__get_impl_t5f3hv;
16231
+ _.$_$.g3 = UByteArray__set_impl_jvcicn;
16232
+ _.$_$.h3 = _UByteArray___get_size__impl__h6pkdv;
16233
+ _.$_$.i3 = _UByteArray___get_storage__impl__d4kctt;
16234
+ _.$_$.j3 = _UInt___init__impl__l7qpdl;
16235
+ _.$_$.k3 = _UInt___get_data__impl__f0vqqw;
16236
+ _.$_$.l3 = UInt__toString_impl_dbgl21;
16237
+ _.$_$.m3 = _UIntArray___init__impl__ghjpc6_0;
16238
+ _.$_$.n3 = _UIntArray___init__impl__ghjpc6;
16239
+ _.$_$.o3 = UIntArray__get_impl_gp5kza;
16240
+ _.$_$.p3 = UIntArray__set_impl_7f2zu2;
16241
+ _.$_$.q3 = _UIntArray___get_size__impl__r6l8ci;
16242
+ _.$_$.r3 = _UIntArray___get_storage__impl__92a0v0;
16243
+ _.$_$.s3 = _ULong___init__impl__c78o9k;
16244
+ _.$_$.t3 = _ULong___get_data__impl__fggpzb;
16245
+ _.$_$.u3 = ULong__toString_impl_f9au7k;
16246
+ _.$_$.v3 = _ULongArray___init__impl__twm1l3_0;
16247
+ _.$_$.w3 = _ULongArray___init__impl__twm1l3;
16248
+ _.$_$.x3 = ULongArray__get_impl_pr71q9;
16249
+ _.$_$.y3 = ULongArray__set_impl_z19mvh;
16250
+ _.$_$.z3 = _ULongArray___get_size__impl__ju6dtr;
16251
+ _.$_$.a4 = _ULongArray___get_storage__impl__28e64j;
16252
+ _.$_$.b4 = _UShort___init__impl__jigrne;
16253
+ _.$_$.c4 = _UShort___get_data__impl__g0245;
16254
+ _.$_$.d4 = UShort__toString_impl_edaoee;
16255
+ _.$_$.e4 = _UShortArray___init__impl__9b26ef_0;
16256
+ _.$_$.f4 = _UShortArray___init__impl__9b26ef;
16257
+ _.$_$.g4 = UShortArray__get_impl_fnbhmx;
16258
+ _.$_$.h4 = UShortArray__set_impl_6d8whp;
16259
+ _.$_$.i4 = _UShortArray___get_size__impl__jqto1b;
16260
+ _.$_$.j4 = _UShortArray___get_storage__impl__t2jpv5;
16261
+ _.$_$.k4 = Key_instance;
16262
+ _.$_$.l4 = EmptyCoroutineContext_getInstance;
16263
+ _.$_$.m4 = BooleanCompanionObject_instance;
16264
+ _.$_$.n4 = ByteCompanionObject_instance;
16265
+ _.$_$.o4 = DoubleCompanionObject_instance;
16266
+ _.$_$.p4 = FloatCompanionObject_instance;
16267
+ _.$_$.q4 = IntCompanionObject_instance;
16268
+ _.$_$.r4 = ShortCompanionObject_instance;
16269
+ _.$_$.s4 = StringCompanionObject_instance;
16270
+ _.$_$.t4 = Default_getInstance;
16271
+ _.$_$.u4 = PrimitiveClasses_getInstance;
16272
+ _.$_$.v4 = Companion_getInstance_19;
16273
+ _.$_$.w4 = System_instance;
16274
+ _.$_$.x4 = Companion_getInstance_23;
16275
+ _.$_$.y4 = Companion_getInstance_24;
16276
+ _.$_$.z4 = Companion_getInstance_27;
16277
+ _.$_$.a5 = Companion_getInstance;
16278
+ _.$_$.b5 = Companion_getInstance_4;
16279
+ _.$_$.c5 = Companion_instance_26;
16280
+ _.$_$.d5 = Companion_getInstance_28;
16281
+ _.$_$.e5 = Companion_getInstance_29;
16282
+ _.$_$.f5 = Companion_getInstance_30;
16283
+ _.$_$.g5 = Companion_getInstance_31;
16284
+ _.$_$.h5 = Unit_instance;
16285
+ _.$_$.i5 = ArrayList;
16286
+ _.$_$.j5 = Collection;
16287
+ _.$_$.k5 = HashMap;
16288
+ _.$_$.l5 = HashSet;
16289
+ _.$_$.m5 = IndexedValue;
16290
+ _.$_$.n5 = LinkedHashMap;
16291
+ _.$_$.o5 = LinkedHashSet;
16292
+ _.$_$.p5 = asJsReadonlyArrayView;
16293
+ _.$_$.q5 = KtList;
16294
+ _.$_$.r5 = Entry;
16295
+ _.$_$.s5 = asJsReadonlyMapView;
16296
+ _.$_$.t5 = KtMap;
16297
+ _.$_$.u5 = KtMutableList;
16298
+ _.$_$.v5 = KtMutableMap;
16299
+ _.$_$.w5 = KtMutableSet;
16300
+ _.$_$.x5 = asJsReadonlySetView;
16301
+ _.$_$.y5 = KtSet;
16302
+ _.$_$.z5 = addAll;
16303
+ _.$_$.a6 = arrayCopy;
16304
+ _.$_$.b6 = asList;
16305
+ _.$_$.c6 = asReversed_0;
16306
+ _.$_$.d6 = asReversed;
16307
+ _.$_$.e6 = asSequence_0;
16308
+ _.$_$.f6 = asSequence;
16309
+ _.$_$.g6 = average;
16310
+ _.$_$.h6 = binarySearch;
16311
+ _.$_$.i6 = checkBuilderCapacity;
16312
+ _.$_$.j6 = checkCountOverflow;
16313
+ _.$_$.k6 = checkIndexOverflow;
16314
+ _.$_$.l6 = collectionSizeOrDefault;
16315
+ _.$_$.m6 = contains_0;
16316
+ _.$_$.n6 = contentEquals;
16317
+ _.$_$.o6 = contentEquals_0;
16318
+ _.$_$.p6 = contentHashCode_0;
16319
+ _.$_$.q6 = contentHashCode;
16320
+ _.$_$.r6 = contentToString;
16321
+ _.$_$.s6 = copyOf_5;
16322
+ _.$_$.t6 = copyOf_3;
16323
+ _.$_$.u6 = copyOf_7;
16324
+ _.$_$.v6 = copyOf_0;
16325
+ _.$_$.w6 = copyOf_6;
16326
+ _.$_$.x6 = copyOf_1;
16327
+ _.$_$.y6 = copyOf_2;
16328
+ _.$_$.z6 = copyOf;
16329
+ _.$_$.a7 = copyOf_4;
16330
+ _.$_$.b7 = copyToArray;
16331
+ _.$_$.c7 = count;
16332
+ _.$_$.d7 = distinct;
16333
+ _.$_$.e7 = dropLast;
16334
+ _.$_$.f7 = drop;
16335
+ _.$_$.g7 = emptyList;
16336
+ _.$_$.h7 = emptyMap;
16337
+ _.$_$.i7 = emptySet;
16338
+ _.$_$.j7 = fill;
16339
+ _.$_$.k7 = filterNotNull_0;
16340
+ _.$_$.l7 = firstOrNull_0;
16341
+ _.$_$.m7 = firstOrNull_1;
16342
+ _.$_$.n7 = firstOrNull;
16343
+ _.$_$.o7 = first_0;
16344
+ _.$_$.p7 = first_1;
16345
+ _.$_$.q7 = first;
16346
+ _.$_$.r7 = flatten;
16347
+ _.$_$.s7 = getOrNull;
16348
+ _.$_$.t7 = getOrNull_0;
16349
+ _.$_$.u7 = getValue;
16350
+ _.$_$.v7 = indexOf;
16351
+ _.$_$.w7 = get_indices_0;
16352
+ _.$_$.x7 = get_indices;
16353
+ _.$_$.y7 = get_indices_1;
16354
+ _.$_$.z7 = joinToString_0;
16355
+ _.$_$.a8 = joinTo_0;
16356
+ _.$_$.b8 = get_lastIndex_0;
16357
+ _.$_$.c8 = get_lastIndex_2;
16358
+ _.$_$.d8 = get_lastIndex;
16359
+ _.$_$.e8 = lastOrNull;
16360
+ _.$_$.f8 = last_0;
16361
+ _.$_$.g8 = last;
16362
+ _.$_$.h8 = listOfNotNull_0;
16363
+ _.$_$.i8 = listOfNotNull;
16364
+ _.$_$.j8 = listOf;
16365
+ _.$_$.k8 = listOf_0;
16366
+ _.$_$.l8 = mapCapacity;
16367
+ _.$_$.m8 = mapOf;
16368
+ _.$_$.n8 = mapOf_0;
16369
+ _.$_$.o8 = minus;
16370
+ _.$_$.p8 = mutableListOf;
16371
+ _.$_$.q8 = none;
16372
+ _.$_$.r8 = plus_5;
16373
+ _.$_$.s8 = plus_3;
16374
+ _.$_$.t8 = plus_2;
16375
+ _.$_$.u8 = plus_1;
16376
+ _.$_$.v8 = plus_0;
16377
+ _.$_$.w8 = removeFirstOrNull;
16378
+ _.$_$.x8 = removeLastOrNull;
16379
+ _.$_$.y8 = removeLast;
16380
+ _.$_$.z8 = reversed;
16381
+ _.$_$.a9 = reverse;
16382
+ _.$_$.b9 = setOf;
16383
+ _.$_$.c9 = setOf_0;
16384
+ _.$_$.d9 = singleOrNull;
16385
+ _.$_$.e9 = single_0;
16386
+ _.$_$.f9 = sortWith_0;
16387
+ _.$_$.g9 = sortedWith;
16388
+ _.$_$.h9 = sorted;
16389
+ _.$_$.i9 = sum;
16390
+ _.$_$.j9 = takeLast;
16391
+ _.$_$.k9 = take;
16392
+ _.$_$.l9 = toBooleanArray;
16393
+ _.$_$.m9 = toHashSet;
16394
+ _.$_$.n9 = toList_1;
16395
+ _.$_$.o9 = toList_0;
16396
+ _.$_$.p9 = toList;
16397
+ _.$_$.q9 = toMap_1;
16398
+ _.$_$.r9 = toMap;
16399
+ _.$_$.s9 = toMap_0;
16400
+ _.$_$.t9 = toMutableList_0;
16401
+ _.$_$.u9 = toMutableMap;
16402
+ _.$_$.v9 = toMutableSet;
16403
+ _.$_$.w9 = toSet_0;
16404
+ _.$_$.x9 = toTypedArray;
16405
+ _.$_$.y9 = withIndex;
16406
+ _.$_$.z9 = zip_0;
16407
+ _.$_$.aa = zip;
16408
+ _.$_$.ba = compareValuesBy;
16409
+ _.$_$.ca = compareValues;
16410
+ _.$_$.da = CancellationException;
16411
+ _.$_$.ea = get_COROUTINE_SUSPENDED;
16412
+ _.$_$.fa = createCoroutineUnintercepted;
16413
+ _.$_$.ga = intercepted;
16414
+ _.$_$.ha = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16415
+ _.$_$.ia = AbstractCoroutineContextElement;
16416
+ _.$_$.ja = AbstractCoroutineContextKey;
16417
+ _.$_$.ka = get_0;
16418
+ _.$_$.la = minusKey_0;
16419
+ _.$_$.ma = ContinuationInterceptor;
16420
+ _.$_$.na = Continuation;
16421
+ _.$_$.oa = fold;
16422
+ _.$_$.pa = get;
16423
+ _.$_$.qa = minusKey;
16424
+ _.$_$.ra = Element;
16425
+ _.$_$.sa = plus;
16426
+ _.$_$.ta = CoroutineImpl;
16427
+ _.$_$.ua = startCoroutine;
16428
+ _.$_$.va = enumEntries;
16429
+ _.$_$.wa = println;
16430
+ _.$_$.xa = get_ONE;
16431
+ _.$_$.ya = add;
16432
+ _.$_$.za = bitwiseAnd;
16433
+ _.$_$.ab = bitwiseOr;
16434
+ _.$_$.bb = bitwiseXor;
16435
+ _.$_$.cb = compare;
16436
+ _.$_$.db = convertToByte;
16437
+ _.$_$.eb = convertToInt;
16438
+ _.$_$.fb = convertToShort;
16439
+ _.$_$.gb = divide;
16440
+ _.$_$.hb = equalsLong;
16441
+ _.$_$.ib = fromInt;
16442
+ _.$_$.jb = invert;
16443
+ _.$_$.kb = modulo;
16444
+ _.$_$.lb = multiply;
16445
+ _.$_$.mb = negate;
16446
+ _.$_$.nb = numberToLong;
16447
+ _.$_$.ob = shiftLeft;
16448
+ _.$_$.pb = shiftRightUnsigned;
16449
+ _.$_$.qb = shiftRight;
16450
+ _.$_$.rb = subtract;
16451
+ _.$_$.sb = toNumber;
16452
+ _.$_$.tb = FunctionAdapter;
16453
+ _.$_$.ub = anyToString;
16454
+ _.$_$.vb = arrayIterator;
16455
+ _.$_$.wb = booleanArray;
16456
+ _.$_$.xb = captureStack;
16457
+ _.$_$.yb = charArrayOf;
16458
+ _.$_$.zb = charArray;
16459
+ _.$_$.ac = charCodeAt;
16460
+ _.$_$.bc = charSequenceGet;
16461
+ _.$_$.cc = charSequenceLength;
16462
+ _.$_$.dc = charSequenceSubSequence;
16463
+ _.$_$.ec = compareTo;
16464
+ _.$_$.fc = defineProp;
16465
+ _.$_$.gc = equals;
16466
+ _.$_$.hc = extendThrowable;
16467
+ _.$_$.ic = getBooleanHashCode;
16468
+ _.$_$.jc = getNumberHashCode;
16469
+ _.$_$.kc = getPropertyCallableRef;
16470
+ _.$_$.lc = getStringHashCode;
16471
+ _.$_$.mc = hashCode_0;
16472
+ _.$_$.nc = initMetadataForClass;
16473
+ _.$_$.oc = initMetadataForCompanion;
16474
+ _.$_$.pc = initMetadataForCoroutine;
16475
+ _.$_$.qc = initMetadataForInterface;
16476
+ _.$_$.rc = initMetadataForLambda;
16477
+ _.$_$.sc = initMetadataForObject;
16478
+ _.$_$.tc = isArray;
16479
+ _.$_$.uc = isBooleanArray;
16480
+ _.$_$.vc = isByteArray;
16481
+ _.$_$.wc = isCharArray;
16482
+ _.$_$.xc = isCharSequence;
16483
+ _.$_$.yc = isDoubleArray;
16484
+ _.$_$.zc = isFloatArray;
16485
+ _.$_$.ad = isIntArray;
16486
+ _.$_$.bd = isInterface;
16487
+ _.$_$.cd = isLongArray;
16488
+ _.$_$.dd = isNumber;
16489
+ _.$_$.ed = isShortArray;
16490
+ _.$_$.fd = isSuspendFunction;
16491
+ _.$_$.gd = get_js;
16492
+ _.$_$.hd = longArray;
16493
+ _.$_$.id = numberRangeToNumber;
16494
+ _.$_$.jd = numberToByte;
16495
+ _.$_$.kd = numberToChar;
16496
+ _.$_$.ld = numberToInt;
16497
+ _.$_$.md = objectCreate;
16498
+ _.$_$.nd = protoOf;
16499
+ _.$_$.od = toByte;
16500
+ _.$_$.pd = toShort;
16501
+ _.$_$.qd = toString_1;
16502
+ _.$_$.rd = abs_0;
16503
+ _.$_$.sd = roundToInt;
16504
+ _.$_$.td = round;
16505
+ _.$_$.ud = ClosedRange;
16506
+ _.$_$.vd = coerceAtLeast;
16507
+ _.$_$.wd = coerceAtLeast_0;
16508
+ _.$_$.xd = coerceAtMost_0;
16509
+ _.$_$.yd = coerceAtMost;
16510
+ _.$_$.zd = coerceIn;
16511
+ _.$_$.ae = coerceIn_0;
16512
+ _.$_$.be = contains_5;
16513
+ _.$_$.ce = downTo;
16514
+ _.$_$.de = step;
16515
+ _.$_$.ee = until;
16516
+ _.$_$.fe = createInvariantKTypeProjection;
16517
+ _.$_$.ge = createKType;
16518
+ _.$_$.he = getKClassFromExpression;
16519
+ _.$_$.ie = getKClass;
16520
+ _.$_$.je = KClass;
16521
+ _.$_$.ke = KMutableProperty1;
16522
+ _.$_$.le = KProperty0;
16523
+ _.$_$.me = KProperty1;
16524
+ _.$_$.ne = KTypeParameter;
16525
+ _.$_$.oe = filter;
16526
+ _.$_$.pe = firstOrNull_2;
16527
+ _.$_$.qe = flatMap;
16528
+ _.$_$.re = mapNotNull;
16529
+ _.$_$.se = map;
16530
+ _.$_$.te = toList_2;
16531
+ _.$_$.ue = concatToString;
16532
+ _.$_$.ve = contains_7;
16533
+ _.$_$.we = contains_8;
16534
+ _.$_$.xe = decodeToString;
16535
+ _.$_$.ye = encodeToByteArray;
16536
+ _.$_$.ze = endsWith_0;
16537
+ _.$_$.af = endsWith;
16538
+ _.$_$.bf = equals_0;
16539
+ _.$_$.cf = first_2;
16540
+ _.$_$.df = indexOfAny;
16541
+ _.$_$.ef = indexOf_5;
16542
+ _.$_$.ff = indexOf_4;
16543
+ _.$_$.gf = isBlank;
16544
+ _.$_$.hf = isHighSurrogate;
16545
+ _.$_$.if = isLowSurrogate;
16546
+ _.$_$.jf = isSurrogate;
16547
+ _.$_$.kf = isWhitespace;
16548
+ _.$_$.lf = get_lastIndex_3;
16549
+ _.$_$.mf = lastIndexOf_0;
16550
+ _.$_$.nf = last_2;
16551
+ _.$_$.of = padStart;
16552
+ _.$_$.pf = removePrefix;
16553
+ _.$_$.qf = removeSuffix;
16554
+ _.$_$.rf = repeat;
16555
+ _.$_$.sf = replace;
16556
+ _.$_$.tf = replace_0;
16557
+ _.$_$.uf = single_2;
16558
+ _.$_$.vf = split_0;
16559
+ _.$_$.wf = split;
16560
+ _.$_$.xf = startsWith;
16561
+ _.$_$.yf = startsWith_1;
16562
+ _.$_$.zf = substringAfter;
16563
+ _.$_$.ag = substringBefore;
16564
+ _.$_$.bg = substring_0;
16565
+ _.$_$.cg = substring;
16566
+ _.$_$.dg = take_0;
16567
+ _.$_$.eg = toBooleanStrictOrNull;
16568
+ _.$_$.fg = toDoubleOrNull;
16569
+ _.$_$.gg = toDouble;
16570
+ _.$_$.hg = toIntOrNull;
16571
+ _.$_$.ig = toInt;
16572
+ _.$_$.jg = toLongOrNull;
16573
+ _.$_$.kg = toLong;
16574
+ _.$_$.lg = toString_3;
16575
+ _.$_$.mg = toUByte;
16576
+ _.$_$.ng = toUInt;
16577
+ _.$_$.og = toULongOrNull;
16578
+ _.$_$.pg = toULong;
16579
+ _.$_$.qg = toUShort;
16580
+ _.$_$.rg = trimIndent;
16581
+ _.$_$.sg = trimMargin;
16582
+ _.$_$.tg = trim;
16583
+ _.$_$.ug = Duration;
16584
+ _.$_$.vg = Instant;
16585
+ _.$_$.wg = toDuration_1;
16586
+ _.$_$.xg = toDuration_0;
16587
+ _.$_$.yg = toDuration;
16588
+ _.$_$.zg = Uuid;
16589
+ _.$_$.ah = ArithmeticException;
16590
+ _.$_$.bh = Char;
16591
+ _.$_$.ch = Comparable;
16592
+ _.$_$.dh = Comparator;
16593
+ _.$_$.eh = DeepRecursiveFunction;
16594
+ _.$_$.fh = DeepRecursiveScope;
16595
+ _.$_$.gh = Enum;
16596
+ _.$_$.hh = Error_0;
16597
+ _.$_$.ih = Exception;
16598
+ _.$_$.jh = IllegalArgumentException;
16599
+ _.$_$.kh = IllegalStateException;
16600
+ _.$_$.lh = Long;
16601
+ _.$_$.mh = NoSuchElementException;
16602
+ _.$_$.nh = NotImplementedError;
16603
+ _.$_$.oh = Pair;
16604
+ _.$_$.ph = Result;
16605
+ _.$_$.qh = RuntimeException;
16606
+ _.$_$.rh = THROW_CCE;
16607
+ _.$_$.sh = THROW_IAE;
16608
+ _.$_$.th = Triple;
16609
+ _.$_$.uh = UByteArray;
16610
+ _.$_$.vh = UByte;
16611
+ _.$_$.wh = UIntArray;
16612
+ _.$_$.xh = UInt;
16613
+ _.$_$.yh = ULongArray;
16614
+ _.$_$.zh = ULong;
16615
+ _.$_$.ai = UShortArray;
16616
+ _.$_$.bi = UShort;
16617
+ _.$_$.ci = Unit;
16618
+ _.$_$.di = UnsupportedOperationException;
16619
+ _.$_$.ei = addSuppressed;
16620
+ _.$_$.fi = arrayOf;
16621
+ _.$_$.gi = countTrailingZeroBits;
16622
+ _.$_$.hi = createFailure;
16623
+ _.$_$.ii = ensureNotNull;
16624
+ _.$_$.ji = invoke;
16625
+ _.$_$.ki = isFinite_0;
16626
+ _.$_$.li = isFinite;
16627
+ _.$_$.mi = isNaN_0;
16628
+ _.$_$.ni = lazy;
16629
+ _.$_$.oi = lazy_0;
16630
+ _.$_$.pi = noWhenBranchMatchedException;
16631
+ _.$_$.qi = plus_4;
16632
+ _.$_$.ri = printStackTrace;
16633
+ _.$_$.si = stackTraceToString;
16634
+ _.$_$.ti = throwOnFailure;
16635
+ _.$_$.ui = throwUninitializedPropertyAccessException;
16636
+ _.$_$.vi = toString_0;
16637
+ _.$_$.wi = to;
16632
16638
  //endregion
16633
16639
  return _;
16634
16640
  }));