client_plugin_logic_deb 1.8.355 → 1.8.357

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 (39) hide show
  1. package/Kosi-Kaverit-kaverit.js +11 -11
  2. package/Kosi-Kodein-kodein-di.js +35 -35
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +72 -72
  4. package/Logic_Debertz-client_plugin.d.ts +1 -1
  5. package/Logic_Debertz-client_plugin.js +2267 -2267
  6. package/Logic_Debertz-core.js +256 -221
  7. package/Logic_Debertz-core.js.map +1 -1
  8. package/Logic_Debertz-engine.js +4187 -3971
  9. package/Logic_Debertz-engine.js.map +1 -1
  10. package/Logic_Debertz-game_client.js +6667 -6565
  11. package/Logic_Debertz-game_client.js.map +1 -1
  12. package/Logic_Debertz-game_server.js +803 -803
  13. package/Logic_Debertz-game_server.js.map +1 -1
  14. package/error-library-error.js +5 -5
  15. package/kotlin-kotlin-stdlib.js +312 -284
  16. package/kotlin-kotlin-stdlib.js.map +1 -1
  17. package/kotlinx-atomicfu.js +5 -5
  18. package/kotlinx-coroutines-core.js +66 -66
  19. package/kotlinx-coroutines-core.js.map +1 -1
  20. package/kotlinx-io-kotlinx-io-core.js +25 -25
  21. package/kotlinx-serialization-kotlinx-serialization-core.js +71 -71
  22. package/kotlinx-serialization-kotlinx-serialization-json.js +77 -77
  23. package/ktor-ktor-client-content-negotiation.js +20 -20
  24. package/ktor-ktor-client-core.js +57 -57
  25. package/ktor-ktor-client-logging.js +23 -23
  26. package/ktor-ktor-events.js +5 -5
  27. package/ktor-ktor-http.js +69 -69
  28. package/ktor-ktor-io.js +45 -45
  29. package/ktor-ktor-serialization-kotlinx.js +14 -14
  30. package/ktor-ktor-serialization.js +15 -15
  31. package/ktor-ktor-utils.js +43 -43
  32. package/ktor-ktor-websockets.js +13 -13
  33. package/package.json +1 -1
  34. package/random-library-crypto-rand.js +11 -11
  35. package/random-library-secure-random.js +5 -5
  36. package/raspberry-cardgame-lib-core.js +35 -35
  37. package/raspberry-cardgame-lib-logger.js +13 -13
  38. package/raspberry-cardgame-lib-random.js +35 -35
  39. package/uuid.js +12 -12
@@ -1022,30 +1022,29 @@ if (typeof String.prototype.endsWith === 'undefined') {
1022
1022
  }
1023
1023
  return count === 0 ? NaN : sum / count;
1024
1024
  }
