client_plugin_logic_deb 1.8.357 → 1.8.360

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 (37) 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 +73 -73
  4. package/Logic_Debertz-client_plugin.js +2290 -2290
  5. package/Logic_Debertz-client_plugin.js.map +1 -1
  6. package/Logic_Debertz-core.js +55 -55
  7. package/Logic_Debertz-core.js.map +1 -1
  8. package/Logic_Debertz-engine.js +136 -164
  9. package/Logic_Debertz-engine.js.map +1 -1
  10. package/Logic_Debertz-game_client.js +7483 -6926
  11. package/Logic_Debertz-game_client.js.map +1 -1
  12. package/Logic_Debertz-game_server.js +737 -737
  13. package/error-library-error.js +5 -5
  14. package/kotlin-kotlin-stdlib.js +260 -274
  15. package/kotlin-kotlin-stdlib.js.map +1 -1
  16. package/kotlinx-atomicfu.js +5 -5
  17. package/kotlinx-coroutines-core.js +60 -60
  18. package/kotlinx-io-kotlinx-io-core.js +25 -25
  19. package/kotlinx-serialization-kotlinx-serialization-core.js +71 -71
  20. package/kotlinx-serialization-kotlinx-serialization-json.js +77 -77
  21. package/ktor-ktor-client-content-negotiation.js +20 -20
  22. package/ktor-ktor-client-core.js +57 -57
  23. package/ktor-ktor-client-logging.js +23 -23
  24. package/ktor-ktor-events.js +5 -5
  25. package/ktor-ktor-http.js +69 -69
  26. package/ktor-ktor-io.js +45 -45
  27. package/ktor-ktor-serialization-kotlinx.js +14 -14
  28. package/ktor-ktor-serialization.js +15 -15
  29. package/ktor-ktor-utils.js +43 -43
  30. package/ktor-ktor-websockets.js +13 -13
  31. package/package.json +1 -1
  32. package/random-library-crypto-rand.js +11 -11
  33. package/random-library-secure-random.js +5 -5
  34. package/raspberry-cardgame-lib-core.js +35 -35
  35. package/raspberry-cardgame-lib-logger.js +13 -13
  36. package/raspberry-cardgame-lib-random.js +35 -35
  37. package/uuid.js +12 -12
@@ -13,12 +13,12 @@
13
13
  'use strict';
14
14
  //region block: imports
15
15
  var Exception_init_$Init$ = kotlin_kotlin.$_$.i1;
16
- var protoOf = kotlin_kotlin.$_$.wc;
17
- var objectCreate = kotlin_kotlin.$_$.vc;
18
- var captureStack = kotlin_kotlin.$_$.fb;
16
+ var protoOf = kotlin_kotlin.$_$.uc;
17
+ var objectCreate = kotlin_kotlin.$_$.tc;
18
+ var captureStack = kotlin_kotlin.$_$.db;
19
19
  var Exception_init_$Init$_0 = kotlin_kotlin.$_$.k1;
20
- var Exception = kotlin_kotlin.$_$.og;
21
- var initMetadataForClass = kotlin_kotlin.$_$.vb;
20
+ var Exception = kotlin_kotlin.$_$.mg;
21
+ var initMetadataForClass = kotlin_kotlin.$_$.tb;
22
22
  //endregion
23
23
  //region block: pre-declaration
24
24
  initMetadataForClass(GeneralSecurityException, 'GeneralSecurityException', GeneralSecurityException_init_$Create$, Exception);
@@ -1022,30 +1022,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
1022
1022
  }
1023
1023
  return count === 0 ? NaN : sum / count;
