client_plugin_logic_deb 1.8.390 → 1.8.391

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 (36) hide show
  1. package/Kosi-Kaverit-kaverit.js +13 -13
  2. package/Kosi-Kodein-kodein-di.js +37 -37
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +90 -90
  4. package/Logic_Debertz-client_plugin.d.ts +31 -4
  5. package/Logic_Debertz-client_plugin.js +42 -42
  6. package/Logic_Debertz-core.js +61 -61
  7. package/Logic_Debertz-engine.js +104 -104
  8. package/Logic_Debertz-game_client.js +60 -60
  9. package/Logic_Debertz-game_server.js +376 -284
  10. package/Logic_Debertz-game_server.js.map +1 -1
  11. package/error-library-error.js +5 -5
  12. package/kotlin-kotlin-stdlib.js +297 -284
  13. package/kotlin-kotlin-stdlib.js.map +1 -1
  14. package/kotlinx-atomicfu.js +9 -9
  15. package/kotlinx-coroutines-core.js +82 -82
  16. package/kotlinx-coroutines-core.js.map +1 -1
  17. package/kotlinx-io-kotlinx-io-core.js +30 -30
  18. package/kotlinx-serialization-kotlinx-serialization-core.js +79 -79
  19. package/kotlinx-serialization-kotlinx-serialization-json.js +88 -88
  20. package/ktor-ktor-client-content-negotiation.js +21 -21
  21. package/ktor-ktor-client-core.js +67 -67
  22. package/ktor-ktor-client-logging.js +23 -23
  23. package/ktor-ktor-events.js +5 -5
  24. package/ktor-ktor-http.js +72 -72
  25. package/ktor-ktor-io.js +50 -50
  26. package/ktor-ktor-serialization-kotlinx.js +15 -15
  27. package/ktor-ktor-serialization.js +15 -15
  28. package/ktor-ktor-utils.js +45 -45
  29. package/ktor-ktor-websockets.js +13 -13
  30. package/package.json +1 -1
  31. package/random-library-crypto-rand.js +11 -11
  32. package/random-library-secure-random.js +5 -5
  33. package/raspberry-cardgame-lib-core.js +34 -34
  34. package/raspberry-cardgame-lib-logger.js +12 -12
  35. package/raspberry-cardgame-lib-random.js +39 -39
  36. package/uuid.js +12 -12
@@ -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, Collection, MutableIterable]);
116
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
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, Collection, MutableIterable]);
123
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
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, Collection, MutableIterable]);
145
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
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, [Collection, MutableIterable, AbstractMutableCollection]);
158
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
159
159
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
160
160
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
161
161
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -9900,6 +9900,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
9900
9900
  var tmp = EmptyMap_getInstance();
9901
9901
  return isInterface(tmp, KtMap) ? tmp : THROW_CCE();
9902
9902
  }
9903
+ function plus_6(_this__u8e3s4, pair) {
9904
+ var tmp;
9905
+ if (_this__u8e3s4.q()) {
9906
+ tmp = mapOf(pair);
9907
+ } else {
9908
+ // Inline function 'kotlin.apply' call
9909
+ var this_0 = LinkedHashMap_init_$Create$_1(_this__u8e3s4);
9910
+ this_0.l2(pair.he_1, pair.ie_1);
9911
+ tmp = this_0;
9912
+ }
9913
+ return tmp;
9914
+ }
9903
9915
  function toMutableMap(_this__u8e3s4) {
9904
9916
  return LinkedHashMap_init_$Create$_1(_this__u8e3s4);
9905
9917
  }
@@ -9952,7 +9964,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9952
9964
  }
9953
9965
  function EmptyMap() {
9954
9966
  EmptyMap_instance = this;
9955
- this.he_1 = new Long(-888910638, 1920087921);
9967
+ this.je_1 = new Long(-888910638, 1920087921);
9956
9968
  }