1025
- function none(_this__u8e3s4) {
1026
- if (isInterface(_this__u8e3s4, Collection))
1027
- return _this__u8e3s4.p();
1028
- return !_this__u8e3s4.j().k();
1029
- }
1030
- function singleOrNull(_this__u8e3s4) {
1031
- return _this__u8e3s4.m() === 1 ? _this__u8e3s4.o(0) : null;
1025
+ function minOrNull(_this__u8e3s4) {
1026
+ var iterator = _this__u8e3s4.j();
1027
+ if (!iterator.k())
1028
+ return null;
1029
+ var min = iterator.l();
1030
+ while (iterator.k()) {
1031
+ var e = iterator.l();
1032
+ if (compareTo(min, e) > 0)
1033
+ min = e;
1034
+ }
1035
+ return min;
1032
1036
  }
1033
- function zip_0(_this__u8e3s4, other) {
1034
- // Inline function 'kotlin.collections.zip' call
1035
- var first = _this__u8e3s4.j();
1036
- var second = other.j();
1037
- var tmp0 = collectionSizeOrDefault(_this__u8e3s4, 10);
1038
- // Inline function 'kotlin.comparisons.minOf' call
1039
- var b = collectionSizeOrDefault(other, 10);
1040
- var tmp$ret$0 = Math.min(tmp0, b);
1041
- var list = ArrayList_init_$Create$_0(tmp$ret$0);
1042
- while (first.k() && second.k()) {
1043
- var tmp0_0 = first.l();
1044
- var t2 = second.l();
1045
- var tmp$ret$1 = to(tmp0_0, t2);
1046
- list.e(tmp$ret$1);
1037
+ function maxOrNull(_this__u8e3s4) {
1038
+ var iterator = _this__u8e3s4.j();
1039
+ if (!iterator.k())
1040
+ return null;
1041
+ var max = iterator.l();
1042
+ while (iterator.k()) {
1043
+ var e = iterator.l();
1044
+ if (compareTo(max, e) < 0)
1045
+ max = e;
1047
1046
  }
1048
- return list;
1047
+ return max;
1049
1048
  }
1050
1049
  function toList_0(_this__u8e3s4) {
1051
1050
  if (isInterface(_this__u8e3s4, Collection)) {
@@ -1072,6 +1071,31 @@ if (typeof String.prototype.endsWith === 'undefined') {
1072
1071
  }
1073
1072
  return optimizeReadOnlyList(toMutableList_1(_this__u8e3s4));
1074
1073
  }
1074
+ function none(_this__u8e3s4) {
1075
+ if (isInterface(_this__u8e3s4, Collection))
1076
+ return _this__u8e3s4.p();
1077
+ return !_this__u8e3s4.j().k();
1078
+ }
1079
+ function singleOrNull(_this__u8e3s4) {
1080
+ return _this__u8e3s4.m() === 1 ? _this__u8e3s4.o(0) : null;
1081
+ }
1082
+ function zip_0(_this__u8e3s4, other) {
1083
+ // Inline function 'kotlin.collections.zip' call
1084
+ var first = _this__u8e3s4.j();
1085
+ var second = other.j();
1086
+ var tmp0 = collectionSizeOrDefault(_this__u8e3s4, 10);
1087
+ // Inline function 'kotlin.comparisons.minOf' call
1088
+ var b = collectionSizeOrDefault(other, 10);
1089
+ var tmp$ret$0 = Math.min(tmp0, b);
1090
+ var list = ArrayList_init_$Create$_0(tmp$ret$0);
1091
+ while (first.k() && second.k()) {
1092
+ var tmp0_0 = first.l();
1093
+ var t2 = second.l();
1094
+ var tmp$ret$1 = to(tmp0_0, t2);
1095
+ list.e(tmp$ret$1);
1096
+ }
1097
+ return list;
1098
+ }
1075
1099
  function takeLast(_this__u8e3s4, n) {
1076
1100
  // Inline function 'kotlin.require' call
1077
1101
  if (!(n >= 0)) {
@@ -1183,18 +1207,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
1183
1207
  return single;
1184
1208
  }
1185
1209
  }
1186
- function minOrNull(_this__u8e3s4) {
1187
- var iterator = _this__u8e3s4.j();
1188
- if (!iterator.k())
1189
- return null;
1190
- var min = iterator.l();
1191
- while (iterator.k()) {
1192
- var e = iterator.l();
1193
- if (compareTo(min, e) > 0)
1194
- min = e;
1195
- }
1196
- return min;
1197
- }
1198
1210
  function dropLast(_this__u8e3s4, n) {
1199
1211
  // Inline function 'kotlin.require' call
1200
1212
  if (!(n >= 0)) {
@@ -1299,6 +1311,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
1299
1311
  function coerceAtLeast(_this__u8e3s4, minimumValue) {
1300
1312
  return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
1301
1313
  }
1314
+ function coerceAtLeast_0(_this__u8e3s4, minimumValue) {
1315
+ return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
1316
+ }
1317
+ function coerceIn_0(_this__u8e3s4, minimumValue, maximumValue) {
1318
+ if (minimumValue > maximumValue)
1319
+ throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: maximum ' + maximumValue + ' is less than minimum ' + minimumValue + '.');
1320
+ if (_this__u8e3s4 < minimumValue)
1321
+ return minimumValue;
1322
+ if (_this__u8e3s4 > maximumValue)
1323
+ return maximumValue;
1324
+ return _this__u8e3s4;
1325
+ }
1302
1326
  function contains_5(_this__u8e3s4, value) {
1303
1327
  // Inline function 'kotlin.let' call
1304
1328
  var it = toIntExactOrNull(value);
@@ -1310,7 +1334,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
1310
1334
  function coerceAtMost(_this__u8e3s4, maximumValue) {
1311
1335
  return _this__u8e3s4 > maximumValue ? maximumValue : _this__u8e3s4;
1312
1336
  }
1313
- function coerceIn_0(_this__u8e3s4, minimumValue, maximumValue) {
1337
+ function coerceIn_1(_this__u8e3s4, minimumValue, maximumValue) {
1314
1338
  if (minimumValue > maximumValue)
1315
1339
  throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: maximum ' + maximumValue + ' is less than minimum ' + minimumValue + '.');
1316
1340
  if (_this__u8e3s4 < minimumValue)
@@ -1319,15 +1343,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
1319
1343
  return maximumValue;
1320
1344
  return _this__u8e3s4;
1321
1345
  }
1322
- function coerceIn_1(_this__u8e3s4, range) {
1346
+ function coerceIn_2(_this__u8e3s4, range) {
1323
1347
  if (isInterface(range, ClosedFloatingPointRange)) {
1324
- return coerceIn_2(_this__u8e3s4, range);
1348
+ return coerceIn_3(_this__u8e3s4, range);
1325
1349
  }
1326
1350
  if (range.p())
1327
1351
  throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: ' + toString_1(range) + '.');
1328
1352
  return _this__u8e3s4.z(range.g1()) < 0 ? range.g1() : _this__u8e3s4.z(range.f1()) > 0 ? range.f1() : _this__u8e3s4;
1329
1353
  }
1330
- function coerceIn_2(_this__u8e3s4, range) {
1354
+ function coerceIn_3(_this__u8e3s4, range) {
1331
1355
  if (range.p())
1332
1356
  throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: ' + toString_1(range) + '.');
1333
1357
  return range.h1(_this__u8e3s4, range.g1()) && !range.h1(range.g1(), _this__u8e3s4) ? range.g1() : range.h1(range.f1(), _this__u8e3s4) && !range.h1(_this__u8e3s4, range.f1()) ? range.f1() : _this__u8e3s4;
@@ -12742,7 +12766,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
12742
12766
  function DelimitedRangesSequence$iterator$1(this$0) {
12743
12767
  this.tk_1 = this$0;
12744
12768
  this.ok_1 = -1;
12745
- this.pk_1 = coerceIn_0(this$0.vk_1, 0, charSequenceLength(this$0.uk_1));
12769
+ this.pk_1 = coerceIn_1(this$0.vk_1, 0, charSequenceLength(this$0.uk_1));
12746
12770
  this.qk_1 = this.pk_1;
12747
12771
  this.rk_1 = null;
12748
12772
  this.sk_1 = 0;
@@ -13111,7 +13135,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
13111
13135
  tmp_5 = false;
13112
13136
  }
13113
13137
  if (tmp_5) {
13114
- tmp_4 = durationOfMillis(coerceIn_1(totalMillis, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
13138
+ tmp_4 = durationOfMillis(coerceIn_2(totalMillis, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
13115
13139
  } else {
13116
13140
  tmp_4 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().bl_1 : Companion_getInstance_23().cl_1;
13117
13141
  }
@@ -13124,7 +13148,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
13124
13148
  var tmp_6;
13125
13149
  // Inline function 'kotlin.Long.div' call
13126
13150
  if (result.c3(toLong(scale)).equals(value)) {
13127
- tmp_6 = durationOfMillis(coerceIn_1(result, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
13151
+ tmp_6 = durationOfMillis(coerceIn_2(result, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
13128
13152
  } else {
13129
13153
  tmp_6 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().bl_1 : Companion_getInstance_23().cl_1;
13130
13154
  }
@@ -16320,249 +16344,253 @@ if (typeof String.prototype.endsWith === 'undefined') {
16320
16344
  _.$_$.n8 = mapCapacity;
16321
16345
  _.$_$.o8 = mapOf;
16322
16346
  _.$_$.p8 = mapOf_0;
16323
- _.$_$.q8 = minus;
16324
- _.$_$.r8 = mutableListOf;
16325
- _.$_$.s8 = none;
16326
- _.$_$.t8 = plus_5;
16327
- _.$_$.u8 = plus_3;
16328
- _.$_$.v8 = plus_2;
16329
- _.$_$.w8 = plus_1;
16330
- _.$_$.x8 = plus_0;
16331
- _.$_$.y8 = removeFirstOrNull;
16332
- _.$_$.z8 = removeLastOrNull;
16333
- _.$_$.a9 = removeLast;
16334
- _.$_$.b9 = reversed;
16335
- _.$_$.c9 = reverse;
16336
- _.$_$.d9 = setOf;
16337
- _.$_$.e9 = setOf_0;
16338
- _.$_$.f9 = singleOrNull;
16339
- _.$_$.g9 = single_0;
16340
- _.$_$.h9 = sortWith_0;
16341
- _.$_$.i9 = sortedWith;
16342
- _.$_$.j9 = sorted;
16343
- _.$_$.k9 = sum;
16344
- _.$_$.l9 = takeLast;
16345
- _.$_$.m9 = take;
16346
- _.$_$.n9 = toBooleanArray;
16347
- _.$_$.o9 = toHashSet;
16348
- _.$_$.p9 = toList_1;
16349
- _.$_$.q9 = toList_0;
16350
- _.$_$.r9 = toList;
16351
- _.$_$.s9 = toMap_3;
16352
- _.$_$.t9 = toMap_0;
16353
- _.$_$.u9 = toMap;
16354
- _.$_$.v9 = toMutableList_0;
16355
- _.$_$.w9 = toMutableMap;
16356
- _.$_$.x9 = toMutableSet;
16357
- _.$_$.y9 = toSet_0;
16358
- _.$_$.z9 = toTypedArray;
16359
- _.$_$.aa = withIndex;
16360
- _.$_$.ba = zip_0;
16361
- _.$_$.ca = zip;
16362
- _.$_$.da = compareValuesBy;
16363
- _.$_$.ea = compareValues;
16364
- _.$_$.fa = CancellationException;
16365
- _.$_$.ga = get_COROUTINE_SUSPENDED;
16366
- _.$_$.ha = createCoroutineUnintercepted;
16367
- _.$_$.ia = intercepted;
16368
- _.$_$.ja = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16369
- _.$_$.ka = AbstractCoroutineContextElement;
16370
- _.$_$.la = AbstractCoroutineContextKey;
16371
- _.$_$.ma = get_0;
16372
- _.$_$.na = minusKey_0;
16373
- _.$_$.oa = ContinuationInterceptor;
16374
- _.$_$.pa = Continuation;
16375
- _.$_$.qa = fold;
16376
- _.$_$.ra = get;
16377
- _.$_$.sa = minusKey;
16378
- _.$_$.ta = Element;
16379
- _.$_$.ua = plus;
16380
- _.$_$.va = CoroutineImpl;
16381
- _.$_$.wa = startCoroutine;
16382
- _.$_$.xa = enumEntries;
16383
- _.$_$.ya = println;
16384
- _.$_$.za = FunctionAdapter;
16385
- _.$_$.ab = anyToString;
16386
- _.$_$.bb = arrayIterator;
16387
- _.$_$.cb = booleanArray;
16388
- _.$_$.db = captureStack;
16389
- _.$_$.eb = charArrayOf;
16390
- _.$_$.fb = charArray;
16391
- _.$_$.gb = charCodeAt;
16392
- _.$_$.hb = charSequenceGet;
16393
- _.$_$.ib = charSequenceLength;
16394
- _.$_$.jb = charSequenceSubSequence;
16395
- _.$_$.kb = compareTo;
16396
- _.$_$.lb = defineProp;
16397
- _.$_$.mb = equals;
16398
- _.$_$.nb = extendThrowable;
16399
- _.$_$.ob = getBooleanHashCode;
16400
- _.$_$.pb = getNumberHashCode;
16401
- _.$_$.qb = getPropertyCallableRef;
16402
- _.$_$.rb = getStringHashCode;
16403
- _.$_$.sb = hashCode;
16404
- _.$_$.tb = initMetadataForClass;
16405
- _.$_$.ub = initMetadataForCompanion;
16406
- _.$_$.vb = initMetadataForCoroutine;
16407
- _.$_$.wb = initMetadataForInterface;
16408
- _.$_$.xb = initMetadataForLambda;
16409
- _.$_$.yb = initMetadataForObject;
16410
- _.$_$.zb = isArray;
16411
- _.$_$.ac = isBooleanArray;
16412
- _.$_$.bc = isByteArray;
16413
- _.$_$.cc = isCharArray;
16414
- _.$_$.dc = isCharSequence;
16415
- _.$_$.ec = isDoubleArray;
16416
- _.$_$.fc = isFloatArray;
16417
- _.$_$.gc = isIntArray;
16418
- _.$_$.hc = isInterface;
16419
- _.$_$.ic = isLongArray;
16420
- _.$_$.jc = isNumber;
16421
- _.$_$.kc = isShortArray;
16422
- _.$_$.lc = isSuspendFunction;
16423
- _.$_$.mc = get_js;
16424
- _.$_$.nc = longArray;
16425
- _.$_$.oc = numberRangeToNumber;
16426
- _.$_$.pc = numberToByte;
16427
- _.$_$.qc = numberToChar;
16428
- _.$_$.rc = numberToInt;
16429
- _.$_$.sc = numberToLong;
16430
- _.$_$.tc = objectCreate;
16431
- _.$_$.uc = protoOf;
16432
- _.$_$.vc = toByte;
16433
- _.$_$.wc = toLong;
16434
- _.$_$.xc = toShort;
16435
- _.$_$.yc = toString_1;
16436
- _.$_$.zc = abs;
16437
- _.$_$.ad = roundToInt;
16438
- _.$_$.bd = round;
16439
- _.$_$.cd = ClosedRange;
16440
- _.$_$.dd = coerceAtLeast;
16441
- _.$_$.ed = coerceAtMost_0;
16442
- _.$_$.fd = coerceAtMost;
16443
- _.$_$.gd = coerceIn;
16444
- _.$_$.hd = contains_5;
16445
- _.$_$.id = downTo;
16446
- _.$_$.jd = step;
16447
- _.$_$.kd = until;
16448
- _.$_$.ld = KClass;
16449
- _.$_$.md = KMutableProperty1;
16450
- _.$_$.nd = KProperty0;
16451
- _.$_$.od = KProperty1;
16452
- _.$_$.pd = KTypeParameter;
16453
- _.$_$.qd = filter;
16454
- _.$_$.rd = firstOrNull_2;
16455
- _.$_$.sd = flatMap;
16456
- _.$_$.td = mapNotNull;
16457
- _.$_$.ud = map;
16458
- _.$_$.vd = toList_2;
16459
- _.$_$.wd = concatToString;
16460
- _.$_$.xd = contains_8;
16461
- _.$_$.yd = contains_7;
16462
- _.$_$.zd = decodeToString;
16463
- _.$_$.ae = encodeToByteArray;
16464
- _.$_$.be = endsWith_0;
16465
- _.$_$.ce = endsWith;
16466
- _.$_$.de = equals_0;
16467
- _.$_$.ee = first_2;
16468
- _.$_$.fe = indexOfAny;
16469
- _.$_$.ge = indexOf_5;
16470
- _.$_$.he = indexOf_4;
16471
- _.$_$.ie = isBlank;
16472
- _.$_$.je = isHighSurrogate;
16473
- _.$_$.ke = isLowSurrogate;
16474
- _.$_$.le = isSurrogate;
16475
- _.$_$.me = isWhitespace;
16476
- _.$_$.ne = get_lastIndex_3;
16477
- _.$_$.oe = lastIndexOf_0;
16478
- _.$_$.pe = last_2;
16479
- _.$_$.qe = padStart;
16480
- _.$_$.re = removePrefix;
16481
- _.$_$.se = removeSuffix;
16482
- _.$_$.te = repeat;
16483
- _.$_$.ue = replace;
16484
- _.$_$.ve = replace_0;
16485
- _.$_$.we = single_2;
16486
- _.$_$.xe = split;
16487
- _.$_$.ye = split_0;
16488
- _.$_$.ze = startsWith;
16489
- _.$_$.af = startsWith_1;
16490
- _.$_$.bf = substringAfter;
16491
- _.$_$.cf = substringBefore;
16492
- _.$_$.df = substring_0;
16493
- _.$_$.ef = substring;
16494
- _.$_$.ff = take_0;
16495
- _.$_$.gf = toBooleanStrictOrNull;
16496
- _.$_$.hf = toDoubleOrNull;
16497
- _.$_$.if = toDouble;
16498
- _.$_$.jf = toIntOrNull;
16499
- _.$_$.kf = toInt;
16500
- _.$_$.lf = toLongOrNull;
16501
- _.$_$.mf = toLong_0;
16502
- _.$_$.nf = toString_3;
16503
- _.$_$.of = toUByte;
16504
- _.$_$.pf = toUInt;
16505
- _.$_$.qf = toULongOrNull;
16506
- _.$_$.rf = toULong;
16507
- _.$_$.sf = toUShort;
16508
- _.$_$.tf = trimIndent;
16509
- _.$_$.uf = trimMargin;
16510
- _.$_$.vf = trim;
16511
- _.$_$.wf = Duration;
16512
- _.$_$.xf = Instant;
16513
- _.$_$.yf = toDuration_1;
16514
- _.$_$.zf = toDuration_0;
16515
- _.$_$.ag = toDuration;
16516
- _.$_$.bg = Uuid;
16517
- _.$_$.cg = ArithmeticException;
16518
- _.$_$.dg = Char;
16519
- _.$_$.eg = Comparable;
16520
- _.$_$.fg = Comparator;
16521
- _.$_$.gg = DeepRecursiveFunction;
16522
- _.$_$.hg = DeepRecursiveScope;
16523
- _.$_$.ig = Enum;
16524
- _.$_$.jg = Error_0;
16525
- _.$_$.kg = Exception;
16526
- _.$_$.lg = IllegalArgumentException;
16527
- _.$_$.mg = IllegalStateException;
16528
- _.$_$.ng = Long;
16529
- _.$_$.og = NoSuchElementException;
16530
- _.$_$.pg = NotImplementedError;
16531
- _.$_$.qg = Pair;
16532
- _.$_$.rg = Result;
16533
- _.$_$.sg = RuntimeException;
16534
- _.$_$.tg = THROW_CCE;
16535
- _.$_$.ug = THROW_IAE;
16536
- _.$_$.vg = Triple;
16537
- _.$_$.wg = UByteArray;
16538
- _.$_$.xg = UByte;
16539
- _.$_$.yg = UIntArray;
16540
- _.$_$.zg = UInt;
16541
- _.$_$.ah = ULongArray;
16542
- _.$_$.bh = ULong;
16543
- _.$_$.ch = UShortArray;
16544
- _.$_$.dh = UShort;
16545
- _.$_$.eh = Unit;
16546
- _.$_$.fh = UnsupportedOperationException;
16547
- _.$_$.gh = addSuppressed;
16548
- _.$_$.hh = arrayOf;
16549
- _.$_$.ih = countTrailingZeroBits;
16550
- _.$_$.jh = createFailure;
16551
- _.$_$.kh = ensureNotNull;
16552
- _.$_$.lh = invoke;
16553
- _.$_$.mh = isFinite;
16554
- _.$_$.nh = isFinite_0;
16555
- _.$_$.oh = isNaN_0;
16556
- _.$_$.ph = lazy_0;
16557
- _.$_$.qh = lazy;
16558
- _.$_$.rh = noWhenBranchMatchedException;
16559
- _.$_$.sh = plus_4;
16560
- _.$_$.th = printStackTrace;
16561
- _.$_$.uh = stackTraceToString;
16562
- _.$_$.vh = throwOnFailure;
16563
- _.$_$.wh = throwUninitializedPropertyAccessException;
16564
- _.$_$.xh = toString_0;
16565
- _.$_$.yh = to;
16347
+ _.$_$.q8 = maxOrNull;
16348
+ _.$_$.r8 = minOrNull;
16349
+ _.$_$.s8 = minus;
16350
+ _.$_$.t8 = mutableListOf;
16351
+ _.$_$.u8 = none;
16352
+ _.$_$.v8 = plus_5;
16353
+ _.$_$.w8 = plus_3;
16354
+ _.$_$.x8 = plus_2;
16355
+ _.$_$.y8 = plus_1;
16356
+ _.$_$.z8 = plus_0;
16357
+ _.$_$.a9 = removeFirstOrNull;
16358
+ _.$_$.b9 = removeLastOrNull;
16359
+ _.$_$.c9 = removeLast;
16360
+ _.$_$.d9 = reversed;
16361
+ _.$_$.e9 = reverse;
16362
+ _.$_$.f9 = setOf;
16363
+ _.$_$.g9 = setOf_0;
16364
+ _.$_$.h9 = singleOrNull;
16365
+ _.$_$.i9 = single_0;
16366
+ _.$_$.j9 = sortWith_0;
16367
+ _.$_$.k9 = sortedWith;
16368
+ _.$_$.l9 = sorted;
16369
+ _.$_$.m9 = sum;
16370
+ _.$_$.n9 = takeLast;
16371
+ _.$_$.o9 = take;
16372
+ _.$_$.p9 = toBooleanArray;
16373
+ _.$_$.q9 = toHashSet;
16374
+ _.$_$.r9 = toList_1;
16375
+ _.$_$.s9 = toList_0;
16376
+ _.$_$.t9 = toList;
16377
+ _.$_$.u9 = toMap_3;
16378
+ _.$_$.v9 = toMap_0;
16379
+ _.$_$.w9 = toMap;
16380
+ _.$_$.x9 = toMutableList_0;
16381
+ _.$_$.y9 = toMutableMap;
16382
+ _.$_$.z9 = toMutableSet;
16383
+ _.$_$.aa = toSet_0;
16384
+ _.$_$.ba = toTypedArray;
16385
+ _.$_$.ca = withIndex;
16386
+ _.$_$.da = zip_0;
16387
+ _.$_$.ea = zip;
16388
+ _.$_$.fa = compareValuesBy;
16389
+ _.$_$.ga = compareValues;
16390
+ _.$_$.ha = CancellationException;
16391
+ _.$_$.ia = get_COROUTINE_SUSPENDED;
16392
+ _.$_$.ja = createCoroutineUnintercepted;
16393
+ _.$_$.ka = intercepted;
16394
+ _.$_$.la = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16395
+ _.$_$.ma = AbstractCoroutineContextElement;
16396
+ _.$_$.na = AbstractCoroutineContextKey;
16397
+ _.$_$.oa = get_0;
16398
+ _.$_$.pa = minusKey_0;
16399
+ _.$_$.qa = ContinuationInterceptor;
16400
+ _.$_$.ra = Continuation;
16401
+ _.$_$.sa = fold;
16402
+ _.$_$.ta = get;
16403
+ _.$_$.ua = minusKey;
16404
+ _.$_$.va = Element;
16405
+ _.$_$.wa = plus;
16406
+ _.$_$.xa = CoroutineImpl;
16407
+ _.$_$.ya = startCoroutine;
16408
+ _.$_$.za = enumEntries;
16409
+ _.$_$.ab = println;
16410
+ _.$_$.bb = FunctionAdapter;
16411
+ _.$_$.cb = anyToString;
16412
+ _.$_$.db = arrayIterator;
16413
+ _.$_$.eb = booleanArray;
16414
+ _.$_$.fb = captureStack;
16415
+ _.$_$.gb = charArrayOf;
16416
+ _.$_$.hb = charArray;
16417
+ _.$_$.ib = charCodeAt;
16418
+ _.$_$.jb = charSequenceGet;
16419
+ _.$_$.kb = charSequenceLength;
16420
+ _.$_$.lb = charSequenceSubSequence;
16421
+ _.$_$.mb = compareTo;
16422
+ _.$_$.nb = defineProp;
16423
+ _.$_$.ob = equals;
16424
+ _.$_$.pb = extendThrowable;
16425
+ _.$_$.qb = getBooleanHashCode;
16426
+ _.$_$.rb = getNumberHashCode;
16427
+ _.$_$.sb = getPropertyCallableRef;
16428
+ _.$_$.tb = getStringHashCode;
16429
+ _.$_$.ub = hashCode;
16430
+ _.$_$.vb = initMetadataForClass;
16431
+ _.$_$.wb = initMetadataForCompanion;
16432
+ _.$_$.xb = initMetadataForCoroutine;
16433
+ _.$_$.yb = initMetadataForInterface;
16434
+ _.$_$.zb = initMetadataForLambda;
16435
+ _.$_$.ac = initMetadataForObject;
16436
+ _.$_$.bc = isArray;
16437
+ _.$_$.cc = isBooleanArray;
16438
+ _.$_$.dc = isByteArray;
16439
+ _.$_$.ec = isCharArray;
16440
+ _.$_$.fc = isCharSequence;
16441
+ _.$_$.gc = isDoubleArray;
16442
+ _.$_$.hc = isFloatArray;
16443
+ _.$_$.ic = isIntArray;
16444
+ _.$_$.jc = isInterface;
16445
+ _.$_$.kc = isLongArray;
16446
+ _.$_$.lc = isNumber;
16447
+ _.$_$.mc = isShortArray;
16448
+ _.$_$.nc = isSuspendFunction;
16449
+ _.$_$.oc = get_js;
16450
+ _.$_$.pc = longArray;
16451
+ _.$_$.qc = numberRangeToNumber;
16452
+ _.$_$.rc = numberToByte;
16453
+ _.$_$.sc = numberToChar;
16454
+ _.$_$.tc = numberToInt;
16455
+ _.$_$.uc = numberToLong;
16456
+ _.$_$.vc = objectCreate;
16457
+ _.$_$.wc = protoOf;
16458
+ _.$_$.xc = toByte;
16459
+ _.$_$.yc = toLong;
16460
+ _.$_$.zc = toShort;
16461
+ _.$_$.ad = toString_1;
16462
+ _.$_$.bd = abs;
16463
+ _.$_$.cd = roundToInt;
16464
+ _.$_$.dd = round;
16465
+ _.$_$.ed = ClosedRange;
16466
+ _.$_$.fd = coerceAtLeast_0;
16467
+ _.$_$.gd = coerceAtLeast;
16468
+ _.$_$.hd = coerceAtMost_0;
16469
+ _.$_$.id = coerceAtMost;
16470
+ _.$_$.jd = coerceIn_0;
16471
+ _.$_$.kd = coerceIn;
16472
+ _.$_$.ld = contains_5;
16473
+ _.$_$.md = downTo;
16474
+ _.$_$.nd = step;
16475
+ _.$_$.od = until;
16476
+ _.$_$.pd = KClass;
16477
+ _.$_$.qd = KMutableProperty1;
16478
+ _.$_$.rd = KProperty0;
16479
+ _.$_$.sd = KProperty1;
16480
+ _.$_$.td = KTypeParameter;
16481
+ _.$_$.ud = filter;
16482
+ _.$_$.vd = firstOrNull_2;
16483
+ _.$_$.wd = flatMap;
16484
+ _.$_$.xd = mapNotNull;
16485
+ _.$_$.yd = map;
16486
+ _.$_$.zd = toList_2;
16487
+ _.$_$.ae = concatToString;
16488
+ _.$_$.be = contains_8;
16489
+ _.$_$.ce = contains_7;
16490
+ _.$_$.de = decodeToString;
16491
+ _.$_$.ee = encodeToByteArray;
16492
+ _.$_$.fe = endsWith_0;
16493
+ _.$_$.ge = endsWith;
16494
+ _.$_$.he = equals_0;
16495
+ _.$_$.ie = first_2;
16496
+ _.$_$.je = indexOfAny;
16497
+ _.$_$.ke = indexOf_5;
16498
+ _.$_$.le = indexOf_4;
16499
+ _.$_$.me = isBlank;
16500
+ _.$_$.ne = isHighSurrogate;
16501
+ _.$_$.oe = isLowSurrogate;
16502
+ _.$_$.pe = isSurrogate;
16503
+ _.$_$.qe = isWhitespace;
16504
+ _.$_$.re = get_lastIndex_3;
16505
+ _.$_$.se = lastIndexOf_0;
16506
+ _.$_$.te = last_2;
16507
+ _.$_$.ue = padStart;
16508
+ _.$_$.ve = removePrefix;
16509
+ _.$_$.we = removeSuffix;
16510
+ _.$_$.xe = repeat;
16511
+ _.$_$.ye = replace;
16512
+ _.$_$.ze = replace_0;
16513
+ _.$_$.af = single_2;
16514
+ _.$_$.bf = split;
16515
+ _.$_$.cf = split_0;
16516
+ _.$_$.df = startsWith;
16517
+ _.$_$.ef = startsWith_1;
16518
+ _.$_$.ff = substringAfter;
16519
+ _.$_$.gf = substringBefore;
16520
+ _.$_$.hf = substring_0;
16521
+ _.$_$.if = substring;
16522
+ _.$_$.jf = take_0;
16523
+ _.$_$.kf = toBooleanStrictOrNull;
16524
+ _.$_$.lf = toDoubleOrNull;
16525
+ _.$_$.mf = toDouble;
16526
+ _.$_$.nf = toIntOrNull;
16527
+ _.$_$.of = toInt;
16528
+ _.$_$.pf = toLongOrNull;
16529
+ _.$_$.qf = toLong_0;
16530
+ _.$_$.rf = toString_3;
16531
+ _.$_$.sf = toUByte;
16532
+ _.$_$.tf = toUInt;
16533
+ _.$_$.uf = toULongOrNull;
16534
+ _.$_$.vf = toULong;
16535
+ _.$_$.wf = toUShort;
16536
+ _.$_$.xf = trimIndent;
16537
+ _.$_$.yf = trimMargin;
16538
+ _.$_$.zf = trim;
16539
+ _.$_$.ag = Duration;
16540
+ _.$_$.bg = Instant;
16541
+ _.$_$.cg = toDuration_1;
16542
+ _.$_$.dg = toDuration_0;
16543
+ _.$_$.eg = toDuration;
16544
+ _.$_$.fg = Uuid;
16545
+ _.$_$.gg = ArithmeticException;
16546
+ _.$_$.hg = Char;
16547
+ _.$_$.ig = Comparable;
16548
+ _.$_$.jg = Comparator;
16549
+ _.$_$.kg = DeepRecursiveFunction;
16550
+ _.$_$.lg = DeepRecursiveScope;
16551
+ _.$_$.mg = Enum;
16552
+ _.$_$.ng = Error_0;
16553
+ _.$_$.og = Exception;
16554
+ _.$_$.pg = IllegalArgumentException;
16555
+ _.$_$.qg = IllegalStateException;
16556
+ _.$_$.rg = Long;
16557
+ _.$_$.sg = NoSuchElementException;
16558
+ _.$_$.tg = NotImplementedError;
16559
+ _.$_$.ug = Pair;
16560
+ _.$_$.vg = Result;
16561
+ _.$_$.wg = RuntimeException;
16562
+ _.$_$.xg = THROW_CCE;
16563
+ _.$_$.yg = THROW_IAE;
16564
+ _.$_$.zg = Triple;
16565
+ _.$_$.ah = UByteArray;
16566
+ _.$_$.bh = UByte;
16567
+ _.$_$.ch = UIntArray;
16568
+ _.$_$.dh = UInt;
16569
+ _.$_$.eh = ULongArray;
16570
+ _.$_$.fh = ULong;
16571
+ _.$_$.gh = UShortArray;
16572
+ _.$_$.hh = UShort;
16573
+ _.$_$.ih = Unit;
16574
+ _.$_$.jh = UnsupportedOperationException;
16575
+ _.$_$.kh = addSuppressed;
16576
+ _.$_$.lh = arrayOf;
16577
+ _.$_$.mh = countTrailingZeroBits;
16578
+ _.$_$.nh = createFailure;
16579
+ _.$_$.oh = ensureNotNull;
16580
+ _.$_$.ph = invoke;
16581
+ _.$_$.qh = isFinite;
16582
+ _.$_$.rh = isFinite_0;
16583
+ _.$_$.sh = isNaN_0;
16584
+ _.$_$.th = lazy_0;
16585
+ _.$_$.uh = lazy;
16586
+ _.$_$.vh = noWhenBranchMatchedException;
16587
+ _.$_$.wh = plus_4;
16588
+ _.$_$.xh = printStackTrace;
16589
+ _.$_$.yh = stackTraceToString;
16590
+ _.$_$.zh = throwOnFailure;
16591
+ _.$_$.ai = throwUninitializedPropertyAccessException;
16592
+ _.$_$.bi = toString_0;
16593
+ _.$_$.ci = to;
16566
16594
  //endregion
16567
16595
  return _;
16568
16596
  }));