1024
1024
  }
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;
1036
- }
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;
1046
- }
1047
- return max;
1048
- }
1049
1025
  function toList_0(_this__u8e3s4) {
1050
1026
  if (isInterface(_this__u8e3s4, Collection)) {
1051
1027
  var tmp;
@@ -1207,6 +1183,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
1207
1183
  return single;
1208
1184
  }
1209
1185
  }
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
+ }
1210
1198
  function dropLast(_this__u8e3s4, n) {
1211
1199
  // Inline function 'kotlin.require' call
1212
1200
  if (!(n >= 0)) {
@@ -1311,9 +1299,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
1311
1299
  function coerceAtLeast(_this__u8e3s4, minimumValue) {
1312
1300
  return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
1313
1301
  }
1314
- function coerceAtLeast_0(_this__u8e3s4, minimumValue) {
1315
- return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
1316
- }
1317
1302
  function coerceIn_0(_this__u8e3s4, minimumValue, maximumValue) {
1318
1303
  if (minimumValue > maximumValue)
1319
1304
  throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: maximum ' + maximumValue + ' is less than minimum ' + minimumValue + '.');
@@ -1323,6 +1308,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
1323
1308
  return maximumValue;
1324
1309
  return _this__u8e3s4;
1325
1310
  }
1311
+ function coerceAtLeast_0(_this__u8e3s4, minimumValue) {
1312
+ return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
1313
+ }
1326
1314
  function contains_5(_this__u8e3s4, value) {
1327
1315
  // Inline function 'kotlin.let' call
1328
1316
  var it = toIntExactOrNull(value);
@@ -16344,253 +16332,251 @@ if (typeof String.prototype.endsWith === 'undefined') {
16344
16332
  _.$_$.n8 = mapCapacity;
16345
16333
  _.$_$.o8 = mapOf;
16346
16334
  _.$_$.p8 = mapOf_0;
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;
16335
+ _.$_$.q8 = minus;
16336
+ _.$_$.r8 = mutableListOf;
16337
+ _.$_$.s8 = none;
16338
+ _.$_$.t8 = plus_5;
16339
+ _.$_$.u8 = plus_3;
16340
+ _.$_$.v8 = plus_2;
16341
+ _.$_$.w8 = plus_1;
16342
+ _.$_$.x8 = plus_0;
16343
+ _.$_$.y8 = removeFirstOrNull;
16344
+ _.$_$.z8 = removeLastOrNull;
16345
+ _.$_$.a9 = removeLast;
16346
+ _.$_$.b9 = reversed;
16347
+ _.$_$.c9 = reverse;
16348
+ _.$_$.d9 = setOf;
16349
+ _.$_$.e9 = setOf_0;
16350
+ _.$_$.f9 = singleOrNull;
16351
+ _.$_$.g9 = single_0;
16352
+ _.$_$.h9 = sortWith_0;
16353
+ _.$_$.i9 = sortedWith;
16354
+ _.$_$.j9 = sorted;
16355
+ _.$_$.k9 = sum;
16356
+ _.$_$.l9 = takeLast;
16357
+ _.$_$.m9 = take;
16358
+ _.$_$.n9 = toBooleanArray;
16359
+ _.$_$.o9 = toHashSet;
16360
+ _.$_$.p9 = toList_1;
16361
+ _.$_$.q9 = toList_0;
16362
+ _.$_$.r9 = toList;
16363
+ _.$_$.s9 = toMap_3;
16364
+ _.$_$.t9 = toMap_0;
16365
+ _.$_$.u9 = toMap;
16366
+ _.$_$.v9 = toMutableList_0;
16367
+ _.$_$.w9 = toMutableMap;
16368
+ _.$_$.x9 = toMutableSet;
16369
+ _.$_$.y9 = toSet_0;
16370
+ _.$_$.z9 = toTypedArray;
16371
+ _.$_$.aa = withIndex;
16372
+ _.$_$.ba = zip_0;
16373
+ _.$_$.ca = zip;
16374
+ _.$_$.da = compareValuesBy;
16375
+ _.$_$.ea = compareValues;
16376
+ _.$_$.fa = CancellationException;
16377
+ _.$_$.ga = get_COROUTINE_SUSPENDED;
16378
+ _.$_$.ha = createCoroutineUnintercepted;
16379
+ _.$_$.ia = intercepted;
16380
+ _.$_$.ja = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16381
+ _.$_$.ka = AbstractCoroutineContextElement;
16382
+ _.$_$.la = AbstractCoroutineContextKey;
16383
+ _.$_$.ma = get_0;
16384
+ _.$_$.na = minusKey_0;
16385
+ _.$_$.oa = ContinuationInterceptor;
16386
+ _.$_$.pa = Continuation;
16387
+ _.$_$.qa = fold;
16388
+ _.$_$.ra = get;
16389
+ _.$_$.sa = minusKey;
16390
+ _.$_$.ta = Element;
16391
+ _.$_$.ua = plus;
16392
+ _.$_$.va = CoroutineImpl;
16393
+ _.$_$.wa = startCoroutine;
16394
+ _.$_$.xa = enumEntries;
16395
+ _.$_$.ya = println;
16396
+ _.$_$.za = FunctionAdapter;
16397
+ _.$_$.ab = anyToString;
16398
+ _.$_$.bb = arrayIterator;
16399
+ _.$_$.cb = booleanArray;
16400
+ _.$_$.db = captureStack;
16401
+ _.$_$.eb = charArrayOf;
16402
+ _.$_$.fb = charArray;
16403
+ _.$_$.gb = charCodeAt;
16404
+ _.$_$.hb = charSequenceGet;
16405
+ _.$_$.ib = charSequenceLength;
16406
+ _.$_$.jb = charSequenceSubSequence;
16407
+ _.$_$.kb = compareTo;
16408
+ _.$_$.lb = defineProp;
16409
+ _.$_$.mb = equals;
16410
+ _.$_$.nb = extendThrowable;
16411
+ _.$_$.ob = getBooleanHashCode;
16412
+ _.$_$.pb = getNumberHashCode;
16413
+ _.$_$.qb = getPropertyCallableRef;
16414
+ _.$_$.rb = getStringHashCode;
16415
+ _.$_$.sb = hashCode;
16416
+ _.$_$.tb = initMetadataForClass;
16417
+ _.$_$.ub = initMetadataForCompanion;
16418
+ _.$_$.vb = initMetadataForCoroutine;
16419
+ _.$_$.wb = initMetadataForInterface;
16420
+ _.$_$.xb = initMetadataForLambda;
16421
+ _.$_$.yb = initMetadataForObject;
16422
+ _.$_$.zb = isArray;
16423
+ _.$_$.ac = isBooleanArray;
16424
+ _.$_$.bc = isByteArray;
16425
+ _.$_$.cc = isCharArray;
16426
+ _.$_$.dc = isCharSequence;
16427
+ _.$_$.ec = isDoubleArray;
16428
+ _.$_$.fc = isFloatArray;
16429
+ _.$_$.gc = isIntArray;
16430
+ _.$_$.hc = isInterface;
16431
+ _.$_$.ic = isLongArray;
16432
+ _.$_$.jc = isNumber;
16433
+ _.$_$.kc = isShortArray;
16434
+ _.$_$.lc = isSuspendFunction;
16435
+ _.$_$.mc = get_js;
16436
+ _.$_$.nc = longArray;
16437
+ _.$_$.oc = numberRangeToNumber;
16438
+ _.$_$.pc = numberToByte;
16439
+ _.$_$.qc = numberToChar;
16440
+ _.$_$.rc = numberToInt;
16441
+ _.$_$.sc = numberToLong;
16442
+ _.$_$.tc = objectCreate;
16443
+ _.$_$.uc = protoOf;
16444
+ _.$_$.vc = toByte;
16445
+ _.$_$.wc = toLong;
16446
+ _.$_$.xc = toShort;
16447
+ _.$_$.yc = toString_1;
16448
+ _.$_$.zc = abs;
16449
+ _.$_$.ad = roundToInt;
16450
+ _.$_$.bd = round;
16451
+ _.$_$.cd = ClosedRange;
16452
+ _.$_$.dd = coerceAtLeast_0;
16453
+ _.$_$.ed = coerceAtLeast;
16454
+ _.$_$.fd = coerceAtMost_0;
16455
+ _.$_$.gd = coerceAtMost;
16456
+ _.$_$.hd = coerceIn_0;
16457
+ _.$_$.id = coerceIn;
16458
+ _.$_$.jd = contains_5;
16459
+ _.$_$.kd = downTo;
16460
+ _.$_$.ld = step;
16461
+ _.$_$.md = until;
16462
+ _.$_$.nd = KClass;
16463
+ _.$_$.od = KMutableProperty1;
16464
+ _.$_$.pd = KProperty0;
16465
+ _.$_$.qd = KProperty1;
16466
+ _.$_$.rd = KTypeParameter;
16467
+ _.$_$.sd = filter;
16468
+ _.$_$.td = firstOrNull_2;
16469
+ _.$_$.ud = flatMap;
16470
+ _.$_$.vd = mapNotNull;
16471
+ _.$_$.wd = map;
16472
+ _.$_$.xd = toList_2;
16473
+ _.$_$.yd = concatToString;
16474
+ _.$_$.zd = contains_8;
16475
+ _.$_$.ae = contains_7;
16476
+ _.$_$.be = decodeToString;
16477
+ _.$_$.ce = encodeToByteArray;
16478
+ _.$_$.de = endsWith_0;
16479
+ _.$_$.ee = endsWith;
16480
+ _.$_$.fe = equals_0;
16481
+ _.$_$.ge = first_2;
16482
+ _.$_$.he = indexOfAny;
16483
+ _.$_$.ie = indexOf_5;
16484
+ _.$_$.je = indexOf_4;
16485
+ _.$_$.ke = isBlank;
16486
+ _.$_$.le = isHighSurrogate;
16487
+ _.$_$.me = isLowSurrogate;
16488
+ _.$_$.ne = isSurrogate;
16489
+ _.$_$.oe = isWhitespace;
16490
+ _.$_$.pe = get_lastIndex_3;
16491
+ _.$_$.qe = lastIndexOf_0;
16492
+ _.$_$.re = last_2;
16493
+ _.$_$.se = padStart;
16494
+ _.$_$.te = removePrefix;
16495
+ _.$_$.ue = removeSuffix;
16496
+ _.$_$.ve = repeat;
16497
+ _.$_$.we = replace;
16498
+ _.$_$.xe = replace_0;
16499
+ _.$_$.ye = single_2;
16500
+ _.$_$.ze = split;
16501
+ _.$_$.af = split_0;
16502
+ _.$_$.bf = startsWith;
16503
+ _.$_$.cf = startsWith_1;
16504
+ _.$_$.df = substringAfter;
16505
+ _.$_$.ef = substringBefore;
16506
+ _.$_$.ff = substring_0;
16507
+ _.$_$.gf = substring;
16508
+ _.$_$.hf = take_0;
16509
+ _.$_$.if = toBooleanStrictOrNull;
16510
+ _.$_$.jf = toDoubleOrNull;
16511
+ _.$_$.kf = toDouble;
16512
+ _.$_$.lf = toIntOrNull;
16513
+ _.$_$.mf = toInt;
16514
+ _.$_$.nf = toLongOrNull;
16515
+ _.$_$.of = toLong_0;
16516
+ _.$_$.pf = toString_3;
16517
+ _.$_$.qf = toUByte;
16518
+ _.$_$.rf = toUInt;
16519
+ _.$_$.sf = toULongOrNull;
16520
+ _.$_$.tf = toULong;
16521
+ _.$_$.uf = toUShort;
16522
+ _.$_$.vf = trimIndent;
16523
+ _.$_$.wf = trimMargin;
16524
+ _.$_$.xf = trim;
16525
+ _.$_$.yf = Duration;
16526
+ _.$_$.zf = Instant;
16527
+ _.$_$.ag = toDuration_1;
16528
+ _.$_$.bg = toDuration_0;
16529
+ _.$_$.cg = toDuration;
16530
+ _.$_$.dg = Uuid;
16531
+ _.$_$.eg = ArithmeticException;
16532
+ _.$_$.fg = Char;
16533
+ _.$_$.gg = Comparable;
16534
+ _.$_$.hg = Comparator;
16535
+ _.$_$.ig = DeepRecursiveFunction;
16536
+ _.$_$.jg = DeepRecursiveScope;
16537
+ _.$_$.kg = Enum;
16538
+ _.$_$.lg = Error_0;
16539
+ _.$_$.mg = Exception;
16540
+ _.$_$.ng = IllegalArgumentException;
16541
+ _.$_$.og = IllegalStateException;
16542
+ _.$_$.pg = Long;
16543
+ _.$_$.qg = NoSuchElementException;
16544
+ _.$_$.rg = NotImplementedError;
16545
+ _.$_$.sg = Pair;
16546
+ _.$_$.tg = Result;
16547
+ _.$_$.ug = RuntimeException;
16548
+ _.$_$.vg = THROW_CCE;
16549
+ _.$_$.wg = THROW_IAE;
16550
+ _.$_$.xg = Triple;
16551
+ _.$_$.yg = UByteArray;
16552
+ _.$_$.zg = UByte;
16553
+ _.$_$.ah = UIntArray;
16554
+ _.$_$.bh = UInt;
16555
+ _.$_$.ch = ULongArray;
16556
+ _.$_$.dh = ULong;
16557
+ _.$_$.eh = UShortArray;
16558
+ _.$_$.fh = UShort;
16559
+ _.$_$.gh = Unit;
16560
+ _.$_$.hh = UnsupportedOperationException;
16561
+ _.$_$.ih = addSuppressed;
16562
+ _.$_$.jh = arrayOf;
16563
+ _.$_$.kh = countTrailingZeroBits;
16564
+ _.$_$.lh = createFailure;
16565
+ _.$_$.mh = ensureNotNull;
16566
+ _.$_$.nh = invoke;
16567
+ _.$_$.oh = isFinite;
16568
+ _.$_$.ph = isFinite_0;
16569
+ _.$_$.qh = isNaN_0;
16570
+ _.$_$.rh = lazy_0;
16571
+ _.$_$.sh = lazy;
16572
+ _.$_$.th = noWhenBranchMatchedException;
16573
+ _.$_$.uh = plus_4;
16574
+ _.$_$.vh = printStackTrace;
16575
+ _.$_$.wh = stackTraceToString;
16576
+ _.$_$.xh = throwOnFailure;
16577
+ _.$_$.yh = throwUninitializedPropertyAccessException;
16578
+ _.$_$.zh = toString_0;
16579
+ _.$_$.ai = to;
16594
16580
  //endregion
16595
16581
  return _;
16596
16582
  }));