game_client_logic_deb 1.8.376 → 1.8.377
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.
- package/Kosi-Kaverit-kaverit.js +5 -5
- package/Kosi-Kodein-kodein-di.js +17 -17
- package/Kotlin-DateTime-library-kotlinx-datetime.js +34 -34
- package/Logic_Debertz-core.js +653 -647
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +10374 -10378
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +11 -12
- package/Logic_Debertz-game_client.js +2606 -2606
- package/error-library-error.js +1 -1
- package/kotlin-kotlin-stdlib.js +157 -165
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +1 -1
- package/kotlinx-coroutines-core.js +21 -21
- package/kotlinx-io-kotlinx-io-core.js +10 -10
- package/kotlinx-serialization-kotlinx-serialization-core.js +39 -39
- package/kotlinx-serialization-kotlinx-serialization-json.js +44 -44
- package/ktor-ktor-client-content-negotiation.js +8 -8
- package/ktor-ktor-client-core.js +23 -23
- package/ktor-ktor-client-logging.js +5 -5
- package/ktor-ktor-events.js +2 -2
- package/ktor-ktor-http.js +37 -37
- package/ktor-ktor-io.js +17 -17
- package/ktor-ktor-serialization-kotlinx.js +2 -2
- package/ktor-ktor-serialization.js +3 -3
- package/ktor-ktor-utils.js +14 -14
- package/ktor-ktor-websockets.js +5 -5
- package/package.json +1 -1
- package/random-library-crypto-rand.js +3 -3
- package/random-library-secure-random.js +1 -1
- package/raspberry-cardgame-lib-core.js +8 -8
- package/raspberry-cardgame-lib-logger.js +5 -5
- package/raspberry-cardgame-lib-random.js +13 -13
- package/uuid.js +4 -4
package/error-library-error.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
var objectCreate = kotlin_kotlin.$_$.gd;
|
|
18
18
|
var captureStack = kotlin_kotlin.$_$.rb;
|
|
19
19
|
var Exception_init_$Init$_0 = kotlin_kotlin.$_$.g1;
|
|
20
|
-
var Exception = kotlin_kotlin.$_$.
|
|
20
|
+
var Exception = kotlin_kotlin.$_$.bh;
|
|
21
21
|
var initMetadataForClass = kotlin_kotlin.$_$.hc;
|
|
22
22
|
//endregion
|
|
23
23
|
//region block: pre-declaration
|
package/kotlin-kotlin-stdlib.js
CHANGED
|
@@ -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)
|
|
@@ -119,8 +119,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
119
119
|
initMetadataForInterface(KtMap, 'Map');
|
|
120
120
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
121
121
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
122
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
123
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
122
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
|
|
123
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
|
|
124
124
|
initMetadataForCompanion(Companion_3);
|
|
125
125
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
126
126
|
initMetadataForCompanion(Companion_4);
|
|
@@ -142,7 +142,7 @@ if (typeof String.prototype.startsWith === '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,
|
|
145
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
|
|
146
146
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
147
147
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
148
148
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -155,7 +155,7 @@ if (typeof String.prototype.startsWith === '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, [
|
|
158
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
|
|
159
159
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
160
160
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
161
161
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -965,7 +965,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
965
965
|
var message = 'Requested element count ' + n + ' is less than zero.';
|
|
966
966
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
967
967
|
}
|
|
968
|
-
return take(_this__u8e3s4,
|
|
968
|
+
return take(_this__u8e3s4, coerceAtLeast(_this__u8e3s4.o() - n | 0, 0));
|
|
969
969
|
}
|
|
970
970
|
function toList_0(_this__u8e3s4) {
|
|
971
971
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
@@ -1291,22 +1291,16 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
1291
1291
|
return maximumValue;
|
|
1292
1292
|
return _this__u8e3s4;
|
|
1293
1293
|
}
|
|
1294
|
-
function coerceAtLeast(_this__u8e3s4, minimumValue) {
|
|
1295
|
-
return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
|
|
1296
|
-
}
|
|
1297
|
-
function coerceAtMost(_this__u8e3s4, maximumValue) {
|
|
1298
|
-
return _this__u8e3s4 > maximumValue ? maximumValue : _this__u8e3s4;
|
|
1299
|
-
}
|
|
1300
1294
|
function downTo(_this__u8e3s4, to) {
|
|
1301
1295
|
return Companion_instance_16.y(_this__u8e3s4, to, -1);
|
|
1302
1296
|
}
|
|
1303
|
-
function
|
|
1297
|
+
function coerceAtMost(_this__u8e3s4, maximumValue) {
|
|
1304
1298
|
return _this__u8e3s4 > maximumValue ? maximumValue : _this__u8e3s4;
|
|
1305
1299
|
}
|
|
1306
|
-
function
|
|
1300
|
+
function coerceAtLeast(_this__u8e3s4, minimumValue) {
|
|
1307
1301
|
return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
|
|
1308
1302
|
}
|
|
1309
|
-
function
|
|
1303
|
+
function coerceAtMost_0(_this__u8e3s4, maximumValue) {
|
|
1310
1304
|
return compare(_this__u8e3s4, maximumValue) > 0 ? maximumValue : _this__u8e3s4;
|
|
1311
1305
|
}
|
|
1312
1306
|
function coerceIn_0(_this__u8e3s4, minimumValue, maximumValue) {
|
|
@@ -1444,7 +1438,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
1444
1438
|
var message = 'Requested character count ' + n + ' is less than zero.';
|
|
1445
1439
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
1446
1440
|
}
|
|
1447
|
-
return substring(_this__u8e3s4, 0,
|
|
1441
|
+
return substring(_this__u8e3s4, 0, coerceAtMost(n, _this__u8e3s4.length));
|
|
1448
1442
|
}
|
|
1449
1443
|
function single_2(_this__u8e3s4) {
|
|
1450
1444
|
var tmp;
|
|
@@ -1465,7 +1459,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
1465
1459
|
var message = 'Requested character count ' + n + ' is less than zero.';
|
|
1466
1460
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
1467
1461
|
}
|
|
1468
|
-
return substring_0(_this__u8e3s4,
|
|
1462
|
+
return substring_0(_this__u8e3s4, coerceAtMost(n, _this__u8e3s4.length));
|
|
1469
1463
|
}
|
|
1470
1464
|
function dropLast_0(_this__u8e3s4, n) {
|
|
1471
1465
|
// Inline function 'kotlin.require' call
|
|
@@ -1473,7 +1467,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
1473
1467
|
var message = 'Requested character count ' + n + ' is less than zero.';
|
|
1474
1468
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
1475
1469
|
}
|
|
1476
|
-
return take_0(_this__u8e3s4,
|
|
1470
|
+
return take_0(_this__u8e3s4, coerceAtLeast(_this__u8e3s4.length - n | 0, 0));
|
|
1477
1471
|
}
|
|
1478
1472
|
function _Char___init__impl__6a9atx(value) {
|
|
1479
1473
|
return value;
|
|
@@ -5097,7 +5091,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
5097
5091
|
function HashSet() {
|
|
5098
5092
|
}
|
|
5099
5093
|
function computeHashSize($this, capacity) {
|
|
5100
|
-
return takeHighestOneBit(imul(
|
|
5094
|
+
return takeHighestOneBit(imul(coerceAtLeast(capacity, 1), 3));
|
|
5101
5095
|
}
|
|
5102
5096
|
function computeShift($this, hashSize) {
|
|
5103
5097
|
// Inline function 'kotlin.countLeadingZeroBits' call
|
|
@@ -5285,7 +5279,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
5285
5279
|
$this.t5();
|
|
5286
5280
|
retry: while (true) {
|
|
5287
5281
|
var hash_0 = hash($this, key);
|
|
5288
|
-
var tentativeMaxProbeDistance =
|
|
5282
|
+
var tentativeMaxProbeDistance = coerceAtMost(imul($this.s6_1, 2), _get_hashSize__tftcho($this) / 2 | 0);
|
|
5289
5283
|
var probeDistance = 0;
|
|
5290
5284
|
while (true) {
|
|
5291
5285
|
var index = $this.r6_1[hash_0];
|
|
@@ -5338,7 +5332,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
5338
5332
|
var hash_0 = removedHash;
|
|
5339
5333
|
var hole = removedHash;
|
|
5340
5334
|
var probeDistance = 0;
|
|
5341
|
-
var patchAttemptsLeft =
|
|
5335
|
+
var patchAttemptsLeft = coerceAtMost(imul($this.s6_1, 2), _get_hashSize__tftcho($this) / 2 | 0);
|
|
5342
5336
|
while (true) {
|
|
5343
5337
|
var _unary__edvuaz = hash_0;
|
|
5344
5338
|
hash_0 = _unary__edvuaz - 1 | 0;
|
|
@@ -8209,10 +8203,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
8209
8203
|
function formatBytesInto(_this__u8e3s4, dst, dstOffset, startIndex, endIndex) {
|
|
8210
8204
|
var dstIndex = dstOffset;
|
|
8211
8205
|
if (startIndex < 4) {
|
|
8212
|
-
dstIndex = formatBytesInto_0(_this__u8e3s4.y2_1, dst, dstIndex, startIndex,
|
|
8206
|
+
dstIndex = formatBytesInto_0(_this__u8e3s4.y2_1, dst, dstIndex, startIndex, coerceAtMost(endIndex, 4));
|
|
8213
8207
|
}
|
|
8214
8208
|
if (endIndex > 4) {
|
|
8215
|
-
formatBytesInto_0(_this__u8e3s4.x2_1, dst, dstIndex,
|
|
8209
|
+
formatBytesInto_0(_this__u8e3s4.x2_1, dst, dstIndex, coerceAtLeast(startIndex - 4 | 0, 0), endIndex - 4 | 0);
|
|
8216
8210
|
}
|
|
8217
8211
|
}
|
|
8218
8212
|
function uuidParseHexDash(hexDashString) {
|
|
@@ -8771,7 +8765,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
8771
8765
|
if ($this.id_1 === Companion_getInstance_11().kd_1) {
|
|
8772
8766
|
var tmp = $this;
|
|
8773
8767
|
// Inline function 'kotlin.arrayOfNulls' call
|
|
8774
|
-
var size =
|
|
8768
|
+
var size = coerceAtLeast(minCapacity, 10);
|
|
8775
8769
|
tmp.id_1 = Array(size);
|
|
8776
8770
|
return Unit_instance;
|
|
8777
8771
|
}
|
|
@@ -11698,7 +11692,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11698
11692
|
}
|
|
11699
11693
|
function throwNotContainedAt(_this__u8e3s4, index, endIndex, part, partName) {
|
|
11700
11694
|
_init_properties_HexExtensions_kt__wu8rc3();
|
|
11701
|
-
var substring_0 = substring(_this__u8e3s4, index,
|
|
11695
|
+
var substring_0 = substring(_this__u8e3s4, index, coerceAtMost(index + part.length | 0, endIndex));
|
|
11702
11696
|
throw NumberFormatException_init_$Create$_0('Expected ' + partName + ' "' + part + '" at index ' + index + ', but was ' + substring_0);
|
|
11703
11697
|
}
|
|
11704
11698
|
var properties_initialized_HexExtensions_kt_h16sbl;
|
|
@@ -12445,7 +12439,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12445
12439
|
// Inline function 'kotlin.js.asDynamic' call
|
|
12446
12440
|
return _this__u8e3s4.indexOf(str, startIndex);
|
|
12447
12441
|
}
|
|
12448
|
-
var inductionVariable =
|
|
12442
|
+
var inductionVariable = coerceAtLeast(startIndex, 0);
|
|
12449
12443
|
var last = get_lastIndex_3(_this__u8e3s4);
|
|
12450
12444
|
if (inductionVariable <= last)
|
|
12451
12445
|
do {
|
|
@@ -12553,7 +12547,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12553
12547
|
return listOf(toString_1(_this__u8e3s4));
|
|
12554
12548
|
}
|
|
12555
12549
|
var isLimited = limit > 0;
|
|
12556
|
-
var result = ArrayList_init_$Create$_0(isLimited ?
|
|
12550
|
+
var result = ArrayList_init_$Create$_0(isLimited ? coerceAtMost(limit, 10) : 10);
|
|
12557
12551
|
$l$loop: do {
|
|
12558
12552
|
var tmp2 = currentOffset;
|
|
12559
12553
|
// Inline function 'kotlin.text.substring' call
|
|
@@ -12586,7 +12580,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12586
12580
|
}
|
|
12587
12581
|
function indexOf_6(_this__u8e3s4, other, startIndex, endIndex, ignoreCase, last) {
|
|
12588
12582
|
last = last === VOID ? false : last;
|
|
12589
|
-
var indices = !last ? numberRangeToNumber(
|
|
12583
|
+
var indices = !last ? numberRangeToNumber(coerceAtLeast(startIndex, 0), coerceAtMost(endIndex, charSequenceLength(_this__u8e3s4))) : downTo(coerceAtMost(startIndex, get_lastIndex_3(_this__u8e3s4)), coerceAtLeast(endIndex, 0));
|
|
12590
12584
|
var tmp;
|
|
12591
12585
|
if (typeof _this__u8e3s4 === 'string') {
|
|
12592
12586
|
tmp = typeof other === 'string';
|
|
@@ -12844,7 +12838,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12844
12838
|
var index = !last ? indexOf_5(_this__u8e3s4, string, startIndex) : lastIndexOf_0(_this__u8e3s4, string, startIndex);
|
|
12845
12839
|
return index < 0 ? null : to(index, string);
|
|
12846
12840
|
}
|
|
12847
|
-
var indices = !last ? numberRangeToNumber(
|
|
12841
|
+
var indices = !last ? numberRangeToNumber(coerceAtLeast(startIndex, 0), charSequenceLength(_this__u8e3s4)) : downTo(coerceAtMost(startIndex, get_lastIndex_3(_this__u8e3s4)), 0);
|
|
12848
12842
|
if (typeof _this__u8e3s4 === 'string') {
|
|
12849
12843
|
var inductionVariable = indices.z_1;
|
|
12850
12844
|
var last_0 = indices.a1_1;
|
|
@@ -16481,138 +16475,136 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
16481
16475
|
_.$_$.nd = round;
|
|
16482
16476
|
_.$_$.od = ClosedRange;
|
|
16483
16477
|
_.$_$.pd = coerceAtLeast;
|
|
16484
|
-
_.$_$.qd =
|
|
16478
|
+
_.$_$.qd = coerceAtMost_0;
|
|
16485
16479
|
_.$_$.rd = coerceAtMost;
|
|
16486
|
-
_.$_$.sd =
|
|
16487
|
-
_.$_$.td =
|
|
16488
|
-
_.$_$.ud =
|
|
16489
|
-
_.$_$.vd =
|
|
16490
|
-
_.$_$.wd =
|
|
16491
|
-
_.$_$.xd =
|
|
16492
|
-
_.$_$.yd =
|
|
16493
|
-
_.$_$.zd =
|
|
16494
|
-
_.$_$.ae =
|
|
16495
|
-
_.$_$.be =
|
|
16496
|
-
_.$_$.ce =
|
|
16497
|
-
_.$_$.de =
|
|
16498
|
-
_.$_$.ee =
|
|
16499
|
-
_.$_$.fe =
|
|
16500
|
-
_.$_$.ge =
|
|
16501
|
-
_.$_$.he =
|
|
16502
|
-
_.$_$.ie =
|
|
16503
|
-
_.$_$.je =
|
|
16504
|
-
_.$_$.ke =
|
|
16505
|
-
_.$_$.le =
|
|
16506
|
-
_.$_$.me =
|
|
16507
|
-
_.$_$.ne =
|
|
16508
|
-
_.$_$.oe =
|
|
16509
|
-
_.$_$.pe =
|
|
16510
|
-
_.$_$.qe =
|
|
16511
|
-
_.$_$.re =
|
|
16512
|
-
_.$_$.se =
|
|
16513
|
-
_.$_$.te =
|
|
16514
|
-
_.$_$.ue =
|
|
16515
|
-
_.$_$.ve =
|
|
16516
|
-
_.$_$.we =
|
|
16517
|
-
_.$_$.xe =
|
|
16518
|
-
_.$_$.ye =
|
|
16519
|
-
_.$_$.ze =
|
|
16520
|
-
_.$_$.af =
|
|
16521
|
-
_.$_$.bf =
|
|
16522
|
-
_.$_$.cf =
|
|
16523
|
-
_.$_$.df =
|
|
16524
|
-
_.$_$.ef =
|
|
16525
|
-
_.$_$.ff =
|
|
16526
|
-
_.$_$.gf =
|
|
16527
|
-
_.$_$.hf =
|
|
16528
|
-
_.$_$.if =
|
|
16529
|
-
_.$_$.jf =
|
|
16530
|
-
_.$_$.kf =
|
|
16531
|
-
_.$_$.lf =
|
|
16532
|
-
_.$_$.mf =
|
|
16533
|
-
_.$_$.nf =
|
|
16534
|
-
_.$_$.of =
|
|
16535
|
-
_.$_$.pf =
|
|
16536
|
-
_.$_$.qf =
|
|
16537
|
-
_.$_$.rf =
|
|
16538
|
-
_.$_$.sf =
|
|
16539
|
-
_.$_$.tf =
|
|
16540
|
-
_.$_$.uf =
|
|
16541
|
-
_.$_$.vf =
|
|
16542
|
-
_.$_$.wf =
|
|
16543
|
-
_.$_$.xf =
|
|
16544
|
-
_.$_$.yf =
|
|
16545
|
-
_.$_$.zf =
|
|
16546
|
-
_.$_$.ag =
|
|
16547
|
-
_.$_$.bg =
|
|
16548
|
-
_.$_$.cg =
|
|
16549
|
-
_.$_$.dg =
|
|
16550
|
-
_.$_$.eg =
|
|
16551
|
-
_.$_$.fg =
|
|
16552
|
-
_.$_$.gg =
|
|
16553
|
-
_.$_$.hg =
|
|
16554
|
-
_.$_$.ig =
|
|
16555
|
-
_.$_$.jg =
|
|
16556
|
-
_.$_$.kg =
|
|
16557
|
-
_.$_$.lg =
|
|
16558
|
-
_.$_$.mg =
|
|
16559
|
-
_.$_$.ng =
|
|
16560
|
-
_.$_$.og =
|
|
16561
|
-
_.$_$.pg =
|
|
16562
|
-
_.$_$.qg =
|
|
16563
|
-
_.$_$.rg =
|
|
16564
|
-
_.$_$.sg =
|
|
16565
|
-
_.$_$.tg =
|
|
16566
|
-
_.$_$.ug =
|
|
16567
|
-
_.$_$.vg =
|
|
16568
|
-
_.$_$.wg =
|
|
16569
|
-
_.$_$.xg =
|
|
16570
|
-
_.$_$.yg =
|
|
16571
|
-
_.$_$.zg =
|
|
16572
|
-
_.$_$.ah =
|
|
16573
|
-
_.$_$.bh =
|
|
16574
|
-
_.$_$.ch =
|
|
16575
|
-
_.$_$.dh =
|
|
16576
|
-
_.$_$.eh =
|
|
16577
|
-
_.$_$.fh =
|
|
16578
|
-
_.$_$.gh =
|
|
16579
|
-
_.$_$.hh =
|
|
16580
|
-
_.$_$.ih =
|
|
16581
|
-
_.$_$.jh =
|
|
16582
|
-
_.$_$.kh =
|
|
16583
|
-
_.$_$.lh =
|
|
16584
|
-
_.$_$.mh =
|
|
16585
|
-
_.$_$.nh =
|
|
16586
|
-
_.$_$.oh =
|
|
16587
|
-
_.$_$.ph =
|
|
16588
|
-
_.$_$.qh =
|
|
16589
|
-
_.$_$.rh =
|
|
16590
|
-
_.$_$.sh =
|
|
16591
|
-
_.$_$.th =
|
|
16592
|
-
_.$_$.uh =
|
|
16593
|
-
_.$_$.vh =
|
|
16594
|
-
_.$_$.wh =
|
|
16595
|
-
_.$_$.xh =
|
|
16596
|
-
_.$_$.yh =
|
|
16597
|
-
_.$_$.zh =
|
|
16598
|
-
_.$_$.ai =
|
|
16599
|
-
_.$_$.bi =
|
|
16600
|
-
_.$_$.ci =
|
|
16601
|
-
_.$_$.di =
|
|
16602
|
-
_.$_$.ei =
|
|
16603
|
-
_.$_$.fi =
|
|
16604
|
-
_.$_$.gi =
|
|
16605
|
-
_.$_$.hi =
|
|
16606
|
-
_.$_$.ii =
|
|
16607
|
-
_.$_$.ji =
|
|
16608
|
-
_.$_$.ki =
|
|
16609
|
-
_.$_$.li =
|
|
16610
|
-
_.$_$.mi =
|
|
16611
|
-
_.$_$.ni =
|
|
16612
|
-
_.$_$.oi =
|
|
16613
|
-
_.$_$.pi =
|
|
16614
|
-
_.$_$.qi = toString_0;
|
|
16615
|
-
_.$_$.ri = to;
|
|
16480
|
+
_.$_$.sd = coerceIn;
|
|
16481
|
+
_.$_$.td = coerceIn_0;
|
|
16482
|
+
_.$_$.ud = contains_5;
|
|
16483
|
+
_.$_$.vd = downTo;
|
|
16484
|
+
_.$_$.wd = step;
|
|
16485
|
+
_.$_$.xd = until;
|
|
16486
|
+
_.$_$.yd = createInvariantKTypeProjection;
|
|
16487
|
+
_.$_$.zd = createKType;
|
|
16488
|
+
_.$_$.ae = getKClassFromExpression;
|
|
16489
|
+
_.$_$.be = getKClass;
|
|
16490
|
+
_.$_$.ce = KClass;
|
|
16491
|
+
_.$_$.de = KMutableProperty1;
|
|
16492
|
+
_.$_$.ee = KProperty0;
|
|
16493
|
+
_.$_$.fe = KProperty1;
|
|
16494
|
+
_.$_$.ge = KTypeParameter;
|
|
16495
|
+
_.$_$.he = filter;
|
|
16496
|
+
_.$_$.ie = firstOrNull_2;
|
|
16497
|
+
_.$_$.je = flatMap;
|
|
16498
|
+
_.$_$.ke = mapNotNull;
|
|
16499
|
+
_.$_$.le = map;
|
|
16500
|
+
_.$_$.me = toList_2;
|
|
16501
|
+
_.$_$.ne = concatToString;
|
|
16502
|
+
_.$_$.oe = contains_7;
|
|
16503
|
+
_.$_$.pe = contains_8;
|
|
16504
|
+
_.$_$.qe = decodeToString;
|
|
16505
|
+
_.$_$.re = encodeToByteArray;
|
|
16506
|
+
_.$_$.se = endsWith_0;
|
|
16507
|
+
_.$_$.te = endsWith;
|
|
16508
|
+
_.$_$.ue = equals_0;
|
|
16509
|
+
_.$_$.ve = first_2;
|
|
16510
|
+
_.$_$.we = indexOfAny;
|
|
16511
|
+
_.$_$.xe = indexOf_5;
|
|
16512
|
+
_.$_$.ye = indexOf_4;
|
|
16513
|
+
_.$_$.ze = isBlank;
|
|
16514
|
+
_.$_$.af = isHighSurrogate;
|
|
16515
|
+
_.$_$.bf = isLowSurrogate;
|
|
16516
|
+
_.$_$.cf = isSurrogate;
|
|
16517
|
+
_.$_$.df = isWhitespace;
|
|
16518
|
+
_.$_$.ef = get_lastIndex_3;
|
|
16519
|
+
_.$_$.ff = lastIndexOf_0;
|
|
16520
|
+
_.$_$.gf = last_2;
|
|
16521
|
+
_.$_$.hf = padStart;
|
|
16522
|
+
_.$_$.if = removePrefix;
|
|
16523
|
+
_.$_$.jf = removeSuffix;
|
|
16524
|
+
_.$_$.kf = repeat;
|
|
16525
|
+
_.$_$.lf = replace;
|
|
16526
|
+
_.$_$.mf = replace_0;
|
|
16527
|
+
_.$_$.nf = single_2;
|
|
16528
|
+
_.$_$.of = split_0;
|
|
16529
|
+
_.$_$.pf = split;
|
|
16530
|
+
_.$_$.qf = startsWith;
|
|
16531
|
+
_.$_$.rf = startsWith_1;
|
|
16532
|
+
_.$_$.sf = substringAfter;
|
|
16533
|
+
_.$_$.tf = substringBefore;
|
|
16534
|
+
_.$_$.uf = substring_0;
|
|
16535
|
+
_.$_$.vf = substring;
|
|
16536
|
+
_.$_$.wf = take_0;
|
|
16537
|
+
_.$_$.xf = toBooleanStrictOrNull;
|
|
16538
|
+
_.$_$.yf = toDoubleOrNull;
|
|
16539
|
+
_.$_$.zf = toDouble;
|
|
16540
|
+
_.$_$.ag = toIntOrNull;
|
|
16541
|
+
_.$_$.bg = toInt;
|
|
16542
|
+
_.$_$.cg = toLongOrNull;
|
|
16543
|
+
_.$_$.dg = toLong;
|
|
16544
|
+
_.$_$.eg = toString_3;
|
|
16545
|
+
_.$_$.fg = toUByte;
|
|
16546
|
+
_.$_$.gg = toUInt;
|
|
16547
|
+
_.$_$.hg = toULongOrNull;
|
|
16548
|
+
_.$_$.ig = toULong;
|
|
16549
|
+
_.$_$.jg = toUShort;
|
|
16550
|
+
_.$_$.kg = trimIndent;
|
|
16551
|
+
_.$_$.lg = trimMargin;
|
|
16552
|
+
_.$_$.mg = trim;
|
|
16553
|
+
_.$_$.ng = Duration;
|
|
16554
|
+
_.$_$.og = Instant;
|
|
16555
|
+
_.$_$.pg = toDuration_1;
|
|
16556
|
+
_.$_$.qg = toDuration_0;
|
|
16557
|
+
_.$_$.rg = toDuration;
|
|
16558
|
+
_.$_$.sg = Uuid;
|
|
16559
|
+
_.$_$.tg = ArithmeticException;
|
|
16560
|
+
_.$_$.ug = Char;
|
|
16561
|
+
_.$_$.vg = Comparable;
|
|
16562
|
+
_.$_$.wg = Comparator;
|
|
16563
|
+
_.$_$.xg = DeepRecursiveFunction;
|
|
16564
|
+
_.$_$.yg = DeepRecursiveScope;
|
|
16565
|
+
_.$_$.zg = Enum;
|
|
16566
|
+
_.$_$.ah = Error_0;
|
|
16567
|
+
_.$_$.bh = Exception;
|
|
16568
|
+
_.$_$.ch = IllegalArgumentException;
|
|
16569
|
+
_.$_$.dh = IllegalStateException;
|
|
16570
|
+
_.$_$.eh = Long;
|
|
16571
|
+
_.$_$.fh = NoSuchElementException;
|
|
16572
|
+
_.$_$.gh = NotImplementedError;
|
|
16573
|
+
_.$_$.hh = Pair;
|
|
16574
|
+
_.$_$.ih = Result;
|
|
16575
|
+
_.$_$.jh = RuntimeException;
|
|
16576
|
+
_.$_$.kh = THROW_CCE;
|
|
16577
|
+
_.$_$.lh = THROW_IAE;
|
|
16578
|
+
_.$_$.mh = Triple;
|
|
16579
|
+
_.$_$.nh = UByteArray;
|
|
16580
|
+
_.$_$.oh = UByte;
|
|
16581
|
+
_.$_$.ph = UIntArray;
|
|
16582
|
+
_.$_$.qh = UInt;
|
|
16583
|
+
_.$_$.rh = ULongArray;
|
|
16584
|
+
_.$_$.sh = ULong;
|
|
16585
|
+
_.$_$.th = UShortArray;
|
|
16586
|
+
_.$_$.uh = UShort;
|
|
16587
|
+
_.$_$.vh = Unit;
|
|
16588
|
+
_.$_$.wh = UnsupportedOperationException;
|
|
16589
|
+
_.$_$.xh = addSuppressed;
|
|
16590
|
+
_.$_$.yh = arrayOf;
|
|
16591
|
+
_.$_$.zh = countTrailingZeroBits;
|
|
16592
|
+
_.$_$.ai = createFailure;
|
|
16593
|
+
_.$_$.bi = ensureNotNull;
|
|
16594
|
+
_.$_$.ci = invoke;
|
|
16595
|
+
_.$_$.di = isFinite_0;
|
|
16596
|
+
_.$_$.ei = isFinite;
|
|
16597
|
+
_.$_$.fi = isNaN_0;
|
|
16598
|
+
_.$_$.gi = lazy;
|
|
16599
|
+
_.$_$.hi = lazy_0;
|
|
16600
|
+
_.$_$.ii = noWhenBranchMatchedException;
|
|
16601
|
+
_.$_$.ji = plus_4;
|
|
16602
|
+
_.$_$.ki = printStackTrace;
|
|
16603
|
+
_.$_$.li = stackTraceToString;
|
|
16604
|
+
_.$_$.mi = throwOnFailure;
|
|
16605
|
+
_.$_$.ni = throwUninitializedPropertyAccessException;
|
|
16606
|
+
_.$_$.oi = toString_0;
|
|
16607
|
+
_.$_$.pi = to;
|
|
16616
16608
|
//endregion
|
|
16617
16609
|
return _;
|
|
16618
16610
|
}));
|