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