9957
9969
  protoOf(EmptyMap).equals = function (other) {
9958
9970
  var tmp;
@@ -9975,15 +9987,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
9975
9987
  protoOf(EmptyMap).q = function () {
9976
9988
  return true;
9977
9989
  };
9978
- protoOf(EmptyMap).ie = function (key) {
9990
+ protoOf(EmptyMap).ke = function (key) {
9979
9991
  return false;
9980
9992
  };
9981
9993
  protoOf(EmptyMap).z1 = function (key) {
9982
9994
  if (!(key == null ? true : !(key == null)))
9983
9995
  return false;
9984
- return this.ie((key == null ? true : !(key == null)) ? key : THROW_CCE());
9996
+ return this.ke((key == null ? true : !(key == null)) ? key : THROW_CCE());
9985
9997
  };
9986
- protoOf(EmptyMap).je = function (value) {
9998
+ protoOf(EmptyMap).le = function (value) {
9987
9999
  return false;
9988
10000
  };
9989
10001
  protoOf(EmptyMap).a2 = function (value) {
@@ -9995,15 +10007,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
9995
10007
  } else {
9996
10008
  tmp = THROW_CCE();
9997
10009
  }
9998
- return this.je(tmp);
10010
+ return this.le(tmp);
9999
10011
  };
10000
- protoOf(EmptyMap).ke = function (key) {
10012
+ protoOf(EmptyMap).me = function (key) {
10001
10013
  return null;
10002
10014
  };
10003
10015
  protoOf(EmptyMap).b2 = function (key) {
10004
10016
  if (!(key == null ? true : !(key == null)))
10005
10017
  return null;
10006
- return this.ke((key == null ? true : !(key == null)) ? key : THROW_CCE());
10018
+ return this.me((key == null ? true : !(key == null)) ? key : THROW_CCE());
10007
10019
  };
10008
10020
  protoOf(EmptyMap).u = function () {
10009
10021
  return EmptySet_getInstance();
@@ -12938,7 +12950,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
12938
12950
  tmp = null;
12939
12951
  } else {
12940
12952
  // Inline function 'kotlin.let' call
12941
- tmp = to(tmp0_safe_receiver.le_1, tmp0_safe_receiver.me_1.length);
12953
+ tmp = to(tmp0_safe_receiver.he_1, tmp0_safe_receiver.ie_1.length);
12942
12954
  }
12943
12955
  return tmp;
12944
12956
  };
@@ -14829,21 +14841,21 @@ if (typeof String.prototype.endsWith === 'undefined') {
14829
14841
  captureStack(this, NotImplementedError);
14830
14842
  }
14831
14843
  function Pair(first, second) {
14832
- this.le_1 = first;
14833
- this.me_1 = second;
14844
+ this.he_1 = first;
14845
+ this.ie_1 = second;
14834
14846
  }
14835
14847
  protoOf(Pair).toString = function () {
14836
- return '(' + toString_0(this.le_1) + ', ' + toString_0(this.me_1) + ')';
14848
+ return '(' + toString_0(this.he_1) + ', ' + toString_0(this.ie_1) + ')';
14837
14849
  };
14838
14850
  protoOf(Pair).ne = function () {
14839
- return this.le_1;
14851
+ return this.he_1;
14840
14852
  };
14841
14853
  protoOf(Pair).oe = function () {
14842
- return this.me_1;
14854
+ return this.ie_1;
14843
14855
  };
14844
14856
  protoOf(Pair).hashCode = function () {
14845
- var result = this.le_1 == null ? 0 : hashCode_0(this.le_1);
14846
- result = imul(result, 31) + (this.me_1 == null ? 0 : hashCode_0(this.me_1)) | 0;
14857
+ var result = this.he_1 == null ? 0 : hashCode_0(this.he_1);
14858
+ result = imul(result, 31) + (this.ie_1 == null ? 0 : hashCode_0(this.ie_1)) | 0;
14847
14859
  return result;
14848
14860
  };
14849
14861
  protoOf(Pair).equals = function (other) {
@@ -14851,9 +14863,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
14851
14863
  return true;
14852
14864
  if (!(other instanceof Pair))
14853
14865
  return false;
14854
- if (!equals(this.le_1, other.le_1))
14866
+ if (!equals(this.he_1, other.he_1))
14855
14867
  return false;
14856
- if (!equals(this.me_1, other.me_1))
14868
+ if (!equals(this.ie_1, other.ie_1))
14857
14869
  return false;
14858
14870
  return true;
14859
14871
  };
@@ -16375,269 +16387,270 @@ if (typeof String.prototype.endsWith === 'undefined') {
16375
16387
  _.$_$.q8 = none;
16376
16388
  _.$_$.r8 = plus_5;
16377
16389
  _.$_$.s8 = plus_3;
16378
- _.$_$.t8 = plus_2;
16379
- _.$_$.u8 = plus_1;
16380
- _.$_$.v8 = plus_0;
16381
- _.$_$.w8 = removeFirstOrNull;
16382
- _.$_$.x8 = removeLastOrNull;
16383
- _.$_$.y8 = removeLast;
16384
- _.$_$.z8 = reversed;
16385
- _.$_$.a9 = reverse;
16386
- _.$_$.b9 = setOf;
16387
- _.$_$.c9 = setOf_0;
16388
- _.$_$.d9 = singleOrNull;
16389
- _.$_$.e9 = single_0;
16390
- _.$_$.f9 = sortWith_0;
16391
- _.$_$.g9 = sortedWith;
16392
- _.$_$.h9 = sorted;
16393
- _.$_$.i9 = sum;
16394
- _.$_$.j9 = takeLast;
16395
- _.$_$.k9 = take;
16396
- _.$_$.l9 = toBooleanArray;
16397
- _.$_$.m9 = toHashSet;
16398
- _.$_$.n9 = toList_1;
16399
- _.$_$.o9 = toList_0;
16400
- _.$_$.p9 = toList;
16401
- _.$_$.q9 = toMap_1;
16402
- _.$_$.r9 = toMap;
16403
- _.$_$.s9 = toMap_0;
16404
- _.$_$.t9 = toMutableList_0;
16405
- _.$_$.u9 = toMutableMap;
16406
- _.$_$.v9 = toMutableSet;
16407
- _.$_$.w9 = toSet_0;
16408
- _.$_$.x9 = toTypedArray;
16409
- _.$_$.y9 = withIndex;
16410
- _.$_$.z9 = zip_0;
16411
- _.$_$.aa = zip;
16412
- _.$_$.ba = compareValuesBy;
16413
- _.$_$.ca = compareValues;
16414
- _.$_$.da = CancellationException;
16415
- _.$_$.ea = get_COROUTINE_SUSPENDED;
16416
- _.$_$.fa = createCoroutineUnintercepted;
16417
- _.$_$.ga = intercepted;
16418
- _.$_$.ha = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16419
- _.$_$.ia = AbstractCoroutineContextElement;
16420
- _.$_$.ja = AbstractCoroutineContextKey;
16421
- _.$_$.ka = get_0;
16422
- _.$_$.la = minusKey_0;
16423
- _.$_$.ma = ContinuationInterceptor;
16424
- _.$_$.na = Continuation;
16425
- _.$_$.oa = fold;
16426
- _.$_$.pa = get;
16427
- _.$_$.qa = minusKey;
16428
- _.$_$.ra = Element;
16429
- _.$_$.sa = plus;
16430
- _.$_$.ta = CoroutineImpl;
16431
- _.$_$.ua = startCoroutine;
16432
- _.$_$.va = enumEntries;
16433
- _.$_$.wa = println;
16434
- _.$_$.xa = get_ONE;
16435
- _.$_$.ya = add;
16436
- _.$_$.za = bitwiseAnd;
16437
- _.$_$.ab = bitwiseOr;
16438
- _.$_$.bb = bitwiseXor;
16439
- _.$_$.cb = compare;
16440
- _.$_$.db = convertToByte;
16441
- _.$_$.eb = convertToInt;
16442
- _.$_$.fb = convertToShort;
16443
- _.$_$.gb = divide;
16444
- _.$_$.hb = equalsLong;
16445
- _.$_$.ib = fromInt;
16446
- _.$_$.jb = invert;
16447
- _.$_$.kb = modulo;
16448
- _.$_$.lb = multiply;
16449
- _.$_$.mb = negate;
16450
- _.$_$.nb = numberToLong;
16451
- _.$_$.ob = shiftLeft;
16452
- _.$_$.pb = shiftRightUnsigned;
16453
- _.$_$.qb = shiftRight;
16454
- _.$_$.rb = subtract;
16455
- _.$_$.sb = toNumber;
16456
- _.$_$.tb = FunctionAdapter;
16457
- _.$_$.ub = anyToString;
16458
- _.$_$.vb = arrayIterator;
16459
- _.$_$.wb = booleanArray;
16460
- _.$_$.xb = captureStack;
16461
- _.$_$.yb = charArrayOf;
16462
- _.$_$.zb = charArray;
16463
- _.$_$.ac = charCodeAt;
16464
- _.$_$.bc = charSequenceGet;
16465
- _.$_$.cc = charSequenceLength;
16466
- _.$_$.dc = charSequenceSubSequence;
16467
- _.$_$.ec = compareTo;
16468
- _.$_$.fc = defineProp;
16469
- _.$_$.gc = equals;
16470
- _.$_$.hc = extendThrowable;
16471
- _.$_$.ic = getBooleanHashCode;
16472
- _.$_$.jc = getNumberHashCode;
16473
- _.$_$.kc = getPropertyCallableRef;
16474
- _.$_$.lc = getStringHashCode;
16475
- _.$_$.mc = hashCode_0;
16476
- _.$_$.nc = initMetadataForClass;
16477
- _.$_$.oc = initMetadataForCompanion;
16478
- _.$_$.pc = initMetadataForCoroutine;
16479
- _.$_$.qc = initMetadataForInterface;
16480
- _.$_$.rc = initMetadataForLambda;
16481
- _.$_$.sc = initMetadataForObject;
16482
- _.$_$.tc = isArray;
16483
- _.$_$.uc = isBooleanArray;
16484
- _.$_$.vc = isByteArray;
16485
- _.$_$.wc = isCharArray;
16486
- _.$_$.xc = isCharSequence;
16487
- _.$_$.yc = isDoubleArray;
16488
- _.$_$.zc = isFloatArray;
16489
- _.$_$.ad = isIntArray;
16490
- _.$_$.bd = isInterface;
16491
- _.$_$.cd = isLongArray;
16492
- _.$_$.dd = isNumber;
16493
- _.$_$.ed = isShortArray;
16494
- _.$_$.fd = isSuspendFunction;
16495
- _.$_$.gd = get_js;
16496
- _.$_$.hd = longArray;
16497
- _.$_$.id = numberRangeToNumber;
16498
- _.$_$.jd = numberToByte;
16499
- _.$_$.kd = numberToChar;
16500
- _.$_$.ld = numberToInt;
16501
- _.$_$.md = objectCreate;
16502
- _.$_$.nd = protoOf;
16503
- _.$_$.od = toByte;
16504
- _.$_$.pd = toShort;
16505
- _.$_$.qd = toString_1;
16506
- _.$_$.rd = abs_0;
16507
- _.$_$.sd = roundToInt;
16508
- _.$_$.td = round;
16509
- _.$_$.ud = ClosedRange;
16510
- _.$_$.vd = coerceAtLeast;
16511
- _.$_$.wd = coerceAtMost_0;
16512
- _.$_$.xd = coerceAtMost;
16513
- _.$_$.yd = coerceIn;
16514
- _.$_$.zd = coerceIn_0;
16515
- _.$_$.ae = contains_5;
16516
- _.$_$.be = downTo;
16517
- _.$_$.ce = step;
16518
- _.$_$.de = until;
16519
- _.$_$.ee = createInvariantKTypeProjection;
16520
- _.$_$.fe = createKType;
16521
- _.$_$.ge = getKClassFromExpression;
16522
- _.$_$.he = getKClass;
16523
- _.$_$.ie = KClass;
16524
- _.$_$.je = KMutableProperty1;
16525
- _.$_$.ke = KProperty0;
16526
- _.$_$.le = KProperty1;
16527
- _.$_$.me = KTypeParameter;
16528
- _.$_$.ne = filter;
16529
- _.$_$.oe = firstOrNull_2;
16530
- _.$_$.pe = flatMap;
16531
- _.$_$.qe = mapNotNull;
16532
- _.$_$.re = map;
16533
- _.$_$.se = toList_2;
16534
- _.$_$.te = concatToString;
16535
- _.$_$.ue = contains_7;
16536
- _.$_$.ve = contains_8;
16537
- _.$_$.we = decodeToString;
16538
- _.$_$.xe = encodeToByteArray;
16539
- _.$_$.ye = endsWith_0;
16540
- _.$_$.ze = endsWith;
16541
- _.$_$.af = equals_0;
16542
- _.$_$.bf = first_2;
16543
- _.$_$.cf = indexOfAny;
16544
- _.$_$.df = indexOf_5;
16545
- _.$_$.ef = indexOf_4;
16546
- _.$_$.ff = isBlank;
16547
- _.$_$.gf = isHighSurrogate;
16548
- _.$_$.hf = isLowSurrogate;
16549
- _.$_$.if = isSurrogate;
16550
- _.$_$.jf = isWhitespace;
16551
- _.$_$.kf = get_lastIndex_3;
16552
- _.$_$.lf = lastIndexOf_0;
16553
- _.$_$.mf = last_2;
16554
- _.$_$.nf = padStart;
16555
- _.$_$.of = removePrefix;
16556
- _.$_$.pf = removeSuffix;
16557
- _.$_$.qf = repeat;
16558
- _.$_$.rf = replace;
16559
- _.$_$.sf = replace_0;
16560
- _.$_$.tf = single_2;
16561
- _.$_$.uf = split_0;
16562
- _.$_$.vf = split;
16563
- _.$_$.wf = startsWith;
16564
- _.$_$.xf = startsWith_1;
16565
- _.$_$.yf = substringAfter;
16566
- _.$_$.zf = substringBefore;
16567
- _.$_$.ag = substring_0;
16568
- _.$_$.bg = substring;
16569
- _.$_$.cg = take_0;
16570
- _.$_$.dg = toBooleanStrictOrNull;
16571
- _.$_$.eg = toDoubleOrNull;
16572
- _.$_$.fg = toDouble;
16573
- _.$_$.gg = toIntOrNull;
16574
- _.$_$.hg = toInt;
16575
- _.$_$.ig = toLongOrNull;
16576
- _.$_$.jg = toLong;
16577
- _.$_$.kg = toString_3;
16578
- _.$_$.lg = toUByte;
16579
- _.$_$.mg = toUInt;
16580
- _.$_$.ng = toULongOrNull;
16581
- _.$_$.og = toULong;
16582
- _.$_$.pg = toUShort;
16583
- _.$_$.qg = trimIndent;
16584
- _.$_$.rg = trimMargin;
16585
- _.$_$.sg = trim;
16586
- _.$_$.tg = Duration;
16587
- _.$_$.ug = Instant;
16588
- _.$_$.vg = toDuration_1;
16589
- _.$_$.wg = toDuration_0;
16590
- _.$_$.xg = toDuration;
16591
- _.$_$.yg = Uuid;
16592
- _.$_$.zg = ArithmeticException;
16593
- _.$_$.ah = Char;
16594
- _.$_$.bh = Comparable;
16595
- _.$_$.ch = Comparator;
16596
- _.$_$.dh = DeepRecursiveFunction;
16597
- _.$_$.eh = DeepRecursiveScope;
16598
- _.$_$.fh = Enum;
16599
- _.$_$.gh = Error_0;
16600
- _.$_$.hh = Exception;
16601
- _.$_$.ih = IllegalArgumentException;
16602
- _.$_$.jh = IllegalStateException;
16603
- _.$_$.kh = Long;
16604
- _.$_$.lh = NoSuchElementException;
16605
- _.$_$.mh = NotImplementedError;
16606
- _.$_$.nh = Pair;
16607
- _.$_$.oh = Result;
16608
- _.$_$.ph = RuntimeException;
16609
- _.$_$.qh = THROW_CCE;
16610
- _.$_$.rh = THROW_IAE;
16611
- _.$_$.sh = Triple;
16612
- _.$_$.th = UByteArray;
16613
- _.$_$.uh = UByte;
16614
- _.$_$.vh = UIntArray;
16615
- _.$_$.wh = UInt;
16616
- _.$_$.xh = ULongArray;
16617
- _.$_$.yh = ULong;
16618
- _.$_$.zh = UShortArray;
16619
- _.$_$.ai = UShort;
16620
- _.$_$.bi = Unit;
16621
- _.$_$.ci = UnsupportedOperationException;
16622
- _.$_$.di = addSuppressed;
16623
- _.$_$.ei = arrayOf;
16624
- _.$_$.fi = countTrailingZeroBits;
16625
- _.$_$.gi = createFailure;
16626
- _.$_$.hi = ensureNotNull;
16627
- _.$_$.ii = invoke;
16628
- _.$_$.ji = isFinite_0;
16629
- _.$_$.ki = isFinite;
16630
- _.$_$.li = isNaN_0;
16631
- _.$_$.mi = lazy;
16632
- _.$_$.ni = lazy_0;
16633
- _.$_$.oi = noWhenBranchMatchedException;
16634
- _.$_$.pi = plus_4;
16635
- _.$_$.qi = printStackTrace;
16636
- _.$_$.ri = stackTraceToString;
16637
- _.$_$.si = throwOnFailure;
16638
- _.$_$.ti = throwUninitializedPropertyAccessException;
16639
- _.$_$.ui = toString_0;
16640
- _.$_$.vi = to;
16390
+ _.$_$.t8 = plus_6;
16391
+ _.$_$.u8 = plus_2;
16392
+ _.$_$.v8 = plus_1;
16393
+ _.$_$.w8 = plus_0;
16394
+ _.$_$.x8 = removeFirstOrNull;
16395
+ _.$_$.y8 = removeLastOrNull;
16396
+ _.$_$.z8 = removeLast;
16397
+ _.$_$.a9 = reversed;
16398
+ _.$_$.b9 = reverse;
16399
+ _.$_$.c9 = setOf;
16400
+ _.$_$.d9 = setOf_0;
16401
+ _.$_$.e9 = singleOrNull;
16402
+ _.$_$.f9 = single_0;
16403
+ _.$_$.g9 = sortWith_0;
16404
+ _.$_$.h9 = sortedWith;
16405
+ _.$_$.i9 = sorted;
16406
+ _.$_$.j9 = sum;
16407
+ _.$_$.k9 = takeLast;
16408
+ _.$_$.l9 = take;
16409
+ _.$_$.m9 = toBooleanArray;
16410
+ _.$_$.n9 = toHashSet;
16411
+ _.$_$.o9 = toList_1;
16412
+ _.$_$.p9 = toList_0;
16413
+ _.$_$.q9 = toList;
16414
+ _.$_$.r9 = toMap_1;
16415
+ _.$_$.s9 = toMap;
16416
+ _.$_$.t9 = toMap_0;
16417
+ _.$_$.u9 = toMutableList_0;
16418
+ _.$_$.v9 = toMutableMap;
16419
+ _.$_$.w9 = toMutableSet;
16420
+ _.$_$.x9 = toSet_0;
16421
+ _.$_$.y9 = toTypedArray;
16422
+ _.$_$.z9 = withIndex;
16423
+ _.$_$.aa = zip_0;
16424
+ _.$_$.ba = zip;
16425
+ _.$_$.ca = compareValuesBy;
16426
+ _.$_$.da = compareValues;
16427
+ _.$_$.ea = CancellationException;
16428
+ _.$_$.fa = get_COROUTINE_SUSPENDED;
16429
+ _.$_$.ga = createCoroutineUnintercepted;
16430
+ _.$_$.ha = intercepted;
16431
+ _.$_$.ia = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16432
+ _.$_$.ja = AbstractCoroutineContextElement;
16433
+ _.$_$.ka = AbstractCoroutineContextKey;
16434
+ _.$_$.la = get_0;
16435
+ _.$_$.ma = minusKey_0;
16436
+ _.$_$.na = ContinuationInterceptor;
16437
+ _.$_$.oa = Continuation;
16438
+ _.$_$.pa = fold;
16439
+ _.$_$.qa = get;
16440
+ _.$_$.ra = minusKey;
16441
+ _.$_$.sa = Element;
16442
+ _.$_$.ta = plus;
16443
+ _.$_$.ua = CoroutineImpl;
16444
+ _.$_$.va = startCoroutine;
16445
+ _.$_$.wa = enumEntries;
16446
+ _.$_$.xa = println;
16447
+ _.$_$.ya = get_ONE;
16448
+ _.$_$.za = add;
16449
+ _.$_$.ab = bitwiseAnd;
16450
+ _.$_$.bb = bitwiseOr;
16451
+ _.$_$.cb = bitwiseXor;
16452
+ _.$_$.db = compare;
16453
+ _.$_$.eb = convertToByte;
16454
+ _.$_$.fb = convertToInt;
16455
+ _.$_$.gb = convertToShort;
16456
+ _.$_$.hb = divide;
16457
+ _.$_$.ib = equalsLong;
16458
+ _.$_$.jb = fromInt;
16459
+ _.$_$.kb = invert;
16460
+ _.$_$.lb = modulo;
16461
+ _.$_$.mb = multiply;
16462
+ _.$_$.nb = negate;
16463
+ _.$_$.ob = numberToLong;
16464
+ _.$_$.pb = shiftLeft;
16465
+ _.$_$.qb = shiftRightUnsigned;
16466
+ _.$_$.rb = shiftRight;
16467
+ _.$_$.sb = subtract;
16468
+ _.$_$.tb = toNumber;
16469
+ _.$_$.ub = FunctionAdapter;
16470
+ _.$_$.vb = anyToString;
16471
+ _.$_$.wb = arrayIterator;
16472
+ _.$_$.xb = booleanArray;
16473
+ _.$_$.yb = captureStack;
16474
+ _.$_$.zb = charArrayOf;
16475
+ _.$_$.ac = charArray;
16476
+ _.$_$.bc = charCodeAt;
16477
+ _.$_$.cc = charSequenceGet;
16478
+ _.$_$.dc = charSequenceLength;
16479
+ _.$_$.ec = charSequenceSubSequence;
16480
+ _.$_$.fc = compareTo;
16481
+ _.$_$.gc = defineProp;
16482
+ _.$_$.hc = equals;
16483
+ _.$_$.ic = extendThrowable;
16484
+ _.$_$.jc = getBooleanHashCode;
16485
+ _.$_$.kc = getNumberHashCode;
16486
+ _.$_$.lc = getPropertyCallableRef;
16487
+ _.$_$.mc = getStringHashCode;
16488
+ _.$_$.nc = hashCode_0;
16489
+ _.$_$.oc = initMetadataForClass;
16490
+ _.$_$.pc = initMetadataForCompanion;
16491
+ _.$_$.qc = initMetadataForCoroutine;
16492
+ _.$_$.rc = initMetadataForInterface;
16493
+ _.$_$.sc = initMetadataForLambda;
16494
+ _.$_$.tc = initMetadataForObject;
16495
+ _.$_$.uc = isArray;
16496
+ _.$_$.vc = isBooleanArray;
16497
+ _.$_$.wc = isByteArray;
16498
+ _.$_$.xc = isCharArray;
16499
+ _.$_$.yc = isCharSequence;
16500
+ _.$_$.zc = isDoubleArray;
16501
+ _.$_$.ad = isFloatArray;
16502
+ _.$_$.bd = isIntArray;
16503
+ _.$_$.cd = isInterface;
16504
+ _.$_$.dd = isLongArray;
16505
+ _.$_$.ed = isNumber;
16506
+ _.$_$.fd = isShortArray;
16507
+ _.$_$.gd = isSuspendFunction;
16508
+ _.$_$.hd = get_js;
16509
+ _.$_$.id = longArray;
16510
+ _.$_$.jd = numberRangeToNumber;
16511
+ _.$_$.kd = numberToByte;
16512
+ _.$_$.ld = numberToChar;
16513
+ _.$_$.md = numberToInt;
16514
+ _.$_$.nd = objectCreate;
16515
+ _.$_$.od = protoOf;
16516
+ _.$_$.pd = toByte;
16517
+ _.$_$.qd = toShort;
16518
+ _.$_$.rd = toString_1;
16519
+ _.$_$.sd = abs_0;
16520
+ _.$_$.td = roundToInt;
16521
+ _.$_$.ud = round;
16522
+ _.$_$.vd = ClosedRange;
16523
+ _.$_$.wd = coerceAtLeast;
16524
+ _.$_$.xd = coerceAtMost_0;
16525
+ _.$_$.yd = coerceAtMost;
16526
+ _.$_$.zd = coerceIn;
16527
+ _.$_$.ae = coerceIn_0;
16528
+ _.$_$.be = contains_5;
16529
+ _.$_$.ce = downTo;
16530
+ _.$_$.de = step;
16531
+ _.$_$.ee = until;
16532
+ _.$_$.fe = createInvariantKTypeProjection;
16533
+ _.$_$.ge = createKType;
16534
+ _.$_$.he = getKClassFromExpression;
16535
+ _.$_$.ie = getKClass;
16536
+ _.$_$.je = KClass;
16537
+ _.$_$.ke = KMutableProperty1;
16538
+ _.$_$.le = KProperty0;
16539
+ _.$_$.me = KProperty1;
16540
+ _.$_$.ne = KTypeParameter;
16541
+ _.$_$.oe = filter;
16542
+ _.$_$.pe = firstOrNull_2;
16543
+ _.$_$.qe = flatMap;
16544
+ _.$_$.re = mapNotNull;
16545
+ _.$_$.se = map;
16546
+ _.$_$.te = toList_2;
16547
+ _.$_$.ue = concatToString;
16548
+ _.$_$.ve = contains_7;
16549
+ _.$_$.we = contains_8;
16550
+ _.$_$.xe = decodeToString;
16551
+ _.$_$.ye = encodeToByteArray;
16552
+ _.$_$.ze = endsWith_0;
16553
+ _.$_$.af = endsWith;
16554
+ _.$_$.bf = equals_0;
16555
+ _.$_$.cf = first_2;
16556
+ _.$_$.df = indexOfAny;
16557
+ _.$_$.ef = indexOf_5;
16558
+ _.$_$.ff = indexOf_4;
16559
+ _.$_$.gf = isBlank;
16560
+ _.$_$.hf = isHighSurrogate;
16561
+ _.$_$.if = isLowSurrogate;
16562
+ _.$_$.jf = isSurrogate;
16563
+ _.$_$.kf = isWhitespace;
16564
+ _.$_$.lf = get_lastIndex_3;
16565
+ _.$_$.mf = lastIndexOf_0;
16566
+ _.$_$.nf = last_2;
16567
+ _.$_$.of = padStart;
16568
+ _.$_$.pf = removePrefix;
16569
+ _.$_$.qf = removeSuffix;
16570
+ _.$_$.rf = repeat;
16571
+ _.$_$.sf = replace;
16572
+ _.$_$.tf = replace_0;
16573
+ _.$_$.uf = single_2;
16574
+ _.$_$.vf = split_0;
16575
+ _.$_$.wf = split;
16576
+ _.$_$.xf = startsWith;
16577
+ _.$_$.yf = startsWith_1;
16578
+ _.$_$.zf = substringAfter;
16579
+ _.$_$.ag = substringBefore;
16580
+ _.$_$.bg = substring_0;
16581
+ _.$_$.cg = substring;
16582
+ _.$_$.dg = take_0;
16583
+ _.$_$.eg = toBooleanStrictOrNull;
16584
+ _.$_$.fg = toDoubleOrNull;
16585
+ _.$_$.gg = toDouble;
16586
+ _.$_$.hg = toIntOrNull;
16587
+ _.$_$.ig = toInt;
16588
+ _.$_$.jg = toLongOrNull;
16589
+ _.$_$.kg = toLong;
16590
+ _.$_$.lg = toString_3;
16591
+ _.$_$.mg = toUByte;
16592
+ _.$_$.ng = toUInt;
16593
+ _.$_$.og = toULongOrNull;
16594
+ _.$_$.pg = toULong;
16595
+ _.$_$.qg = toUShort;
16596
+ _.$_$.rg = trimIndent;
16597
+ _.$_$.sg = trimMargin;
16598
+ _.$_$.tg = trim;
16599
+ _.$_$.ug = Duration;
16600
+ _.$_$.vg = Instant;
16601
+ _.$_$.wg = toDuration_1;
16602
+ _.$_$.xg = toDuration_0;
16603
+ _.$_$.yg = toDuration;
16604
+ _.$_$.zg = Uuid;
16605
+ _.$_$.ah = ArithmeticException;
16606
+ _.$_$.bh = Char;
16607
+ _.$_$.ch = Comparable;
16608
+ _.$_$.dh = Comparator;
16609
+ _.$_$.eh = DeepRecursiveFunction;
16610
+ _.$_$.fh = DeepRecursiveScope;
16611
+ _.$_$.gh = Enum;
16612
+ _.$_$.hh = Error_0;
16613
+ _.$_$.ih = Exception;
16614
+ _.$_$.jh = IllegalArgumentException;
16615
+ _.$_$.kh = IllegalStateException;
16616
+ _.$_$.lh = Long;
16617
+ _.$_$.mh = NoSuchElementException;
16618
+ _.$_$.nh = NotImplementedError;
16619
+ _.$_$.oh = Pair;
16620
+ _.$_$.ph = Result;
16621
+ _.$_$.qh = RuntimeException;
16622
+ _.$_$.rh = THROW_CCE;
16623
+ _.$_$.sh = THROW_IAE;
16624
+ _.$_$.th = Triple;
16625
+ _.$_$.uh = UByteArray;
16626
+ _.$_$.vh = UByte;
16627
+ _.$_$.wh = UIntArray;
16628
+ _.$_$.xh = UInt;
16629
+ _.$_$.yh = ULongArray;
16630
+ _.$_$.zh = ULong;
16631
+ _.$_$.ai = UShortArray;
16632
+ _.$_$.bi = UShort;
16633
+ _.$_$.ci = Unit;
16634
+ _.$_$.di = UnsupportedOperationException;
16635
+ _.$_$.ei = addSuppressed;
16636
+ _.$_$.fi = arrayOf;
16637
+ _.$_$.gi = countTrailingZeroBits;
16638
+ _.$_$.hi = createFailure;
16639
+ _.$_$.ii = ensureNotNull;
16640
+ _.$_$.ji = invoke;
16641
+ _.$_$.ki = isFinite_0;
16642
+ _.$_$.li = isFinite;
16643
+ _.$_$.mi = isNaN_0;
16644
+ _.$_$.ni = lazy;
16645
+ _.$_$.oi = lazy_0;
16646
+ _.$_$.pi = noWhenBranchMatchedException;
16647
+ _.$_$.qi = plus_4;
16648
+ _.$_$.ri = printStackTrace;
16649
+ _.$_$.si = stackTraceToString;
16650
+ _.$_$.ti = throwOnFailure;
16651
+ _.$_$.ui = throwUninitializedPropertyAccessException;
16652
+ _.$_$.vi = toString_0;
16653
+ _.$_$.wi = to;
16641
16654
  //endregion
16642
16655
  return _;
16643
16656
  }));