game_client_logic_deb 1.8.430 → 1.8.432
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 +2 -2
- package/Kosi-Kodein-kodein-di.js +16 -16
- package/Kotlin-DateTime-library-kotlinx-datetime.js +152 -152
- package/Logic_Debertz-ai_module.js +193 -193
- package/Logic_Debertz-core.js +500 -500
- package/Logic_Debertz-engine.js +11597 -11525
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +5 -0
- package/Logic_Debertz-game_client.js +2631 -2631
- package/kotlin-kotlin-stdlib.js +556 -550
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +13 -13
- package/kotlinx-coroutines-core.js +2135 -2135
- package/kotlinx-io-kotlinx-io-core.js +314 -314
- package/kotlinx-serialization-kotlinx-serialization-core.js +1739 -1739
- package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.js +1316 -1316
- package/ktor-ktor-client-content-negotiation.js +123 -123
- package/ktor-ktor-client-core.js +1442 -1442
- package/ktor-ktor-client-logging.js +265 -265
- package/ktor-ktor-events.js +6 -6
- package/ktor-ktor-http.js +590 -590
- package/ktor-ktor-io.js +1241 -1241
- package/ktor-ktor-serialization-kotlinx-json.js +6 -6
- package/ktor-ktor-serialization-kotlinx.js +132 -132
- package/ktor-ktor-serialization.js +61 -61
- package/ktor-ktor-utils.js +483 -483
- package/ktor-ktor-websockets.js +42 -42
- package/package.json +1 -1
- package/random-library-crypto-rand.js +1 -1
- package/random-library-secure-random.js +2 -2
- package/raspberry-cardgame-lib-core.js +7 -7
- package/raspberry-cardgame-lib-logger.js +90 -90
- package/raspberry-cardgame-lib-random.js +756 -756
- package/raspberry-cardgame-lib-random.js.map +1 -1
- package/uuid.js +12 -12
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, MutableIterable, Collection]);
|
|
123
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
|
|
124
124
|
initMetadataForCompanion(Companion_3);
|
|
125
125
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
126
126
|
initMetadataForCompanion(Companion_4);
|
|
@@ -142,7 +142,7 @@ if (typeof String.prototype.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, MutableIterable, Collection]);
|
|
146
146
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
147
147
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
148
148
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -155,7 +155,7 @@ if (typeof String.prototype.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, [MutableIterable, Collection, AbstractMutableCollection]);
|
|
159
159
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
160
160
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
161
161
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -10886,14 +10886,17 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
10886
10886
|
protoOf(Default).pg = function (from, until) {
|
|
10887
10887
|
return this.mg_1.pg(from, until);
|
|
10888
10888
|
};
|
|
10889
|
-
protoOf(Default).qg = function (
|
|
10890
|
-
return this.mg_1.qg(
|
|
10889
|
+
protoOf(Default).qg = function () {
|
|
10890
|
+
return this.mg_1.qg();
|
|
10891
|
+
};
|
|
10892
|
+
protoOf(Default).rg = function (array) {
|
|
10893
|
+
return this.mg_1.rg(array);
|
|
10891
10894
|
};
|
|
10892
|
-
protoOf(Default).
|
|
10893
|
-
return this.mg_1.
|
|
10895
|
+
protoOf(Default).sg = function (size) {
|
|
10896
|
+
return this.mg_1.sg(size);
|
|
10894
10897
|
};
|
|
10895
|
-
protoOf(Default).
|
|
10896
|
-
return this.mg_1.
|
|
10898
|
+
protoOf(Default).tg = function (array, fromIndex, toIndex) {
|
|
10899
|
+
return this.mg_1.tg(array, fromIndex, toIndex);
|
|
10897
10900
|
};
|
|
10898
10901
|
var Default_instance;
|
|
10899
10902
|
function Default_getInstance() {
|
|
@@ -10986,7 +10989,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
10986
10989
|
}
|
|
10987
10990
|
}
|
|
10988
10991
|
};
|
|
10989
|
-
protoOf(Random).
|
|
10992
|
+
protoOf(Random).qg = function () {
|
|
10993
|
+
return !(this.ng(1) === 0);
|
|
10994
|
+
};
|
|
10995
|
+
protoOf(Random).tg = function (array, fromIndex, toIndex) {
|
|
10990
10996
|
// Inline function 'kotlin.require' call
|
|
10991
10997
|
if (!((0 <= fromIndex ? fromIndex <= array.length : false) && (0 <= toIndex ? toIndex <= array.length : false))) {
|
|
10992
10998
|
var message = 'fromIndex (' + fromIndex + ') or toIndex (' + toIndex + ') are out of range: 0..' + array.length + '.';
|
|
@@ -11025,11 +11031,11 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11025
11031
|
while (inductionVariable_0 < remainder);
|
|
11026
11032
|
return array;
|
|
11027
11033
|
};
|
|
11028
|
-
protoOf(Random).
|
|
11029
|
-
return this.
|
|
11034
|
+
protoOf(Random).rg = function (array) {
|
|
11035
|
+
return this.tg(array, 0, array.length);
|
|
11030
11036
|
};
|
|
11031
|
-
protoOf(Random).
|
|
11032
|
-
return this.
|
|
11037
|
+
protoOf(Random).sg = function (size) {
|
|
11038
|
+
return this.rg(new Int8Array(size));
|
|
11033
11039
|
};
|
|
11034
11040
|
function checkRangeBounds(from, until) {
|
|
11035
11041
|
// Inline function 'kotlin.require' call
|
|
@@ -11082,14 +11088,14 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11082
11088
|
}
|
|
11083
11089
|
function checkInvariants($this) {
|
|
11084
11090
|
// Inline function 'kotlin.require' call
|
|
11085
|
-
if (!!(($this.
|
|
11091
|
+
if (!!(($this.xg_1 | $this.yg_1 | $this.zg_1 | $this.ah_1 | $this.bh_1) === 0)) {
|
|
11086
11092
|
var message = 'Initial state must have at least one non-zero element.';
|
|
11087
11093
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
11088
11094
|
}
|
|
11089
11095
|
}
|
|
11090
11096
|
function Companion_12() {
|
|
11091
11097
|
Companion_instance_12 = this;
|
|
11092
|
-
this.
|
|
11098
|
+
this.dh_1 = new Long(0, 0);
|
|
11093
11099
|
}
|
|
11094
11100
|
var Companion_instance_12;
|
|
11095
11101
|
function Companion_getInstance_12() {
|
|
@@ -11100,12 +11106,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11100
11106
|
function XorWowRandom(x, y, z, w, v, addend) {
|
|
11101
11107
|
Companion_getInstance_12();
|
|
11102
11108
|
Random.call(this);
|
|
11103
|
-
this.
|
|
11104
|
-
this.
|
|
11105
|
-
this.
|
|
11106
|
-
this.
|
|
11107
|
-
this.
|
|
11108
|
-
this.
|
|
11109
|
+
this.xg_1 = x;
|
|
11110
|
+
this.yg_1 = y;
|
|
11111
|
+
this.zg_1 = z;
|
|
11112
|
+
this.ah_1 = w;
|
|
11113
|
+
this.bh_1 = v;
|
|
11114
|
+
this.ch_1 = addend;
|
|
11109
11115
|
checkInvariants(this);
|
|
11110
11116
|
// Inline function 'kotlin.repeat' call
|
|
11111
11117
|
var inductionVariable = 0;
|
|
@@ -11118,17 +11124,17 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11118
11124
|
while (inductionVariable < 64);
|
|
11119
11125
|
}
|
|
11120
11126
|
protoOf(XorWowRandom).qe = function () {
|
|
11121
|
-
var t = this.
|
|
11127
|
+
var t = this.xg_1;
|
|
11122
11128
|
t = t ^ (t >>> 2 | 0);
|
|
11123
|
-
this.wg_1 = this.xg_1;
|
|
11124
11129
|
this.xg_1 = this.yg_1;
|
|
11125
11130
|
this.yg_1 = this.zg_1;
|
|
11126
|
-
|
|
11127
|
-
|
|
11131
|
+
this.zg_1 = this.ah_1;
|
|
11132
|
+
var v0 = this.bh_1;
|
|
11133
|
+
this.ah_1 = v0;
|
|
11128
11134
|
t = t ^ t << 1 ^ v0 ^ v0 << 4;
|
|
11129
|
-
this.
|
|
11130
|
-
this.
|
|
11131
|
-
return t + this.
|
|
11135
|
+
this.bh_1 = t;
|
|
11136
|
+
this.ch_1 = this.ch_1 + 362437 | 0;
|
|
11137
|
+
return t + this.ch_1 | 0;
|
|
11132
11138
|
};
|
|
11133
11139
|
protoOf(XorWowRandom).ng = function (bitCount) {
|
|
11134
11140
|
return takeUpperBits(this.qe(), bitCount);
|
|
@@ -11153,11 +11159,11 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11153
11159
|
protoOf(IntRange).d1 = function () {
|
|
11154
11160
|
return this.b1_1;
|
|
11155
11161
|
};
|
|
11156
|
-
protoOf(IntRange).
|
|
11162
|
+
protoOf(IntRange).eh = function (value) {
|
|
11157
11163
|
return this.a1_1 <= value && value <= this.b1_1;
|
|
11158
11164
|
};
|
|
11159
11165
|
protoOf(IntRange).f1 = function (value) {
|
|
11160
|
-
return this.
|
|
11166
|
+
return this.eh(typeof value === 'number' ? value : THROW_CCE());
|
|
11161
11167
|
};
|
|
11162
11168
|
protoOf(IntRange).r = function () {
|
|
11163
11169
|
return this.a1_1 > this.b1_1;
|
|
@@ -11179,7 +11185,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11179
11185
|
};
|
|
11180
11186
|
function Companion_14() {
|
|
11181
11187
|
Companion_instance_14 = this;
|
|
11182
|
-
this.
|
|
11188
|
+
this.fh_1 = new LongRange(new Long(1, 0), new Long(0, 0));
|
|
11183
11189
|
}
|
|
11184
11190
|
var Companion_instance_14;
|
|
11185
11191
|
function Companion_getInstance_14() {
|
|
@@ -11192,38 +11198,38 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11192
11198
|
LongProgression.call(this, start, endInclusive, new Long(1, 0));
|
|
11193
11199
|
}
|
|
11194
11200
|
protoOf(LongRange).e1 = function () {
|
|
11195
|
-
return this.
|
|
11201
|
+
return this.jh_1;
|
|
11196
11202
|
};
|
|
11197
11203
|
protoOf(LongRange).d1 = function () {
|
|
11198
|
-
return this.
|
|
11204
|
+
return this.kh_1;
|
|
11199
11205
|
};
|
|
11200
|
-
protoOf(LongRange).
|
|
11201
|
-
return compare(this.
|
|
11206
|
+
protoOf(LongRange).mh = function (value) {
|
|
11207
|
+
return compare(this.jh_1, value) <= 0 && compare(value, this.kh_1) <= 0;
|
|
11202
11208
|
};
|
|
11203
11209
|
protoOf(LongRange).f1 = function (value) {
|
|
11204
|
-
return this.
|
|
11210
|
+
return this.mh(value instanceof Long ? value : THROW_CCE());
|
|
11205
11211
|
};
|
|
11206
11212
|
protoOf(LongRange).r = function () {
|
|
11207
|
-
return compare(this.
|
|
11213
|
+
return compare(this.jh_1, this.kh_1) > 0;
|
|
11208
11214
|
};
|
|
11209
11215
|
protoOf(LongRange).equals = function (other) {
|
|
11210
11216
|
var tmp;
|
|
11211
11217
|
if (other instanceof LongRange) {
|
|
11212
|
-
tmp = this.r() && other.r() || (equalsLong(this.
|
|
11218
|
+
tmp = this.r() && other.r() || (equalsLong(this.jh_1, other.jh_1) && equalsLong(this.kh_1, other.kh_1));
|
|
11213
11219
|
} else {
|
|
11214
11220
|
tmp = false;
|
|
11215
11221
|
}
|
|
11216
11222
|
return tmp;
|
|
11217
11223
|
};
|
|
11218
11224
|
protoOf(LongRange).hashCode = function () {
|
|
11219
|
-
return this.r() ? -1 : convertToInt(add(multiply(numberToLong(31), bitwiseXor(this.
|
|
11225
|
+
return this.r() ? -1 : convertToInt(add(multiply(numberToLong(31), bitwiseXor(this.jh_1, shiftRightUnsigned(this.jh_1, 32))), bitwiseXor(this.kh_1, shiftRightUnsigned(this.kh_1, 32))));
|
|
11220
11226
|
};
|
|
11221
11227
|
protoOf(LongRange).toString = function () {
|
|
11222
|
-
return this.
|
|
11228
|
+
return this.jh_1.toString() + '..' + this.kh_1.toString();
|
|
11223
11229
|
};
|
|
11224
11230
|
function Companion_15() {
|
|
11225
11231
|
Companion_instance_15 = this;
|
|
11226
|
-
this.
|
|
11232
|
+
this.nh_1 = new CharRange(_Char___init__impl__6a9atx(1), _Char___init__impl__6a9atx(0));
|
|
11227
11233
|
}
|
|
11228
11234
|
var Companion_instance_15;
|
|
11229
11235
|
function Companion_getInstance_15() {
|
|
@@ -11235,31 +11241,31 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11235
11241
|
Companion_getInstance_15();
|
|
11236
11242
|
CharProgression.call(this, start, endInclusive, 1);
|
|
11237
11243
|
}
|
|
11238
|
-
protoOf(CharRange).
|
|
11239
|
-
return this.
|
|
11244
|
+
protoOf(CharRange).rh = function () {
|
|
11245
|
+
return this.sh_1;
|
|
11240
11246
|
};
|
|
11241
11247
|
protoOf(CharRange).e1 = function () {
|
|
11242
|
-
return new Char(this.
|
|
11248
|
+
return new Char(this.rh());
|
|
11243
11249
|
};
|
|
11244
|
-
protoOf(CharRange).
|
|
11245
|
-
return this.
|
|
11250
|
+
protoOf(CharRange).vh = function () {
|
|
11251
|
+
return this.th_1;
|
|
11246
11252
|
};
|
|
11247
11253
|
protoOf(CharRange).d1 = function () {
|
|
11248
|
-
return new Char(this.
|
|
11254
|
+
return new Char(this.vh());
|
|
11249
11255
|
};
|
|
11250
|
-
protoOf(CharRange).
|
|
11251
|
-
return Char__compareTo_impl_ypi4mb(this.
|
|
11256
|
+
protoOf(CharRange).wh = function (value) {
|
|
11257
|
+
return Char__compareTo_impl_ypi4mb(this.sh_1, value) <= 0 && Char__compareTo_impl_ypi4mb(value, this.th_1) <= 0;
|
|
11252
11258
|
};
|
|
11253
11259
|
protoOf(CharRange).f1 = function (value) {
|
|
11254
|
-
return this.
|
|
11260
|
+
return this.wh(value instanceof Char ? value.i1_1 : THROW_CCE());
|
|
11255
11261
|
};
|
|
11256
11262
|
protoOf(CharRange).r = function () {
|
|
11257
|
-
return Char__compareTo_impl_ypi4mb(this.
|
|
11263
|
+
return Char__compareTo_impl_ypi4mb(this.sh_1, this.th_1) > 0;
|
|
11258
11264
|
};
|
|
11259
11265
|
protoOf(CharRange).equals = function (other) {
|
|
11260
11266
|
var tmp;
|
|
11261
11267
|
if (other instanceof CharRange) {
|
|
11262
|
-
tmp = this.r() && other.r() || (this.
|
|
11268
|
+
tmp = this.r() && other.r() || (this.sh_1 === other.sh_1 && this.th_1 === other.th_1);
|
|
11263
11269
|
} else {
|
|
11264
11270
|
tmp = false;
|
|
11265
11271
|
}
|
|
@@ -11271,88 +11277,88 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11271
11277
|
tmp = -1;
|
|
11272
11278
|
} else {
|
|
11273
11279
|
// Inline function 'kotlin.code' call
|
|
11274
|
-
var this_0 = this.
|
|
11280
|
+
var this_0 = this.sh_1;
|
|
11275
11281
|
var tmp$ret$0 = Char__toInt_impl_vasixd(this_0);
|
|
11276
11282
|
var tmp_0 = imul(31, tmp$ret$0);
|
|
11277
11283
|
// Inline function 'kotlin.code' call
|
|
11278
|
-
var this_1 = this.
|
|
11284
|
+
var this_1 = this.th_1;
|
|
11279
11285
|
tmp = tmp_0 + Char__toInt_impl_vasixd(this_1) | 0;
|
|
11280
11286
|
}
|
|
11281
11287
|
return tmp;
|
|
11282
11288
|
};
|
|
11283
11289
|
protoOf(CharRange).toString = function () {
|
|
11284
|
-
return toString(this.
|
|
11290
|
+
return toString(this.sh_1) + '..' + toString(this.th_1);
|
|
11285
11291
|
};
|
|
11286
11292
|
function IntProgressionIterator(first, last, step) {
|
|
11287
11293
|
IntIterator.call(this);
|
|
11288
|
-
this.
|
|
11289
|
-
this.
|
|
11290
|
-
this.
|
|
11291
|
-
this.
|
|
11294
|
+
this.xh_1 = step;
|
|
11295
|
+
this.yh_1 = last;
|
|
11296
|
+
this.zh_1 = this.xh_1 > 0 ? first <= last : first >= last;
|
|
11297
|
+
this.ai_1 = this.zh_1 ? first : this.yh_1;
|
|
11292
11298
|
}
|
|
11293
11299
|
protoOf(IntProgressionIterator).m = function () {
|
|
11294
|
-
return this.
|
|
11300
|
+
return this.zh_1;
|
|
11295
11301
|
};
|
|
11296
11302
|
protoOf(IntProgressionIterator).qe = function () {
|
|
11297
|
-
var value = this.
|
|
11298
|
-
if (value === this.
|
|
11299
|
-
if (!this.
|
|
11303
|
+
var value = this.ai_1;
|
|
11304
|
+
if (value === this.yh_1) {
|
|
11305
|
+
if (!this.zh_1)
|
|
11300
11306
|
throw NoSuchElementException_init_$Create$();
|
|
11301
|
-
this.
|
|
11307
|
+
this.zh_1 = false;
|
|
11302
11308
|
} else {
|
|
11303
|
-
this.
|
|
11309
|
+
this.ai_1 = this.ai_1 + this.xh_1 | 0;
|
|
11304
11310
|
}
|
|
11305
11311
|
return value;
|
|
11306
11312
|
};
|
|
11307
11313
|
function LongProgressionIterator(first, last, step) {
|
|
11308
11314
|
LongIterator.call(this);
|
|
11309
|
-
this.
|
|
11310
|
-
this.
|
|
11311
|
-
this.
|
|
11312
|
-
this.
|
|
11315
|
+
this.bi_1 = step;
|
|
11316
|
+
this.ci_1 = last;
|
|
11317
|
+
this.di_1 = compare(this.bi_1, new Long(0, 0)) > 0 ? compare(first, last) <= 0 : compare(first, last) >= 0;
|
|
11318
|
+
this.ei_1 = this.di_1 ? first : this.ci_1;
|
|
11313
11319
|
}
|
|
11314
11320
|
protoOf(LongProgressionIterator).m = function () {
|
|
11315
|
-
return this.
|
|
11321
|
+
return this.di_1;
|
|
11316
11322
|
};
|
|
11317
11323
|
protoOf(LongProgressionIterator).re = function () {
|
|
11318
|
-
var value = this.
|
|
11319
|
-
if (equalsLong(value, this.
|
|
11320
|
-
if (!this.
|
|
11324
|
+
var value = this.ei_1;
|
|
11325
|
+
if (equalsLong(value, this.ci_1)) {
|
|
11326
|
+
if (!this.di_1)
|
|
11321
11327
|
throw NoSuchElementException_init_$Create$();
|
|
11322
|
-
this.
|
|
11328
|
+
this.di_1 = false;
|
|
11323
11329
|
} else {
|
|
11324
|
-
this.
|
|
11330
|
+
this.ei_1 = add(this.ei_1, this.bi_1);
|
|
11325
11331
|
}
|
|
11326
11332
|
return value;
|
|
11327
11333
|
};
|
|
11328
11334
|
function CharProgressionIterator(first, last, step) {
|
|
11329
11335
|
CharIterator.call(this);
|
|
11330
|
-
this.
|
|
11336
|
+
this.fi_1 = step;
|
|
11331
11337
|
var tmp = this;
|
|
11332
11338
|
// Inline function 'kotlin.code' call
|
|
11333
|
-
tmp.
|
|
11334
|
-
this.
|
|
11339
|
+
tmp.gi_1 = Char__toInt_impl_vasixd(last);
|
|
11340
|
+
this.hi_1 = this.fi_1 > 0 ? Char__compareTo_impl_ypi4mb(first, last) <= 0 : Char__compareTo_impl_ypi4mb(first, last) >= 0;
|
|
11335
11341
|
var tmp_0 = this;
|
|
11336
11342
|
var tmp_1;
|
|
11337
|
-
if (this.
|
|
11343
|
+
if (this.hi_1) {
|
|
11338
11344
|
// Inline function 'kotlin.code' call
|
|
11339
11345
|
tmp_1 = Char__toInt_impl_vasixd(first);
|
|
11340
11346
|
} else {
|
|
11341
|
-
tmp_1 = this.
|
|
11347
|
+
tmp_1 = this.gi_1;
|
|
11342
11348
|
}
|
|
11343
|
-
tmp_0.
|
|
11349
|
+
tmp_0.ii_1 = tmp_1;
|
|
11344
11350
|
}
|
|
11345
11351
|
protoOf(CharProgressionIterator).m = function () {
|
|
11346
|
-
return this.
|
|
11352
|
+
return this.hi_1;
|
|
11347
11353
|
};
|
|
11348
11354
|
protoOf(CharProgressionIterator).te = function () {
|
|
11349
|
-
var value = this.
|
|
11350
|
-
if (value === this.
|
|
11351
|
-
if (!this.
|
|
11355
|
+
var value = this.ii_1;
|
|
11356
|
+
if (value === this.gi_1) {
|
|
11357
|
+
if (!this.hi_1)
|
|
11352
11358
|
throw NoSuchElementException_init_$Create$();
|
|
11353
|
-
this.
|
|
11359
|
+
this.hi_1 = false;
|
|
11354
11360
|
} else {
|
|
11355
|
-
this.
|
|
11361
|
+
this.ii_1 = this.ii_1 + this.fi_1 | 0;
|
|
11356
11362
|
}
|
|
11357
11363
|
return numberToChar(value);
|
|
11358
11364
|
};
|
|
@@ -11406,30 +11412,30 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11406
11412
|
throw IllegalArgumentException_init_$Create$_0('Step must be non-zero.');
|
|
11407
11413
|
if (equalsLong(step, new Long(0, -2147483648)))
|
|
11408
11414
|
throw IllegalArgumentException_init_$Create$_0('Step must be greater than Long.MIN_VALUE to avoid overflow on negation.');
|
|
11409
|
-
this.
|
|
11410
|
-
this.
|
|
11411
|
-
this.
|
|
11415
|
+
this.jh_1 = start;
|
|
11416
|
+
this.kh_1 = getProgressionLastElement_0(start, endInclusive, step);
|
|
11417
|
+
this.lh_1 = step;
|
|
11412
11418
|
}
|
|
11413
11419
|
protoOf(LongProgression).l = function () {
|
|
11414
|
-
return new LongProgressionIterator(this.
|
|
11420
|
+
return new LongProgressionIterator(this.jh_1, this.kh_1, this.lh_1);
|
|
11415
11421
|
};
|
|
11416
11422
|
protoOf(LongProgression).r = function () {
|
|
11417
|
-
return compare(this.
|
|
11423
|
+
return compare(this.lh_1, new Long(0, 0)) > 0 ? compare(this.jh_1, this.kh_1) > 0 : compare(this.jh_1, this.kh_1) < 0;
|
|
11418
11424
|
};
|
|
11419
11425
|
protoOf(LongProgression).equals = function (other) {
|
|
11420
11426
|
var tmp;
|
|
11421
11427
|
if (other instanceof LongProgression) {
|
|
11422
|
-
tmp = this.r() && other.r() || (equalsLong(this.
|
|
11428
|
+
tmp = this.r() && other.r() || (equalsLong(this.jh_1, other.jh_1) && equalsLong(this.kh_1, other.kh_1) && equalsLong(this.lh_1, other.lh_1));
|
|
11423
11429
|
} else {
|
|
11424
11430
|
tmp = false;
|
|
11425
11431
|
}
|
|
11426
11432
|
return tmp;
|
|
11427
11433
|
};
|
|
11428
11434
|
protoOf(LongProgression).hashCode = function () {
|
|
11429
|
-
return this.r() ? -1 : convertToInt(add(multiply(numberToLong(31), add(multiply(numberToLong(31), bitwiseXor(this.
|
|
11435
|
+
return this.r() ? -1 : convertToInt(add(multiply(numberToLong(31), add(multiply(numberToLong(31), bitwiseXor(this.jh_1, shiftRightUnsigned(this.jh_1, 32))), bitwiseXor(this.kh_1, shiftRightUnsigned(this.kh_1, 32)))), bitwiseXor(this.lh_1, shiftRightUnsigned(this.lh_1, 32))));
|
|
11430
11436
|
};
|
|
11431
11437
|
protoOf(LongProgression).toString = function () {
|
|
11432
|
-
return compare(this.
|
|
11438
|
+
return compare(this.lh_1, new Long(0, 0)) > 0 ? this.jh_1.toString() + '..' + this.kh_1.toString() + ' step ' + this.lh_1.toString() : this.jh_1.toString() + ' downTo ' + this.kh_1.toString() + ' step ' + negate(this.lh_1).toString();
|
|
11433
11439
|
};
|
|
11434
11440
|
function Companion_18() {
|
|
11435
11441
|
}
|
|
@@ -11442,25 +11448,25 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11442
11448
|
throw IllegalArgumentException_init_$Create$_0('Step must be non-zero.');
|
|
11443
11449
|
if (step === -2147483648)
|
|
11444
11450
|
throw IllegalArgumentException_init_$Create$_0('Step must be greater than Int.MIN_VALUE to avoid overflow on negation.');
|
|
11445
|
-
this.
|
|
11451
|
+
this.sh_1 = start;
|
|
11446
11452
|
var tmp = this;
|
|
11447
11453
|
// Inline function 'kotlin.code' call
|
|
11448
11454
|
var tmp_0 = Char__toInt_impl_vasixd(start);
|
|
11449
11455
|
// Inline function 'kotlin.code' call
|
|
11450
11456
|
var tmp$ret$1 = Char__toInt_impl_vasixd(endInclusive);
|
|
11451
|
-
tmp.
|
|
11452
|
-
this.
|
|
11457
|
+
tmp.th_1 = numberToChar(getProgressionLastElement(tmp_0, tmp$ret$1, step));
|
|
11458
|
+
this.uh_1 = step;
|
|
11453
11459
|
}
|
|
11454
11460
|
protoOf(CharProgression).l = function () {
|
|
11455
|
-
return new CharProgressionIterator(this.
|
|
11461
|
+
return new CharProgressionIterator(this.sh_1, this.th_1, this.uh_1);
|
|
11456
11462
|
};
|
|
11457
11463
|
protoOf(CharProgression).r = function () {
|
|
11458
|
-
return this.
|
|
11464
|
+
return this.uh_1 > 0 ? Char__compareTo_impl_ypi4mb(this.sh_1, this.th_1) > 0 : Char__compareTo_impl_ypi4mb(this.sh_1, this.th_1) < 0;
|
|
11459
11465
|
};
|
|
11460
11466
|
protoOf(CharProgression).equals = function (other) {
|
|
11461
11467
|
var tmp;
|
|
11462
11468
|
if (other instanceof CharProgression) {
|
|
11463
|
-
tmp = this.r() && other.r() || (this.
|
|
11469
|
+
tmp = this.r() && other.r() || (this.sh_1 === other.sh_1 && this.th_1 === other.th_1 && this.uh_1 === other.uh_1);
|
|
11464
11470
|
} else {
|
|
11465
11471
|
tmp = false;
|
|
11466
11472
|
}
|
|
@@ -11472,18 +11478,18 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11472
11478
|
tmp = -1;
|
|
11473
11479
|
} else {
|
|
11474
11480
|
// Inline function 'kotlin.code' call
|
|
11475
|
-
var this_0 = this.
|
|
11481
|
+
var this_0 = this.sh_1;
|
|
11476
11482
|
var tmp$ret$0 = Char__toInt_impl_vasixd(this_0);
|
|
11477
11483
|
var tmp_0 = imul(31, tmp$ret$0);
|
|
11478
11484
|
// Inline function 'kotlin.code' call
|
|
11479
|
-
var this_1 = this.
|
|
11485
|
+
var this_1 = this.th_1;
|
|
11480
11486
|
var tmp$ret$1 = Char__toInt_impl_vasixd(this_1);
|
|
11481
|
-
tmp = imul(31, tmp_0 + tmp$ret$1 | 0) + this.
|
|
11487
|
+
tmp = imul(31, tmp_0 + tmp$ret$1 | 0) + this.uh_1 | 0;
|
|
11482
11488
|
}
|
|
11483
11489
|
return tmp;
|
|
11484
11490
|
};
|
|
11485
11491
|
protoOf(CharProgression).toString = function () {
|
|
11486
|
-
return this.
|
|
11492
|
+
return this.uh_1 > 0 ? toString(this.sh_1) + '..' + toString(this.th_1) + ' step ' + this.uh_1 : toString(this.sh_1) + ' downTo ' + toString(this.th_1) + ' step ' + (-this.uh_1 | 0);
|
|
11487
11493
|
};
|
|
11488
11494
|
function ClosedRange() {
|
|
11489
11495
|
}
|
|
@@ -11499,7 +11505,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11499
11505
|
Companion_instance_19 = this;
|
|
11500
11506
|
this.ma_1 = new KTypeProjection(null, null);
|
|
11501
11507
|
}
|
|
11502
|
-
protoOf(Companion_19).
|
|
11508
|
+
protoOf(Companion_19).ji = function () {
|
|
11503
11509
|
return this.ma_1;
|
|
11504
11510
|
};
|
|
11505
11511
|
protoOf(Companion_19).na = function (type) {
|
|
@@ -11513,29 +11519,29 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11513
11519
|
}
|
|
11514
11520
|
function KTypeProjection(variance, type) {
|
|
11515
11521
|
Companion_getInstance_19();
|
|
11516
|
-
this.
|
|
11517
|
-
this.
|
|
11522
|
+
this.ki_1 = variance;
|
|
11523
|
+
this.li_1 = type;
|
|
11518
11524
|
// Inline function 'kotlin.require' call
|
|
11519
|
-
if (!(this.
|
|
11520
|
-
var message = this.
|
|
11525
|
+
if (!(this.ki_1 == null === (this.li_1 == null))) {
|
|
11526
|
+
var message = this.ki_1 == null ? 'Star projection must have no type specified.' : 'The projection variance ' + this.ki_1.toString() + ' requires type to be specified.';
|
|
11521
11527
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
11522
11528
|
}
|
|
11523
11529
|
}
|
|
11524
11530
|
protoOf(KTypeProjection).toString = function () {
|
|
11525
|
-
var tmp0_subject = this.
|
|
11531
|
+
var tmp0_subject = this.ki_1;
|
|
11526
11532
|
var tmp;
|
|
11527
11533
|
switch (tmp0_subject == null ? -1 : tmp0_subject.q2_1) {
|
|
11528
11534
|
case -1:
|
|
11529
11535
|
tmp = '*';
|
|
11530
11536
|
break;
|
|
11531
11537
|
case 0:
|
|
11532
|
-
tmp = toString_0(this.
|
|
11538
|
+
tmp = toString_0(this.li_1);
|
|
11533
11539
|
break;
|
|
11534
11540
|
case 1:
|
|
11535
|
-
tmp = 'in ' + toString_0(this.
|
|
11541
|
+
tmp = 'in ' + toString_0(this.li_1);
|
|
11536
11542
|
break;
|
|
11537
11543
|
case 2:
|
|
11538
|
-
tmp = 'out ' + toString_0(this.
|
|
11544
|
+
tmp = 'out ' + toString_0(this.li_1);
|
|
11539
11545
|
break;
|
|
11540
11546
|
default:
|
|
11541
11547
|
noWhenBranchMatchedException();
|
|
@@ -11544,8 +11550,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11544
11550
|
return tmp;
|
|
11545
11551
|
};
|
|
11546
11552
|
protoOf(KTypeProjection).hashCode = function () {
|
|
11547
|
-
var result = this.
|
|
11548
|
-
result = imul(result, 31) + (this.
|
|
11553
|
+
var result = this.ki_1 == null ? 0 : this.ki_1.hashCode();
|
|
11554
|
+
result = imul(result, 31) + (this.li_1 == null ? 0 : hashCode_0(this.li_1)) | 0;
|
|
11549
11555
|
return result;
|
|
11550
11556
|
};
|
|
11551
11557
|
protoOf(KTypeProjection).equals = function (other) {
|
|
@@ -11553,10 +11559,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11553
11559
|
return true;
|
|
11554
11560
|
if (!(other instanceof KTypeProjection))
|
|
11555
11561
|
return false;
|
|
11556
|
-
if (!equals(this.ji_1, other.ji_1))
|
|
11557
|
-
return false;
|
|
11558
11562
|
if (!equals(this.ki_1, other.ki_1))
|
|
11559
11563
|
return false;
|
|
11564
|
+
if (!equals(this.li_1, other.li_1))
|
|
11565
|
+
return false;
|
|
11560
11566
|
return true;
|
|
11561
11567
|
};
|
|
11562
11568
|
var KVariance_INVARIANT_instance;
|
|
@@ -11638,21 +11644,21 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11638
11644
|
function hexToInt(_this__u8e3s4, startIndex, endIndex, format) {
|
|
11639
11645
|
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
11640
11646
|
endIndex = endIndex === VOID ? _this__u8e3s4.length : endIndex;
|
|
11641
|
-
format = format === VOID ? Companion_getInstance_22().
|
|
11647
|
+
format = format === VOID ? Companion_getInstance_22().mi_1 : format;
|
|
11642
11648
|
_init_properties_HexExtensions_kt__wu8rc3();
|
|
11643
11649
|
return hexToIntImpl(_this__u8e3s4, startIndex, endIndex, format, 8);
|
|
11644
11650
|
}
|
|
11645
11651
|
function hexToIntImpl(_this__u8e3s4, startIndex, endIndex, format, typeHexLength) {
|
|
11646
11652
|
_init_properties_HexExtensions_kt__wu8rc3();
|
|
11647
11653
|
Companion_instance_8.yb(startIndex, endIndex, _this__u8e3s4.length);
|
|
11648
|
-
var numberFormat = format.
|
|
11649
|
-
if (numberFormat.
|
|
11654
|
+
var numberFormat = format.qi_1;
|
|
11655
|
+
if (numberFormat.vi_1) {
|
|
11650
11656
|
checkNumberOfDigits(_this__u8e3s4, startIndex, endIndex, typeHexLength);
|
|
11651
11657
|
return parseInt(_this__u8e3s4, startIndex, endIndex);
|
|
11652
11658
|
}
|
|
11653
|
-
var prefix = numberFormat.
|
|
11654
|
-
var suffix = numberFormat.
|
|
11655
|
-
checkPrefixSuffixNumberOfDigits(_this__u8e3s4, startIndex, endIndex, prefix, suffix, numberFormat.
|
|
11659
|
+
var prefix = numberFormat.ri_1;
|
|
11660
|
+
var suffix = numberFormat.si_1;
|
|
11661
|
+
checkPrefixSuffixNumberOfDigits(_this__u8e3s4, startIndex, endIndex, prefix, suffix, numberFormat.xi_1, typeHexLength);
|
|
11656
11662
|
return parseInt(_this__u8e3s4, startIndex + prefix.length | 0, endIndex - suffix.length | 0);
|
|
11657
11663
|
}
|
|
11658
11664
|
function checkNumberOfDigits(_this__u8e3s4, startIndex, endIndex, typeHexLength) {
|
|
@@ -11869,7 +11875,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11869
11875
|
}
|
|
11870
11876
|
function Companion_20() {
|
|
11871
11877
|
Companion_instance_20 = this;
|
|
11872
|
-
this.
|
|
11878
|
+
this.yi_1 = new BytesHexFormat(2147483647, 2147483647, ' ', '', '', '');
|
|
11873
11879
|
}
|
|
11874
11880
|
var Companion_instance_20;
|
|
11875
11881
|
function Companion_getInstance_20() {
|
|
@@ -11879,7 +11885,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11879
11885
|
}
|
|
11880
11886
|
function Companion_21() {
|
|
11881
11887
|
Companion_instance_21 = this;
|
|
11882
|
-
this.
|
|
11888
|
+
this.zi_1 = new NumberHexFormat('', '', false, 1);
|
|
11883
11889
|
}
|
|
11884
11890
|
var Companion_instance_21;
|
|
11885
11891
|
function Companion_getInstance_21() {
|
|
@@ -11889,32 +11895,32 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11889
11895
|
}
|
|
11890
11896
|
function BytesHexFormat(bytesPerLine, bytesPerGroup, groupSeparator, byteSeparator, bytePrefix, byteSuffix) {
|
|
11891
11897
|
Companion_getInstance_20();
|
|
11892
|
-
this.
|
|
11893
|
-
this.
|
|
11894
|
-
this.
|
|
11895
|
-
this.
|
|
11896
|
-
this.
|
|
11897
|
-
this.
|
|
11898
|
-
this.
|
|
11898
|
+
this.aj_1 = bytesPerLine;
|
|
11899
|
+
this.bj_1 = bytesPerGroup;
|
|
11900
|
+
this.cj_1 = groupSeparator;
|
|
11901
|
+
this.dj_1 = byteSeparator;
|
|
11902
|
+
this.ej_1 = bytePrefix;
|
|
11903
|
+
this.fj_1 = byteSuffix;
|
|
11904
|
+
this.gj_1 = (this.aj_1 === 2147483647 && this.bj_1 === 2147483647);
|
|
11899
11905
|
var tmp = this;
|
|
11900
11906
|
var tmp_0;
|
|
11901
11907
|
var tmp_1;
|
|
11902
11908
|
// Inline function 'kotlin.text.isEmpty' call
|
|
11903
|
-
var this_0 = this.
|
|
11909
|
+
var this_0 = this.ej_1;
|
|
11904
11910
|
if (charSequenceLength(this_0) === 0) {
|
|
11905
11911
|
// Inline function 'kotlin.text.isEmpty' call
|
|
11906
|
-
var this_1 = this.
|
|
11912
|
+
var this_1 = this.fj_1;
|
|
11907
11913
|
tmp_1 = charSequenceLength(this_1) === 0;
|
|
11908
11914
|
} else {
|
|
11909
11915
|
tmp_1 = false;
|
|
11910
11916
|
}
|
|
11911
11917
|
if (tmp_1) {
|
|
11912
|
-
tmp_0 = this.
|
|
11918
|
+
tmp_0 = this.dj_1.length <= 1;
|
|
11913
11919
|
} else {
|
|
11914
11920
|
tmp_0 = false;
|
|
11915
11921
|
}
|
|
11916
|
-
tmp.
|
|
11917
|
-
this.
|
|
11922
|
+
tmp.hj_1 = tmp_0;
|
|
11923
|
+
this.ij_1 = isCaseSensitive(this.cj_1) || isCaseSensitive(this.dj_1) || isCaseSensitive(this.ej_1) || isCaseSensitive(this.fj_1);
|
|
11918
11924
|
}
|
|
11919
11925
|
protoOf(BytesHexFormat).toString = function () {
|
|
11920
11926
|
// Inline function 'kotlin.text.buildString' call
|
|
@@ -11923,49 +11929,49 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11923
11929
|
// Inline function 'kotlin.text.appendLine' call
|
|
11924
11930
|
this_0.d8('BytesHexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
11925
11931
|
// Inline function 'kotlin.text.appendLine' call
|
|
11926
|
-
this.
|
|
11932
|
+
this.jj(this_0, ' ').e8(_Char___init__impl__6a9atx(10));
|
|
11927
11933
|
this_0.d8(')');
|
|
11928
11934
|
return this_0.toString();
|
|
11929
11935
|
};
|
|
11930
|
-
protoOf(BytesHexFormat).
|
|
11936
|
+
protoOf(BytesHexFormat).jj = function (sb, indent) {
|
|
11931
11937
|
// Inline function 'kotlin.text.appendLine' call
|
|
11932
11938
|
// Inline function 'kotlin.text.appendLine' call
|
|
11933
|
-
sb.d8(indent).d8('bytesPerLine = ').sb(this.
|
|
11939
|
+
sb.d8(indent).d8('bytesPerLine = ').sb(this.aj_1).d8(',').e8(_Char___init__impl__6a9atx(10));
|
|
11934
11940
|
// Inline function 'kotlin.text.appendLine' call
|
|
11935
11941
|
// Inline function 'kotlin.text.appendLine' call
|
|
11936
|
-
sb.d8(indent).d8('bytesPerGroup = ').sb(this.
|
|
11942
|
+
sb.d8(indent).d8('bytesPerGroup = ').sb(this.bj_1).d8(',').e8(_Char___init__impl__6a9atx(10));
|
|
11937
11943
|
// Inline function 'kotlin.text.appendLine' call
|
|
11938
11944
|
// Inline function 'kotlin.text.appendLine' call
|
|
11939
|
-
sb.d8(indent).d8('groupSeparator = "').d8(this.
|
|
11945
|
+
sb.d8(indent).d8('groupSeparator = "').d8(this.cj_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
11940
11946
|
// Inline function 'kotlin.text.appendLine' call
|
|
11941
11947
|
// Inline function 'kotlin.text.appendLine' call
|
|
11942
|
-
sb.d8(indent).d8('byteSeparator = "').d8(this.
|
|
11948
|
+
sb.d8(indent).d8('byteSeparator = "').d8(this.dj_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
11943
11949
|
// Inline function 'kotlin.text.appendLine' call
|
|
11944
11950
|
// Inline function 'kotlin.text.appendLine' call
|
|
11945
|
-
sb.d8(indent).d8('bytePrefix = "').d8(this.
|
|
11946
|
-
sb.d8(indent).d8('byteSuffix = "').d8(this.
|
|
11951
|
+
sb.d8(indent).d8('bytePrefix = "').d8(this.ej_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
11952
|
+
sb.d8(indent).d8('byteSuffix = "').d8(this.fj_1).d8('"');
|
|
11947
11953
|
return sb;
|
|
11948
11954
|
};
|
|
11949
11955
|
function NumberHexFormat(prefix, suffix, removeLeadingZeros, minLength) {
|
|
11950
11956
|
Companion_getInstance_21();
|
|
11951
|
-
this.
|
|
11952
|
-
this.
|
|
11953
|
-
this.
|
|
11954
|
-
this.
|
|
11957
|
+
this.ri_1 = prefix;
|
|
11958
|
+
this.si_1 = suffix;
|
|
11959
|
+
this.ti_1 = removeLeadingZeros;
|
|
11960
|
+
this.ui_1 = minLength;
|
|
11955
11961
|
var tmp = this;
|
|
11956
11962
|
var tmp_0;
|
|
11957
11963
|
// Inline function 'kotlin.text.isEmpty' call
|
|
11958
|
-
var this_0 = this.
|
|
11964
|
+
var this_0 = this.ri_1;
|
|
11959
11965
|
if (charSequenceLength(this_0) === 0) {
|
|
11960
11966
|
// Inline function 'kotlin.text.isEmpty' call
|
|
11961
|
-
var this_1 = this.
|
|
11967
|
+
var this_1 = this.si_1;
|
|
11962
11968
|
tmp_0 = charSequenceLength(this_1) === 0;
|
|
11963
11969
|
} else {
|
|
11964
11970
|
tmp_0 = false;
|
|
11965
11971
|
}
|
|
11966
|
-
tmp.
|
|
11967
|
-
this.
|
|
11968
|
-
this.
|
|
11972
|
+
tmp.vi_1 = tmp_0;
|
|
11973
|
+
this.wi_1 = (this.vi_1 && this.ui_1 === 1);
|
|
11974
|
+
this.xi_1 = isCaseSensitive(this.ri_1) || isCaseSensitive(this.si_1);
|
|
11969
11975
|
}
|
|
11970
11976
|
protoOf(NumberHexFormat).toString = function () {
|
|
11971
11977
|
// Inline function 'kotlin.text.buildString' call
|
|
@@ -11974,29 +11980,29 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11974
11980
|
// Inline function 'kotlin.text.appendLine' call
|
|
11975
11981
|
this_0.d8('NumberHexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
11976
11982
|
// Inline function 'kotlin.text.appendLine' call
|
|
11977
|
-
this.
|
|
11983
|
+
this.jj(this_0, ' ').e8(_Char___init__impl__6a9atx(10));
|
|
11978
11984
|
this_0.d8(')');
|
|
11979
11985
|
return this_0.toString();
|
|
11980
11986
|
};
|
|
11981
|
-
protoOf(NumberHexFormat).
|
|
11987
|
+
protoOf(NumberHexFormat).jj = function (sb, indent) {
|
|
11982
11988
|
// Inline function 'kotlin.text.appendLine' call
|
|
11983
11989
|
// Inline function 'kotlin.text.appendLine' call
|
|
11984
|
-
sb.d8(indent).d8('prefix = "').d8(this.
|
|
11990
|
+
sb.d8(indent).d8('prefix = "').d8(this.ri_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
11985
11991
|
// Inline function 'kotlin.text.appendLine' call
|
|
11986
11992
|
// Inline function 'kotlin.text.appendLine' call
|
|
11987
|
-
sb.d8(indent).d8('suffix = "').d8(this.
|
|
11988
|
-
var tmp0 = sb.d8(indent).d8('removeLeadingZeros = ').rb(this.
|
|
11993
|
+
sb.d8(indent).d8('suffix = "').d8(this.si_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
11994
|
+
var tmp0 = sb.d8(indent).d8('removeLeadingZeros = ').rb(this.ti_1);
|
|
11989
11995
|
// Inline function 'kotlin.text.appendLine' call
|
|
11990
11996
|
var value = _Char___init__impl__6a9atx(44);
|
|
11991
11997
|
// Inline function 'kotlin.text.appendLine' call
|
|
11992
11998
|
tmp0.e8(value).e8(_Char___init__impl__6a9atx(10));
|
|
11993
|
-
sb.d8(indent).d8('minLength = ').sb(this.
|
|
11999
|
+
sb.d8(indent).d8('minLength = ').sb(this.ui_1);
|
|
11994
12000
|
return sb;
|
|
11995
12001
|
};
|
|
11996
12002
|
function Companion_22() {
|
|
11997
12003
|
Companion_instance_22 = this;
|
|
11998
|
-
this.
|
|
11999
|
-
this.
|
|
12004
|
+
this.mi_1 = new HexFormat(false, Companion_getInstance_20().yi_1, Companion_getInstance_21().zi_1);
|
|
12005
|
+
this.ni_1 = new HexFormat(true, Companion_getInstance_20().yi_1, Companion_getInstance_21().zi_1);
|
|
12000
12006
|
}
|
|
12001
12007
|
var Companion_instance_22;
|
|
12002
12008
|
function Companion_getInstance_22() {
|
|
@@ -12006,9 +12012,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12006
12012
|
}
|
|
12007
12013
|
function HexFormat(upperCase, bytes, number) {
|
|
12008
12014
|
Companion_getInstance_22();
|
|
12009
|
-
this.
|
|
12010
|
-
this.
|
|
12011
|
-
this.
|
|
12015
|
+
this.oi_1 = upperCase;
|
|
12016
|
+
this.pi_1 = bytes;
|
|
12017
|
+
this.qi_1 = number;
|
|
12012
12018
|
}
|
|
12013
12019
|
protoOf(HexFormat).toString = function () {
|
|
12014
12020
|
// Inline function 'kotlin.text.buildString' call
|
|
@@ -12018,17 +12024,17 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12018
12024
|
this_0.d8('HexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
12019
12025
|
// Inline function 'kotlin.text.appendLine' call
|
|
12020
12026
|
// Inline function 'kotlin.text.appendLine' call
|
|
12021
|
-
this_0.d8(' upperCase = ').rb(this.
|
|
12027
|
+
this_0.d8(' upperCase = ').rb(this.oi_1).d8(',').e8(_Char___init__impl__6a9atx(10));
|
|
12022
12028
|
// Inline function 'kotlin.text.appendLine' call
|
|
12023
12029
|
this_0.d8(' bytes = BytesHexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
12024
12030
|
// Inline function 'kotlin.text.appendLine' call
|
|
12025
|
-
this.
|
|
12031
|
+
this.pi_1.jj(this_0, ' ').e8(_Char___init__impl__6a9atx(10));
|
|
12026
12032
|
// Inline function 'kotlin.text.appendLine' call
|
|
12027
12033
|
this_0.d8(' ),').e8(_Char___init__impl__6a9atx(10));
|
|
12028
12034
|
// Inline function 'kotlin.text.appendLine' call
|
|
12029
12035
|
this_0.d8(' number = NumberHexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
12030
12036
|
// Inline function 'kotlin.text.appendLine' call
|
|
12031
|
-
this.
|
|
12037
|
+
this.qi_1.jj(this_0, ' ').e8(_Char___init__impl__6a9atx(10));
|
|
12032
12038
|
// Inline function 'kotlin.text.appendLine' call
|
|
12033
12039
|
this_0.d8(' )').e8(_Char___init__impl__6a9atx(10));
|
|
12034
12040
|
this_0.d8(')');
|
|
@@ -12691,60 +12697,60 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12691
12697
|
return -1;
|
|
12692
12698
|
}
|
|
12693
12699
|
function State() {
|
|
12694
|
-
this.
|
|
12695
|
-
this.
|
|
12696
|
-
this.
|
|
12700
|
+
this.kj_1 = 0;
|
|
12701
|
+
this.lj_1 = 1;
|
|
12702
|
+
this.mj_1 = 2;
|
|
12697
12703
|
}
|
|
12698
12704
|
var State_instance;
|
|
12699
12705
|
function State_getInstance() {
|
|
12700
12706
|
return State_instance;
|
|
12701
12707
|
}
|
|
12702
12708
|
function LinesIterator(string) {
|
|
12703
|
-
this.
|
|
12704
|
-
this.nj_1 = 0;
|
|
12709
|
+
this.nj_1 = string;
|
|
12705
12710
|
this.oj_1 = 0;
|
|
12706
12711
|
this.pj_1 = 0;
|
|
12707
12712
|
this.qj_1 = 0;
|
|
12713
|
+
this.rj_1 = 0;
|
|
12708
12714
|
}
|
|
12709
12715
|
protoOf(LinesIterator).m = function () {
|
|
12710
|
-
if (!(this.
|
|
12711
|
-
return this.
|
|
12716
|
+
if (!(this.oj_1 === 0)) {
|
|
12717
|
+
return this.oj_1 === 1;
|
|
12712
12718
|
}
|
|
12713
|
-
if (this.
|
|
12714
|
-
this.
|
|
12719
|
+
if (this.rj_1 < 0) {
|
|
12720
|
+
this.oj_1 = 2;
|
|
12715
12721
|
return false;
|
|
12716
12722
|
}
|
|
12717
12723
|
var _delimiterLength = -1;
|
|
12718
|
-
var _delimiterStartIndex = charSequenceLength(this.
|
|
12719
|
-
var inductionVariable = this.
|
|
12720
|
-
var last = charSequenceLength(this.
|
|
12724
|
+
var _delimiterStartIndex = charSequenceLength(this.nj_1);
|
|
12725
|
+
var inductionVariable = this.pj_1;
|
|
12726
|
+
var last = charSequenceLength(this.nj_1);
|
|
12721
12727
|
if (inductionVariable < last)
|
|
12722
12728
|
$l$loop: do {
|
|
12723
12729
|
var idx = inductionVariable;
|
|
12724
12730
|
inductionVariable = inductionVariable + 1 | 0;
|
|
12725
|
-
var c = charSequenceGet(this.
|
|
12731
|
+
var c = charSequenceGet(this.nj_1, idx);
|
|
12726
12732
|
if (c === _Char___init__impl__6a9atx(10) || c === _Char___init__impl__6a9atx(13)) {
|
|
12727
|
-
_delimiterLength = c === _Char___init__impl__6a9atx(13) && (idx + 1 | 0) < charSequenceLength(this.
|
|
12733
|
+
_delimiterLength = c === _Char___init__impl__6a9atx(13) && (idx + 1 | 0) < charSequenceLength(this.nj_1) && charSequenceGet(this.nj_1, idx + 1 | 0) === _Char___init__impl__6a9atx(10) ? 2 : 1;
|
|
12728
12734
|
_delimiterStartIndex = idx;
|
|
12729
12735
|
break $l$loop;
|
|
12730
12736
|
}
|
|
12731
12737
|
}
|
|
12732
12738
|
while (inductionVariable < last);
|
|
12733
|
-
this.
|
|
12734
|
-
this.
|
|
12735
|
-
this.
|
|
12739
|
+
this.oj_1 = 1;
|
|
12740
|
+
this.rj_1 = _delimiterLength;
|
|
12741
|
+
this.qj_1 = _delimiterStartIndex;
|
|
12736
12742
|
return true;
|
|
12737
12743
|
};
|
|
12738
12744
|
protoOf(LinesIterator).n = function () {
|
|
12739
12745
|
if (!this.m()) {
|
|
12740
12746
|
throw NoSuchElementException_init_$Create$();
|
|
12741
12747
|
}
|
|
12742
|
-
this.
|
|
12743
|
-
var lastIndex = this.
|
|
12744
|
-
var firstIndex = this.
|
|
12745
|
-
this.
|
|
12748
|
+
this.oj_1 = 0;
|
|
12749
|
+
var lastIndex = this.qj_1;
|
|
12750
|
+
var firstIndex = this.pj_1;
|
|
12751
|
+
this.pj_1 = this.qj_1 + this.rj_1 | 0;
|
|
12746
12752
|
// Inline function 'kotlin.text.substring' call
|
|
12747
|
-
var this_0 = this.
|
|
12753
|
+
var this_0 = this.nj_1;
|
|
12748
12754
|
return toString_1(charSequenceSubSequence(this_0, firstIndex, lastIndex));
|
|
12749
12755
|
};
|
|
12750
12756
|
function startsWith_2(_this__u8e3s4, prefix, ignoreCase) {
|
|
@@ -12837,73 +12843,73 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12837
12843
|
return Unit_instance;
|
|
12838
12844
|
}
|
|
12839
12845
|
function calcNext_0($this) {
|
|
12840
|
-
if ($this.
|
|
12841
|
-
$this.
|
|
12842
|
-
$this.
|
|
12846
|
+
if ($this.uj_1 < 0) {
|
|
12847
|
+
$this.sj_1 = 0;
|
|
12848
|
+
$this.vj_1 = null;
|
|
12843
12849
|
} else {
|
|
12844
12850
|
var tmp;
|
|
12845
12851
|
var tmp_0;
|
|
12846
|
-
if ($this.
|
|
12847
|
-
$this.
|
|
12848
|
-
tmp_0 = $this.
|
|
12852
|
+
if ($this.xj_1.ak_1 > 0) {
|
|
12853
|
+
$this.wj_1 = $this.wj_1 + 1 | 0;
|
|
12854
|
+
tmp_0 = $this.wj_1 >= $this.xj_1.ak_1;
|
|
12849
12855
|
} else {
|
|
12850
12856
|
tmp_0 = false;
|
|
12851
12857
|
}
|
|
12852
12858
|
if (tmp_0) {
|
|
12853
12859
|
tmp = true;
|
|
12854
12860
|
} else {
|
|
12855
|
-
tmp = $this.
|
|
12861
|
+
tmp = $this.uj_1 > charSequenceLength($this.xj_1.yj_1);
|
|
12856
12862
|
}
|
|
12857
12863
|
if (tmp) {
|
|
12858
|
-
$this.
|
|
12859
|
-
$this.
|
|
12864
|
+
$this.vj_1 = numberRangeToNumber($this.tj_1, get_lastIndex_3($this.xj_1.yj_1));
|
|
12865
|
+
$this.uj_1 = -1;
|
|
12860
12866
|
} else {
|
|
12861
|
-
var match = $this.
|
|
12867
|
+
var match = $this.xj_1.bk_1($this.xj_1.yj_1, $this.uj_1);
|
|
12862
12868
|
if (match == null) {
|
|
12863
|
-
$this.
|
|
12864
|
-
$this.
|
|
12869
|
+
$this.vj_1 = numberRangeToNumber($this.tj_1, get_lastIndex_3($this.xj_1.yj_1));
|
|
12870
|
+
$this.uj_1 = -1;
|
|
12865
12871
|
} else {
|
|
12866
12872
|
var index = match.oe();
|
|
12867
12873
|
var length = match.pe();
|
|
12868
|
-
$this.
|
|
12869
|
-
$this.
|
|
12870
|
-
$this.
|
|
12874
|
+
$this.vj_1 = until($this.tj_1, index);
|
|
12875
|
+
$this.tj_1 = index + length | 0;
|
|
12876
|
+
$this.uj_1 = $this.tj_1 + (length === 0 ? 1 : 0) | 0;
|
|
12871
12877
|
}
|
|
12872
12878
|
}
|
|
12873
|
-
$this.
|
|
12879
|
+
$this.sj_1 = 1;
|
|
12874
12880
|
}
|
|
12875
12881
|
}
|
|
12876
12882
|
function DelimitedRangesSequence$iterator$1(this$0) {
|
|
12877
|
-
this.
|
|
12878
|
-
this.
|
|
12879
|
-
this.
|
|
12880
|
-
this.
|
|
12881
|
-
this.
|
|
12882
|
-
this.
|
|
12883
|
+
this.xj_1 = this$0;
|
|
12884
|
+
this.sj_1 = -1;
|
|
12885
|
+
this.tj_1 = coerceIn_2(this$0.zj_1, 0, charSequenceLength(this$0.yj_1));
|
|
12886
|
+
this.uj_1 = this.tj_1;
|
|
12887
|
+
this.vj_1 = null;
|
|
12888
|
+
this.wj_1 = 0;
|
|
12883
12889
|
}
|
|
12884
12890
|
protoOf(DelimitedRangesSequence$iterator$1).n = function () {
|
|
12885
|
-
if (this.
|
|
12891
|
+
if (this.sj_1 === -1) {
|
|
12886
12892
|
calcNext_0(this);
|
|
12887
12893
|
}
|
|
12888
|
-
if (this.
|
|
12894
|
+
if (this.sj_1 === 0)
|
|
12889
12895
|
throw NoSuchElementException_init_$Create$();
|
|
12890
|
-
var tmp = this.
|
|
12896
|
+
var tmp = this.vj_1;
|
|
12891
12897
|
var result = tmp instanceof IntRange ? tmp : THROW_CCE();
|
|
12892
|
-
this.
|
|
12893
|
-
this.
|
|
12898
|
+
this.vj_1 = null;
|
|
12899
|
+
this.sj_1 = -1;
|
|
12894
12900
|
return result;
|
|
12895
12901
|
};
|
|
12896
12902
|
protoOf(DelimitedRangesSequence$iterator$1).m = function () {
|
|
12897
|
-
if (this.
|
|
12903
|
+
if (this.sj_1 === -1) {
|
|
12898
12904
|
calcNext_0(this);
|
|
12899
12905
|
}
|
|
12900
|
-
return this.
|
|
12906
|
+
return this.sj_1 === 1;
|
|
12901
12907
|
};
|
|
12902
12908
|
function DelimitedRangesSequence(input, startIndex, limit, getNextMatch) {
|
|
12903
|
-
this.
|
|
12904
|
-
this.
|
|
12905
|
-
this.
|
|
12906
|
-
this.
|
|
12909
|
+
this.yj_1 = input;
|
|
12910
|
+
this.zj_1 = startIndex;
|
|
12911
|
+
this.ak_1 = limit;
|
|
12912
|
+
this.bk_1 = getNextMatch;
|
|
12907
12913
|
}
|
|
12908
12914
|
protoOf(DelimitedRangesSequence).l = function () {
|
|
12909
12915
|
return new DelimitedRangesSequence$iterator$1(this);
|
|
@@ -12974,10 +12980,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12974
12980
|
return toList_2(lineSequence(_this__u8e3s4));
|
|
12975
12981
|
}
|
|
12976
12982
|
function lineSequence$$inlined$Sequence$1($this_lineSequence) {
|
|
12977
|
-
this.
|
|
12983
|
+
this.ck_1 = $this_lineSequence;
|
|
12978
12984
|
}
|
|
12979
12985
|
protoOf(lineSequence$$inlined$Sequence$1).l = function () {
|
|
12980
|
-
return new LinesIterator(this.
|
|
12986
|
+
return new LinesIterator(this.ck_1);
|
|
12981
12987
|
};
|
|
12982
12988
|
function rangesDelimitedBy$lambda($delimitersList, $ignoreCase) {
|
|
12983
12989
|
return function ($this$DelimitedRangesSequence, currentIndex) {
|
|
@@ -13001,7 +13007,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13001
13007
|
}
|
|
13002
13008
|
function System() {
|
|
13003
13009
|
}
|
|
13004
|
-
protoOf(System).
|
|
13010
|
+
protoOf(System).dk = function () {
|
|
13005
13011
|
return systemClockNow();
|
|
13006
13012
|
};
|
|
13007
13013
|
var System_instance;
|
|
@@ -13045,11 +13051,11 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13045
13051
|
}
|
|
13046
13052
|
function Companion_23() {
|
|
13047
13053
|
Companion_instance_23 = this;
|
|
13048
|
-
this.
|
|
13049
|
-
this.
|
|
13050
|
-
this.
|
|
13054
|
+
this.ek_1 = _Duration___init__impl__kdtzql(new Long(0, 0));
|
|
13055
|
+
this.fk_1 = durationOfMillis(new Long(-1, 1073741823));
|
|
13056
|
+
this.gk_1 = durationOfMillis(new Long(1, -1073741824));
|
|
13051
13057
|
}
|
|
13052
|
-
protoOf(Companion_23).
|
|
13058
|
+
protoOf(Companion_23).hk = function (value) {
|
|
13053
13059
|
var tmp;
|
|
13054
13060
|
try {
|
|
13055
13061
|
tmp = parseDuration(value, true);
|
|
@@ -13125,7 +13131,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13125
13131
|
return tmp;
|
|
13126
13132
|
}
|
|
13127
13133
|
if (scale === 0)
|
|
13128
|
-
return Companion_getInstance_23().
|
|
13134
|
+
return Companion_getInstance_23().ek_1;
|
|
13129
13135
|
var value = _get_value__a43j40_0($this);
|
|
13130
13136
|
// Inline function 'kotlin.Long.times' call
|
|
13131
13137
|
var result = multiply(value, fromInt(scale));
|
|
@@ -13174,7 +13180,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13174
13180
|
if (tmp_5) {
|
|
13175
13181
|
tmp_4 = durationOfMillis(coerceIn_1(totalMillis, longRangeToLong(new Long(1, -1073741824), new Long(-1, 1073741823))));
|
|
13176
13182
|
} else {
|
|
13177
|
-
tmp_4 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().
|
|
13183
|
+
tmp_4 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().fk_1 : Companion_getInstance_23().gk_1;
|
|
13178
13184
|
}
|
|
13179
13185
|
tmp_3 = tmp_4;
|
|
13180
13186
|
}
|
|
@@ -13188,7 +13194,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13188
13194
|
if (equalsLong(tmp$ret$7, value)) {
|
|
13189
13195
|
tmp_6 = durationOfMillis(coerceIn_1(result, longRangeToLong(new Long(1, -1073741824), new Long(-1, 1073741823))));
|
|
13190
13196
|
} else {
|
|
13191
|
-
tmp_6 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().
|
|
13197
|
+
tmp_6 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().fk_1 : Companion_getInstance_23().gk_1;
|
|
13192
13198
|
}
|
|
13193
13199
|
tmp_0 = tmp_6;
|
|
13194
13200
|
}
|
|
@@ -13201,7 +13207,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13201
13207
|
return compare(_get_rawValue__5zfu4e($this), new Long(0, 0)) > 0;
|
|
13202
13208
|
}
|
|
13203
13209
|
function Duration__isInfinite_impl_tsn9y3($this) {
|
|
13204
|
-
return equalsLong(_get_rawValue__5zfu4e($this), _get_rawValue__5zfu4e(Companion_getInstance_23().
|
|
13210
|
+
return equalsLong(_get_rawValue__5zfu4e($this), _get_rawValue__5zfu4e(Companion_getInstance_23().fk_1)) || equalsLong(_get_rawValue__5zfu4e($this), _get_rawValue__5zfu4e(Companion_getInstance_23().gk_1));
|
|
13205
13211
|
}
|
|
13206
13212
|
function Duration__isFinite_impl_rzjsps($this) {
|
|
13207
13213
|
return !Duration__isInfinite_impl_tsn9y3($this);
|
|
@@ -13220,7 +13226,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13220
13226
|
return Duration__isNegative_impl_pbysfa($this) ? -r | 0 : r;
|
|
13221
13227
|
}
|
|
13222
13228
|
function Duration__compareTo_impl_pchp0f_0($this, other) {
|
|
13223
|
-
return Duration__compareTo_impl_pchp0f($this.
|
|
13229
|
+
return Duration__compareTo_impl_pchp0f($this.ik_1, other instanceof Duration ? other.ik_1 : THROW_CCE());
|
|
13224
13230
|
}
|
|
13225
13231
|
function _Duration___get_hoursComponent__impl__7hllxa($this) {
|
|
13226
13232
|
var tmp;
|
|
@@ -13278,7 +13284,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13278
13284
|
}
|
|
13279
13285
|
function Duration__toLong_impl_shr43i($this, unit) {
|
|
13280
13286
|
var tmp0_subject = _get_rawValue__5zfu4e($this);
|
|
13281
|
-
return equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().
|
|
13287
|
+
return equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().fk_1)) ? new Long(-1, 2147483647) : equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().gk_1)) ? new Long(0, -2147483648) : convertDurationUnit_0(_get_value__a43j40_0($this), _get_storageUnit__szjgha($this), unit);
|
|
13282
13288
|
}
|
|
13283
13289
|
function _Duration___get_inWholeDays__impl__7bvpxz($this) {
|
|
13284
13290
|
return Duration__toLong_impl_shr43i($this, DurationUnit_DAYS_getInstance());
|
|
@@ -13300,9 +13306,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13300
13306
|
var tmp;
|
|
13301
13307
|
if (equalsLong(tmp0_subject, new Long(0, 0))) {
|
|
13302
13308
|
tmp = '0s';
|
|
13303
|
-
} else if (equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().ek_1))) {
|
|
13304
|
-
tmp = 'Infinity';
|
|
13305
13309
|
} else if (equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().fk_1))) {
|
|
13310
|
+
tmp = 'Infinity';
|
|
13311
|
+
} else if (equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().gk_1))) {
|
|
13306
13312
|
tmp = '-Infinity';
|
|
13307
13313
|
} else {
|
|
13308
13314
|
var isNegative = Duration__isNegative_impl_pbysfa($this);
|
|
@@ -13437,29 +13443,29 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13437
13443
|
function Duration__equals_impl_ygj6w6($this, other) {
|
|
13438
13444
|
if (!(other instanceof Duration))
|
|
13439
13445
|
return false;
|
|
13440
|
-
var tmp0_other_with_cast = other.
|
|
13446
|
+
var tmp0_other_with_cast = other.ik_1;
|
|
13441
13447
|
if (!equalsLong($this, tmp0_other_with_cast))
|
|
13442
13448
|
return false;
|
|
13443
13449
|
return true;
|
|
13444
13450
|
}
|
|
13445
13451
|
function Duration(rawValue) {
|
|
13446
13452
|
Companion_getInstance_23();
|
|
13447
|
-
this.
|
|
13453
|
+
this.ik_1 = rawValue;
|
|
13448
13454
|
}
|
|
13449
|
-
protoOf(Duration).
|
|
13450
|
-
return Duration__compareTo_impl_pchp0f(this.
|
|
13455
|
+
protoOf(Duration).jk = function (other) {
|
|
13456
|
+
return Duration__compareTo_impl_pchp0f(this.ik_1, other);
|
|
13451
13457
|
};
|
|
13452
13458
|
protoOf(Duration).d = function (other) {
|
|
13453
13459
|
return Duration__compareTo_impl_pchp0f_0(this, other);
|
|
13454
13460
|
};
|
|
13455
13461
|
protoOf(Duration).toString = function () {
|
|
13456
|
-
return Duration__toString_impl_8d916b(this.
|
|
13462
|
+
return Duration__toString_impl_8d916b(this.ik_1);
|
|
13457
13463
|
};
|
|
13458
13464
|
protoOf(Duration).hashCode = function () {
|
|
13459
|
-
return Duration__hashCode_impl_u4exz6(this.
|
|
13465
|
+
return Duration__hashCode_impl_u4exz6(this.ik_1);
|
|
13460
13466
|
};
|
|
13461
13467
|
protoOf(Duration).equals = function (other) {
|
|
13462
|
-
return Duration__equals_impl_ygj6w6(this.
|
|
13468
|
+
return Duration__equals_impl_ygj6w6(this.ik_1, other);
|
|
13463
13469
|
};
|
|
13464
13470
|
function durationOfMillis(normalMillis) {
|
|
13465
13471
|
// Inline function 'kotlin.Long.plus' call
|
|
@@ -13507,7 +13513,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13507
13513
|
if (length === 0)
|
|
13508
13514
|
throw IllegalArgumentException_init_$Create$_0('The string is empty');
|
|
13509
13515
|
var index = 0;
|
|
13510
|
-
var result = Companion_getInstance_23().
|
|
13516
|
+
var result = Companion_getInstance_23().ek_1;
|
|
13511
13517
|
var infinityString = 'Infinity';
|
|
13512
13518
|
var tmp0_subject = charCodeAt(value, index);
|
|
13513
13519
|
if (tmp0_subject === _Char___init__impl__6a9atx(43) || tmp0_subject === _Char___init__impl__6a9atx(45)) {
|
|
@@ -13595,7 +13601,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13595
13601
|
var b = infinityString.length;
|
|
13596
13602
|
var tmp$ret$5 = Math.max(tmp0, b);
|
|
13597
13603
|
if (regionMatches(value, tmp_2, infinityString, 0, tmp$ret$5, true)) {
|
|
13598
|
-
result = Companion_getInstance_23().
|
|
13604
|
+
result = Companion_getInstance_23().fk_1;
|
|
13599
13605
|
} else {
|
|
13600
13606
|
var prevUnit_0 = null;
|
|
13601
13607
|
var afterFirst = false;
|
|
@@ -13866,9 +13872,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13866
13872
|
var this_0 = add(r, bitwiseAnd(other_0, shiftRight(bitwiseAnd(bitwiseXor(r, other_0), bitwiseOr(r, negate(r))), 63)));
|
|
13867
13873
|
var tmp$ret$2 = multiply(this_0, fromInt(1000000));
|
|
13868
13874
|
var nanosecondsOfSecond = convertToInt(tmp$ret$2);
|
|
13869
|
-
return compare(epochSeconds, new Long(342103040, -7347440)) < 0 ? this.oc_1 : compare(epochSeconds, new Long(-90867457, 7347410)) > 0 ? this.pc_1 : this.
|
|
13875
|
+
return compare(epochSeconds, new Long(342103040, -7347440)) < 0 ? this.oc_1 : compare(epochSeconds, new Long(-90867457, 7347410)) > 0 ? this.pc_1 : this.kk(epochSeconds, nanosecondsOfSecond);
|
|
13870
13876
|
};
|
|
13871
|
-
protoOf(Companion_24).
|
|
13877
|
+
protoOf(Companion_24).lk = function (epochSeconds, nanosecondAdjustment) {
|
|
13872
13878
|
// Inline function 'kotlin.floorDiv' call
|
|
13873
13879
|
var other = new Long(1000000000, 0);
|
|
13874
13880
|
var q = divide(nanosecondAdjustment, other);
|
|
@@ -13898,15 +13904,15 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13898
13904
|
}
|
|
13899
13905
|
return tmp;
|
|
13900
13906
|
};
|
|
13901
|
-
protoOf(Companion_24).
|
|
13907
|
+
protoOf(Companion_24).mk = function (epochSeconds, nanosecondAdjustment, $super) {
|
|
13902
13908
|
nanosecondAdjustment = nanosecondAdjustment === VOID ? new Long(0, 0) : nanosecondAdjustment;
|
|
13903
|
-
return $super === VOID ? this.
|
|
13909
|
+
return $super === VOID ? this.lk(epochSeconds, nanosecondAdjustment) : $super.lk.call(this, epochSeconds, nanosecondAdjustment);
|
|
13904
13910
|
};
|
|
13905
|
-
protoOf(Companion_24).
|
|
13906
|
-
return this.
|
|
13911
|
+
protoOf(Companion_24).kk = function (epochSeconds, nanosecondAdjustment) {
|
|
13912
|
+
return this.lk(epochSeconds, fromInt(nanosecondAdjustment));
|
|
13907
13913
|
};
|
|
13908
|
-
protoOf(Companion_24).
|
|
13909
|
-
return parseIso(input).
|
|
13914
|
+
protoOf(Companion_24).nk = function (input) {
|
|
13915
|
+
return parseIso(input).ok();
|
|
13910
13916
|
};
|
|
13911
13917
|
var Companion_instance_24;
|
|
13912
13918
|
function Companion_getInstance_24() {
|
|
@@ -13916,18 +13922,18 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13916
13922
|
}
|
|
13917
13923
|
function Instant(epochSeconds, nanosecondsOfSecond) {
|
|
13918
13924
|
Companion_getInstance_24();
|
|
13919
|
-
this.
|
|
13920
|
-
this.
|
|
13921
|
-
var containsArg = this.
|
|
13925
|
+
this.pk_1 = epochSeconds;
|
|
13926
|
+
this.qk_1 = nanosecondsOfSecond;
|
|
13927
|
+
var containsArg = this.pk_1;
|
|
13922
13928
|
// Inline function 'kotlin.require' call
|
|
13923
13929
|
if (!(compare(new Long(342103040, -7347440), containsArg) <= 0 ? compare(containsArg, new Long(-90867457, 7347410)) <= 0 : false)) {
|
|
13924
13930
|
var message = 'Instant exceeds minimum or maximum instant';
|
|
13925
13931
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
13926
13932
|
}
|
|
13927
13933
|
}
|
|
13928
|
-
protoOf(Instant).
|
|
13929
|
-
if (compare(this.
|
|
13930
|
-
var tmp0 = this.
|
|
13934
|
+
protoOf(Instant).rk = function () {
|
|
13935
|
+
if (compare(this.pk_1, new Long(0, 0)) >= 0) {
|
|
13936
|
+
var tmp0 = this.pk_1;
|
|
13931
13937
|
var tmp2 = new Long(1000, 0);
|
|
13932
13938
|
var tmp$ret$0;
|
|
13933
13939
|
$l$block_1: {
|
|
@@ -13952,7 +13958,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13952
13958
|
}
|
|
13953
13959
|
var millis = tmp$ret$0;
|
|
13954
13960
|
// Inline function 'kotlin.time.safeAddOrElse' call
|
|
13955
|
-
var b = fromInt(this.
|
|
13961
|
+
var b = fromInt(this.qk_1 / 1000000 | 0);
|
|
13956
13962
|
var sum = add(millis, b);
|
|
13957
13963
|
if (compare(bitwiseXor(millis, sum), new Long(0, 0)) < 0 && compare(bitwiseXor(millis, b), new Long(0, 0)) >= 0) {
|
|
13958
13964
|
return new Long(-1, 2147483647);
|
|
@@ -13960,7 +13966,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13960
13966
|
return sum;
|
|
13961
13967
|
} else {
|
|
13962
13968
|
// Inline function 'kotlin.Long.plus' call
|
|
13963
|
-
var this_0 = this.
|
|
13969
|
+
var this_0 = this.pk_1;
|
|
13964
13970
|
var tmp0_0 = add(this_0, fromInt(1));
|
|
13965
13971
|
var tmp2_0 = new Long(1000, 0);
|
|
13966
13972
|
var tmp$ret$3;
|
|
@@ -13986,7 +13992,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13986
13992
|
}
|
|
13987
13993
|
var millis_0 = tmp$ret$3;
|
|
13988
13994
|
// Inline function 'kotlin.time.safeAddOrElse' call
|
|
13989
|
-
var b_0 = fromInt((this.
|
|
13995
|
+
var b_0 = fromInt((this.qk_1 / 1000000 | 0) - 1000 | 0);
|
|
13990
13996
|
var sum_0 = add(millis_0, b_0);
|
|
13991
13997
|
if (compare(bitwiseXor(millis_0, sum_0), new Long(0, 0)) < 0 && compare(bitwiseXor(millis_0, b_0), new Long(0, 0)) >= 0) {
|
|
13992
13998
|
return new Long(0, -2147483648);
|
|
@@ -13994,7 +14000,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13994
14000
|
return sum_0;
|
|
13995
14001
|
}
|
|
13996
14002
|
};
|
|
13997
|
-
protoOf(Instant).
|
|
14003
|
+
protoOf(Instant).sk = function (duration) {
|
|
13998
14004
|
// Inline function 'kotlin.time.Duration.toComponents' call
|
|
13999
14005
|
var tmp0 = _Duration___get_inWholeSeconds__impl__hpy7b3(duration);
|
|
14000
14006
|
var nanosecondsToAdd = _Duration___get_nanosecondsComponent__impl__nh19kq(duration);
|
|
@@ -14002,38 +14008,38 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14002
14008
|
return this;
|
|
14003
14009
|
}
|
|
14004
14010
|
// Inline function 'kotlin.time.safeAddOrElse' call
|
|
14005
|
-
var a = this.
|
|
14011
|
+
var a = this.pk_1;
|
|
14006
14012
|
var sum = add(a, tmp0);
|
|
14007
14013
|
if (compare(bitwiseXor(a, sum), new Long(0, 0)) < 0 && compare(bitwiseXor(a, tmp0), new Long(0, 0)) >= 0) {
|
|
14008
14014
|
return Duration__isPositive_impl_tvkkt2(duration) ? Companion_getInstance_24().pc_1 : Companion_getInstance_24().oc_1;
|
|
14009
14015
|
}
|
|
14010
14016
|
var newEpochSeconds = sum;
|
|
14011
|
-
var nanoAdjustment = this.
|
|
14012
|
-
return Companion_getInstance_24().
|
|
14017
|
+
var nanoAdjustment = this.qk_1 + nanosecondsToAdd | 0;
|
|
14018
|
+
return Companion_getInstance_24().kk(newEpochSeconds, nanoAdjustment);
|
|
14013
14019
|
};
|
|
14014
|
-
protoOf(Instant).
|
|
14015
|
-
return this.
|
|
14020
|
+
protoOf(Instant).tk = function (duration) {
|
|
14021
|
+
return this.sk(Duration__unaryMinus_impl_x2k1y0(duration));
|
|
14016
14022
|
};
|
|
14017
|
-
protoOf(Instant).
|
|
14023
|
+
protoOf(Instant).uk = function (other) {
|
|
14018
14024
|
Companion_getInstance_23();
|
|
14019
14025
|
// Inline function 'kotlin.time.Companion.seconds' call
|
|
14020
|
-
var this_0 = subtract(this.
|
|
14026
|
+
var this_0 = subtract(this.pk_1, other.pk_1);
|
|
14021
14027
|
var tmp = toDuration_0(this_0, DurationUnit_SECONDS_getInstance());
|
|
14022
14028
|
Companion_getInstance_23();
|
|
14023
14029
|
// Inline function 'kotlin.time.Companion.nanoseconds' call
|
|
14024
|
-
var this_1 = this.
|
|
14030
|
+
var this_1 = this.qk_1 - other.qk_1 | 0;
|
|
14025
14031
|
var tmp$ret$1 = toDuration(this_1, DurationUnit_NANOSECONDS_getInstance());
|
|
14026
14032
|
return Duration__plus_impl_yu9v8f(tmp, tmp$ret$1);
|
|
14027
14033
|
};
|
|
14028
|
-
protoOf(Instant).
|
|
14029
|
-
var s = this.
|
|
14034
|
+
protoOf(Instant).vk = function (other) {
|
|
14035
|
+
var s = this.pk_1.a3(other.pk_1);
|
|
14030
14036
|
if (!(s === 0)) {
|
|
14031
14037
|
return s;
|
|
14032
14038
|
}
|
|
14033
|
-
return compareTo(this.
|
|
14039
|
+
return compareTo(this.qk_1, other.qk_1);
|
|
14034
14040
|
};
|
|
14035
14041
|
protoOf(Instant).d = function (other) {
|
|
14036
|
-
return this.
|
|
14042
|
+
return this.vk(other instanceof Instant ? other : THROW_CCE());
|
|
14037
14043
|
};
|
|
14038
14044
|
protoOf(Instant).equals = function (other) {
|
|
14039
14045
|
var tmp;
|
|
@@ -14043,12 +14049,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14043
14049
|
var tmp_0;
|
|
14044
14050
|
var tmp_1;
|
|
14045
14051
|
if (other instanceof Instant) {
|
|
14046
|
-
tmp_1 = equalsLong(this.
|
|
14052
|
+
tmp_1 = equalsLong(this.pk_1, other.pk_1);
|
|
14047
14053
|
} else {
|
|
14048
14054
|
tmp_1 = false;
|
|
14049
14055
|
}
|
|
14050
14056
|
if (tmp_1) {
|
|
14051
|
-
tmp_0 = this.
|
|
14057
|
+
tmp_0 = this.qk_1 === other.qk_1;
|
|
14052
14058
|
} else {
|
|
14053
14059
|
tmp_0 = false;
|
|
14054
14060
|
}
|
|
@@ -14057,7 +14063,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14057
14063
|
return tmp;
|
|
14058
14064
|
};
|
|
14059
14065
|
protoOf(Instant).hashCode = function () {
|
|
14060
|
-
return this.
|
|
14066
|
+
return this.pk_1.hashCode() + imul(51, this.qk_1) | 0;
|
|
14061
14067
|
};
|
|
14062
14068
|
protoOf(Instant).toString = function () {
|
|
14063
14069
|
return formatIso(this);
|
|
@@ -14067,9 +14073,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14067
14073
|
// Inline function 'kotlin.text.buildString' call
|
|
14068
14074
|
// Inline function 'kotlin.apply' call
|
|
14069
14075
|
var this_0 = StringBuilder_init_$Create$_0();
|
|
14070
|
-
var ldt = Companion_instance_25.
|
|
14076
|
+
var ldt = Companion_instance_25.wk(instant);
|
|
14071
14077
|
// Inline function 'kotlin.run' call
|
|
14072
|
-
var number = ldt.
|
|
14078
|
+
var number = ldt.xk_1;
|
|
14073
14079
|
var tmp;
|
|
14074
14080
|
// Inline function 'kotlin.math.absoluteValue' call
|
|
14075
14081
|
if (abs_0(number) < 1000) {
|
|
@@ -14089,43 +14095,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14089
14095
|
tmp = this_0.sb(number);
|
|
14090
14096
|
}
|
|
14091
14097
|
this_0.e8(_Char___init__impl__6a9atx(45));
|
|
14092
|
-
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.xk_1);
|
|
14093
|
-
this_0.e8(_Char___init__impl__6a9atx(45));
|
|
14094
14098
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.yk_1);
|
|
14095
|
-
this_0.e8(_Char___init__impl__6a9atx(
|
|
14099
|
+
this_0.e8(_Char___init__impl__6a9atx(45));
|
|
14096
14100
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.zk_1);
|
|
14097
|
-
this_0.e8(_Char___init__impl__6a9atx(
|
|
14101
|
+
this_0.e8(_Char___init__impl__6a9atx(84));
|
|
14098
14102
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.al_1);
|
|
14099
14103
|
this_0.e8(_Char___init__impl__6a9atx(58));
|
|
14100
14104
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.bl_1);
|
|
14101
|
-
|
|
14105
|
+
this_0.e8(_Char___init__impl__6a9atx(58));
|
|
14106
|
+
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.cl_1);
|
|
14107
|
+
if (!(ldt.dl_1 === 0)) {
|
|
14102
14108
|
this_0.e8(_Char___init__impl__6a9atx(46));
|
|
14103
14109
|
var zerosToStrip = 0;
|
|
14104
|
-
while ((ldt.
|
|
14110
|
+
while ((ldt.dl_1 % get_POWERS_OF_TEN()[zerosToStrip + 1 | 0] | 0) === 0) {
|
|
14105
14111
|
zerosToStrip = zerosToStrip + 1 | 0;
|
|
14106
14112
|
}
|
|
14107
14113
|
zerosToStrip = zerosToStrip - (zerosToStrip % 3 | 0) | 0;
|
|
14108
|
-
var numberToOutput = ldt.
|
|
14114
|
+
var numberToOutput = ldt.dl_1 / get_POWERS_OF_TEN()[zerosToStrip] | 0;
|
|
14109
14115
|
this_0.d8(substring_0((numberToOutput + get_POWERS_OF_TEN()[9 - zerosToStrip | 0] | 0).toString(), 1));
|
|
14110
14116
|
}
|
|
14111
14117
|
this_0.e8(_Char___init__impl__6a9atx(90));
|
|
14112
14118
|
return this_0.toString();
|
|
14113
14119
|
}
|
|
14114
14120
|
function Success(epochSeconds, nanosecondsOfSecond) {
|
|
14115
|
-
this.
|
|
14116
|
-
this.
|
|
14121
|
+
this.el_1 = epochSeconds;
|
|
14122
|
+
this.fl_1 = nanosecondsOfSecond;
|
|
14117
14123
|
}
|
|
14118
|
-
protoOf(Success).
|
|
14119
|
-
if (compare(this.
|
|
14120
|
-
throw new InstantFormatException('The parsed date is outside the range representable by Instant (Unix epoch second ' + this.
|
|
14121
|
-
return Companion_getInstance_24().
|
|
14124
|
+
protoOf(Success).ok = function () {
|
|
14125
|
+
if (compare(this.el_1, Companion_getInstance_24().oc_1.pk_1) < 0 || compare(this.el_1, Companion_getInstance_24().pc_1.pk_1) > 0)
|
|
14126
|
+
throw new InstantFormatException('The parsed date is outside the range representable by Instant (Unix epoch second ' + this.el_1.toString() + ')');
|
|
14127
|
+
return Companion_getInstance_24().kk(this.el_1, this.fl_1);
|
|
14122
14128
|
};
|
|
14123
14129
|
function Failure(error, input) {
|
|
14124
|
-
this.
|
|
14125
|
-
this.
|
|
14130
|
+
this.gl_1 = error;
|
|
14131
|
+
this.hl_1 = input;
|
|
14126
14132
|
}
|
|
14127
|
-
protoOf(Failure).
|
|
14128
|
-
throw new InstantFormatException(this.
|
|
14133
|
+
protoOf(Failure).ok = function () {
|
|
14134
|
+
throw new InstantFormatException(this.gl_1 + ' when parsing an Instant from "' + truncateForErrorMessage(this.hl_1, 64) + '"');
|
|
14129
14135
|
};
|
|
14130
14136
|
function parseIso(isoString) {
|
|
14131
14137
|
_init_properties_Instant_kt__2myitt();
|
|
@@ -14377,7 +14383,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14377
14383
|
var this_0 = new UnboundLocalDateTime(year, month, day, hour, minute, second, nanosecond);
|
|
14378
14384
|
// Inline function 'kotlin.run' call
|
|
14379
14385
|
// Inline function 'kotlin.run' call
|
|
14380
|
-
var y = fromInt(this_0.
|
|
14386
|
+
var y = fromInt(this_0.xk_1);
|
|
14381
14387
|
var total = multiply(numberToLong(365), y);
|
|
14382
14388
|
if (compare(y, new Long(0, 0)) >= 0) {
|
|
14383
14389
|
var tmp_15 = total;
|
|
@@ -14408,16 +14414,16 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14408
14414
|
}
|
|
14409
14415
|
var tmp0 = total;
|
|
14410
14416
|
// Inline function 'kotlin.Long.plus' call
|
|
14411
|
-
var other = (imul(367, this_0.
|
|
14417
|
+
var other = (imul(367, this_0.yk_1) - 362 | 0) / 12 | 0;
|
|
14412
14418
|
total = add(tmp0, fromInt(other));
|
|
14413
14419
|
var tmp0_0 = total;
|
|
14414
14420
|
// Inline function 'kotlin.Long.plus' call
|
|
14415
|
-
var other_0 = this_0.
|
|
14421
|
+
var other_0 = this_0.zk_1 - 1 | 0;
|
|
14416
14422
|
total = add(tmp0_0, fromInt(other_0));
|
|
14417
|
-
if (this_0.
|
|
14423
|
+
if (this_0.yk_1 > 2) {
|
|
14418
14424
|
var _unary__edvuaz = total;
|
|
14419
14425
|
total = subtract(_unary__edvuaz, get_ONE());
|
|
14420
|
-
if (!isLeapYear(this_0.
|
|
14426
|
+
if (!isLeapYear(this_0.xk_1)) {
|
|
14421
14427
|
var _unary__edvuaz_0 = total;
|
|
14422
14428
|
total = subtract(_unary__edvuaz_0, get_ONE());
|
|
14423
14429
|
}
|
|
@@ -14425,20 +14431,20 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14425
14431
|
// Inline function 'kotlin.Long.minus' call
|
|
14426
14432
|
var this_4 = total;
|
|
14427
14433
|
var epochDays = subtract(this_4, fromInt(719528));
|
|
14428
|
-
var daySeconds = (imul(this_0.
|
|
14434
|
+
var daySeconds = (imul(this_0.al_1, 3600) + imul(this_0.bl_1, 60) | 0) + this_0.cl_1 | 0;
|
|
14429
14435
|
// Inline function 'kotlin.Long.times' call
|
|
14430
14436
|
// Inline function 'kotlin.Long.plus' call
|
|
14431
14437
|
var this_5 = multiply(epochDays, fromInt(86400));
|
|
14432
14438
|
// Inline function 'kotlin.Long.minus' call
|
|
14433
14439
|
var this_6 = add(this_5, fromInt(daySeconds));
|
|
14434
14440
|
var epochSeconds = subtract(this_6, fromInt(offsetSeconds));
|
|
14435
|
-
var p1 = this_0.
|
|
14441
|
+
var p1 = this_0.dl_1;
|
|
14436
14442
|
return new Success(epochSeconds, p1);
|
|
14437
14443
|
}
|
|
14438
14444
|
function Companion_25() {
|
|
14439
14445
|
}
|
|
14440
|
-
protoOf(Companion_25).
|
|
14441
|
-
var localSecond = instant.
|
|
14446
|
+
protoOf(Companion_25).wk = function (instant) {
|
|
14447
|
+
var localSecond = instant.pk_1;
|
|
14442
14448
|
// Inline function 'kotlin.floorDiv' call
|
|
14443
14449
|
var other = new Long(86400, 0);
|
|
14444
14450
|
var q = divide(localSecond, other);
|
|
@@ -14529,23 +14535,23 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14529
14535
|
var secondWithoutHours = secsOfDay - imul(hours, 3600) | 0;
|
|
14530
14536
|
var minutes = secondWithoutHours / 60 | 0;
|
|
14531
14537
|
var second = secondWithoutHours - imul(minutes, 60) | 0;
|
|
14532
|
-
return new UnboundLocalDateTime(year, month, day, hours, minutes, second, instant.
|
|
14538
|
+
return new UnboundLocalDateTime(year, month, day, hours, minutes, second, instant.qk_1);
|
|
14533
14539
|
};
|
|
14534
14540
|
var Companion_instance_25;
|
|
14535
14541
|
function Companion_getInstance_25() {
|
|
14536
14542
|
return Companion_instance_25;
|
|
14537
14543
|
}
|
|
14538
14544
|
function UnboundLocalDateTime(year, month, day, hour, minute, second, nanosecond) {
|
|
14539
|
-
this.
|
|
14540
|
-
this.
|
|
14541
|
-
this.
|
|
14542
|
-
this.
|
|
14543
|
-
this.
|
|
14544
|
-
this.
|
|
14545
|
-
this.
|
|
14545
|
+
this.xk_1 = year;
|
|
14546
|
+
this.yk_1 = month;
|
|
14547
|
+
this.zk_1 = day;
|
|
14548
|
+
this.al_1 = hour;
|
|
14549
|
+
this.bl_1 = minute;
|
|
14550
|
+
this.cl_1 = second;
|
|
14551
|
+
this.dl_1 = nanosecond;
|
|
14546
14552
|
}
|
|
14547
14553
|
protoOf(UnboundLocalDateTime).toString = function () {
|
|
14548
|
-
return 'UnboundLocalDateTime(' + this.
|
|
14554
|
+
return 'UnboundLocalDateTime(' + this.xk_1 + '-' + this.yk_1 + '-' + this.zk_1 + ' ' + this.al_1 + ':' + this.bl_1 + ':' + this.cl_1 + '.' + this.dl_1 + ')';
|
|
14549
14555
|
};
|
|
14550
14556
|
function InstantFormatException(message) {
|
|
14551
14557
|
IllegalArgumentException_init_$Init$_0(message, this);
|
|
@@ -14650,40 +14656,40 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14650
14656
|
}
|
|
14651
14657
|
function invoke(_this__u8e3s4, value) {
|
|
14652
14658
|
_init_properties_DeepRecursive_kt__zbwcac();
|
|
14653
|
-
return (new DeepRecursiveScopeImpl(_this__u8e3s4.
|
|
14659
|
+
return (new DeepRecursiveScopeImpl(_this__u8e3s4.jl_1, value)).ol();
|
|
14654
14660
|
}
|
|
14655
14661
|
function DeepRecursiveFunction(block) {
|
|
14656
|
-
this.
|
|
14662
|
+
this.jl_1 = block;
|
|
14657
14663
|
}
|
|
14658
14664
|
function DeepRecursiveScopeImpl(block, value) {
|
|
14659
14665
|
DeepRecursiveScope.call(this);
|
|
14660
14666
|
var tmp = this;
|
|
14661
|
-
tmp.
|
|
14662
|
-
this.
|
|
14667
|
+
tmp.kl_1 = isSuspendFunction(block, 2) ? block : THROW_CCE();
|
|
14668
|
+
this.ll_1 = value;
|
|
14663
14669
|
var tmp_0 = this;
|
|
14664
|
-
tmp_0.
|
|
14665
|
-
this.
|
|
14670
|
+
tmp_0.ml_1 = isInterface(this, Continuation) ? this : THROW_CCE();
|
|
14671
|
+
this.nl_1 = get_UNDEFINED_RESULT();
|
|
14666
14672
|
}
|
|
14667
14673
|
protoOf(DeepRecursiveScopeImpl).y8 = function () {
|
|
14668
14674
|
return EmptyCoroutineContext_getInstance();
|
|
14669
14675
|
};
|
|
14670
|
-
protoOf(DeepRecursiveScopeImpl).
|
|
14671
|
-
this.
|
|
14672
|
-
this.
|
|
14676
|
+
protoOf(DeepRecursiveScopeImpl).pl = function (result) {
|
|
14677
|
+
this.ml_1 = null;
|
|
14678
|
+
this.nl_1 = result;
|
|
14673
14679
|
};
|
|
14674
14680
|
protoOf(DeepRecursiveScopeImpl).d9 = function (result) {
|
|
14675
|
-
return this.
|
|
14681
|
+
return this.pl(result);
|
|
14676
14682
|
};
|
|
14677
|
-
protoOf(DeepRecursiveScopeImpl).
|
|
14683
|
+
protoOf(DeepRecursiveScopeImpl).il = function (value, $completion) {
|
|
14678
14684
|
var tmp = this;
|
|
14679
|
-
tmp.
|
|
14680
|
-
this.
|
|
14685
|
+
tmp.ml_1 = isInterface($completion, Continuation) ? $completion : THROW_CCE();
|
|
14686
|
+
this.ll_1 = value;
|
|
14681
14687
|
return get_COROUTINE_SUSPENDED();
|
|
14682
14688
|
};
|
|
14683
|
-
protoOf(DeepRecursiveScopeImpl).
|
|
14689
|
+
protoOf(DeepRecursiveScopeImpl).ol = function () {
|
|
14684
14690
|
$l$loop: while (true) {
|
|
14685
|
-
var result = this.
|
|
14686
|
-
var tmp0_elvis_lhs = this.
|
|
14691
|
+
var result = this.nl_1;
|
|
14692
|
+
var tmp0_elvis_lhs = this.ml_1;
|
|
14687
14693
|
var tmp;
|
|
14688
14694
|
if (tmp0_elvis_lhs == null) {
|
|
14689
14695
|
// Inline function 'kotlin.getOrThrow' call
|
|
@@ -14698,9 +14704,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14698
14704
|
if (equals(get_UNDEFINED_RESULT(), result)) {
|
|
14699
14705
|
var tmp_1;
|
|
14700
14706
|
try {
|
|
14701
|
-
var tmp0 = this.
|
|
14707
|
+
var tmp0 = this.kl_1;
|
|
14702
14708
|
// Inline function 'kotlin.coroutines.intrinsics.startCoroutineUninterceptedOrReturn' call
|
|
14703
|
-
var param = this.
|
|
14709
|
+
var param = this.ll_1;
|
|
14704
14710
|
tmp_1 = startCoroutineUninterceptedOrReturnNonGeneratorVersion_0(tmp0, this, param, cont);
|
|
14705
14711
|
} catch ($p) {
|
|
14706
14712
|
var tmp_2;
|
|
@@ -14724,7 +14730,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14724
14730
|
cont.d9(tmp$ret$4);
|
|
14725
14731
|
}
|
|
14726
14732
|
} else {
|
|
14727
|
-
this.
|
|
14733
|
+
this.nl_1 = get_UNDEFINED_RESULT();
|
|
14728
14734
|
cont.d9(result);
|
|
14729
14735
|
}
|
|
14730
14736
|
}
|
|
@@ -14754,22 +14760,22 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14754
14760
|
Enum.call(this, name, ordinal);
|
|
14755
14761
|
}
|
|
14756
14762
|
function UnsafeLazyImpl(initializer) {
|
|
14757
|
-
this.
|
|
14758
|
-
this.
|
|
14763
|
+
this.ql_1 = initializer;
|
|
14764
|
+
this.rl_1 = UNINITIALIZED_VALUE_instance;
|
|
14759
14765
|
}
|
|
14760
14766
|
protoOf(UnsafeLazyImpl).x = function () {
|
|
14761
|
-
if (this.
|
|
14762
|
-
this.
|
|
14763
|
-
this.
|
|
14767
|
+
if (this.rl_1 === UNINITIALIZED_VALUE_instance) {
|
|
14768
|
+
this.rl_1 = ensureNotNull(this.ql_1)();
|
|
14769
|
+
this.ql_1 = null;
|
|
14764
14770
|
}
|
|
14765
|
-
var tmp = this.
|
|
14771
|
+
var tmp = this.rl_1;
|
|
14766
14772
|
return (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
14767
14773
|
};
|
|
14768
|
-
protoOf(UnsafeLazyImpl).
|
|
14769
|
-
return !(this.
|
|
14774
|
+
protoOf(UnsafeLazyImpl).sl = function () {
|
|
14775
|
+
return !(this.rl_1 === UNINITIALIZED_VALUE_instance);
|
|
14770
14776
|
};
|
|
14771
14777
|
protoOf(UnsafeLazyImpl).toString = function () {
|
|
14772
|
-
return this.
|
|
14778
|
+
return this.sl() ? toString_0(this.x()) : 'Lazy value not initialized yet.';
|
|
14773
14779
|
};
|
|
14774
14780
|
function UNINITIALIZED_VALUE() {
|
|
14775
14781
|
}
|
|
@@ -14802,7 +14808,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14802
14808
|
function Result__exceptionOrNull_impl_p6xea9($this) {
|
|
14803
14809
|
var tmp;
|
|
14804
14810
|
if (_Result___get_value__impl__bjfvqg($this) instanceof Failure_0) {
|
|
14805
|
-
tmp = _Result___get_value__impl__bjfvqg($this).
|
|
14811
|
+
tmp = _Result___get_value__impl__bjfvqg($this).tl_1;
|
|
14806
14812
|
} else {
|
|
14807
14813
|
tmp = null;
|
|
14808
14814
|
}
|
|
@@ -14824,22 +14830,22 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14824
14830
|
return Companion_instance_26;
|
|
14825
14831
|
}
|
|
14826
14832
|
function Failure_0(exception) {
|
|
14827
|
-
this.
|
|
14833
|
+
this.tl_1 = exception;
|
|
14828
14834
|
}
|
|
14829
14835
|
protoOf(Failure_0).equals = function (other) {
|
|
14830
14836
|
var tmp;
|
|
14831
14837
|
if (other instanceof Failure_0) {
|
|
14832
|
-
tmp = equals(this.
|
|
14838
|
+
tmp = equals(this.tl_1, other.tl_1);
|
|
14833
14839
|
} else {
|
|
14834
14840
|
tmp = false;
|
|
14835
14841
|
}
|
|
14836
14842
|
return tmp;
|
|
14837
14843
|
};
|
|
14838
14844
|
protoOf(Failure_0).hashCode = function () {
|
|
14839
|
-
return hashCode_0(this.
|
|
14845
|
+
return hashCode_0(this.tl_1);
|
|
14840
14846
|
};
|
|
14841
14847
|
protoOf(Failure_0).toString = function () {
|
|
14842
|
-
return 'Failure(' + this.
|
|
14848
|
+
return 'Failure(' + this.tl_1.toString() + ')';
|
|
14843
14849
|
};
|
|
14844
14850
|
function Result__hashCode_impl_d2zufp($this) {
|
|
14845
14851
|
return $this == null ? 0 : hashCode_0($this);
|
|
@@ -14847,22 +14853,22 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14847
14853
|
function Result__equals_impl_bxgmep($this, other) {
|
|
14848
14854
|
if (!(other instanceof Result))
|
|
14849
14855
|
return false;
|
|
14850
|
-
var tmp0_other_with_cast = other.
|
|
14856
|
+
var tmp0_other_with_cast = other.ul_1;
|
|
14851
14857
|
if (!equals($this, tmp0_other_with_cast))
|
|
14852
14858
|
return false;
|
|
14853
14859
|
return true;
|
|
14854
14860
|
}
|
|
14855
14861
|
function Result(value) {
|
|
14856
|
-
this.
|
|
14862
|
+
this.ul_1 = value;
|
|
14857
14863
|
}
|
|
14858
14864
|
protoOf(Result).toString = function () {
|
|
14859
|
-
return Result__toString_impl_yu5r8k(this.
|
|
14865
|
+
return Result__toString_impl_yu5r8k(this.ul_1);
|
|
14860
14866
|
};
|
|
14861
14867
|
protoOf(Result).hashCode = function () {
|
|
14862
|
-
return Result__hashCode_impl_d2zufp(this.
|
|
14868
|
+
return Result__hashCode_impl_d2zufp(this.ul_1);
|
|
14863
14869
|
};
|
|
14864
14870
|
protoOf(Result).equals = function (other) {
|
|
14865
|
-
return Result__equals_impl_bxgmep(this.
|
|
14871
|
+
return Result__equals_impl_bxgmep(this.ul_1, other);
|
|
14866
14872
|
};
|
|
14867
14873
|
function createFailure(exception) {
|
|
14868
14874
|
return new Failure_0(exception);
|
|
@@ -14870,7 +14876,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14870
14876
|
function throwOnFailure(_this__u8e3s4) {
|
|
14871
14877
|
var tmp = _Result___get_value__impl__bjfvqg(_this__u8e3s4);
|
|
14872
14878
|
if (tmp instanceof Failure_0)
|
|
14873
|
-
throw _Result___get_value__impl__bjfvqg(_this__u8e3s4).
|
|
14879
|
+
throw _Result___get_value__impl__bjfvqg(_this__u8e3s4).tl_1;
|
|
14874
14880
|
}
|
|
14875
14881
|
function NotImplementedError(message) {
|
|
14876
14882
|
message = message === VOID ? 'An operation is not implemented.' : message;
|
|
@@ -14910,35 +14916,35 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14910
14916
|
return new Pair(_this__u8e3s4, that);
|
|
14911
14917
|
}
|
|
14912
14918
|
function Triple(first, second, third) {
|
|
14913
|
-
this.
|
|
14914
|
-
this.
|
|
14915
|
-
this.
|
|
14919
|
+
this.vl_1 = first;
|
|
14920
|
+
this.wl_1 = second;
|
|
14921
|
+
this.xl_1 = third;
|
|
14916
14922
|
}
|
|
14917
14923
|
protoOf(Triple).toString = function () {
|
|
14918
|
-
return '(' + toString_0(this.
|
|
14924
|
+
return '(' + toString_0(this.vl_1) + ', ' + toString_0(this.wl_1) + ', ' + toString_0(this.xl_1) + ')';
|
|
14919
14925
|
};
|
|
14920
14926
|
protoOf(Triple).oe = function () {
|
|
14921
|
-
return this.ul_1;
|
|
14922
|
-
};
|
|
14923
|
-
protoOf(Triple).pe = function () {
|
|
14924
14927
|
return this.vl_1;
|
|
14925
14928
|
};
|
|
14926
|
-
protoOf(Triple).
|
|
14929
|
+
protoOf(Triple).pe = function () {
|
|
14927
14930
|
return this.wl_1;
|
|
14928
14931
|
};
|
|
14929
|
-
protoOf(Triple).yl = function (
|
|
14932
|
+
protoOf(Triple).yl = function () {
|
|
14933
|
+
return this.xl_1;
|
|
14934
|
+
};
|
|
14935
|
+
protoOf(Triple).zl = function (first, second, third) {
|
|
14930
14936
|
return new Triple(first, second, third);
|
|
14931
14937
|
};
|
|
14932
|
-
protoOf(Triple).
|
|
14933
|
-
first = first === VOID ? this.
|
|
14934
|
-
second = second === VOID ? this.
|
|
14935
|
-
third = third === VOID ? this.
|
|
14936
|
-
return $super === VOID ? this.
|
|
14938
|
+
protoOf(Triple).am = function (first, second, third, $super) {
|
|
14939
|
+
first = first === VOID ? this.vl_1 : first;
|
|
14940
|
+
second = second === VOID ? this.wl_1 : second;
|
|
14941
|
+
third = third === VOID ? this.xl_1 : third;
|
|
14942
|
+
return $super === VOID ? this.zl(first, second, third) : $super.zl.call(this, first, second, third);
|
|
14937
14943
|
};
|
|
14938
14944
|
protoOf(Triple).hashCode = function () {
|
|
14939
|
-
var result = this.
|
|
14940
|
-
result = imul(result, 31) + (this.vl_1 == null ? 0 : hashCode_0(this.vl_1)) | 0;
|
|
14945
|
+
var result = this.vl_1 == null ? 0 : hashCode_0(this.vl_1);
|
|
14941
14946
|
result = imul(result, 31) + (this.wl_1 == null ? 0 : hashCode_0(this.wl_1)) | 0;
|
|
14947
|
+
result = imul(result, 31) + (this.xl_1 == null ? 0 : hashCode_0(this.xl_1)) | 0;
|
|
14942
14948
|
return result;
|
|
14943
14949
|
};
|
|
14944
14950
|
protoOf(Triple).equals = function (other) {
|
|
@@ -14946,12 +14952,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14946
14952
|
return true;
|
|
14947
14953
|
if (!(other instanceof Triple))
|
|
14948
14954
|
return false;
|
|
14949
|
-
if (!equals(this.ul_1, other.ul_1))
|
|
14950
|
-
return false;
|
|
14951
14955
|
if (!equals(this.vl_1, other.vl_1))
|
|
14952
14956
|
return false;
|
|
14953
14957
|
if (!equals(this.wl_1, other.wl_1))
|
|
14954
14958
|
return false;
|
|
14959
|
+
if (!equals(this.xl_1, other.xl_1))
|
|
14960
|
+
return false;
|
|
14955
14961
|
return true;
|
|
14956
14962
|
};
|
|
14957
14963
|
function Companion_27() {
|
|
@@ -14969,7 +14975,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14969
14975
|
}
|
|
14970
14976
|
return tmp;
|
|
14971
14977
|
};
|
|
14972
|
-
protoOf(Companion_27).
|
|
14978
|
+
protoOf(Companion_27).bm = function (uuidString) {
|
|
14973
14979
|
var tmp;
|
|
14974
14980
|
switch (uuidString.length) {
|
|
14975
14981
|
case 36:
|
|
@@ -14991,35 +14997,35 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14991
14997
|
}
|
|
14992
14998
|
function Uuid(mostSignificantBits, leastSignificantBits) {
|
|
14993
14999
|
Companion_getInstance_27();
|
|
14994
|
-
this.
|
|
14995
|
-
this.
|
|
15000
|
+
this.cm_1 = mostSignificantBits;
|
|
15001
|
+
this.dm_1 = leastSignificantBits;
|
|
14996
15002
|
}
|
|
14997
15003
|
protoOf(Uuid).toString = function () {
|
|
14998
|
-
return this.
|
|
15004
|
+
return this.em();
|
|
14999
15005
|
};
|
|
15000
|
-
protoOf(Uuid).
|
|
15006
|
+
protoOf(Uuid).em = function () {
|
|
15001
15007
|
var bytes = new Int8Array(36);
|
|
15002
|
-
formatBytesInto(this.
|
|
15008
|
+
formatBytesInto(this.cm_1, bytes, 0, 0, 4);
|
|
15003
15009
|
// Inline function 'kotlin.code' call
|
|
15004
15010
|
var this_0 = _Char___init__impl__6a9atx(45);
|
|
15005
15011
|
var tmp$ret$0 = Char__toInt_impl_vasixd(this_0);
|
|
15006
15012
|
bytes[8] = toByte(tmp$ret$0);
|
|
15007
|
-
formatBytesInto(this.
|
|
15013
|
+
formatBytesInto(this.cm_1, bytes, 9, 4, 6);
|
|
15008
15014
|
// Inline function 'kotlin.code' call
|
|
15009
15015
|
var this_1 = _Char___init__impl__6a9atx(45);
|
|
15010
15016
|
var tmp$ret$1 = Char__toInt_impl_vasixd(this_1);
|
|
15011
15017
|
bytes[13] = toByte(tmp$ret$1);
|
|
15012
|
-
formatBytesInto(this.
|
|
15018
|
+
formatBytesInto(this.cm_1, bytes, 14, 6, 8);
|
|
15013
15019
|
// Inline function 'kotlin.code' call
|
|
15014
15020
|
var this_2 = _Char___init__impl__6a9atx(45);
|
|
15015
15021
|
var tmp$ret$2 = Char__toInt_impl_vasixd(this_2);
|
|
15016
15022
|
bytes[18] = toByte(tmp$ret$2);
|
|
15017
|
-
formatBytesInto(this.
|
|
15023
|
+
formatBytesInto(this.dm_1, bytes, 19, 0, 2);
|
|
15018
15024
|
// Inline function 'kotlin.code' call
|
|
15019
15025
|
var this_3 = _Char___init__impl__6a9atx(45);
|
|
15020
15026
|
var tmp$ret$3 = Char__toInt_impl_vasixd(this_3);
|
|
15021
15027
|
bytes[23] = toByte(tmp$ret$3);
|
|
15022
|
-
formatBytesInto(this.
|
|
15028
|
+
formatBytesInto(this.dm_1, bytes, 24, 2, 8);
|
|
15023
15029
|
return decodeToString(bytes);
|
|
15024
15030
|
};
|
|
15025
15031
|
protoOf(Uuid).equals = function (other) {
|
|
@@ -15027,25 +15033,25 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15027
15033
|
return true;
|
|
15028
15034
|
if (!(other instanceof Uuid))
|
|
15029
15035
|
return false;
|
|
15030
|
-
return equalsLong(this.
|
|
15036
|
+
return equalsLong(this.cm_1, other.cm_1) && equalsLong(this.dm_1, other.dm_1);
|
|
15031
15037
|
};
|
|
15032
|
-
protoOf(Uuid).
|
|
15038
|
+
protoOf(Uuid).fm = function (other) {
|
|
15033
15039
|
var tmp;
|
|
15034
|
-
if (!equalsLong(this.
|
|
15040
|
+
if (!equalsLong(this.cm_1, other.cm_1)) {
|
|
15035
15041
|
// Inline function 'kotlin.toULong' call
|
|
15036
|
-
var this_0 = this.
|
|
15042
|
+
var this_0 = this.cm_1;
|
|
15037
15043
|
var tmp0 = _ULong___init__impl__c78o9k(this_0);
|
|
15038
15044
|
// Inline function 'kotlin.toULong' call
|
|
15039
|
-
var this_1 = other.
|
|
15045
|
+
var this_1 = other.cm_1;
|
|
15040
15046
|
// Inline function 'kotlin.ULong.compareTo' call
|
|
15041
15047
|
var other_0 = _ULong___init__impl__c78o9k(this_1);
|
|
15042
15048
|
tmp = ulongCompare(_ULong___get_data__impl__fggpzb(tmp0), _ULong___get_data__impl__fggpzb(other_0));
|
|
15043
15049
|
} else {
|
|
15044
15050
|
// Inline function 'kotlin.toULong' call
|
|
15045
|
-
var this_2 = this.
|
|
15051
|
+
var this_2 = this.dm_1;
|
|
15046
15052
|
var tmp0_0 = _ULong___init__impl__c78o9k(this_2);
|
|
15047
15053
|
// Inline function 'kotlin.toULong' call
|
|
15048
|
-
var this_3 = other.
|
|
15054
|
+
var this_3 = other.dm_1;
|
|
15049
15055
|
// Inline function 'kotlin.ULong.compareTo' call
|
|
15050
15056
|
var other_1 = _ULong___init__impl__c78o9k(this_3);
|
|
15051
15057
|
tmp = ulongCompare(_ULong___get_data__impl__fggpzb(tmp0_0), _ULong___get_data__impl__fggpzb(other_1));
|
|
@@ -15053,10 +15059,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15053
15059
|
return tmp;
|
|
15054
15060
|
};
|
|
15055
15061
|
protoOf(Uuid).d = function (other) {
|
|
15056
|
-
return this.
|
|
15062
|
+
return this.fm(other instanceof Uuid ? other : THROW_CCE());
|
|
15057
15063
|
};
|
|
15058
15064
|
protoOf(Uuid).hashCode = function () {
|
|
15059
|
-
return bitwiseXor(this.
|
|
15065
|
+
return bitwiseXor(this.cm_1, this.dm_1).hashCode();
|
|
15060
15066
|
};
|
|
15061
15067
|
function truncateForErrorMessage_0(_this__u8e3s4, maxLength) {
|
|
15062
15068
|
return _this__u8e3s4.length <= maxLength ? _this__u8e3s4 : substring(_this__u8e3s4, 0, maxLength) + '...';
|
|
@@ -15076,10 +15082,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15076
15082
|
}
|
|
15077
15083
|
function Companion_28() {
|
|
15078
15084
|
Companion_instance_28 = this;
|
|
15079
|
-
this.
|
|
15080
|
-
this.
|
|
15081
|
-
this.
|
|
15082
|
-
this.
|
|
15085
|
+
this.gm_1 = _UByte___init__impl__g9hnc4(0);
|
|
15086
|
+
this.hm_1 = _UByte___init__impl__g9hnc4(-1);
|
|
15087
|
+
this.im_1 = 1;
|
|
15088
|
+
this.jm_1 = 8;
|
|
15083
15089
|
}
|
|
15084
15090
|
var Companion_instance_28;
|
|
15085
15091
|
function Companion_getInstance_28() {
|
|
@@ -15095,7 +15101,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15095
15101
|
return compareTo(tmp, tmp$ret$1);
|
|
15096
15102
|
}
|
|
15097
15103
|
function UByte__compareTo_impl_5w5192_0($this, other) {
|
|
15098
|
-
return UByte__compareTo_impl_5w5192($this.
|
|
15104
|
+
return UByte__compareTo_impl_5w5192($this.km_1, other instanceof UByte ? other.km_1 : THROW_CCE());
|
|
15099
15105
|
}
|
|
15100
15106
|
function UByte__toString_impl_v72jg($this) {
|
|
15101
15107
|
// Inline function 'kotlin.UByte.toInt' call
|
|
@@ -15107,28 +15113,28 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15107
15113
|
function UByte__equals_impl_nvqtsf($this, other) {
|
|
15108
15114
|
if (!(other instanceof UByte))
|
|
15109
15115
|
return false;
|
|
15110
|
-
if (!($this === other.
|
|
15116
|
+
if (!($this === other.km_1))
|
|
15111
15117
|
return false;
|
|
15112
15118
|
return true;
|
|
15113
15119
|
}
|
|
15114
15120
|
function UByte(data) {
|
|
15115
15121
|
Companion_getInstance_28();
|
|
15116
|
-
this.
|
|
15122
|
+
this.km_1 = data;
|
|
15117
15123
|
}
|
|
15118
|
-
protoOf(UByte).
|
|
15119
|
-
return UByte__compareTo_impl_5w5192(this.
|
|
15124
|
+
protoOf(UByte).lm = function (other) {
|
|
15125
|
+
return UByte__compareTo_impl_5w5192(this.km_1, other);
|
|
15120
15126
|
};
|
|
15121
15127
|
protoOf(UByte).d = function (other) {
|
|
15122
15128
|
return UByte__compareTo_impl_5w5192_0(this, other);
|
|
15123
15129
|
};
|
|
15124
15130
|
protoOf(UByte).toString = function () {
|
|
15125
|
-
return UByte__toString_impl_v72jg(this.
|
|
15131
|
+
return UByte__toString_impl_v72jg(this.km_1);
|
|
15126
15132
|
};
|
|
15127
15133
|
protoOf(UByte).hashCode = function () {
|
|
15128
|
-
return UByte__hashCode_impl_mmczcb(this.
|
|
15134
|
+
return UByte__hashCode_impl_mmczcb(this.km_1);
|
|
15129
15135
|
};
|
|
15130
15136
|
protoOf(UByte).equals = function (other) {
|
|
15131
|
-
return UByte__equals_impl_nvqtsf(this.
|
|
15137
|
+
return UByte__equals_impl_nvqtsf(this.km_1, other);
|
|
15132
15138
|
};
|
|
15133
15139
|
function _UByteArray___init__impl__ip4y9n(storage) {
|
|
15134
15140
|
return storage;
|
|
@@ -15156,27 +15162,27 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15156
15162
|
return new Iterator(_UByteArray___get_storage__impl__d4kctt($this));
|
|
15157
15163
|
}
|
|
15158
15164
|
function Iterator(array) {
|
|
15159
|
-
this.
|
|
15160
|
-
this.
|
|
15165
|
+
this.mm_1 = array;
|
|
15166
|
+
this.nm_1 = 0;
|
|
15161
15167
|
}
|
|
15162
15168
|
protoOf(Iterator).m = function () {
|
|
15163
|
-
return this.
|
|
15169
|
+
return this.nm_1 < this.mm_1.length;
|
|
15164
15170
|
};
|
|
15165
|
-
protoOf(Iterator).
|
|
15171
|
+
protoOf(Iterator).om = function () {
|
|
15166
15172
|
var tmp;
|
|
15167
|
-
if (this.
|
|
15168
|
-
var _unary__edvuaz = this.
|
|
15169
|
-
this.
|
|
15173
|
+
if (this.nm_1 < this.mm_1.length) {
|
|
15174
|
+
var _unary__edvuaz = this.nm_1;
|
|
15175
|
+
this.nm_1 = _unary__edvuaz + 1 | 0;
|
|
15170
15176
|
// Inline function 'kotlin.toUByte' call
|
|
15171
|
-
var this_0 = this.
|
|
15177
|
+
var this_0 = this.mm_1[_unary__edvuaz];
|
|
15172
15178
|
tmp = _UByte___init__impl__g9hnc4(this_0);
|
|
15173
15179
|
} else {
|
|
15174
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
15180
|
+
throw NoSuchElementException_init_$Create$_0(this.nm_1.toString());
|
|
15175
15181
|
}
|
|
15176
15182
|
return tmp;
|
|
15177
15183
|
};
|
|
15178
15184
|
protoOf(Iterator).n = function () {
|
|
15179
|
-
return new UByte(this.
|
|
15185
|
+
return new UByte(this.om());
|
|
15180
15186
|
};
|
|
15181
15187
|
function UByteArray__contains_impl_njh19q($this, element) {
|
|
15182
15188
|
var tmp = _UByteArray___get_storage__impl__d4kctt($this);
|
|
@@ -15187,7 +15193,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15187
15193
|
function UByteArray__contains_impl_njh19q_0($this, element) {
|
|
15188
15194
|
if (!(element instanceof UByte))
|
|
15189
15195
|
return false;
|
|
15190
|
-
return UByteArray__contains_impl_njh19q($this.
|
|
15196
|
+
return UByteArray__contains_impl_njh19q($this.pm_1, element instanceof UByte ? element.km_1 : THROW_CCE());
|
|
15191
15197
|
}
|
|
15192
15198
|
function UByteArray__containsAll_impl_v9s6dj($this, elements) {
|
|
15193
15199
|
var tmp0 = isInterface(elements, Collection) ? elements : THROW_CCE();
|
|
@@ -15211,7 +15217,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15211
15217
|
if (element instanceof UByte) {
|
|
15212
15218
|
var tmp_1 = _UByteArray___get_storage__impl__d4kctt($this);
|
|
15213
15219
|
// Inline function 'kotlin.UByte.toByte' call
|
|
15214
|
-
var this_0 = element.
|
|
15220
|
+
var this_0 = element.km_1;
|
|
15215
15221
|
var tmp$ret$1 = _UByte___get_data__impl__jof9qr(this_0);
|
|
15216
15222
|
tmp_0 = contains_4(tmp_1, tmp$ret$1);
|
|
15217
15223
|
} else {
|
|
@@ -15227,7 +15233,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15227
15233
|
return tmp$ret$0;
|
|
15228
15234
|
}
|
|
15229
15235
|
function UByteArray__containsAll_impl_v9s6dj_0($this, elements) {
|
|
15230
|
-
return UByteArray__containsAll_impl_v9s6dj($this.
|
|
15236
|
+
return UByteArray__containsAll_impl_v9s6dj($this.pm_1, elements);
|
|
15231
15237
|
}
|
|
15232
15238
|
function UByteArray__isEmpty_impl_nbfqsa($this) {
|
|
15233
15239
|
return _UByteArray___get_storage__impl__d4kctt($this).length === 0;
|
|
@@ -15241,43 +15247,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15241
15247
|
function UByteArray__equals_impl_roka4u($this, other) {
|
|
15242
15248
|
if (!(other instanceof UByteArray))
|
|
15243
15249
|
return false;
|
|
15244
|
-
var tmp0_other_with_cast = other.
|
|
15250
|
+
var tmp0_other_with_cast = other.pm_1;
|
|
15245
15251
|
if (!equals($this, tmp0_other_with_cast))
|
|
15246
15252
|
return false;
|
|
15247
15253
|
return true;
|
|
15248
15254
|
}
|
|
15249
15255
|
function UByteArray(storage) {
|
|
15250
|
-
this.
|
|
15256
|
+
this.pm_1 = storage;
|
|
15251
15257
|
}
|
|
15252
15258
|
protoOf(UByteArray).o = function () {
|
|
15253
|
-
return _UByteArray___get_size__impl__h6pkdv(this.
|
|
15259
|
+
return _UByteArray___get_size__impl__h6pkdv(this.pm_1);
|
|
15254
15260
|
};
|
|
15255
15261
|
protoOf(UByteArray).l = function () {
|
|
15256
|
-
return UByteArray__iterator_impl_509y1p(this.
|
|
15262
|
+
return UByteArray__iterator_impl_509y1p(this.pm_1);
|
|
15257
15263
|
};
|
|
15258
|
-
protoOf(UByteArray).
|
|
15259
|
-
return UByteArray__contains_impl_njh19q(this.
|
|
15264
|
+
protoOf(UByteArray).qm = function (element) {
|
|
15265
|
+
return UByteArray__contains_impl_njh19q(this.pm_1, element);
|
|
15260
15266
|
};
|
|
15261
15267
|
protoOf(UByteArray).u1 = function (element) {
|
|
15262
15268
|
return UByteArray__contains_impl_njh19q_0(this, element);
|
|
15263
15269
|
};
|
|
15264
|
-
protoOf(UByteArray).
|
|
15265
|
-
return UByteArray__containsAll_impl_v9s6dj(this.
|
|
15270
|
+
protoOf(UByteArray).rm = function (elements) {
|
|
15271
|
+
return UByteArray__containsAll_impl_v9s6dj(this.pm_1, elements);
|
|
15266
15272
|
};
|
|
15267
15273
|
protoOf(UByteArray).v1 = function (elements) {
|
|
15268
15274
|
return UByteArray__containsAll_impl_v9s6dj_0(this, elements);
|
|
15269
15275
|
};
|
|
15270
15276
|
protoOf(UByteArray).r = function () {
|
|
15271
|
-
return UByteArray__isEmpty_impl_nbfqsa(this.
|
|
15277
|
+
return UByteArray__isEmpty_impl_nbfqsa(this.pm_1);
|
|
15272
15278
|
};
|
|
15273
15279
|
protoOf(UByteArray).toString = function () {
|
|
15274
|
-
return UByteArray__toString_impl_ukpl97(this.
|
|
15280
|
+
return UByteArray__toString_impl_ukpl97(this.pm_1);
|
|
15275
15281
|
};
|
|
15276
15282
|
protoOf(UByteArray).hashCode = function () {
|
|
15277
|
-
return UByteArray__hashCode_impl_ip8jx2(this.
|
|
15283
|
+
return UByteArray__hashCode_impl_ip8jx2(this.pm_1);
|
|
15278
15284
|
};
|
|
15279
15285
|
protoOf(UByteArray).equals = function (other) {
|
|
15280
|
-
return UByteArray__equals_impl_roka4u(this.
|
|
15286
|
+
return UByteArray__equals_impl_roka4u(this.pm_1, other);
|
|
15281
15287
|
};
|
|
15282
15288
|
function _UInt___init__impl__l7qpdl(data) {
|
|
15283
15289
|
return data;
|
|
@@ -15287,10 +15293,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15287
15293
|
}
|
|
15288
15294
|
function Companion_29() {
|
|
15289
15295
|
Companion_instance_29 = this;
|
|
15290
|
-
this.
|
|
15291
|
-
this.
|
|
15292
|
-
this.
|
|
15293
|
-
this.
|
|
15296
|
+
this.sm_1 = _UInt___init__impl__l7qpdl(0);
|
|
15297
|
+
this.tm_1 = _UInt___init__impl__l7qpdl(-1);
|
|
15298
|
+
this.um_1 = 4;
|
|
15299
|
+
this.vm_1 = 32;
|
|
15294
15300
|
}
|
|
15295
15301
|
var Companion_instance_29;
|
|
15296
15302
|
function Companion_getInstance_29() {
|
|
@@ -15302,7 +15308,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15302
15308
|
return uintCompare(_UInt___get_data__impl__f0vqqw($this), _UInt___get_data__impl__f0vqqw(other));
|
|
15303
15309
|
}
|
|
15304
15310
|
function UInt__compareTo_impl_yacclj_0($this, other) {
|
|
15305
|
-
return UInt__compareTo_impl_yacclj($this.
|
|
15311
|
+
return UInt__compareTo_impl_yacclj($this.wm_1, other instanceof UInt ? other.wm_1 : THROW_CCE());
|
|
15306
15312
|
}
|
|
15307
15313
|
function UInt__toString_impl_dbgl21($this) {
|
|
15308
15314
|
// Inline function 'kotlin.uintToString' call
|
|
@@ -15316,28 +15322,28 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15316
15322
|
function UInt__equals_impl_ffdoxg($this, other) {
|
|
15317
15323
|
if (!(other instanceof UInt))
|
|
15318
15324
|
return false;
|
|
15319
|
-
if (!($this === other.
|
|
15325
|
+
if (!($this === other.wm_1))
|
|
15320
15326
|
return false;
|
|
15321
15327
|
return true;
|
|
15322
15328
|
}
|
|
15323
15329
|
function UInt(data) {
|
|
15324
15330
|
Companion_getInstance_29();
|
|
15325
|
-
this.
|
|
15331
|
+
this.wm_1 = data;
|
|
15326
15332
|
}
|
|
15327
|
-
protoOf(UInt).
|
|
15328
|
-
return UInt__compareTo_impl_yacclj(this.
|
|
15333
|
+
protoOf(UInt).xm = function (other) {
|
|
15334
|
+
return UInt__compareTo_impl_yacclj(this.wm_1, other);
|
|
15329
15335
|
};
|
|
15330
15336
|
protoOf(UInt).d = function (other) {
|
|
15331
15337
|
return UInt__compareTo_impl_yacclj_0(this, other);
|
|
15332
15338
|
};
|
|
15333
15339
|
protoOf(UInt).toString = function () {
|
|
15334
|
-
return UInt__toString_impl_dbgl21(this.
|
|
15340
|
+
return UInt__toString_impl_dbgl21(this.wm_1);
|
|
15335
15341
|
};
|
|
15336
15342
|
protoOf(UInt).hashCode = function () {
|
|
15337
|
-
return UInt__hashCode_impl_z2mhuw(this.
|
|
15343
|
+
return UInt__hashCode_impl_z2mhuw(this.wm_1);
|
|
15338
15344
|
};
|
|
15339
15345
|
protoOf(UInt).equals = function (other) {
|
|
15340
|
-
return UInt__equals_impl_ffdoxg(this.
|
|
15346
|
+
return UInt__equals_impl_ffdoxg(this.wm_1, other);
|
|
15341
15347
|
};
|
|
15342
15348
|
function _UIntArray___init__impl__ghjpc6(storage) {
|
|
15343
15349
|
return storage;
|
|
@@ -15365,27 +15371,27 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15365
15371
|
return new Iterator_0(_UIntArray___get_storage__impl__92a0v0($this));
|
|
15366
15372
|
}
|
|
15367
15373
|
function Iterator_0(array) {
|
|
15368
|
-
this.
|
|
15369
|
-
this.
|
|
15374
|
+
this.ym_1 = array;
|
|
15375
|
+
this.zm_1 = 0;
|
|
15370
15376
|
}
|
|
15371
15377
|
protoOf(Iterator_0).m = function () {
|
|
15372
|
-
return this.
|
|
15378
|
+
return this.zm_1 < this.ym_1.length;
|
|
15373
15379
|
};
|
|
15374
|
-
protoOf(Iterator_0).
|
|
15380
|
+
protoOf(Iterator_0).an = function () {
|
|
15375
15381
|
var tmp;
|
|
15376
|
-
if (this.
|
|
15377
|
-
var _unary__edvuaz = this.
|
|
15378
|
-
this.
|
|
15382
|
+
if (this.zm_1 < this.ym_1.length) {
|
|
15383
|
+
var _unary__edvuaz = this.zm_1;
|
|
15384
|
+
this.zm_1 = _unary__edvuaz + 1 | 0;
|
|
15379
15385
|
// Inline function 'kotlin.toUInt' call
|
|
15380
|
-
var this_0 = this.
|
|
15386
|
+
var this_0 = this.ym_1[_unary__edvuaz];
|
|
15381
15387
|
tmp = _UInt___init__impl__l7qpdl(this_0);
|
|
15382
15388
|
} else {
|
|
15383
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
15389
|
+
throw NoSuchElementException_init_$Create$_0(this.zm_1.toString());
|
|
15384
15390
|
}
|
|
15385
15391
|
return tmp;
|
|
15386
15392
|
};
|
|
15387
15393
|
protoOf(Iterator_0).n = function () {
|
|
15388
|
-
return new UInt(this.
|
|
15394
|
+
return new UInt(this.an());
|
|
15389
15395
|
};
|
|
15390
15396
|
function UIntArray__contains_impl_b16rzj($this, element) {
|
|
15391
15397
|
var tmp = _UIntArray___get_storage__impl__92a0v0($this);
|
|
@@ -15396,7 +15402,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15396
15402
|
function UIntArray__contains_impl_b16rzj_0($this, element) {
|
|
15397
15403
|
if (!(element instanceof UInt))
|
|
15398
15404
|
return false;
|
|
15399
|
-
return UIntArray__contains_impl_b16rzj($this.
|
|
15405
|
+
return UIntArray__contains_impl_b16rzj($this.bn_1, element instanceof UInt ? element.wm_1 : THROW_CCE());
|
|
15400
15406
|
}
|
|
15401
15407
|
function UIntArray__containsAll_impl_414g22($this, elements) {
|
|
15402
15408
|
var tmp0 = isInterface(elements, Collection) ? elements : THROW_CCE();
|
|
@@ -15420,7 +15426,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15420
15426
|
if (element instanceof UInt) {
|
|
15421
15427
|
var tmp_1 = _UIntArray___get_storage__impl__92a0v0($this);
|
|
15422
15428
|
// Inline function 'kotlin.UInt.toInt' call
|
|
15423
|
-
var this_0 = element.
|
|
15429
|
+
var this_0 = element.wm_1;
|
|
15424
15430
|
var tmp$ret$1 = _UInt___get_data__impl__f0vqqw(this_0);
|
|
15425
15431
|
tmp_0 = contains_2(tmp_1, tmp$ret$1);
|
|
15426
15432
|
} else {
|
|
@@ -15436,7 +15442,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15436
15442
|
return tmp$ret$0;
|
|
15437
15443
|
}
|
|
15438
15444
|
function UIntArray__containsAll_impl_414g22_0($this, elements) {
|
|
15439
|
-
return UIntArray__containsAll_impl_414g22($this.
|
|
15445
|
+
return UIntArray__containsAll_impl_414g22($this.bn_1, elements);
|
|
15440
15446
|
}
|
|
15441
15447
|
function UIntArray__isEmpty_impl_vd8j4n($this) {
|
|
15442
15448
|
return _UIntArray___get_storage__impl__92a0v0($this).length === 0;
|
|
@@ -15450,43 +15456,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15450
15456
|
function UIntArray__equals_impl_flcmof($this, other) {
|
|
15451
15457
|
if (!(other instanceof UIntArray))
|
|
15452
15458
|
return false;
|
|
15453
|
-
var tmp0_other_with_cast = other.
|
|
15459
|
+
var tmp0_other_with_cast = other.bn_1;
|
|
15454
15460
|
if (!equals($this, tmp0_other_with_cast))
|
|
15455
15461
|
return false;
|
|
15456
15462
|
return true;
|
|
15457
15463
|
}
|
|
15458
15464
|
function UIntArray(storage) {
|
|
15459
|
-
this.
|
|
15465
|
+
this.bn_1 = storage;
|
|
15460
15466
|
}
|
|
15461
15467
|
protoOf(UIntArray).o = function () {
|
|
15462
|
-
return _UIntArray___get_size__impl__r6l8ci(this.
|
|
15468
|
+
return _UIntArray___get_size__impl__r6l8ci(this.bn_1);
|
|
15463
15469
|
};
|
|
15464
15470
|
protoOf(UIntArray).l = function () {
|
|
15465
|
-
return UIntArray__iterator_impl_tkdv7k(this.
|
|
15471
|
+
return UIntArray__iterator_impl_tkdv7k(this.bn_1);
|
|
15466
15472
|
};
|
|
15467
|
-
protoOf(UIntArray).
|
|
15468
|
-
return UIntArray__contains_impl_b16rzj(this.
|
|
15473
|
+
protoOf(UIntArray).cn = function (element) {
|
|
15474
|
+
return UIntArray__contains_impl_b16rzj(this.bn_1, element);
|
|
15469
15475
|
};
|
|
15470
15476
|
protoOf(UIntArray).u1 = function (element) {
|
|
15471
15477
|
return UIntArray__contains_impl_b16rzj_0(this, element);
|
|
15472
15478
|
};
|
|
15473
|
-
protoOf(UIntArray).
|
|
15474
|
-
return UIntArray__containsAll_impl_414g22(this.
|
|
15479
|
+
protoOf(UIntArray).dn = function (elements) {
|
|
15480
|
+
return UIntArray__containsAll_impl_414g22(this.bn_1, elements);
|
|
15475
15481
|
};
|
|
15476
15482
|
protoOf(UIntArray).v1 = function (elements) {
|
|
15477
15483
|
return UIntArray__containsAll_impl_414g22_0(this, elements);
|
|
15478
15484
|
};
|
|
15479
15485
|
protoOf(UIntArray).r = function () {
|
|
15480
|
-
return UIntArray__isEmpty_impl_vd8j4n(this.
|
|
15486
|
+
return UIntArray__isEmpty_impl_vd8j4n(this.bn_1);
|
|
15481
15487
|
};
|
|
15482
15488
|
protoOf(UIntArray).toString = function () {
|
|
15483
|
-
return UIntArray__toString_impl_3zy802(this.
|
|
15489
|
+
return UIntArray__toString_impl_3zy802(this.bn_1);
|
|
15484
15490
|
};
|
|
15485
15491
|
protoOf(UIntArray).hashCode = function () {
|
|
15486
|
-
return UIntArray__hashCode_impl_hr7ost(this.
|
|
15492
|
+
return UIntArray__hashCode_impl_hr7ost(this.bn_1);
|
|
15487
15493
|
};
|
|
15488
15494
|
protoOf(UIntArray).equals = function (other) {
|
|
15489
|
-
return UIntArray__equals_impl_flcmof(this.
|
|
15495
|
+
return UIntArray__equals_impl_flcmof(this.bn_1, other);
|
|
15490
15496
|
};
|
|
15491
15497
|
function _ULong___init__impl__c78o9k(data) {
|
|
15492
15498
|
return data;
|
|
@@ -15496,10 +15502,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15496
15502
|
}
|
|
15497
15503
|
function Companion_30() {
|
|
15498
15504
|
Companion_instance_30 = this;
|
|
15499
|
-
this.
|
|
15500
|
-
this.
|
|
15501
|
-
this.
|
|
15502
|
-
this.
|
|
15505
|
+
this.en_1 = _ULong___init__impl__c78o9k(new Long(0, 0));
|
|
15506
|
+
this.fn_1 = _ULong___init__impl__c78o9k(new Long(-1, -1));
|
|
15507
|
+
this.gn_1 = 8;
|
|
15508
|
+
this.hn_1 = 64;
|
|
15503
15509
|
}
|
|
15504
15510
|
var Companion_instance_30;
|
|
15505
15511
|
function Companion_getInstance_30() {
|
|
@@ -15511,7 +15517,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15511
15517
|
return ulongCompare(_ULong___get_data__impl__fggpzb($this), _ULong___get_data__impl__fggpzb(other));
|
|
15512
15518
|
}
|
|
15513
15519
|
function ULong__compareTo_impl_38i7tu_0($this, other) {
|
|
15514
|
-
return ULong__compareTo_impl_38i7tu($this.
|
|
15520
|
+
return ULong__compareTo_impl_38i7tu($this.in_1, other instanceof ULong ? other.in_1 : THROW_CCE());
|
|
15515
15521
|
}
|
|
15516
15522
|
function ULong__toString_impl_f9au7k($this) {
|
|
15517
15523
|
// Inline function 'kotlin.ulongToString' call
|
|
@@ -15524,29 +15530,29 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15524
15530
|
function ULong__equals_impl_o0gnyb($this, other) {
|
|
15525
15531
|
if (!(other instanceof ULong))
|
|
15526
15532
|
return false;
|
|
15527
|
-
var tmp0_other_with_cast = other.
|
|
15533
|
+
var tmp0_other_with_cast = other.in_1;
|
|
15528
15534
|
if (!equalsLong($this, tmp0_other_with_cast))
|
|
15529
15535
|
return false;
|
|
15530
15536
|
return true;
|
|
15531
15537
|
}
|
|
15532
15538
|
function ULong(data) {
|
|
15533
15539
|
Companion_getInstance_30();
|
|
15534
|
-
this.
|
|
15540
|
+
this.in_1 = data;
|
|
15535
15541
|
}
|
|
15536
|
-
protoOf(ULong).
|
|
15537
|
-
return ULong__compareTo_impl_38i7tu(this.
|
|
15542
|
+
protoOf(ULong).jn = function (other) {
|
|
15543
|
+
return ULong__compareTo_impl_38i7tu(this.in_1, other);
|
|
15538
15544
|
};
|
|
15539
15545
|
protoOf(ULong).d = function (other) {
|
|
15540
15546
|
return ULong__compareTo_impl_38i7tu_0(this, other);
|
|
15541
15547
|
};
|
|
15542
15548
|
protoOf(ULong).toString = function () {
|
|
15543
|
-
return ULong__toString_impl_f9au7k(this.
|
|
15549
|
+
return ULong__toString_impl_f9au7k(this.in_1);
|
|
15544
15550
|
};
|
|
15545
15551
|
protoOf(ULong).hashCode = function () {
|
|
15546
|
-
return ULong__hashCode_impl_6hv2lb(this.
|
|
15552
|
+
return ULong__hashCode_impl_6hv2lb(this.in_1);
|
|
15547
15553
|
};
|
|
15548
15554
|
protoOf(ULong).equals = function (other) {
|
|
15549
|
-
return ULong__equals_impl_o0gnyb(this.
|
|
15555
|
+
return ULong__equals_impl_o0gnyb(this.in_1, other);
|
|
15550
15556
|
};
|
|
15551
15557
|
function _ULongArray___init__impl__twm1l3(storage) {
|
|
15552
15558
|
return storage;
|
|
@@ -15574,27 +15580,27 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15574
15580
|
return new Iterator_1(_ULongArray___get_storage__impl__28e64j($this));
|
|
15575
15581
|
}
|
|
15576
15582
|
function Iterator_1(array) {
|
|
15577
|
-
this.
|
|
15578
|
-
this.
|
|
15583
|
+
this.kn_1 = array;
|
|
15584
|
+
this.ln_1 = 0;
|
|
15579
15585
|
}
|
|
15580
15586
|
protoOf(Iterator_1).m = function () {
|
|
15581
|
-
return this.
|
|
15587
|
+
return this.ln_1 < this.kn_1.length;
|
|
15582
15588
|
};
|
|
15583
|
-
protoOf(Iterator_1).
|
|
15589
|
+
protoOf(Iterator_1).mn = function () {
|
|
15584
15590
|
var tmp;
|
|
15585
|
-
if (this.
|
|
15586
|
-
var _unary__edvuaz = this.
|
|
15587
|
-
this.
|
|
15591
|
+
if (this.ln_1 < this.kn_1.length) {
|
|
15592
|
+
var _unary__edvuaz = this.ln_1;
|
|
15593
|
+
this.ln_1 = _unary__edvuaz + 1 | 0;
|
|
15588
15594
|
// Inline function 'kotlin.toULong' call
|
|
15589
|
-
var this_0 = this.
|
|
15595
|
+
var this_0 = this.kn_1[_unary__edvuaz];
|
|
15590
15596
|
tmp = _ULong___init__impl__c78o9k(this_0);
|
|
15591
15597
|
} else {
|
|
15592
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
15598
|
+
throw NoSuchElementException_init_$Create$_0(this.ln_1.toString());
|
|
15593
15599
|
}
|
|
15594
15600
|
return tmp;
|
|
15595
15601
|
};
|
|
15596
15602
|
protoOf(Iterator_1).n = function () {
|
|
15597
|
-
return new ULong(this.
|
|
15603
|
+
return new ULong(this.mn());
|
|
15598
15604
|
};
|
|
15599
15605
|
function ULongArray__contains_impl_v9bgai($this, element) {
|
|
15600
15606
|
var tmp = _ULongArray___get_storage__impl__28e64j($this);
|
|
@@ -15605,7 +15611,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15605
15611
|
function ULongArray__contains_impl_v9bgai_0($this, element) {
|
|
15606
15612
|
if (!(element instanceof ULong))
|
|
15607
15613
|
return false;
|
|
15608
|
-
return ULongArray__contains_impl_v9bgai($this.
|
|
15614
|
+
return ULongArray__contains_impl_v9bgai($this.nn_1, element instanceof ULong ? element.in_1 : THROW_CCE());
|
|
15609
15615
|
}
|
|
15610
15616
|
function ULongArray__containsAll_impl_xx8ztf($this, elements) {
|
|
15611
15617
|
var tmp0 = isInterface(elements, Collection) ? elements : THROW_CCE();
|
|
@@ -15629,7 +15635,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15629
15635
|
if (element instanceof ULong) {
|
|
15630
15636
|
var tmp_1 = _ULongArray___get_storage__impl__28e64j($this);
|
|
15631
15637
|
// Inline function 'kotlin.ULong.toLong' call
|
|
15632
|
-
var this_0 = element.
|
|
15638
|
+
var this_0 = element.in_1;
|
|
15633
15639
|
var tmp$ret$1 = _ULong___get_data__impl__fggpzb(this_0);
|
|
15634
15640
|
tmp_0 = contains_1(tmp_1, tmp$ret$1);
|
|
15635
15641
|
} else {
|
|
@@ -15645,7 +15651,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15645
15651
|
return tmp$ret$0;
|
|
15646
15652
|
}
|
|
15647
15653
|
function ULongArray__containsAll_impl_xx8ztf_0($this, elements) {
|
|
15648
|
-
return ULongArray__containsAll_impl_xx8ztf($this.
|
|
15654
|
+
return ULongArray__containsAll_impl_xx8ztf($this.nn_1, elements);
|
|
15649
15655
|
}
|
|
15650
15656
|
function ULongArray__isEmpty_impl_c3yngu($this) {
|
|
15651
15657
|
return _ULongArray___get_storage__impl__28e64j($this).length === 0;
|
|
@@ -15659,43 +15665,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15659
15665
|
function ULongArray__equals_impl_vwitwa($this, other) {
|
|
15660
15666
|
if (!(other instanceof ULongArray))
|
|
15661
15667
|
return false;
|
|
15662
|
-
var tmp0_other_with_cast = other.
|
|
15668
|
+
var tmp0_other_with_cast = other.nn_1;
|
|
15663
15669
|
if (!equals($this, tmp0_other_with_cast))
|
|
15664
15670
|
return false;
|
|
15665
15671
|
return true;
|
|
15666
15672
|
}
|
|
15667
15673
|
function ULongArray(storage) {
|
|
15668
|
-
this.
|
|
15674
|
+
this.nn_1 = storage;
|
|
15669
15675
|
}
|
|
15670
15676
|
protoOf(ULongArray).o = function () {
|
|
15671
|
-
return _ULongArray___get_size__impl__ju6dtr(this.
|
|
15677
|
+
return _ULongArray___get_size__impl__ju6dtr(this.nn_1);
|
|
15672
15678
|
};
|
|
15673
15679
|
protoOf(ULongArray).l = function () {
|
|
15674
|
-
return ULongArray__iterator_impl_cq4d2h(this.
|
|
15680
|
+
return ULongArray__iterator_impl_cq4d2h(this.nn_1);
|
|
15675
15681
|
};
|
|
15676
|
-
protoOf(ULongArray).
|
|
15677
|
-
return ULongArray__contains_impl_v9bgai(this.
|
|
15682
|
+
protoOf(ULongArray).on = function (element) {
|
|
15683
|
+
return ULongArray__contains_impl_v9bgai(this.nn_1, element);
|
|
15678
15684
|
};
|
|
15679
15685
|
protoOf(ULongArray).u1 = function (element) {
|
|
15680
15686
|
return ULongArray__contains_impl_v9bgai_0(this, element);
|
|
15681
15687
|
};
|
|
15682
|
-
protoOf(ULongArray).
|
|
15683
|
-
return ULongArray__containsAll_impl_xx8ztf(this.
|
|
15688
|
+
protoOf(ULongArray).pn = function (elements) {
|
|
15689
|
+
return ULongArray__containsAll_impl_xx8ztf(this.nn_1, elements);
|
|
15684
15690
|
};
|
|
15685
15691
|
protoOf(ULongArray).v1 = function (elements) {
|
|
15686
15692
|
return ULongArray__containsAll_impl_xx8ztf_0(this, elements);
|
|
15687
15693
|
};
|
|
15688
15694
|
protoOf(ULongArray).r = function () {
|
|
15689
|
-
return ULongArray__isEmpty_impl_c3yngu(this.
|
|
15695
|
+
return ULongArray__isEmpty_impl_c3yngu(this.nn_1);
|
|
15690
15696
|
};
|
|
15691
15697
|
protoOf(ULongArray).toString = function () {
|
|
15692
|
-
return ULongArray__toString_impl_wqk1p5(this.
|
|
15698
|
+
return ULongArray__toString_impl_wqk1p5(this.nn_1);
|
|
15693
15699
|
};
|
|
15694
15700
|
protoOf(ULongArray).hashCode = function () {
|
|
15695
|
-
return ULongArray__hashCode_impl_aze4wa(this.
|
|
15701
|
+
return ULongArray__hashCode_impl_aze4wa(this.nn_1);
|
|
15696
15702
|
};
|
|
15697
15703
|
protoOf(ULongArray).equals = function (other) {
|
|
15698
|
-
return ULongArray__equals_impl_vwitwa(this.
|
|
15704
|
+
return ULongArray__equals_impl_vwitwa(this.nn_1, other);
|
|
15699
15705
|
};
|
|
15700
15706
|
function _UShort___init__impl__jigrne(data) {
|
|
15701
15707
|
return data;
|
|
@@ -15705,10 +15711,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15705
15711
|
}
|
|
15706
15712
|
function Companion_31() {
|
|
15707
15713
|
Companion_instance_31 = this;
|
|
15708
|
-
this.
|
|
15709
|
-
this.
|
|
15710
|
-
this.
|
|
15711
|
-
this.
|
|
15714
|
+
this.qn_1 = _UShort___init__impl__jigrne(0);
|
|
15715
|
+
this.rn_1 = _UShort___init__impl__jigrne(-1);
|
|
15716
|
+
this.sn_1 = 2;
|
|
15717
|
+
this.tn_1 = 16;
|
|
15712
15718
|
}
|
|
15713
15719
|
var Companion_instance_31;
|
|
15714
15720
|
function Companion_getInstance_31() {
|
|
@@ -15724,7 +15730,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15724
15730
|
return compareTo(tmp, tmp$ret$1);
|
|
15725
15731
|
}
|
|
15726
15732
|
function UShort__compareTo_impl_1pfgyc_0($this, other) {
|
|
15727
|
-
return UShort__compareTo_impl_1pfgyc($this.
|
|
15733
|
+
return UShort__compareTo_impl_1pfgyc($this.un_1, other instanceof UShort ? other.un_1 : THROW_CCE());
|
|
15728
15734
|
}
|
|
15729
15735
|
function UShort__toString_impl_edaoee($this) {
|
|
15730
15736
|
// Inline function 'kotlin.UShort.toInt' call
|
|
@@ -15736,28 +15742,28 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15736
15742
|
function UShort__equals_impl_7t9pdz($this, other) {
|
|
15737
15743
|
if (!(other instanceof UShort))
|
|
15738
15744
|
return false;
|
|
15739
|
-
if (!($this === other.
|
|
15745
|
+
if (!($this === other.un_1))
|
|
15740
15746
|
return false;
|
|
15741
15747
|
return true;
|
|
15742
15748
|
}
|
|
15743
15749
|
function UShort(data) {
|
|
15744
15750
|
Companion_getInstance_31();
|
|
15745
|
-
this.
|
|
15751
|
+
this.un_1 = data;
|
|
15746
15752
|
}
|
|
15747
|
-
protoOf(UShort).
|
|
15748
|
-
return UShort__compareTo_impl_1pfgyc(this.
|
|
15753
|
+
protoOf(UShort).vn = function (other) {
|
|
15754
|
+
return UShort__compareTo_impl_1pfgyc(this.un_1, other);
|
|
15749
15755
|
};
|
|
15750
15756
|
protoOf(UShort).d = function (other) {
|
|
15751
15757
|
return UShort__compareTo_impl_1pfgyc_0(this, other);
|
|
15752
15758
|
};
|
|
15753
15759
|
protoOf(UShort).toString = function () {
|
|
15754
|
-
return UShort__toString_impl_edaoee(this.
|
|
15760
|
+
return UShort__toString_impl_edaoee(this.un_1);
|
|
15755
15761
|
};
|
|
15756
15762
|
protoOf(UShort).hashCode = function () {
|
|
15757
|
-
return UShort__hashCode_impl_ywngrv(this.
|
|
15763
|
+
return UShort__hashCode_impl_ywngrv(this.un_1);
|
|
15758
15764
|
};
|
|
15759
15765
|
protoOf(UShort).equals = function (other) {
|
|
15760
|
-
return UShort__equals_impl_7t9pdz(this.
|
|
15766
|
+
return UShort__equals_impl_7t9pdz(this.un_1, other);
|
|
15761
15767
|
};
|
|
15762
15768
|
function _UShortArray___init__impl__9b26ef(storage) {
|
|
15763
15769
|
return storage;
|
|
@@ -15785,27 +15791,27 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15785
15791
|
return new Iterator_2(_UShortArray___get_storage__impl__t2jpv5($this));
|
|
15786
15792
|
}
|
|
15787
15793
|
function Iterator_2(array) {
|
|
15788
|
-
this.
|
|
15789
|
-
this.
|
|
15794
|
+
this.wn_1 = array;
|
|
15795
|
+
this.xn_1 = 0;
|
|
15790
15796
|
}
|
|
15791
15797
|
protoOf(Iterator_2).m = function () {
|
|
15792
|
-
return this.
|
|
15798
|
+
return this.xn_1 < this.wn_1.length;
|
|
15793
15799
|
};
|
|
15794
|
-
protoOf(Iterator_2).
|
|
15800
|
+
protoOf(Iterator_2).yn = function () {
|
|
15795
15801
|
var tmp;
|
|
15796
|
-
if (this.
|
|
15797
|
-
var _unary__edvuaz = this.
|
|
15798
|
-
this.
|
|
15802
|
+
if (this.xn_1 < this.wn_1.length) {
|
|
15803
|
+
var _unary__edvuaz = this.xn_1;
|
|
15804
|
+
this.xn_1 = _unary__edvuaz + 1 | 0;
|
|
15799
15805
|
// Inline function 'kotlin.toUShort' call
|
|
15800
|
-
var this_0 = this.
|
|
15806
|
+
var this_0 = this.wn_1[_unary__edvuaz];
|
|
15801
15807
|
tmp = _UShort___init__impl__jigrne(this_0);
|
|
15802
15808
|
} else {
|
|
15803
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
15809
|
+
throw NoSuchElementException_init_$Create$_0(this.xn_1.toString());
|
|
15804
15810
|
}
|
|
15805
15811
|
return tmp;
|
|
15806
15812
|
};
|
|
15807
15813
|
protoOf(Iterator_2).n = function () {
|
|
15808
|
-
return new UShort(this.
|
|
15814
|
+
return new UShort(this.yn());
|
|
15809
15815
|
};
|
|
15810
15816
|
function UShortArray__contains_impl_vo7k3g($this, element) {
|
|
15811
15817
|
var tmp = _UShortArray___get_storage__impl__t2jpv5($this);
|
|
@@ -15816,7 +15822,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15816
15822
|
function UShortArray__contains_impl_vo7k3g_0($this, element) {
|
|
15817
15823
|
if (!(element instanceof UShort))
|
|
15818
15824
|
return false;
|
|
15819
|
-
return UShortArray__contains_impl_vo7k3g($this.
|
|
15825
|
+
return UShortArray__contains_impl_vo7k3g($this.zn_1, element instanceof UShort ? element.un_1 : THROW_CCE());
|
|
15820
15826
|
}
|
|
15821
15827
|
function UShortArray__containsAll_impl_vlaaxp($this, elements) {
|
|
15822
15828
|
var tmp0 = isInterface(elements, Collection) ? elements : THROW_CCE();
|
|
@@ -15840,7 +15846,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15840
15846
|
if (element instanceof UShort) {
|
|
15841
15847
|
var tmp_1 = _UShortArray___get_storage__impl__t2jpv5($this);
|
|
15842
15848
|
// Inline function 'kotlin.UShort.toShort' call
|
|
15843
|
-
var this_0 = element.
|
|
15849
|
+
var this_0 = element.un_1;
|
|
15844
15850
|
var tmp$ret$1 = _UShort___get_data__impl__g0245(this_0);
|
|
15845
15851
|
tmp_0 = contains_3(tmp_1, tmp$ret$1);
|
|
15846
15852
|
} else {
|
|
@@ -15856,7 +15862,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15856
15862
|
return tmp$ret$0;
|
|
15857
15863
|
}
|
|
15858
15864
|
function UShortArray__containsAll_impl_vlaaxp_0($this, elements) {
|
|
15859
|
-
return UShortArray__containsAll_impl_vlaaxp($this.
|
|
15865
|
+
return UShortArray__containsAll_impl_vlaaxp($this.zn_1, elements);
|
|
15860
15866
|
}
|
|
15861
15867
|
function UShortArray__isEmpty_impl_cdd9l0($this) {
|
|
15862
15868
|
return _UShortArray___get_storage__impl__t2jpv5($this).length === 0;
|
|
@@ -15870,43 +15876,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15870
15876
|
function UShortArray__equals_impl_tyc3mk($this, other) {
|
|
15871
15877
|
if (!(other instanceof UShortArray))
|
|
15872
15878
|
return false;
|
|
15873
|
-
var tmp0_other_with_cast = other.
|
|
15879
|
+
var tmp0_other_with_cast = other.zn_1;
|
|
15874
15880
|
if (!equals($this, tmp0_other_with_cast))
|
|
15875
15881
|
return false;
|
|
15876
15882
|
return true;
|
|
15877
15883
|
}
|
|
15878
15884
|
function UShortArray(storage) {
|
|
15879
|
-
this.
|
|
15885
|
+
this.zn_1 = storage;
|
|
15880
15886
|
}
|
|
15881
15887
|
protoOf(UShortArray).o = function () {
|
|
15882
|
-
return _UShortArray___get_size__impl__jqto1b(this.
|
|
15888
|
+
return _UShortArray___get_size__impl__jqto1b(this.zn_1);
|
|
15883
15889
|
};
|
|
15884
15890
|
protoOf(UShortArray).l = function () {
|
|
15885
|
-
return UShortArray__iterator_impl_ktpenn(this.
|
|
15891
|
+
return UShortArray__iterator_impl_ktpenn(this.zn_1);
|
|
15886
15892
|
};
|
|
15887
|
-
protoOf(UShortArray).
|
|
15888
|
-
return UShortArray__contains_impl_vo7k3g(this.
|
|
15893
|
+
protoOf(UShortArray).ao = function (element) {
|
|
15894
|
+
return UShortArray__contains_impl_vo7k3g(this.zn_1, element);
|
|
15889
15895
|
};
|
|
15890
15896
|
protoOf(UShortArray).u1 = function (element) {
|
|
15891
15897
|
return UShortArray__contains_impl_vo7k3g_0(this, element);
|
|
15892
15898
|
};
|
|
15893
|
-
protoOf(UShortArray).
|
|
15894
|
-
return UShortArray__containsAll_impl_vlaaxp(this.
|
|
15899
|
+
protoOf(UShortArray).bo = function (elements) {
|
|
15900
|
+
return UShortArray__containsAll_impl_vlaaxp(this.zn_1, elements);
|
|
15895
15901
|
};
|
|
15896
15902
|
protoOf(UShortArray).v1 = function (elements) {
|
|
15897
15903
|
return UShortArray__containsAll_impl_vlaaxp_0(this, elements);
|
|
15898
15904
|
};
|
|
15899
15905
|
protoOf(UShortArray).r = function () {
|
|
15900
|
-
return UShortArray__isEmpty_impl_cdd9l0(this.
|
|
15906
|
+
return UShortArray__isEmpty_impl_cdd9l0(this.zn_1);
|
|
15901
15907
|
};
|
|
15902
15908
|
protoOf(UShortArray).toString = function () {
|
|
15903
|
-
return UShortArray__toString_impl_omz03z(this.
|
|
15909
|
+
return UShortArray__toString_impl_omz03z(this.zn_1);
|
|
15904
15910
|
};
|
|
15905
15911
|
protoOf(UShortArray).hashCode = function () {
|
|
15906
|
-
return UShortArray__hashCode_impl_2vt3b4(this.
|
|
15912
|
+
return UShortArray__hashCode_impl_2vt3b4(this.zn_1);
|
|
15907
15913
|
};
|
|
15908
15914
|
protoOf(UShortArray).equals = function (other) {
|
|
15909
|
-
return UShortArray__equals_impl_tyc3mk(this.
|
|
15915
|
+
return UShortArray__equals_impl_tyc3mk(this.zn_1, other);
|
|
15910
15916
|
};
|
|
15911
15917
|
function toULongOrNull(_this__u8e3s4) {
|
|
15912
15918
|
return toULongOrNull_0(_this__u8e3s4, 10);
|