client_plugin_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 +58 -58
- package/Kosi-Kodein-kodein-di.js +523 -523
- package/Kotlin-DateTime-library-kotlinx-datetime.js +151 -151
- package/Logic_Debertz-ai_module.js +235 -235
- package/Logic_Debertz-client_plugin.d.ts +5 -0
- package/Logic_Debertz-client_plugin.js +3090 -3090
- package/Logic_Debertz-core.js +682 -682
- package/Logic_Debertz-engine.js +14223 -14151
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +8869 -8869
- package/Logic_Debertz-game_server.js +1175 -1174
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +552 -546
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +13 -13
- package/kotlinx-coroutines-core.js +2488 -2488
- package/kotlinx-coroutines-core.js.map +1 -1
- 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 +794 -794
- 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)
|
|
@@ -10901,14 +10901,17 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
10901
10901
|
protoOf(Default).pg = function (from, until) {
|
|
10902
10902
|
return this.mg_1.pg(from, until);
|
|
10903
10903
|
};
|
|
10904
|
-
protoOf(Default).qg = function (
|
|
10905
|
-
return this.mg_1.qg(
|
|
10904
|
+
protoOf(Default).qg = function () {
|
|
10905
|
+
return this.mg_1.qg();
|
|
10906
|
+
};
|
|
10907
|
+
protoOf(Default).rg = function (array) {
|
|
10908
|
+
return this.mg_1.rg(array);
|
|
10906
10909
|
};
|
|
10907
|
-
protoOf(Default).
|
|
10908
|
-
return this.mg_1.
|
|
10910
|
+
protoOf(Default).sg = function (size) {
|
|
10911
|
+
return this.mg_1.sg(size);
|
|
10909
10912
|
};
|
|
10910
|
-
protoOf(Default).
|
|
10911
|
-
return this.mg_1.
|
|
10913
|
+
protoOf(Default).tg = function (array, fromIndex, toIndex) {
|
|
10914
|
+
return this.mg_1.tg(array, fromIndex, toIndex);
|
|
10912
10915
|
};
|
|
10913
10916
|
var Default_instance;
|
|
10914
10917
|
function Default_getInstance() {
|
|
@@ -11001,7 +11004,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11001
11004
|
}
|
|
11002
11005
|
}
|
|
11003
11006
|
};
|
|
11004
|
-
protoOf(Random).
|
|
11007
|
+
protoOf(Random).qg = function () {
|
|
11008
|
+
return !(this.ng(1) === 0);
|
|
11009
|
+
};
|
|
11010
|
+
protoOf(Random).tg = function (array, fromIndex, toIndex) {
|
|
11005
11011
|
// Inline function 'kotlin.require' call
|
|
11006
11012
|
if (!((0 <= fromIndex ? fromIndex <= array.length : false) && (0 <= toIndex ? toIndex <= array.length : false))) {
|
|
11007
11013
|
var message = 'fromIndex (' + fromIndex + ') or toIndex (' + toIndex + ') are out of range: 0..' + array.length + '.';
|
|
@@ -11040,11 +11046,11 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11040
11046
|
while (inductionVariable_0 < remainder);
|
|
11041
11047
|
return array;
|
|
11042
11048
|
};
|
|
11043
|
-
protoOf(Random).
|
|
11044
|
-
return this.
|
|
11049
|
+
protoOf(Random).rg = function (array) {
|
|
11050
|
+
return this.tg(array, 0, array.length);
|
|
11045
11051
|
};
|
|
11046
|
-
protoOf(Random).
|
|
11047
|
-
return this.
|
|
11052
|
+
protoOf(Random).sg = function (size) {
|
|
11053
|
+
return this.rg(new Int8Array(size));
|
|
11048
11054
|
};
|
|
11049
11055
|
function checkRangeBounds(from, until) {
|
|
11050
11056
|
// Inline function 'kotlin.require' call
|
|
@@ -11097,14 +11103,14 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11097
11103
|
}
|
|
11098
11104
|
function checkInvariants($this) {
|
|
11099
11105
|
// Inline function 'kotlin.require' call
|
|
11100
|
-
if (!!(($this.
|
|
11106
|
+
if (!!(($this.xg_1 | $this.yg_1 | $this.zg_1 | $this.ah_1 | $this.bh_1) === 0)) {
|
|
11101
11107
|
var message = 'Initial state must have at least one non-zero element.';
|
|
11102
11108
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
11103
11109
|
}
|
|
11104
11110
|
}
|
|
11105
11111
|
function Companion_12() {
|
|
11106
11112
|
Companion_instance_12 = this;
|
|
11107
|
-
this.
|
|
11113
|
+
this.dh_1 = new Long(0, 0);
|
|
11108
11114
|
}
|
|
11109
11115
|
var Companion_instance_12;
|
|
11110
11116
|
function Companion_getInstance_12() {
|
|
@@ -11115,12 +11121,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11115
11121
|
function XorWowRandom(x, y, z, w, v, addend) {
|
|
11116
11122
|
Companion_getInstance_12();
|
|
11117
11123
|
Random.call(this);
|
|
11118
|
-
this.
|
|
11119
|
-
this.
|
|
11120
|
-
this.
|
|
11121
|
-
this.
|
|
11122
|
-
this.
|
|
11123
|
-
this.
|
|
11124
|
+
this.xg_1 = x;
|
|
11125
|
+
this.yg_1 = y;
|
|
11126
|
+
this.zg_1 = z;
|
|
11127
|
+
this.ah_1 = w;
|
|
11128
|
+
this.bh_1 = v;
|
|
11129
|
+
this.ch_1 = addend;
|
|
11124
11130
|
checkInvariants(this);
|
|
11125
11131
|
// Inline function 'kotlin.repeat' call
|
|
11126
11132
|
var inductionVariable = 0;
|
|
@@ -11133,17 +11139,17 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11133
11139
|
while (inductionVariable < 64);
|
|
11134
11140
|
}
|
|
11135
11141
|
protoOf(XorWowRandom).qe = function () {
|
|
11136
|
-
var t = this.
|
|
11142
|
+
var t = this.xg_1;
|
|
11137
11143
|
t = t ^ (t >>> 2 | 0);
|
|
11138
|
-
this.wg_1 = this.xg_1;
|
|
11139
11144
|
this.xg_1 = this.yg_1;
|
|
11140
11145
|
this.yg_1 = this.zg_1;
|
|
11141
|
-
|
|
11142
|
-
|
|
11146
|
+
this.zg_1 = this.ah_1;
|
|
11147
|
+
var v0 = this.bh_1;
|
|
11148
|
+
this.ah_1 = v0;
|
|
11143
11149
|
t = t ^ t << 1 ^ v0 ^ v0 << 4;
|
|
11144
|
-
this.
|
|
11145
|
-
this.
|
|
11146
|
-
return t + this.
|
|
11150
|
+
this.bh_1 = t;
|
|
11151
|
+
this.ch_1 = this.ch_1 + 362437 | 0;
|
|
11152
|
+
return t + this.ch_1 | 0;
|
|
11147
11153
|
};
|
|
11148
11154
|
protoOf(XorWowRandom).ng = function (bitCount) {
|
|
11149
11155
|
return takeUpperBits(this.qe(), bitCount);
|
|
@@ -11168,11 +11174,11 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11168
11174
|
protoOf(IntRange).d1 = function () {
|
|
11169
11175
|
return this.b1_1;
|
|
11170
11176
|
};
|
|
11171
|
-
protoOf(IntRange).
|
|
11177
|
+
protoOf(IntRange).eh = function (value) {
|
|
11172
11178
|
return this.a1_1 <= value && value <= this.b1_1;
|
|
11173
11179
|
};
|
|
11174
11180
|
protoOf(IntRange).f1 = function (value) {
|
|
11175
|
-
return this.
|
|
11181
|
+
return this.eh(typeof value === 'number' ? value : THROW_CCE());
|
|
11176
11182
|
};
|
|
11177
11183
|
protoOf(IntRange).q = function () {
|
|
11178
11184
|
return this.a1_1 > this.b1_1;
|
|
@@ -11194,7 +11200,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11194
11200
|
};
|
|
11195
11201
|
function Companion_14() {
|
|
11196
11202
|
Companion_instance_14 = this;
|
|
11197
|
-
this.
|
|
11203
|
+
this.fh_1 = new LongRange(new Long(1, 0), new Long(0, 0));
|
|
11198
11204
|
}
|
|
11199
11205
|
var Companion_instance_14;
|
|
11200
11206
|
function Companion_getInstance_14() {
|
|
@@ -11207,38 +11213,38 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11207
11213
|
LongProgression.call(this, start, endInclusive, new Long(1, 0));
|
|
11208
11214
|
}
|
|
11209
11215
|
protoOf(LongRange).e1 = function () {
|
|
11210
|
-
return this.
|
|
11216
|
+
return this.jh_1;
|
|
11211
11217
|
};
|
|
11212
11218
|
protoOf(LongRange).d1 = function () {
|
|
11213
|
-
return this.
|
|
11219
|
+
return this.kh_1;
|
|
11214
11220
|
};
|
|
11215
|
-
protoOf(LongRange).
|
|
11216
|
-
return compare(this.
|
|
11221
|
+
protoOf(LongRange).mh = function (value) {
|
|
11222
|
+
return compare(this.jh_1, value) <= 0 && compare(value, this.kh_1) <= 0;
|
|
11217
11223
|
};
|
|
11218
11224
|
protoOf(LongRange).f1 = function (value) {
|
|
11219
|
-
return this.
|
|
11225
|
+
return this.mh(value instanceof Long ? value : THROW_CCE());
|
|
11220
11226
|
};
|
|
11221
11227
|
protoOf(LongRange).q = function () {
|
|
11222
|
-
return compare(this.
|
|
11228
|
+
return compare(this.jh_1, this.kh_1) > 0;
|
|
11223
11229
|
};
|
|
11224
11230
|
protoOf(LongRange).equals = function (other) {
|
|
11225
11231
|
var tmp;
|
|
11226
11232
|
if (other instanceof LongRange) {
|
|
11227
|
-
tmp = this.q() && other.q() || (equalsLong(this.
|
|
11233
|
+
tmp = this.q() && other.q() || (equalsLong(this.jh_1, other.jh_1) && equalsLong(this.kh_1, other.kh_1));
|
|
11228
11234
|
} else {
|
|
11229
11235
|
tmp = false;
|
|
11230
11236
|
}
|
|
11231
11237
|
return tmp;
|
|
11232
11238
|
};
|
|
11233
11239
|
protoOf(LongRange).hashCode = function () {
|
|
11234
|
-
return this.q() ? -1 : convertToInt(add(multiply(numberToLong(31), bitwiseXor(this.
|
|
11240
|
+
return this.q() ? -1 : convertToInt(add(multiply(numberToLong(31), bitwiseXor(this.jh_1, shiftRightUnsigned(this.jh_1, 32))), bitwiseXor(this.kh_1, shiftRightUnsigned(this.kh_1, 32))));
|
|
11235
11241
|
};
|
|
11236
11242
|
protoOf(LongRange).toString = function () {
|
|
11237
|
-
return this.
|
|
11243
|
+
return this.jh_1.toString() + '..' + this.kh_1.toString();
|
|
11238
11244
|
};
|
|
11239
11245
|
function Companion_15() {
|
|
11240
11246
|
Companion_instance_15 = this;
|
|
11241
|
-
this.
|
|
11247
|
+
this.nh_1 = new CharRange(_Char___init__impl__6a9atx(1), _Char___init__impl__6a9atx(0));
|
|
11242
11248
|
}
|
|
11243
11249
|
var Companion_instance_15;
|
|
11244
11250
|
function Companion_getInstance_15() {
|
|
@@ -11250,31 +11256,31 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11250
11256
|
Companion_getInstance_15();
|
|
11251
11257
|
CharProgression.call(this, start, endInclusive, 1);
|
|
11252
11258
|
}
|
|
11253
|
-
protoOf(CharRange).
|
|
11254
|
-
return this.
|
|
11259
|
+
protoOf(CharRange).rh = function () {
|
|
11260
|
+
return this.sh_1;
|
|
11255
11261
|
};
|
|
11256
11262
|
protoOf(CharRange).e1 = function () {
|
|
11257
|
-
return new Char(this.
|
|
11263
|
+
return new Char(this.rh());
|
|
11258
11264
|
};
|
|
11259
|
-
protoOf(CharRange).
|
|
11260
|
-
return this.
|
|
11265
|
+
protoOf(CharRange).vh = function () {
|
|
11266
|
+
return this.th_1;
|
|
11261
11267
|
};
|
|
11262
11268
|
protoOf(CharRange).d1 = function () {
|
|
11263
|
-
return new Char(this.
|
|
11269
|
+
return new Char(this.vh());
|
|
11264
11270
|
};
|
|
11265
|
-
protoOf(CharRange).
|
|
11266
|
-
return Char__compareTo_impl_ypi4mb(this.
|
|
11271
|
+
protoOf(CharRange).wh = function (value) {
|
|
11272
|
+
return Char__compareTo_impl_ypi4mb(this.sh_1, value) <= 0 && Char__compareTo_impl_ypi4mb(value, this.th_1) <= 0;
|
|
11267
11273
|
};
|
|
11268
11274
|
protoOf(CharRange).f1 = function (value) {
|
|
11269
|
-
return this.
|
|
11275
|
+
return this.wh(value instanceof Char ? value.i1_1 : THROW_CCE());
|
|
11270
11276
|
};
|
|
11271
11277
|
protoOf(CharRange).q = function () {
|
|
11272
|
-
return Char__compareTo_impl_ypi4mb(this.
|
|
11278
|
+
return Char__compareTo_impl_ypi4mb(this.sh_1, this.th_1) > 0;
|
|
11273
11279
|
};
|
|
11274
11280
|
protoOf(CharRange).equals = function (other) {
|
|
11275
11281
|
var tmp;
|
|
11276
11282
|
if (other instanceof CharRange) {
|
|
11277
|
-
tmp = this.q() && other.q() || (this.
|
|
11283
|
+
tmp = this.q() && other.q() || (this.sh_1 === other.sh_1 && this.th_1 === other.th_1);
|
|
11278
11284
|
} else {
|
|
11279
11285
|
tmp = false;
|
|
11280
11286
|
}
|
|
@@ -11286,88 +11292,88 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11286
11292
|
tmp = -1;
|
|
11287
11293
|
} else {
|
|
11288
11294
|
// Inline function 'kotlin.code' call
|
|
11289
|
-
var this_0 = this.
|
|
11295
|
+
var this_0 = this.sh_1;
|
|
11290
11296
|
var tmp$ret$0 = Char__toInt_impl_vasixd(this_0);
|
|
11291
11297
|
var tmp_0 = imul(31, tmp$ret$0);
|
|
11292
11298
|
// Inline function 'kotlin.code' call
|
|
11293
|
-
var this_1 = this.
|
|
11299
|
+
var this_1 = this.th_1;
|
|
11294
11300
|
tmp = tmp_0 + Char__toInt_impl_vasixd(this_1) | 0;
|
|
11295
11301
|
}
|
|
11296
11302
|
return tmp;
|
|
11297
11303
|
};
|
|
11298
11304
|
protoOf(CharRange).toString = function () {
|
|
11299
|
-
return toString(this.
|
|
11305
|
+
return toString(this.sh_1) + '..' + toString(this.th_1);
|
|
11300
11306
|
};
|
|
11301
11307
|
function IntProgressionIterator(first, last, step) {
|
|
11302
11308
|
IntIterator.call(this);
|
|
11303
|
-
this.
|
|
11304
|
-
this.
|
|
11305
|
-
this.
|
|
11306
|
-
this.
|
|
11309
|
+
this.xh_1 = step;
|
|
11310
|
+
this.yh_1 = last;
|
|
11311
|
+
this.zh_1 = this.xh_1 > 0 ? first <= last : first >= last;
|
|
11312
|
+
this.ai_1 = this.zh_1 ? first : this.yh_1;
|
|
11307
11313
|
}
|
|
11308
11314
|
protoOf(IntProgressionIterator).m = function () {
|
|
11309
|
-
return this.
|
|
11315
|
+
return this.zh_1;
|
|
11310
11316
|
};
|
|
11311
11317
|
protoOf(IntProgressionIterator).qe = function () {
|
|
11312
|
-
var value = this.
|
|
11313
|
-
if (value === this.
|
|
11314
|
-
if (!this.
|
|
11318
|
+
var value = this.ai_1;
|
|
11319
|
+
if (value === this.yh_1) {
|
|
11320
|
+
if (!this.zh_1)
|
|
11315
11321
|
throw NoSuchElementException_init_$Create$();
|
|
11316
|
-
this.
|
|
11322
|
+
this.zh_1 = false;
|
|
11317
11323
|
} else {
|
|
11318
|
-
this.
|
|
11324
|
+
this.ai_1 = this.ai_1 + this.xh_1 | 0;
|
|
11319
11325
|
}
|
|
11320
11326
|
return value;
|
|
11321
11327
|
};
|
|
11322
11328
|
function LongProgressionIterator(first, last, step) {
|
|
11323
11329
|
LongIterator.call(this);
|
|
11324
|
-
this.
|
|
11325
|
-
this.
|
|
11326
|
-
this.
|
|
11327
|
-
this.
|
|
11330
|
+
this.bi_1 = step;
|
|
11331
|
+
this.ci_1 = last;
|
|
11332
|
+
this.di_1 = compare(this.bi_1, new Long(0, 0)) > 0 ? compare(first, last) <= 0 : compare(first, last) >= 0;
|
|
11333
|
+
this.ei_1 = this.di_1 ? first : this.ci_1;
|
|
11328
11334
|
}
|
|
11329
11335
|
protoOf(LongProgressionIterator).m = function () {
|
|
11330
|
-
return this.
|
|
11336
|
+
return this.di_1;
|
|
11331
11337
|
};
|
|
11332
11338
|
protoOf(LongProgressionIterator).re = function () {
|
|
11333
|
-
var value = this.
|
|
11334
|
-
if (equalsLong(value, this.
|
|
11335
|
-
if (!this.
|
|
11339
|
+
var value = this.ei_1;
|
|
11340
|
+
if (equalsLong(value, this.ci_1)) {
|
|
11341
|
+
if (!this.di_1)
|
|
11336
11342
|
throw NoSuchElementException_init_$Create$();
|
|
11337
|
-
this.
|
|
11343
|
+
this.di_1 = false;
|
|
11338
11344
|
} else {
|
|
11339
|
-
this.
|
|
11345
|
+
this.ei_1 = add(this.ei_1, this.bi_1);
|
|
11340
11346
|
}
|
|
11341
11347
|
return value;
|
|
11342
11348
|
};
|
|
11343
11349
|
function CharProgressionIterator(first, last, step) {
|
|
11344
11350
|
CharIterator.call(this);
|
|
11345
|
-
this.
|
|
11351
|
+
this.fi_1 = step;
|
|
11346
11352
|
var tmp = this;
|
|
11347
11353
|
// Inline function 'kotlin.code' call
|
|
11348
|
-
tmp.
|
|
11349
|
-
this.
|
|
11354
|
+
tmp.gi_1 = Char__toInt_impl_vasixd(last);
|
|
11355
|
+
this.hi_1 = this.fi_1 > 0 ? Char__compareTo_impl_ypi4mb(first, last) <= 0 : Char__compareTo_impl_ypi4mb(first, last) >= 0;
|
|
11350
11356
|
var tmp_0 = this;
|
|
11351
11357
|
var tmp_1;
|
|
11352
|
-
if (this.
|
|
11358
|
+
if (this.hi_1) {
|
|
11353
11359
|
// Inline function 'kotlin.code' call
|
|
11354
11360
|
tmp_1 = Char__toInt_impl_vasixd(first);
|
|
11355
11361
|
} else {
|
|
11356
|
-
tmp_1 = this.
|
|
11362
|
+
tmp_1 = this.gi_1;
|
|
11357
11363
|
}
|
|
11358
|
-
tmp_0.
|
|
11364
|
+
tmp_0.ii_1 = tmp_1;
|
|
11359
11365
|
}
|
|
11360
11366
|
protoOf(CharProgressionIterator).m = function () {
|
|
11361
|
-
return this.
|
|
11367
|
+
return this.hi_1;
|
|
11362
11368
|
};
|
|
11363
11369
|
protoOf(CharProgressionIterator).te = function () {
|
|
11364
|
-
var value = this.
|
|
11365
|
-
if (value === this.
|
|
11366
|
-
if (!this.
|
|
11370
|
+
var value = this.ii_1;
|
|
11371
|
+
if (value === this.gi_1) {
|
|
11372
|
+
if (!this.hi_1)
|
|
11367
11373
|
throw NoSuchElementException_init_$Create$();
|
|
11368
|
-
this.
|
|
11374
|
+
this.hi_1 = false;
|
|
11369
11375
|
} else {
|
|
11370
|
-
this.
|
|
11376
|
+
this.ii_1 = this.ii_1 + this.fi_1 | 0;
|
|
11371
11377
|
}
|
|
11372
11378
|
return numberToChar(value);
|
|
11373
11379
|
};
|
|
@@ -11421,30 +11427,30 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11421
11427
|
throw IllegalArgumentException_init_$Create$_0('Step must be non-zero.');
|
|
11422
11428
|
if (equalsLong(step, new Long(0, -2147483648)))
|
|
11423
11429
|
throw IllegalArgumentException_init_$Create$_0('Step must be greater than Long.MIN_VALUE to avoid overflow on negation.');
|
|
11424
|
-
this.
|
|
11425
|
-
this.
|
|
11426
|
-
this.
|
|
11430
|
+
this.jh_1 = start;
|
|
11431
|
+
this.kh_1 = getProgressionLastElement_0(start, endInclusive, step);
|
|
11432
|
+
this.lh_1 = step;
|
|
11427
11433
|
}
|
|
11428
11434
|
protoOf(LongProgression).l = function () {
|
|
11429
|
-
return new LongProgressionIterator(this.
|
|
11435
|
+
return new LongProgressionIterator(this.jh_1, this.kh_1, this.lh_1);
|
|
11430
11436
|
};
|
|
11431
11437
|
protoOf(LongProgression).q = function () {
|
|
11432
|
-
return compare(this.
|
|
11438
|
+
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;
|
|
11433
11439
|
};
|
|
11434
11440
|
protoOf(LongProgression).equals = function (other) {
|
|
11435
11441
|
var tmp;
|
|
11436
11442
|
if (other instanceof LongProgression) {
|
|
11437
|
-
tmp = this.q() && other.q() || (equalsLong(this.
|
|
11443
|
+
tmp = this.q() && other.q() || (equalsLong(this.jh_1, other.jh_1) && equalsLong(this.kh_1, other.kh_1) && equalsLong(this.lh_1, other.lh_1));
|
|
11438
11444
|
} else {
|
|
11439
11445
|
tmp = false;
|
|
11440
11446
|
}
|
|
11441
11447
|
return tmp;
|
|
11442
11448
|
};
|
|
11443
11449
|
protoOf(LongProgression).hashCode = function () {
|
|
11444
|
-
return this.q() ? -1 : convertToInt(add(multiply(numberToLong(31), add(multiply(numberToLong(31), bitwiseXor(this.
|
|
11450
|
+
return this.q() ? -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))));
|
|
11445
11451
|
};
|
|
11446
11452
|
protoOf(LongProgression).toString = function () {
|
|
11447
|
-
return compare(this.
|
|
11453
|
+
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();
|
|
11448
11454
|
};
|
|
11449
11455
|
function Companion_18() {
|
|
11450
11456
|
}
|
|
@@ -11457,25 +11463,25 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11457
11463
|
throw IllegalArgumentException_init_$Create$_0('Step must be non-zero.');
|
|
11458
11464
|
if (step === -2147483648)
|
|
11459
11465
|
throw IllegalArgumentException_init_$Create$_0('Step must be greater than Int.MIN_VALUE to avoid overflow on negation.');
|
|
11460
|
-
this.
|
|
11466
|
+
this.sh_1 = start;
|
|
11461
11467
|
var tmp = this;
|
|
11462
11468
|
// Inline function 'kotlin.code' call
|
|
11463
11469
|
var tmp_0 = Char__toInt_impl_vasixd(start);
|
|
11464
11470
|
// Inline function 'kotlin.code' call
|
|
11465
11471
|
var tmp$ret$1 = Char__toInt_impl_vasixd(endInclusive);
|
|
11466
|
-
tmp.
|
|
11467
|
-
this.
|
|
11472
|
+
tmp.th_1 = numberToChar(getProgressionLastElement(tmp_0, tmp$ret$1, step));
|
|
11473
|
+
this.uh_1 = step;
|
|
11468
11474
|
}
|
|
11469
11475
|
protoOf(CharProgression).l = function () {
|
|
11470
|
-
return new CharProgressionIterator(this.
|
|
11476
|
+
return new CharProgressionIterator(this.sh_1, this.th_1, this.uh_1);
|
|
11471
11477
|
};
|
|
11472
11478
|
protoOf(CharProgression).q = function () {
|
|
11473
|
-
return this.
|
|
11479
|
+
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;
|
|
11474
11480
|
};
|
|
11475
11481
|
protoOf(CharProgression).equals = function (other) {
|
|
11476
11482
|
var tmp;
|
|
11477
11483
|
if (other instanceof CharProgression) {
|
|
11478
|
-
tmp = this.q() && other.q() || (this.
|
|
11484
|
+
tmp = this.q() && other.q() || (this.sh_1 === other.sh_1 && this.th_1 === other.th_1 && this.uh_1 === other.uh_1);
|
|
11479
11485
|
} else {
|
|
11480
11486
|
tmp = false;
|
|
11481
11487
|
}
|
|
@@ -11487,18 +11493,18 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11487
11493
|
tmp = -1;
|
|
11488
11494
|
} else {
|
|
11489
11495
|
// Inline function 'kotlin.code' call
|
|
11490
|
-
var this_0 = this.
|
|
11496
|
+
var this_0 = this.sh_1;
|
|
11491
11497
|
var tmp$ret$0 = Char__toInt_impl_vasixd(this_0);
|
|
11492
11498
|
var tmp_0 = imul(31, tmp$ret$0);
|
|
11493
11499
|
// Inline function 'kotlin.code' call
|
|
11494
|
-
var this_1 = this.
|
|
11500
|
+
var this_1 = this.th_1;
|
|
11495
11501
|
var tmp$ret$1 = Char__toInt_impl_vasixd(this_1);
|
|
11496
|
-
tmp = imul(31, tmp_0 + tmp$ret$1 | 0) + this.
|
|
11502
|
+
tmp = imul(31, tmp_0 + tmp$ret$1 | 0) + this.uh_1 | 0;
|
|
11497
11503
|
}
|
|
11498
11504
|
return tmp;
|
|
11499
11505
|
};
|
|
11500
11506
|
protoOf(CharProgression).toString = function () {
|
|
11501
|
-
return this.
|
|
11507
|
+
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);
|
|
11502
11508
|
};
|
|
11503
11509
|
function ClosedRange() {
|
|
11504
11510
|
}
|
|
@@ -11514,7 +11520,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11514
11520
|
Companion_instance_19 = this;
|
|
11515
11521
|
this.ma_1 = new KTypeProjection(null, null);
|
|
11516
11522
|
}
|
|
11517
|
-
protoOf(Companion_19).
|
|
11523
|
+
protoOf(Companion_19).ji = function () {
|
|
11518
11524
|
return this.ma_1;
|
|
11519
11525
|
};
|
|
11520
11526
|
protoOf(Companion_19).na = function (type) {
|
|
@@ -11528,29 +11534,29 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11528
11534
|
}
|
|
11529
11535
|
function KTypeProjection(variance, type) {
|
|
11530
11536
|
Companion_getInstance_19();
|
|
11531
|
-
this.
|
|
11532
|
-
this.
|
|
11537
|
+
this.ki_1 = variance;
|
|
11538
|
+
this.li_1 = type;
|
|
11533
11539
|
// Inline function 'kotlin.require' call
|
|
11534
|
-
if (!(this.
|
|
11535
|
-
var message = this.
|
|
11540
|
+
if (!(this.ki_1 == null === (this.li_1 == null))) {
|
|
11541
|
+
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.';
|
|
11536
11542
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
11537
11543
|
}
|
|
11538
11544
|
}
|
|
11539
11545
|
protoOf(KTypeProjection).toString = function () {
|
|
11540
|
-
var tmp0_subject = this.
|
|
11546
|
+
var tmp0_subject = this.ki_1;
|
|
11541
11547
|
var tmp;
|
|
11542
11548
|
switch (tmp0_subject == null ? -1 : tmp0_subject.q2_1) {
|
|
11543
11549
|
case -1:
|
|
11544
11550
|
tmp = '*';
|
|
11545
11551
|
break;
|
|
11546
11552
|
case 0:
|
|
11547
|
-
tmp = toString_0(this.
|
|
11553
|
+
tmp = toString_0(this.li_1);
|
|
11548
11554
|
break;
|
|
11549
11555
|
case 1:
|
|
11550
|
-
tmp = 'in ' + toString_0(this.
|
|
11556
|
+
tmp = 'in ' + toString_0(this.li_1);
|
|
11551
11557
|
break;
|
|
11552
11558
|
case 2:
|
|
11553
|
-
tmp = 'out ' + toString_0(this.
|
|
11559
|
+
tmp = 'out ' + toString_0(this.li_1);
|
|
11554
11560
|
break;
|
|
11555
11561
|
default:
|
|
11556
11562
|
noWhenBranchMatchedException();
|
|
@@ -11559,8 +11565,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11559
11565
|
return tmp;
|
|
11560
11566
|
};
|
|
11561
11567
|
protoOf(KTypeProjection).hashCode = function () {
|
|
11562
|
-
var result = this.
|
|
11563
|
-
result = imul(result, 31) + (this.
|
|
11568
|
+
var result = this.ki_1 == null ? 0 : this.ki_1.hashCode();
|
|
11569
|
+
result = imul(result, 31) + (this.li_1 == null ? 0 : hashCode_0(this.li_1)) | 0;
|
|
11564
11570
|
return result;
|
|
11565
11571
|
};
|
|
11566
11572
|
protoOf(KTypeProjection).equals = function (other) {
|
|
@@ -11568,10 +11574,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11568
11574
|
return true;
|
|
11569
11575
|
if (!(other instanceof KTypeProjection))
|
|
11570
11576
|
return false;
|
|
11571
|
-
if (!equals(this.ji_1, other.ji_1))
|
|
11572
|
-
return false;
|
|
11573
11577
|
if (!equals(this.ki_1, other.ki_1))
|
|
11574
11578
|
return false;
|
|
11579
|
+
if (!equals(this.li_1, other.li_1))
|
|
11580
|
+
return false;
|
|
11575
11581
|
return true;
|
|
11576
11582
|
};
|
|
11577
11583
|
var KVariance_INVARIANT_instance;
|
|
@@ -11653,21 +11659,21 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11653
11659
|
function hexToInt(_this__u8e3s4, startIndex, endIndex, format) {
|
|
11654
11660
|
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
11655
11661
|
endIndex = endIndex === VOID ? _this__u8e3s4.length : endIndex;
|
|
11656
|
-
format = format === VOID ? Companion_getInstance_22().
|
|
11662
|
+
format = format === VOID ? Companion_getInstance_22().mi_1 : format;
|
|
11657
11663
|
_init_properties_HexExtensions_kt__wu8rc3();
|
|
11658
11664
|
return hexToIntImpl(_this__u8e3s4, startIndex, endIndex, format, 8);
|
|
11659
11665
|
}
|
|
11660
11666
|
function hexToIntImpl(_this__u8e3s4, startIndex, endIndex, format, typeHexLength) {
|
|
11661
11667
|
_init_properties_HexExtensions_kt__wu8rc3();
|
|
11662
11668
|
Companion_instance_8.yb(startIndex, endIndex, _this__u8e3s4.length);
|
|
11663
|
-
var numberFormat = format.
|
|
11664
|
-
if (numberFormat.
|
|
11669
|
+
var numberFormat = format.qi_1;
|
|
11670
|
+
if (numberFormat.vi_1) {
|
|
11665
11671
|
checkNumberOfDigits(_this__u8e3s4, startIndex, endIndex, typeHexLength);
|
|
11666
11672
|
return parseInt(_this__u8e3s4, startIndex, endIndex);
|
|
11667
11673
|
}
|
|
11668
|
-
var prefix = numberFormat.
|
|
11669
|
-
var suffix = numberFormat.
|
|
11670
|
-
checkPrefixSuffixNumberOfDigits(_this__u8e3s4, startIndex, endIndex, prefix, suffix, numberFormat.
|
|
11674
|
+
var prefix = numberFormat.ri_1;
|
|
11675
|
+
var suffix = numberFormat.si_1;
|
|
11676
|
+
checkPrefixSuffixNumberOfDigits(_this__u8e3s4, startIndex, endIndex, prefix, suffix, numberFormat.xi_1, typeHexLength);
|
|
11671
11677
|
return parseInt(_this__u8e3s4, startIndex + prefix.length | 0, endIndex - suffix.length | 0);
|
|
11672
11678
|
}
|
|
11673
11679
|
function checkNumberOfDigits(_this__u8e3s4, startIndex, endIndex, typeHexLength) {
|
|
@@ -11884,7 +11890,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11884
11890
|
}
|
|
11885
11891
|
function Companion_20() {
|
|
11886
11892
|
Companion_instance_20 = this;
|
|
11887
|
-
this.
|
|
11893
|
+
this.yi_1 = new BytesHexFormat(2147483647, 2147483647, ' ', '', '', '');
|
|
11888
11894
|
}
|
|
11889
11895
|
var Companion_instance_20;
|
|
11890
11896
|
function Companion_getInstance_20() {
|
|
@@ -11894,7 +11900,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11894
11900
|
}
|
|
11895
11901
|
function Companion_21() {
|
|
11896
11902
|
Companion_instance_21 = this;
|
|
11897
|
-
this.
|
|
11903
|
+
this.zi_1 = new NumberHexFormat('', '', false, 1);
|
|
11898
11904
|
}
|
|
11899
11905
|
var Companion_instance_21;
|
|
11900
11906
|
function Companion_getInstance_21() {
|
|
@@ -11904,32 +11910,32 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11904
11910
|
}
|
|
11905
11911
|
function BytesHexFormat(bytesPerLine, bytesPerGroup, groupSeparator, byteSeparator, bytePrefix, byteSuffix) {
|
|
11906
11912
|
Companion_getInstance_20();
|
|
11907
|
-
this.
|
|
11908
|
-
this.
|
|
11909
|
-
this.
|
|
11910
|
-
this.
|
|
11911
|
-
this.
|
|
11912
|
-
this.
|
|
11913
|
-
this.
|
|
11913
|
+
this.aj_1 = bytesPerLine;
|
|
11914
|
+
this.bj_1 = bytesPerGroup;
|
|
11915
|
+
this.cj_1 = groupSeparator;
|
|
11916
|
+
this.dj_1 = byteSeparator;
|
|
11917
|
+
this.ej_1 = bytePrefix;
|
|
11918
|
+
this.fj_1 = byteSuffix;
|
|
11919
|
+
this.gj_1 = (this.aj_1 === 2147483647 && this.bj_1 === 2147483647);
|
|
11914
11920
|
var tmp = this;
|
|
11915
11921
|
var tmp_0;
|
|
11916
11922
|
var tmp_1;
|
|
11917
11923
|
// Inline function 'kotlin.text.isEmpty' call
|
|
11918
|
-
var this_0 = this.
|
|
11924
|
+
var this_0 = this.ej_1;
|
|
11919
11925
|
if (charSequenceLength(this_0) === 0) {
|
|
11920
11926
|
// Inline function 'kotlin.text.isEmpty' call
|
|
11921
|
-
var this_1 = this.
|
|
11927
|
+
var this_1 = this.fj_1;
|
|
11922
11928
|
tmp_1 = charSequenceLength(this_1) === 0;
|
|
11923
11929
|
} else {
|
|
11924
11930
|
tmp_1 = false;
|
|
11925
11931
|
}
|
|
11926
11932
|
if (tmp_1) {
|
|
11927
|
-
tmp_0 = this.
|
|
11933
|
+
tmp_0 = this.dj_1.length <= 1;
|
|
11928
11934
|
} else {
|
|
11929
11935
|
tmp_0 = false;
|
|
11930
11936
|
}
|
|
11931
|
-
tmp.
|
|
11932
|
-
this.
|
|
11937
|
+
tmp.hj_1 = tmp_0;
|
|
11938
|
+
this.ij_1 = isCaseSensitive(this.cj_1) || isCaseSensitive(this.dj_1) || isCaseSensitive(this.ej_1) || isCaseSensitive(this.fj_1);
|
|
11933
11939
|
}
|
|
11934
11940
|
protoOf(BytesHexFormat).toString = function () {
|
|
11935
11941
|
// Inline function 'kotlin.text.buildString' call
|
|
@@ -11938,49 +11944,49 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11938
11944
|
// Inline function 'kotlin.text.appendLine' call
|
|
11939
11945
|
this_0.d8('BytesHexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
11940
11946
|
// Inline function 'kotlin.text.appendLine' call
|
|
11941
|
-
this.
|
|
11947
|
+
this.jj(this_0, ' ').e8(_Char___init__impl__6a9atx(10));
|
|
11942
11948
|
this_0.d8(')');
|
|
11943
11949
|
return this_0.toString();
|
|
11944
11950
|
};
|
|
11945
|
-
protoOf(BytesHexFormat).
|
|
11951
|
+
protoOf(BytesHexFormat).jj = function (sb, indent) {
|
|
11946
11952
|
// Inline function 'kotlin.text.appendLine' call
|
|
11947
11953
|
// Inline function 'kotlin.text.appendLine' call
|
|
11948
|
-
sb.d8(indent).d8('bytesPerLine = ').sb(this.
|
|
11954
|
+
sb.d8(indent).d8('bytesPerLine = ').sb(this.aj_1).d8(',').e8(_Char___init__impl__6a9atx(10));
|
|
11949
11955
|
// Inline function 'kotlin.text.appendLine' call
|
|
11950
11956
|
// Inline function 'kotlin.text.appendLine' call
|
|
11951
|
-
sb.d8(indent).d8('bytesPerGroup = ').sb(this.
|
|
11957
|
+
sb.d8(indent).d8('bytesPerGroup = ').sb(this.bj_1).d8(',').e8(_Char___init__impl__6a9atx(10));
|
|
11952
11958
|
// Inline function 'kotlin.text.appendLine' call
|
|
11953
11959
|
// Inline function 'kotlin.text.appendLine' call
|
|
11954
|
-
sb.d8(indent).d8('groupSeparator = "').d8(this.
|
|
11960
|
+
sb.d8(indent).d8('groupSeparator = "').d8(this.cj_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
11955
11961
|
// Inline function 'kotlin.text.appendLine' call
|
|
11956
11962
|
// Inline function 'kotlin.text.appendLine' call
|
|
11957
|
-
sb.d8(indent).d8('byteSeparator = "').d8(this.
|
|
11963
|
+
sb.d8(indent).d8('byteSeparator = "').d8(this.dj_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
11958
11964
|
// Inline function 'kotlin.text.appendLine' call
|
|
11959
11965
|
// Inline function 'kotlin.text.appendLine' call
|
|
11960
|
-
sb.d8(indent).d8('bytePrefix = "').d8(this.
|
|
11961
|
-
sb.d8(indent).d8('byteSuffix = "').d8(this.
|
|
11966
|
+
sb.d8(indent).d8('bytePrefix = "').d8(this.ej_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
11967
|
+
sb.d8(indent).d8('byteSuffix = "').d8(this.fj_1).d8('"');
|
|
11962
11968
|
return sb;
|
|
11963
11969
|
};
|
|
11964
11970
|
function NumberHexFormat(prefix, suffix, removeLeadingZeros, minLength) {
|
|
11965
11971
|
Companion_getInstance_21();
|
|
11966
|
-
this.
|
|
11967
|
-
this.
|
|
11968
|
-
this.
|
|
11969
|
-
this.
|
|
11972
|
+
this.ri_1 = prefix;
|
|
11973
|
+
this.si_1 = suffix;
|
|
11974
|
+
this.ti_1 = removeLeadingZeros;
|
|
11975
|
+
this.ui_1 = minLength;
|
|
11970
11976
|
var tmp = this;
|
|
11971
11977
|
var tmp_0;
|
|
11972
11978
|
// Inline function 'kotlin.text.isEmpty' call
|
|
11973
|
-
var this_0 = this.
|
|
11979
|
+
var this_0 = this.ri_1;
|
|
11974
11980
|
if (charSequenceLength(this_0) === 0) {
|
|
11975
11981
|
// Inline function 'kotlin.text.isEmpty' call
|
|
11976
|
-
var this_1 = this.
|
|
11982
|
+
var this_1 = this.si_1;
|
|
11977
11983
|
tmp_0 = charSequenceLength(this_1) === 0;
|
|
11978
11984
|
} else {
|
|
11979
11985
|
tmp_0 = false;
|
|
11980
11986
|
}
|
|
11981
|
-
tmp.
|
|
11982
|
-
this.
|
|
11983
|
-
this.
|
|
11987
|
+
tmp.vi_1 = tmp_0;
|
|
11988
|
+
this.wi_1 = (this.vi_1 && this.ui_1 === 1);
|
|
11989
|
+
this.xi_1 = isCaseSensitive(this.ri_1) || isCaseSensitive(this.si_1);
|
|
11984
11990
|
}
|
|
11985
11991
|
protoOf(NumberHexFormat).toString = function () {
|
|
11986
11992
|
// Inline function 'kotlin.text.buildString' call
|
|
@@ -11989,29 +11995,29 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
11989
11995
|
// Inline function 'kotlin.text.appendLine' call
|
|
11990
11996
|
this_0.d8('NumberHexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
11991
11997
|
// Inline function 'kotlin.text.appendLine' call
|
|
11992
|
-
this.
|
|
11998
|
+
this.jj(this_0, ' ').e8(_Char___init__impl__6a9atx(10));
|
|
11993
11999
|
this_0.d8(')');
|
|
11994
12000
|
return this_0.toString();
|
|
11995
12001
|
};
|
|
11996
|
-
protoOf(NumberHexFormat).
|
|
12002
|
+
protoOf(NumberHexFormat).jj = function (sb, indent) {
|
|
11997
12003
|
// Inline function 'kotlin.text.appendLine' call
|
|
11998
12004
|
// Inline function 'kotlin.text.appendLine' call
|
|
11999
|
-
sb.d8(indent).d8('prefix = "').d8(this.
|
|
12005
|
+
sb.d8(indent).d8('prefix = "').d8(this.ri_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
12000
12006
|
// Inline function 'kotlin.text.appendLine' call
|
|
12001
12007
|
// Inline function 'kotlin.text.appendLine' call
|
|
12002
|
-
sb.d8(indent).d8('suffix = "').d8(this.
|
|
12003
|
-
var tmp0 = sb.d8(indent).d8('removeLeadingZeros = ').rb(this.
|
|
12008
|
+
sb.d8(indent).d8('suffix = "').d8(this.si_1).d8('",').e8(_Char___init__impl__6a9atx(10));
|
|
12009
|
+
var tmp0 = sb.d8(indent).d8('removeLeadingZeros = ').rb(this.ti_1);
|
|
12004
12010
|
// Inline function 'kotlin.text.appendLine' call
|
|
12005
12011
|
var value = _Char___init__impl__6a9atx(44);
|
|
12006
12012
|
// Inline function 'kotlin.text.appendLine' call
|
|
12007
12013
|
tmp0.e8(value).e8(_Char___init__impl__6a9atx(10));
|
|
12008
|
-
sb.d8(indent).d8('minLength = ').sb(this.
|
|
12014
|
+
sb.d8(indent).d8('minLength = ').sb(this.ui_1);
|
|
12009
12015
|
return sb;
|
|
12010
12016
|
};
|
|
12011
12017
|
function Companion_22() {
|
|
12012
12018
|
Companion_instance_22 = this;
|
|
12013
|
-
this.
|
|
12014
|
-
this.
|
|
12019
|
+
this.mi_1 = new HexFormat(false, Companion_getInstance_20().yi_1, Companion_getInstance_21().zi_1);
|
|
12020
|
+
this.ni_1 = new HexFormat(true, Companion_getInstance_20().yi_1, Companion_getInstance_21().zi_1);
|
|
12015
12021
|
}
|
|
12016
12022
|
var Companion_instance_22;
|
|
12017
12023
|
function Companion_getInstance_22() {
|
|
@@ -12021,9 +12027,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12021
12027
|
}
|
|
12022
12028
|
function HexFormat(upperCase, bytes, number) {
|
|
12023
12029
|
Companion_getInstance_22();
|
|
12024
|
-
this.
|
|
12025
|
-
this.
|
|
12026
|
-
this.
|
|
12030
|
+
this.oi_1 = upperCase;
|
|
12031
|
+
this.pi_1 = bytes;
|
|
12032
|
+
this.qi_1 = number;
|
|
12027
12033
|
}
|
|
12028
12034
|
protoOf(HexFormat).toString = function () {
|
|
12029
12035
|
// Inline function 'kotlin.text.buildString' call
|
|
@@ -12033,17 +12039,17 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12033
12039
|
this_0.d8('HexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
12034
12040
|
// Inline function 'kotlin.text.appendLine' call
|
|
12035
12041
|
// Inline function 'kotlin.text.appendLine' call
|
|
12036
|
-
this_0.d8(' upperCase = ').rb(this.
|
|
12042
|
+
this_0.d8(' upperCase = ').rb(this.oi_1).d8(',').e8(_Char___init__impl__6a9atx(10));
|
|
12037
12043
|
// Inline function 'kotlin.text.appendLine' call
|
|
12038
12044
|
this_0.d8(' bytes = BytesHexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
12039
12045
|
// Inline function 'kotlin.text.appendLine' call
|
|
12040
|
-
this.
|
|
12046
|
+
this.pi_1.jj(this_0, ' ').e8(_Char___init__impl__6a9atx(10));
|
|
12041
12047
|
// Inline function 'kotlin.text.appendLine' call
|
|
12042
12048
|
this_0.d8(' ),').e8(_Char___init__impl__6a9atx(10));
|
|
12043
12049
|
// Inline function 'kotlin.text.appendLine' call
|
|
12044
12050
|
this_0.d8(' number = NumberHexFormat(').e8(_Char___init__impl__6a9atx(10));
|
|
12045
12051
|
// Inline function 'kotlin.text.appendLine' call
|
|
12046
|
-
this.
|
|
12052
|
+
this.qi_1.jj(this_0, ' ').e8(_Char___init__impl__6a9atx(10));
|
|
12047
12053
|
// Inline function 'kotlin.text.appendLine' call
|
|
12048
12054
|
this_0.d8(' )').e8(_Char___init__impl__6a9atx(10));
|
|
12049
12055
|
this_0.d8(')');
|
|
@@ -12706,60 +12712,60 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12706
12712
|
return toString_1(charSequenceSubSequence(_this__u8e3s4, range.e1(), range.d1() + 1 | 0));
|
|
12707
12713
|
}
|
|
12708
12714
|
function State() {
|
|
12709
|
-
this.
|
|
12710
|
-
this.
|
|
12711
|
-
this.
|
|
12715
|
+
this.kj_1 = 0;
|
|
12716
|
+
this.lj_1 = 1;
|
|
12717
|
+
this.mj_1 = 2;
|
|
12712
12718
|
}
|
|
12713
12719
|
var State_instance;
|
|
12714
12720
|
function State_getInstance() {
|
|
12715
12721
|
return State_instance;
|
|
12716
12722
|
}
|
|
12717
12723
|
function LinesIterator(string) {
|
|
12718
|
-
this.
|
|
12719
|
-
this.nj_1 = 0;
|
|
12724
|
+
this.nj_1 = string;
|
|
12720
12725
|
this.oj_1 = 0;
|
|
12721
12726
|
this.pj_1 = 0;
|
|
12722
12727
|
this.qj_1 = 0;
|
|
12728
|
+
this.rj_1 = 0;
|
|
12723
12729
|
}
|
|
12724
12730
|
protoOf(LinesIterator).m = function () {
|
|
12725
|
-
if (!(this.
|
|
12726
|
-
return this.
|
|
12731
|
+
if (!(this.oj_1 === 0)) {
|
|
12732
|
+
return this.oj_1 === 1;
|
|
12727
12733
|
}
|
|
12728
|
-
if (this.
|
|
12729
|
-
this.
|
|
12734
|
+
if (this.rj_1 < 0) {
|
|
12735
|
+
this.oj_1 = 2;
|
|
12730
12736
|
return false;
|
|
12731
12737
|
}
|
|
12732
12738
|
var _delimiterLength = -1;
|
|
12733
|
-
var _delimiterStartIndex = charSequenceLength(this.
|
|
12734
|
-
var inductionVariable = this.
|
|
12735
|
-
var last = charSequenceLength(this.
|
|
12739
|
+
var _delimiterStartIndex = charSequenceLength(this.nj_1);
|
|
12740
|
+
var inductionVariable = this.pj_1;
|
|
12741
|
+
var last = charSequenceLength(this.nj_1);
|
|
12736
12742
|
if (inductionVariable < last)
|
|
12737
12743
|
$l$loop: do {
|
|
12738
12744
|
var idx = inductionVariable;
|
|
12739
12745
|
inductionVariable = inductionVariable + 1 | 0;
|
|
12740
|
-
var c = charSequenceGet(this.
|
|
12746
|
+
var c = charSequenceGet(this.nj_1, idx);
|
|
12741
12747
|
if (c === _Char___init__impl__6a9atx(10) || c === _Char___init__impl__6a9atx(13)) {
|
|
12742
|
-
_delimiterLength = c === _Char___init__impl__6a9atx(13) && (idx + 1 | 0) < charSequenceLength(this.
|
|
12748
|
+
_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;
|
|
12743
12749
|
_delimiterStartIndex = idx;
|
|
12744
12750
|
break $l$loop;
|
|
12745
12751
|
}
|
|
12746
12752
|
}
|
|
12747
12753
|
while (inductionVariable < last);
|
|
12748
|
-
this.
|
|
12749
|
-
this.
|
|
12750
|
-
this.
|
|
12754
|
+
this.oj_1 = 1;
|
|
12755
|
+
this.rj_1 = _delimiterLength;
|
|
12756
|
+
this.qj_1 = _delimiterStartIndex;
|
|
12751
12757
|
return true;
|
|
12752
12758
|
};
|
|
12753
12759
|
protoOf(LinesIterator).n = function () {
|
|
12754
12760
|
if (!this.m()) {
|
|
12755
12761
|
throw NoSuchElementException_init_$Create$();
|
|
12756
12762
|
}
|
|
12757
|
-
this.
|
|
12758
|
-
var lastIndex = this.
|
|
12759
|
-
var firstIndex = this.
|
|
12760
|
-
this.
|
|
12763
|
+
this.oj_1 = 0;
|
|
12764
|
+
var lastIndex = this.qj_1;
|
|
12765
|
+
var firstIndex = this.pj_1;
|
|
12766
|
+
this.pj_1 = this.qj_1 + this.rj_1 | 0;
|
|
12761
12767
|
// Inline function 'kotlin.text.substring' call
|
|
12762
|
-
var this_0 = this.
|
|
12768
|
+
var this_0 = this.nj_1;
|
|
12763
12769
|
return toString_1(charSequenceSubSequence(this_0, firstIndex, lastIndex));
|
|
12764
12770
|
};
|
|
12765
12771
|
function startsWith_2(_this__u8e3s4, prefix, ignoreCase) {
|
|
@@ -12852,73 +12858,73 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12852
12858
|
return Unit_instance;
|
|
12853
12859
|
}
|
|
12854
12860
|
function calcNext_0($this) {
|
|
12855
|
-
if ($this.
|
|
12856
|
-
$this.
|
|
12857
|
-
$this.
|
|
12861
|
+
if ($this.uj_1 < 0) {
|
|
12862
|
+
$this.sj_1 = 0;
|
|
12863
|
+
$this.vj_1 = null;
|
|
12858
12864
|
} else {
|
|
12859
12865
|
var tmp;
|
|
12860
12866
|
var tmp_0;
|
|
12861
|
-
if ($this.
|
|
12862
|
-
$this.
|
|
12863
|
-
tmp_0 = $this.
|
|
12867
|
+
if ($this.xj_1.ak_1 > 0) {
|
|
12868
|
+
$this.wj_1 = $this.wj_1 + 1 | 0;
|
|
12869
|
+
tmp_0 = $this.wj_1 >= $this.xj_1.ak_1;
|
|
12864
12870
|
} else {
|
|
12865
12871
|
tmp_0 = false;
|
|
12866
12872
|
}
|
|
12867
12873
|
if (tmp_0) {
|
|
12868
12874
|
tmp = true;
|
|
12869
12875
|
} else {
|
|
12870
|
-
tmp = $this.
|
|
12876
|
+
tmp = $this.uj_1 > charSequenceLength($this.xj_1.yj_1);
|
|
12871
12877
|
}
|
|
12872
12878
|
if (tmp) {
|
|
12873
|
-
$this.
|
|
12874
|
-
$this.
|
|
12879
|
+
$this.vj_1 = numberRangeToNumber($this.tj_1, get_lastIndex_3($this.xj_1.yj_1));
|
|
12880
|
+
$this.uj_1 = -1;
|
|
12875
12881
|
} else {
|
|
12876
|
-
var match = $this.
|
|
12882
|
+
var match = $this.xj_1.bk_1($this.xj_1.yj_1, $this.uj_1);
|
|
12877
12883
|
if (match == null) {
|
|
12878
|
-
$this.
|
|
12879
|
-
$this.
|
|
12884
|
+
$this.vj_1 = numberRangeToNumber($this.tj_1, get_lastIndex_3($this.xj_1.yj_1));
|
|
12885
|
+
$this.uj_1 = -1;
|
|
12880
12886
|
} else {
|
|
12881
12887
|
var index = match.oe();
|
|
12882
12888
|
var length = match.pe();
|
|
12883
|
-
$this.
|
|
12884
|
-
$this.
|
|
12885
|
-
$this.
|
|
12889
|
+
$this.vj_1 = until($this.tj_1, index);
|
|
12890
|
+
$this.tj_1 = index + length | 0;
|
|
12891
|
+
$this.uj_1 = $this.tj_1 + (length === 0 ? 1 : 0) | 0;
|
|
12886
12892
|
}
|
|
12887
12893
|
}
|
|
12888
|
-
$this.
|
|
12894
|
+
$this.sj_1 = 1;
|
|
12889
12895
|
}
|
|
12890
12896
|
}
|
|
12891
12897
|
function DelimitedRangesSequence$iterator$1(this$0) {
|
|
12892
|
-
this.
|
|
12893
|
-
this.
|
|
12894
|
-
this.
|
|
12895
|
-
this.
|
|
12896
|
-
this.
|
|
12897
|
-
this.
|
|
12898
|
+
this.xj_1 = this$0;
|
|
12899
|
+
this.sj_1 = -1;
|
|
12900
|
+
this.tj_1 = coerceIn_3(this$0.zj_1, 0, charSequenceLength(this$0.yj_1));
|
|
12901
|
+
this.uj_1 = this.tj_1;
|
|
12902
|
+
this.vj_1 = null;
|
|
12903
|
+
this.wj_1 = 0;
|
|
12898
12904
|
}
|
|
12899
12905
|
protoOf(DelimitedRangesSequence$iterator$1).n = function () {
|
|
12900
|
-
if (this.
|
|
12906
|
+
if (this.sj_1 === -1) {
|
|
12901
12907
|
calcNext_0(this);
|
|
12902
12908
|
}
|
|
12903
|
-
if (this.
|
|
12909
|
+
if (this.sj_1 === 0)
|
|
12904
12910
|
throw NoSuchElementException_init_$Create$();
|
|
12905
|
-
var tmp = this.
|
|
12911
|
+
var tmp = this.vj_1;
|
|
12906
12912
|
var result = tmp instanceof IntRange ? tmp : THROW_CCE();
|
|
12907
|
-
this.
|
|
12908
|
-
this.
|
|
12913
|
+
this.vj_1 = null;
|
|
12914
|
+
this.sj_1 = -1;
|
|
12909
12915
|
return result;
|
|
12910
12916
|
};
|
|
12911
12917
|
protoOf(DelimitedRangesSequence$iterator$1).m = function () {
|
|
12912
|
-
if (this.
|
|
12918
|
+
if (this.sj_1 === -1) {
|
|
12913
12919
|
calcNext_0(this);
|
|
12914
12920
|
}
|
|
12915
|
-
return this.
|
|
12921
|
+
return this.sj_1 === 1;
|
|
12916
12922
|
};
|
|
12917
12923
|
function DelimitedRangesSequence(input, startIndex, limit, getNextMatch) {
|
|
12918
|
-
this.
|
|
12919
|
-
this.
|
|
12920
|
-
this.
|
|
12921
|
-
this.
|
|
12924
|
+
this.yj_1 = input;
|
|
12925
|
+
this.zj_1 = startIndex;
|
|
12926
|
+
this.ak_1 = limit;
|
|
12927
|
+
this.bk_1 = getNextMatch;
|
|
12922
12928
|
}
|
|
12923
12929
|
protoOf(DelimitedRangesSequence).l = function () {
|
|
12924
12930
|
return new DelimitedRangesSequence$iterator$1(this);
|
|
@@ -12989,10 +12995,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12989
12995
|
return toList_2(lineSequence(_this__u8e3s4));
|
|
12990
12996
|
}
|
|
12991
12997
|
function lineSequence$$inlined$Sequence$1($this_lineSequence) {
|
|
12992
|
-
this.
|
|
12998
|
+
this.ck_1 = $this_lineSequence;
|
|
12993
12999
|
}
|
|
12994
13000
|
protoOf(lineSequence$$inlined$Sequence$1).l = function () {
|
|
12995
|
-
return new LinesIterator(this.
|
|
13001
|
+
return new LinesIterator(this.ck_1);
|
|
12996
13002
|
};
|
|
12997
13003
|
function rangesDelimitedBy$lambda($delimitersList, $ignoreCase) {
|
|
12998
13004
|
return function ($this$DelimitedRangesSequence, currentIndex) {
|
|
@@ -13016,7 +13022,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13016
13022
|
}
|
|
13017
13023
|
function System() {
|
|
13018
13024
|
}
|
|
13019
|
-
protoOf(System).
|
|
13025
|
+
protoOf(System).dk = function () {
|
|
13020
13026
|
return systemClockNow();
|
|
13021
13027
|
};
|
|
13022
13028
|
var System_instance;
|
|
@@ -13060,11 +13066,11 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13060
13066
|
}
|
|
13061
13067
|
function Companion_23() {
|
|
13062
13068
|
Companion_instance_23 = this;
|
|
13063
|
-
this.
|
|
13064
|
-
this.
|
|
13065
|
-
this.
|
|
13069
|
+
this.ek_1 = _Duration___init__impl__kdtzql(new Long(0, 0));
|
|
13070
|
+
this.fk_1 = durationOfMillis(new Long(-1, 1073741823));
|
|
13071
|
+
this.gk_1 = durationOfMillis(new Long(1, -1073741824));
|
|
13066
13072
|
}
|
|
13067
|
-
protoOf(Companion_23).
|
|
13073
|
+
protoOf(Companion_23).hk = function (value) {
|
|
13068
13074
|
var tmp;
|
|
13069
13075
|
try {
|
|
13070
13076
|
tmp = parseDuration(value, true);
|
|
@@ -13140,7 +13146,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13140
13146
|
return tmp;
|
|
13141
13147
|
}
|
|
13142
13148
|
if (scale === 0)
|
|
13143
|
-
return Companion_getInstance_23().
|
|
13149
|
+
return Companion_getInstance_23().ek_1;
|
|
13144
13150
|
var value = _get_value__a43j40_0($this);
|
|
13145
13151
|
// Inline function 'kotlin.Long.times' call
|
|
13146
13152
|
var result = multiply(value, fromInt(scale));
|
|
@@ -13189,7 +13195,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13189
13195
|
if (tmp_5) {
|
|
13190
13196
|
tmp_4 = durationOfMillis(coerceIn_1(totalMillis, longRangeToLong(new Long(1, -1073741824), new Long(-1, 1073741823))));
|
|
13191
13197
|
} else {
|
|
13192
|
-
tmp_4 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().
|
|
13198
|
+
tmp_4 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().fk_1 : Companion_getInstance_23().gk_1;
|
|
13193
13199
|
}
|
|
13194
13200
|
tmp_3 = tmp_4;
|
|
13195
13201
|
}
|
|
@@ -13203,7 +13209,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13203
13209
|
if (equalsLong(tmp$ret$7, value)) {
|
|
13204
13210
|
tmp_6 = durationOfMillis(coerceIn_1(result, longRangeToLong(new Long(1, -1073741824), new Long(-1, 1073741823))));
|
|
13205
13211
|
} else {
|
|
13206
|
-
tmp_6 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().
|
|
13212
|
+
tmp_6 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().fk_1 : Companion_getInstance_23().gk_1;
|
|
13207
13213
|
}
|
|
13208
13214
|
tmp_0 = tmp_6;
|
|
13209
13215
|
}
|
|
@@ -13216,7 +13222,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13216
13222
|
return compare(_get_rawValue__5zfu4e($this), new Long(0, 0)) > 0;
|
|
13217
13223
|
}
|
|
13218
13224
|
function Duration__isInfinite_impl_tsn9y3($this) {
|
|
13219
|
-
return equalsLong(_get_rawValue__5zfu4e($this), _get_rawValue__5zfu4e(Companion_getInstance_23().
|
|
13225
|
+
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));
|
|
13220
13226
|
}
|
|
13221
13227
|
function Duration__isFinite_impl_rzjsps($this) {
|
|
13222
13228
|
return !Duration__isInfinite_impl_tsn9y3($this);
|
|
@@ -13235,7 +13241,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13235
13241
|
return Duration__isNegative_impl_pbysfa($this) ? -r | 0 : r;
|
|
13236
13242
|
}
|
|
13237
13243
|
function Duration__compareTo_impl_pchp0f_0($this, other) {
|
|
13238
|
-
return Duration__compareTo_impl_pchp0f($this.
|
|
13244
|
+
return Duration__compareTo_impl_pchp0f($this.ik_1, other instanceof Duration ? other.ik_1 : THROW_CCE());
|
|
13239
13245
|
}
|
|
13240
13246
|
function _Duration___get_hoursComponent__impl__7hllxa($this) {
|
|
13241
13247
|
var tmp;
|
|
@@ -13293,7 +13299,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13293
13299
|
}
|
|
13294
13300
|
function Duration__toLong_impl_shr43i($this, unit) {
|
|
13295
13301
|
var tmp0_subject = _get_rawValue__5zfu4e($this);
|
|
13296
|
-
return equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().
|
|
13302
|
+
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);
|
|
13297
13303
|
}
|
|
13298
13304
|
function _Duration___get_inWholeDays__impl__7bvpxz($this) {
|
|
13299
13305
|
return Duration__toLong_impl_shr43i($this, DurationUnit_DAYS_getInstance());
|
|
@@ -13315,9 +13321,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13315
13321
|
var tmp;
|
|
13316
13322
|
if (equalsLong(tmp0_subject, new Long(0, 0))) {
|
|
13317
13323
|
tmp = '0s';
|
|
13318
|
-
} else if (equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().ek_1))) {
|
|
13319
|
-
tmp = 'Infinity';
|
|
13320
13324
|
} else if (equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().fk_1))) {
|
|
13325
|
+
tmp = 'Infinity';
|
|
13326
|
+
} else if (equalsLong(tmp0_subject, _get_rawValue__5zfu4e(Companion_getInstance_23().gk_1))) {
|
|
13321
13327
|
tmp = '-Infinity';
|
|
13322
13328
|
} else {
|
|
13323
13329
|
var isNegative = Duration__isNegative_impl_pbysfa($this);
|
|
@@ -13452,29 +13458,29 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13452
13458
|
function Duration__equals_impl_ygj6w6($this, other) {
|
|
13453
13459
|
if (!(other instanceof Duration))
|
|
13454
13460
|
return false;
|
|
13455
|
-
var tmp0_other_with_cast = other.
|
|
13461
|
+
var tmp0_other_with_cast = other.ik_1;
|
|
13456
13462
|
if (!equalsLong($this, tmp0_other_with_cast))
|
|
13457
13463
|
return false;
|
|
13458
13464
|
return true;
|
|
13459
13465
|
}
|
|
13460
13466
|
function Duration(rawValue) {
|
|
13461
13467
|
Companion_getInstance_23();
|
|
13462
|
-
this.
|
|
13468
|
+
this.ik_1 = rawValue;
|
|
13463
13469
|
}
|
|
13464
|
-
protoOf(Duration).
|
|
13465
|
-
return Duration__compareTo_impl_pchp0f(this.
|
|
13470
|
+
protoOf(Duration).jk = function (other) {
|
|
13471
|
+
return Duration__compareTo_impl_pchp0f(this.ik_1, other);
|
|
13466
13472
|
};
|
|
13467
13473
|
protoOf(Duration).d = function (other) {
|
|
13468
13474
|
return Duration__compareTo_impl_pchp0f_0(this, other);
|
|
13469
13475
|
};
|
|
13470
13476
|
protoOf(Duration).toString = function () {
|
|
13471
|
-
return Duration__toString_impl_8d916b(this.
|
|
13477
|
+
return Duration__toString_impl_8d916b(this.ik_1);
|
|
13472
13478
|
};
|
|
13473
13479
|
protoOf(Duration).hashCode = function () {
|
|
13474
|
-
return Duration__hashCode_impl_u4exz6(this.
|
|
13480
|
+
return Duration__hashCode_impl_u4exz6(this.ik_1);
|
|
13475
13481
|
};
|
|
13476
13482
|
protoOf(Duration).equals = function (other) {
|
|
13477
|
-
return Duration__equals_impl_ygj6w6(this.
|
|
13483
|
+
return Duration__equals_impl_ygj6w6(this.ik_1, other);
|
|
13478
13484
|
};
|
|
13479
13485
|
function durationOfMillis(normalMillis) {
|
|
13480
13486
|
// Inline function 'kotlin.Long.plus' call
|
|
@@ -13522,7 +13528,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13522
13528
|
if (length === 0)
|
|
13523
13529
|
throw IllegalArgumentException_init_$Create$_0('The string is empty');
|
|
13524
13530
|
var index = 0;
|
|
13525
|
-
var result = Companion_getInstance_23().
|
|
13531
|
+
var result = Companion_getInstance_23().ek_1;
|
|
13526
13532
|
var infinityString = 'Infinity';
|
|
13527
13533
|
var tmp0_subject = charCodeAt(value, index);
|
|
13528
13534
|
if (tmp0_subject === _Char___init__impl__6a9atx(43) || tmp0_subject === _Char___init__impl__6a9atx(45)) {
|
|
@@ -13610,7 +13616,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13610
13616
|
var b = infinityString.length;
|
|
13611
13617
|
var tmp$ret$5 = Math.max(tmp0, b);
|
|
13612
13618
|
if (regionMatches(value, tmp_2, infinityString, 0, tmp$ret$5, true)) {
|
|
13613
|
-
result = Companion_getInstance_23().
|
|
13619
|
+
result = Companion_getInstance_23().fk_1;
|
|
13614
13620
|
} else {
|
|
13615
13621
|
var prevUnit_0 = null;
|
|
13616
13622
|
var afterFirst = false;
|
|
@@ -13881,9 +13887,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13881
13887
|
var this_0 = add(r, bitwiseAnd(other_0, shiftRight(bitwiseAnd(bitwiseXor(r, other_0), bitwiseOr(r, negate(r))), 63)));
|
|
13882
13888
|
var tmp$ret$2 = multiply(this_0, fromInt(1000000));
|
|
13883
13889
|
var nanosecondsOfSecond = convertToInt(tmp$ret$2);
|
|
13884
|
-
return compare(epochSeconds, new Long(342103040, -7347440)) < 0 ? this.oc_1 : compare(epochSeconds, new Long(-90867457, 7347410)) > 0 ? this.pc_1 : this.
|
|
13890
|
+
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);
|
|
13885
13891
|
};
|
|
13886
|
-
protoOf(Companion_24).
|
|
13892
|
+
protoOf(Companion_24).lk = function (epochSeconds, nanosecondAdjustment) {
|
|
13887
13893
|
// Inline function 'kotlin.floorDiv' call
|
|
13888
13894
|
var other = new Long(1000000000, 0);
|
|
13889
13895
|
var q = divide(nanosecondAdjustment, other);
|
|
@@ -13913,15 +13919,15 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13913
13919
|
}
|
|
13914
13920
|
return tmp;
|
|
13915
13921
|
};
|
|
13916
|
-
protoOf(Companion_24).
|
|
13922
|
+
protoOf(Companion_24).mk = function (epochSeconds, nanosecondAdjustment, $super) {
|
|
13917
13923
|
nanosecondAdjustment = nanosecondAdjustment === VOID ? new Long(0, 0) : nanosecondAdjustment;
|
|
13918
|
-
return $super === VOID ? this.
|
|
13924
|
+
return $super === VOID ? this.lk(epochSeconds, nanosecondAdjustment) : $super.lk.call(this, epochSeconds, nanosecondAdjustment);
|
|
13919
13925
|
};
|
|
13920
|
-
protoOf(Companion_24).
|
|
13921
|
-
return this.
|
|
13926
|
+
protoOf(Companion_24).kk = function (epochSeconds, nanosecondAdjustment) {
|
|
13927
|
+
return this.lk(epochSeconds, fromInt(nanosecondAdjustment));
|
|
13922
13928
|
};
|
|
13923
|
-
protoOf(Companion_24).
|
|
13924
|
-
return parseIso(input).
|
|
13929
|
+
protoOf(Companion_24).nk = function (input) {
|
|
13930
|
+
return parseIso(input).ok();
|
|
13925
13931
|
};
|
|
13926
13932
|
var Companion_instance_24;
|
|
13927
13933
|
function Companion_getInstance_24() {
|
|
@@ -13931,18 +13937,18 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13931
13937
|
}
|
|
13932
13938
|
function Instant(epochSeconds, nanosecondsOfSecond) {
|
|
13933
13939
|
Companion_getInstance_24();
|
|
13934
|
-
this.
|
|
13935
|
-
this.
|
|
13936
|
-
var containsArg = this.
|
|
13940
|
+
this.pk_1 = epochSeconds;
|
|
13941
|
+
this.qk_1 = nanosecondsOfSecond;
|
|
13942
|
+
var containsArg = this.pk_1;
|
|
13937
13943
|
// Inline function 'kotlin.require' call
|
|
13938
13944
|
if (!(compare(new Long(342103040, -7347440), containsArg) <= 0 ? compare(containsArg, new Long(-90867457, 7347410)) <= 0 : false)) {
|
|
13939
13945
|
var message = 'Instant exceeds minimum or maximum instant';
|
|
13940
13946
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
13941
13947
|
}
|
|
13942
13948
|
}
|
|
13943
|
-
protoOf(Instant).
|
|
13944
|
-
if (compare(this.
|
|
13945
|
-
var tmp0 = this.
|
|
13949
|
+
protoOf(Instant).rk = function () {
|
|
13950
|
+
if (compare(this.pk_1, new Long(0, 0)) >= 0) {
|
|
13951
|
+
var tmp0 = this.pk_1;
|
|
13946
13952
|
var tmp2 = new Long(1000, 0);
|
|
13947
13953
|
var tmp$ret$0;
|
|
13948
13954
|
$l$block_1: {
|
|
@@ -13967,7 +13973,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13967
13973
|
}
|
|
13968
13974
|
var millis = tmp$ret$0;
|
|
13969
13975
|
// Inline function 'kotlin.time.safeAddOrElse' call
|
|
13970
|
-
var b = fromInt(this.
|
|
13976
|
+
var b = fromInt(this.qk_1 / 1000000 | 0);
|
|
13971
13977
|
var sum = add(millis, b);
|
|
13972
13978
|
if (compare(bitwiseXor(millis, sum), new Long(0, 0)) < 0 && compare(bitwiseXor(millis, b), new Long(0, 0)) >= 0) {
|
|
13973
13979
|
return new Long(-1, 2147483647);
|
|
@@ -13975,7 +13981,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
13975
13981
|
return sum;
|
|
13976
13982
|
} else {
|
|
13977
13983
|
// Inline function 'kotlin.Long.plus' call
|
|
13978
|
-
var this_0 = this.
|
|
13984
|
+
var this_0 = this.pk_1;
|
|
13979
13985
|
var tmp0_0 = add(this_0, fromInt(1));
|
|
13980
13986
|
var tmp2_0 = new Long(1000, 0);
|
|
13981
13987
|
var tmp$ret$3;
|
|
@@ -14001,7 +14007,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14001
14007
|
}
|
|
14002
14008
|
var millis_0 = tmp$ret$3;
|
|
14003
14009
|
// Inline function 'kotlin.time.safeAddOrElse' call
|
|
14004
|
-
var b_0 = fromInt((this.
|
|
14010
|
+
var b_0 = fromInt((this.qk_1 / 1000000 | 0) - 1000 | 0);
|
|
14005
14011
|
var sum_0 = add(millis_0, b_0);
|
|
14006
14012
|
if (compare(bitwiseXor(millis_0, sum_0), new Long(0, 0)) < 0 && compare(bitwiseXor(millis_0, b_0), new Long(0, 0)) >= 0) {
|
|
14007
14013
|
return new Long(0, -2147483648);
|
|
@@ -14009,7 +14015,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14009
14015
|
return sum_0;
|
|
14010
14016
|
}
|
|
14011
14017
|
};
|
|
14012
|
-
protoOf(Instant).
|
|
14018
|
+
protoOf(Instant).sk = function (duration) {
|
|
14013
14019
|
// Inline function 'kotlin.time.Duration.toComponents' call
|
|
14014
14020
|
var tmp0 = _Duration___get_inWholeSeconds__impl__hpy7b3(duration);
|
|
14015
14021
|
var nanosecondsToAdd = _Duration___get_nanosecondsComponent__impl__nh19kq(duration);
|
|
@@ -14017,38 +14023,38 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14017
14023
|
return this;
|
|
14018
14024
|
}
|
|
14019
14025
|
// Inline function 'kotlin.time.safeAddOrElse' call
|
|
14020
|
-
var a = this.
|
|
14026
|
+
var a = this.pk_1;
|
|
14021
14027
|
var sum = add(a, tmp0);
|
|
14022
14028
|
if (compare(bitwiseXor(a, sum), new Long(0, 0)) < 0 && compare(bitwiseXor(a, tmp0), new Long(0, 0)) >= 0) {
|
|
14023
14029
|
return Duration__isPositive_impl_tvkkt2(duration) ? Companion_getInstance_24().pc_1 : Companion_getInstance_24().oc_1;
|
|
14024
14030
|
}
|
|
14025
14031
|
var newEpochSeconds = sum;
|
|
14026
|
-
var nanoAdjustment = this.
|
|
14027
|
-
return Companion_getInstance_24().
|
|
14032
|
+
var nanoAdjustment = this.qk_1 + nanosecondsToAdd | 0;
|
|
14033
|
+
return Companion_getInstance_24().kk(newEpochSeconds, nanoAdjustment);
|
|
14028
14034
|
};
|
|
14029
|
-
protoOf(Instant).
|
|
14030
|
-
return this.
|
|
14035
|
+
protoOf(Instant).tk = function (duration) {
|
|
14036
|
+
return this.sk(Duration__unaryMinus_impl_x2k1y0(duration));
|
|
14031
14037
|
};
|
|
14032
|
-
protoOf(Instant).
|
|
14038
|
+
protoOf(Instant).uk = function (other) {
|
|
14033
14039
|
Companion_getInstance_23();
|
|
14034
14040
|
// Inline function 'kotlin.time.Companion.seconds' call
|
|
14035
|
-
var this_0 = subtract(this.
|
|
14041
|
+
var this_0 = subtract(this.pk_1, other.pk_1);
|
|
14036
14042
|
var tmp = toDuration_0(this_0, DurationUnit_SECONDS_getInstance());
|
|
14037
14043
|
Companion_getInstance_23();
|
|
14038
14044
|
// Inline function 'kotlin.time.Companion.nanoseconds' call
|
|
14039
|
-
var this_1 = this.
|
|
14045
|
+
var this_1 = this.qk_1 - other.qk_1 | 0;
|
|
14040
14046
|
var tmp$ret$1 = toDuration(this_1, DurationUnit_NANOSECONDS_getInstance());
|
|
14041
14047
|
return Duration__plus_impl_yu9v8f(tmp, tmp$ret$1);
|
|
14042
14048
|
};
|
|
14043
|
-
protoOf(Instant).
|
|
14044
|
-
var s = this.
|
|
14049
|
+
protoOf(Instant).vk = function (other) {
|
|
14050
|
+
var s = this.pk_1.a3(other.pk_1);
|
|
14045
14051
|
if (!(s === 0)) {
|
|
14046
14052
|
return s;
|
|
14047
14053
|
}
|
|
14048
|
-
return compareTo(this.
|
|
14054
|
+
return compareTo(this.qk_1, other.qk_1);
|
|
14049
14055
|
};
|
|
14050
14056
|
protoOf(Instant).d = function (other) {
|
|
14051
|
-
return this.
|
|
14057
|
+
return this.vk(other instanceof Instant ? other : THROW_CCE());
|
|
14052
14058
|
};
|
|
14053
14059
|
protoOf(Instant).equals = function (other) {
|
|
14054
14060
|
var tmp;
|
|
@@ -14058,12 +14064,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14058
14064
|
var tmp_0;
|
|
14059
14065
|
var tmp_1;
|
|
14060
14066
|
if (other instanceof Instant) {
|
|
14061
|
-
tmp_1 = equalsLong(this.
|
|
14067
|
+
tmp_1 = equalsLong(this.pk_1, other.pk_1);
|
|
14062
14068
|
} else {
|
|
14063
14069
|
tmp_1 = false;
|
|
14064
14070
|
}
|
|
14065
14071
|
if (tmp_1) {
|
|
14066
|
-
tmp_0 = this.
|
|
14072
|
+
tmp_0 = this.qk_1 === other.qk_1;
|
|
14067
14073
|
} else {
|
|
14068
14074
|
tmp_0 = false;
|
|
14069
14075
|
}
|
|
@@ -14072,7 +14078,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14072
14078
|
return tmp;
|
|
14073
14079
|
};
|
|
14074
14080
|
protoOf(Instant).hashCode = function () {
|
|
14075
|
-
return this.
|
|
14081
|
+
return this.pk_1.hashCode() + imul(51, this.qk_1) | 0;
|
|
14076
14082
|
};
|
|
14077
14083
|
protoOf(Instant).toString = function () {
|
|
14078
14084
|
return formatIso(this);
|
|
@@ -14082,9 +14088,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14082
14088
|
// Inline function 'kotlin.text.buildString' call
|
|
14083
14089
|
// Inline function 'kotlin.apply' call
|
|
14084
14090
|
var this_0 = StringBuilder_init_$Create$_0();
|
|
14085
|
-
var ldt = Companion_instance_25.
|
|
14091
|
+
var ldt = Companion_instance_25.wk(instant);
|
|
14086
14092
|
// Inline function 'kotlin.run' call
|
|
14087
|
-
var number = ldt.
|
|
14093
|
+
var number = ldt.xk_1;
|
|
14088
14094
|
var tmp;
|
|
14089
14095
|
// Inline function 'kotlin.math.absoluteValue' call
|
|
14090
14096
|
if (abs_0(number) < 1000) {
|
|
@@ -14104,43 +14110,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14104
14110
|
tmp = this_0.sb(number);
|
|
14105
14111
|
}
|
|
14106
14112
|
this_0.e8(_Char___init__impl__6a9atx(45));
|
|
14107
|
-
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.xk_1);
|
|
14108
|
-
this_0.e8(_Char___init__impl__6a9atx(45));
|
|
14109
14113
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.yk_1);
|
|
14110
|
-
this_0.e8(_Char___init__impl__6a9atx(
|
|
14114
|
+
this_0.e8(_Char___init__impl__6a9atx(45));
|
|
14111
14115
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.zk_1);
|
|
14112
|
-
this_0.e8(_Char___init__impl__6a9atx(
|
|
14116
|
+
this_0.e8(_Char___init__impl__6a9atx(84));
|
|
14113
14117
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.al_1);
|
|
14114
14118
|
this_0.e8(_Char___init__impl__6a9atx(58));
|
|
14115
14119
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.bl_1);
|
|
14116
|
-
|
|
14120
|
+
this_0.e8(_Char___init__impl__6a9atx(58));
|
|
14121
|
+
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.cl_1);
|
|
14122
|
+
if (!(ldt.dl_1 === 0)) {
|
|
14117
14123
|
this_0.e8(_Char___init__impl__6a9atx(46));
|
|
14118
14124
|
var zerosToStrip = 0;
|
|
14119
|
-
while ((ldt.
|
|
14125
|
+
while ((ldt.dl_1 % get_POWERS_OF_TEN()[zerosToStrip + 1 | 0] | 0) === 0) {
|
|
14120
14126
|
zerosToStrip = zerosToStrip + 1 | 0;
|
|
14121
14127
|
}
|
|
14122
14128
|
zerosToStrip = zerosToStrip - (zerosToStrip % 3 | 0) | 0;
|
|
14123
|
-
var numberToOutput = ldt.
|
|
14129
|
+
var numberToOutput = ldt.dl_1 / get_POWERS_OF_TEN()[zerosToStrip] | 0;
|
|
14124
14130
|
this_0.d8(substring_0((numberToOutput + get_POWERS_OF_TEN()[9 - zerosToStrip | 0] | 0).toString(), 1));
|
|
14125
14131
|
}
|
|
14126
14132
|
this_0.e8(_Char___init__impl__6a9atx(90));
|
|
14127
14133
|
return this_0.toString();
|
|
14128
14134
|
}
|
|
14129
14135
|
function Success(epochSeconds, nanosecondsOfSecond) {
|
|
14130
|
-
this.
|
|
14131
|
-
this.
|
|
14136
|
+
this.el_1 = epochSeconds;
|
|
14137
|
+
this.fl_1 = nanosecondsOfSecond;
|
|
14132
14138
|
}
|
|
14133
|
-
protoOf(Success).
|
|
14134
|
-
if (compare(this.
|
|
14135
|
-
throw new InstantFormatException('The parsed date is outside the range representable by Instant (Unix epoch second ' + this.
|
|
14136
|
-
return Companion_getInstance_24().
|
|
14139
|
+
protoOf(Success).ok = function () {
|
|
14140
|
+
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)
|
|
14141
|
+
throw new InstantFormatException('The parsed date is outside the range representable by Instant (Unix epoch second ' + this.el_1.toString() + ')');
|
|
14142
|
+
return Companion_getInstance_24().kk(this.el_1, this.fl_1);
|
|
14137
14143
|
};
|
|
14138
14144
|
function Failure(error, input) {
|
|
14139
|
-
this.
|
|
14140
|
-
this.
|
|
14145
|
+
this.gl_1 = error;
|
|
14146
|
+
this.hl_1 = input;
|
|
14141
14147
|
}
|
|
14142
|
-
protoOf(Failure).
|
|
14143
|
-
throw new InstantFormatException(this.
|
|
14148
|
+
protoOf(Failure).ok = function () {
|
|
14149
|
+
throw new InstantFormatException(this.gl_1 + ' when parsing an Instant from "' + truncateForErrorMessage(this.hl_1, 64) + '"');
|
|
14144
14150
|
};
|
|
14145
14151
|
function parseIso(isoString) {
|
|
14146
14152
|
_init_properties_Instant_kt__2myitt();
|
|
@@ -14392,7 +14398,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14392
14398
|
var this_0 = new UnboundLocalDateTime(year, month, day, hour, minute, second, nanosecond);
|
|
14393
14399
|
// Inline function 'kotlin.run' call
|
|
14394
14400
|
// Inline function 'kotlin.run' call
|
|
14395
|
-
var y = fromInt(this_0.
|
|
14401
|
+
var y = fromInt(this_0.xk_1);
|
|
14396
14402
|
var total = multiply(numberToLong(365), y);
|
|
14397
14403
|
if (compare(y, new Long(0, 0)) >= 0) {
|
|
14398
14404
|
var tmp_15 = total;
|
|
@@ -14423,16 +14429,16 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14423
14429
|
}
|
|
14424
14430
|
var tmp0 = total;
|
|
14425
14431
|
// Inline function 'kotlin.Long.plus' call
|
|
14426
|
-
var other = (imul(367, this_0.
|
|
14432
|
+
var other = (imul(367, this_0.yk_1) - 362 | 0) / 12 | 0;
|
|
14427
14433
|
total = add(tmp0, fromInt(other));
|
|
14428
14434
|
var tmp0_0 = total;
|
|
14429
14435
|
// Inline function 'kotlin.Long.plus' call
|
|
14430
|
-
var other_0 = this_0.
|
|
14436
|
+
var other_0 = this_0.zk_1 - 1 | 0;
|
|
14431
14437
|
total = add(tmp0_0, fromInt(other_0));
|
|
14432
|
-
if (this_0.
|
|
14438
|
+
if (this_0.yk_1 > 2) {
|
|
14433
14439
|
var _unary__edvuaz = total;
|
|
14434
14440
|
total = subtract(_unary__edvuaz, get_ONE());
|
|
14435
|
-
if (!isLeapYear(this_0.
|
|
14441
|
+
if (!isLeapYear(this_0.xk_1)) {
|
|
14436
14442
|
var _unary__edvuaz_0 = total;
|
|
14437
14443
|
total = subtract(_unary__edvuaz_0, get_ONE());
|
|
14438
14444
|
}
|
|
@@ -14440,20 +14446,20 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14440
14446
|
// Inline function 'kotlin.Long.minus' call
|
|
14441
14447
|
var this_4 = total;
|
|
14442
14448
|
var epochDays = subtract(this_4, fromInt(719528));
|
|
14443
|
-
var daySeconds = (imul(this_0.
|
|
14449
|
+
var daySeconds = (imul(this_0.al_1, 3600) + imul(this_0.bl_1, 60) | 0) + this_0.cl_1 | 0;
|
|
14444
14450
|
// Inline function 'kotlin.Long.times' call
|
|
14445
14451
|
// Inline function 'kotlin.Long.plus' call
|
|
14446
14452
|
var this_5 = multiply(epochDays, fromInt(86400));
|
|
14447
14453
|
// Inline function 'kotlin.Long.minus' call
|
|
14448
14454
|
var this_6 = add(this_5, fromInt(daySeconds));
|
|
14449
14455
|
var epochSeconds = subtract(this_6, fromInt(offsetSeconds));
|
|
14450
|
-
var p1 = this_0.
|
|
14456
|
+
var p1 = this_0.dl_1;
|
|
14451
14457
|
return new Success(epochSeconds, p1);
|
|
14452
14458
|
}
|
|
14453
14459
|
function Companion_25() {
|
|
14454
14460
|
}
|
|
14455
|
-
protoOf(Companion_25).
|
|
14456
|
-
var localSecond = instant.
|
|
14461
|
+
protoOf(Companion_25).wk = function (instant) {
|
|
14462
|
+
var localSecond = instant.pk_1;
|
|
14457
14463
|
// Inline function 'kotlin.floorDiv' call
|
|
14458
14464
|
var other = new Long(86400, 0);
|
|
14459
14465
|
var q = divide(localSecond, other);
|
|
@@ -14544,23 +14550,23 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14544
14550
|
var secondWithoutHours = secsOfDay - imul(hours, 3600) | 0;
|
|
14545
14551
|
var minutes = secondWithoutHours / 60 | 0;
|
|
14546
14552
|
var second = secondWithoutHours - imul(minutes, 60) | 0;
|
|
14547
|
-
return new UnboundLocalDateTime(year, month, day, hours, minutes, second, instant.
|
|
14553
|
+
return new UnboundLocalDateTime(year, month, day, hours, minutes, second, instant.qk_1);
|
|
14548
14554
|
};
|
|
14549
14555
|
var Companion_instance_25;
|
|
14550
14556
|
function Companion_getInstance_25() {
|
|
14551
14557
|
return Companion_instance_25;
|
|
14552
14558
|
}
|
|
14553
14559
|
function UnboundLocalDateTime(year, month, day, hour, minute, second, nanosecond) {
|
|
14554
|
-
this.
|
|
14555
|
-
this.
|
|
14556
|
-
this.
|
|
14557
|
-
this.
|
|
14558
|
-
this.
|
|
14559
|
-
this.
|
|
14560
|
-
this.
|
|
14560
|
+
this.xk_1 = year;
|
|
14561
|
+
this.yk_1 = month;
|
|
14562
|
+
this.zk_1 = day;
|
|
14563
|
+
this.al_1 = hour;
|
|
14564
|
+
this.bl_1 = minute;
|
|
14565
|
+
this.cl_1 = second;
|
|
14566
|
+
this.dl_1 = nanosecond;
|
|
14561
14567
|
}
|
|
14562
14568
|
protoOf(UnboundLocalDateTime).toString = function () {
|
|
14563
|
-
return 'UnboundLocalDateTime(' + this.
|
|
14569
|
+
return 'UnboundLocalDateTime(' + this.xk_1 + '-' + this.yk_1 + '-' + this.zk_1 + ' ' + this.al_1 + ':' + this.bl_1 + ':' + this.cl_1 + '.' + this.dl_1 + ')';
|
|
14564
14570
|
};
|
|
14565
14571
|
function InstantFormatException(message) {
|
|
14566
14572
|
IllegalArgumentException_init_$Init$_0(message, this);
|
|
@@ -14665,40 +14671,40 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14665
14671
|
}
|
|
14666
14672
|
function invoke(_this__u8e3s4, value) {
|
|
14667
14673
|
_init_properties_DeepRecursive_kt__zbwcac();
|
|
14668
|
-
return (new DeepRecursiveScopeImpl(_this__u8e3s4.
|
|
14674
|
+
return (new DeepRecursiveScopeImpl(_this__u8e3s4.jl_1, value)).ol();
|
|
14669
14675
|
}
|
|
14670
14676
|
function DeepRecursiveFunction(block) {
|
|
14671
|
-
this.
|
|
14677
|
+
this.jl_1 = block;
|
|
14672
14678
|
}
|
|
14673
14679
|
function DeepRecursiveScopeImpl(block, value) {
|
|
14674
14680
|
DeepRecursiveScope.call(this);
|
|
14675
14681
|
var tmp = this;
|
|
14676
|
-
tmp.
|
|
14677
|
-
this.
|
|
14682
|
+
tmp.kl_1 = isSuspendFunction(block, 2) ? block : THROW_CCE();
|
|
14683
|
+
this.ll_1 = value;
|
|
14678
14684
|
var tmp_0 = this;
|
|
14679
|
-
tmp_0.
|
|
14680
|
-
this.
|
|
14685
|
+
tmp_0.ml_1 = isInterface(this, Continuation) ? this : THROW_CCE();
|
|
14686
|
+
this.nl_1 = get_UNDEFINED_RESULT();
|
|
14681
14687
|
}
|
|
14682
14688
|
protoOf(DeepRecursiveScopeImpl).y8 = function () {
|
|
14683
14689
|
return EmptyCoroutineContext_getInstance();
|
|
14684
14690
|
};
|
|
14685
|
-
protoOf(DeepRecursiveScopeImpl).
|
|
14686
|
-
this.
|
|
14687
|
-
this.
|
|
14691
|
+
protoOf(DeepRecursiveScopeImpl).pl = function (result) {
|
|
14692
|
+
this.ml_1 = null;
|
|
14693
|
+
this.nl_1 = result;
|
|
14688
14694
|
};
|
|
14689
14695
|
protoOf(DeepRecursiveScopeImpl).d9 = function (result) {
|
|
14690
|
-
return this.
|
|
14696
|
+
return this.pl(result);
|
|
14691
14697
|
};
|
|
14692
|
-
protoOf(DeepRecursiveScopeImpl).
|
|
14698
|
+
protoOf(DeepRecursiveScopeImpl).il = function (value, $completion) {
|
|
14693
14699
|
var tmp = this;
|
|
14694
|
-
tmp.
|
|
14695
|
-
this.
|
|
14700
|
+
tmp.ml_1 = isInterface($completion, Continuation) ? $completion : THROW_CCE();
|
|
14701
|
+
this.ll_1 = value;
|
|
14696
14702
|
return get_COROUTINE_SUSPENDED();
|
|
14697
14703
|
};
|
|
14698
|
-
protoOf(DeepRecursiveScopeImpl).
|
|
14704
|
+
protoOf(DeepRecursiveScopeImpl).ol = function () {
|
|
14699
14705
|
$l$loop: while (true) {
|
|
14700
|
-
var result = this.
|
|
14701
|
-
var tmp0_elvis_lhs = this.
|
|
14706
|
+
var result = this.nl_1;
|
|
14707
|
+
var tmp0_elvis_lhs = this.ml_1;
|
|
14702
14708
|
var tmp;
|
|
14703
14709
|
if (tmp0_elvis_lhs == null) {
|
|
14704
14710
|
// Inline function 'kotlin.getOrThrow' call
|
|
@@ -14713,9 +14719,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14713
14719
|
if (equals(get_UNDEFINED_RESULT(), result)) {
|
|
14714
14720
|
var tmp_1;
|
|
14715
14721
|
try {
|
|
14716
|
-
var tmp0 = this.
|
|
14722
|
+
var tmp0 = this.kl_1;
|
|
14717
14723
|
// Inline function 'kotlin.coroutines.intrinsics.startCoroutineUninterceptedOrReturn' call
|
|
14718
|
-
var param = this.
|
|
14724
|
+
var param = this.ll_1;
|
|
14719
14725
|
tmp_1 = startCoroutineUninterceptedOrReturnNonGeneratorVersion_0(tmp0, this, param, cont);
|
|
14720
14726
|
} catch ($p) {
|
|
14721
14727
|
var tmp_2;
|
|
@@ -14739,7 +14745,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14739
14745
|
cont.d9(tmp$ret$4);
|
|
14740
14746
|
}
|
|
14741
14747
|
} else {
|
|
14742
|
-
this.
|
|
14748
|
+
this.nl_1 = get_UNDEFINED_RESULT();
|
|
14743
14749
|
cont.d9(result);
|
|
14744
14750
|
}
|
|
14745
14751
|
}
|
|
@@ -14769,22 +14775,22 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14769
14775
|
Enum.call(this, name, ordinal);
|
|
14770
14776
|
}
|
|
14771
14777
|
function UnsafeLazyImpl(initializer) {
|
|
14772
|
-
this.
|
|
14773
|
-
this.
|
|
14778
|
+
this.ql_1 = initializer;
|
|
14779
|
+
this.rl_1 = UNINITIALIZED_VALUE_instance;
|
|
14774
14780
|
}
|
|
14775
14781
|
protoOf(UnsafeLazyImpl).x = function () {
|
|
14776
|
-
if (this.
|
|
14777
|
-
this.
|
|
14778
|
-
this.
|
|
14782
|
+
if (this.rl_1 === UNINITIALIZED_VALUE_instance) {
|
|
14783
|
+
this.rl_1 = ensureNotNull(this.ql_1)();
|
|
14784
|
+
this.ql_1 = null;
|
|
14779
14785
|
}
|
|
14780
|
-
var tmp = this.
|
|
14786
|
+
var tmp = this.rl_1;
|
|
14781
14787
|
return (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
14782
14788
|
};
|
|
14783
|
-
protoOf(UnsafeLazyImpl).
|
|
14784
|
-
return !(this.
|
|
14789
|
+
protoOf(UnsafeLazyImpl).sl = function () {
|
|
14790
|
+
return !(this.rl_1 === UNINITIALIZED_VALUE_instance);
|
|
14785
14791
|
};
|
|
14786
14792
|
protoOf(UnsafeLazyImpl).toString = function () {
|
|
14787
|
-
return this.
|
|
14793
|
+
return this.sl() ? toString_0(this.x()) : 'Lazy value not initialized yet.';
|
|
14788
14794
|
};
|
|
14789
14795
|
function UNINITIALIZED_VALUE() {
|
|
14790
14796
|
}
|
|
@@ -14817,7 +14823,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14817
14823
|
function Result__exceptionOrNull_impl_p6xea9($this) {
|
|
14818
14824
|
var tmp;
|
|
14819
14825
|
if (_Result___get_value__impl__bjfvqg($this) instanceof Failure_0) {
|
|
14820
|
-
tmp = _Result___get_value__impl__bjfvqg($this).
|
|
14826
|
+
tmp = _Result___get_value__impl__bjfvqg($this).tl_1;
|
|
14821
14827
|
} else {
|
|
14822
14828
|
tmp = null;
|
|
14823
14829
|
}
|
|
@@ -14839,22 +14845,22 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14839
14845
|
return Companion_instance_26;
|
|
14840
14846
|
}
|
|
14841
14847
|
function Failure_0(exception) {
|
|
14842
|
-
this.
|
|
14848
|
+
this.tl_1 = exception;
|
|
14843
14849
|
}
|
|
14844
14850
|
protoOf(Failure_0).equals = function (other) {
|
|
14845
14851
|
var tmp;
|
|
14846
14852
|
if (other instanceof Failure_0) {
|
|
14847
|
-
tmp = equals(this.
|
|
14853
|
+
tmp = equals(this.tl_1, other.tl_1);
|
|
14848
14854
|
} else {
|
|
14849
14855
|
tmp = false;
|
|
14850
14856
|
}
|
|
14851
14857
|
return tmp;
|
|
14852
14858
|
};
|
|
14853
14859
|
protoOf(Failure_0).hashCode = function () {
|
|
14854
|
-
return hashCode_0(this.
|
|
14860
|
+
return hashCode_0(this.tl_1);
|
|
14855
14861
|
};
|
|
14856
14862
|
protoOf(Failure_0).toString = function () {
|
|
14857
|
-
return 'Failure(' + this.
|
|
14863
|
+
return 'Failure(' + this.tl_1.toString() + ')';
|
|
14858
14864
|
};
|
|
14859
14865
|
function Result__hashCode_impl_d2zufp($this) {
|
|
14860
14866
|
return $this == null ? 0 : hashCode_0($this);
|
|
@@ -14862,22 +14868,22 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14862
14868
|
function Result__equals_impl_bxgmep($this, other) {
|
|
14863
14869
|
if (!(other instanceof Result))
|
|
14864
14870
|
return false;
|
|
14865
|
-
var tmp0_other_with_cast = other.
|
|
14871
|
+
var tmp0_other_with_cast = other.ul_1;
|
|
14866
14872
|
if (!equals($this, tmp0_other_with_cast))
|
|
14867
14873
|
return false;
|
|
14868
14874
|
return true;
|
|
14869
14875
|
}
|
|
14870
14876
|
function Result(value) {
|
|
14871
|
-
this.
|
|
14877
|
+
this.ul_1 = value;
|
|
14872
14878
|
}
|
|
14873
14879
|
protoOf(Result).toString = function () {
|
|
14874
|
-
return Result__toString_impl_yu5r8k(this.
|
|
14880
|
+
return Result__toString_impl_yu5r8k(this.ul_1);
|
|
14875
14881
|
};
|
|
14876
14882
|
protoOf(Result).hashCode = function () {
|
|
14877
|
-
return Result__hashCode_impl_d2zufp(this.
|
|
14883
|
+
return Result__hashCode_impl_d2zufp(this.ul_1);
|
|
14878
14884
|
};
|
|
14879
14885
|
protoOf(Result).equals = function (other) {
|
|
14880
|
-
return Result__equals_impl_bxgmep(this.
|
|
14886
|
+
return Result__equals_impl_bxgmep(this.ul_1, other);
|
|
14881
14887
|
};
|
|
14882
14888
|
function createFailure(exception) {
|
|
14883
14889
|
return new Failure_0(exception);
|
|
@@ -14885,7 +14891,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14885
14891
|
function throwOnFailure(_this__u8e3s4) {
|
|
14886
14892
|
var tmp = _Result___get_value__impl__bjfvqg(_this__u8e3s4);
|
|
14887
14893
|
if (tmp instanceof Failure_0)
|
|
14888
|
-
throw _Result___get_value__impl__bjfvqg(_this__u8e3s4).
|
|
14894
|
+
throw _Result___get_value__impl__bjfvqg(_this__u8e3s4).tl_1;
|
|
14889
14895
|
}
|
|
14890
14896
|
function NotImplementedError(message) {
|
|
14891
14897
|
message = message === VOID ? 'An operation is not implemented.' : message;
|
|
@@ -14925,35 +14931,35 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14925
14931
|
return new Pair(_this__u8e3s4, that);
|
|
14926
14932
|
}
|
|
14927
14933
|
function Triple(first, second, third) {
|
|
14928
|
-
this.
|
|
14929
|
-
this.
|
|
14930
|
-
this.
|
|
14934
|
+
this.vl_1 = first;
|
|
14935
|
+
this.wl_1 = second;
|
|
14936
|
+
this.xl_1 = third;
|
|
14931
14937
|
}
|
|
14932
14938
|
protoOf(Triple).toString = function () {
|
|
14933
|
-
return '(' + toString_0(this.
|
|
14939
|
+
return '(' + toString_0(this.vl_1) + ', ' + toString_0(this.wl_1) + ', ' + toString_0(this.xl_1) + ')';
|
|
14934
14940
|
};
|
|
14935
14941
|
protoOf(Triple).oe = function () {
|
|
14936
|
-
return this.ul_1;
|
|
14937
|
-
};
|
|
14938
|
-
protoOf(Triple).pe = function () {
|
|
14939
14942
|
return this.vl_1;
|
|
14940
14943
|
};
|
|
14941
|
-
protoOf(Triple).
|
|
14944
|
+
protoOf(Triple).pe = function () {
|
|
14942
14945
|
return this.wl_1;
|
|
14943
14946
|
};
|
|
14944
|
-
protoOf(Triple).yl = function (
|
|
14947
|
+
protoOf(Triple).yl = function () {
|
|
14948
|
+
return this.xl_1;
|
|
14949
|
+
};
|
|
14950
|
+
protoOf(Triple).zl = function (first, second, third) {
|
|
14945
14951
|
return new Triple(first, second, third);
|
|
14946
14952
|
};
|
|
14947
|
-
protoOf(Triple).
|
|
14948
|
-
first = first === VOID ? this.
|
|
14949
|
-
second = second === VOID ? this.
|
|
14950
|
-
third = third === VOID ? this.
|
|
14951
|
-
return $super === VOID ? this.
|
|
14953
|
+
protoOf(Triple).am = function (first, second, third, $super) {
|
|
14954
|
+
first = first === VOID ? this.vl_1 : first;
|
|
14955
|
+
second = second === VOID ? this.wl_1 : second;
|
|
14956
|
+
third = third === VOID ? this.xl_1 : third;
|
|
14957
|
+
return $super === VOID ? this.zl(first, second, third) : $super.zl.call(this, first, second, third);
|
|
14952
14958
|
};
|
|
14953
14959
|
protoOf(Triple).hashCode = function () {
|
|
14954
|
-
var result = this.
|
|
14955
|
-
result = imul(result, 31) + (this.vl_1 == null ? 0 : hashCode_0(this.vl_1)) | 0;
|
|
14960
|
+
var result = this.vl_1 == null ? 0 : hashCode_0(this.vl_1);
|
|
14956
14961
|
result = imul(result, 31) + (this.wl_1 == null ? 0 : hashCode_0(this.wl_1)) | 0;
|
|
14962
|
+
result = imul(result, 31) + (this.xl_1 == null ? 0 : hashCode_0(this.xl_1)) | 0;
|
|
14957
14963
|
return result;
|
|
14958
14964
|
};
|
|
14959
14965
|
protoOf(Triple).equals = function (other) {
|
|
@@ -14961,12 +14967,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14961
14967
|
return true;
|
|
14962
14968
|
if (!(other instanceof Triple))
|
|
14963
14969
|
return false;
|
|
14964
|
-
if (!equals(this.ul_1, other.ul_1))
|
|
14965
|
-
return false;
|
|
14966
14970
|
if (!equals(this.vl_1, other.vl_1))
|
|
14967
14971
|
return false;
|
|
14968
14972
|
if (!equals(this.wl_1, other.wl_1))
|
|
14969
14973
|
return false;
|
|
14974
|
+
if (!equals(this.xl_1, other.xl_1))
|
|
14975
|
+
return false;
|
|
14970
14976
|
return true;
|
|
14971
14977
|
};
|
|
14972
14978
|
function Companion_27() {
|
|
@@ -14984,7 +14990,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
14984
14990
|
}
|
|
14985
14991
|
return tmp;
|
|
14986
14992
|
};
|
|
14987
|
-
protoOf(Companion_27).
|
|
14993
|
+
protoOf(Companion_27).bm = function (uuidString) {
|
|
14988
14994
|
var tmp;
|
|
14989
14995
|
switch (uuidString.length) {
|
|
14990
14996
|
case 36:
|
|
@@ -15006,35 +15012,35 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15006
15012
|
}
|
|
15007
15013
|
function Uuid(mostSignificantBits, leastSignificantBits) {
|
|
15008
15014
|
Companion_getInstance_27();
|
|
15009
|
-
this.
|
|
15010
|
-
this.
|
|
15015
|
+
this.cm_1 = mostSignificantBits;
|
|
15016
|
+
this.dm_1 = leastSignificantBits;
|
|
15011
15017
|
}
|
|
15012
15018
|
protoOf(Uuid).toString = function () {
|
|
15013
|
-
return this.
|
|
15019
|
+
return this.em();
|
|
15014
15020
|
};
|
|
15015
|
-
protoOf(Uuid).
|
|
15021
|
+
protoOf(Uuid).em = function () {
|
|
15016
15022
|
var bytes = new Int8Array(36);
|
|
15017
|
-
formatBytesInto(this.
|
|
15023
|
+
formatBytesInto(this.cm_1, bytes, 0, 0, 4);
|
|
15018
15024
|
// Inline function 'kotlin.code' call
|
|
15019
15025
|
var this_0 = _Char___init__impl__6a9atx(45);
|
|
15020
15026
|
var tmp$ret$0 = Char__toInt_impl_vasixd(this_0);
|
|
15021
15027
|
bytes[8] = toByte(tmp$ret$0);
|
|
15022
|
-
formatBytesInto(this.
|
|
15028
|
+
formatBytesInto(this.cm_1, bytes, 9, 4, 6);
|
|
15023
15029
|
// Inline function 'kotlin.code' call
|
|
15024
15030
|
var this_1 = _Char___init__impl__6a9atx(45);
|
|
15025
15031
|
var tmp$ret$1 = Char__toInt_impl_vasixd(this_1);
|
|
15026
15032
|
bytes[13] = toByte(tmp$ret$1);
|
|
15027
|
-
formatBytesInto(this.
|
|
15033
|
+
formatBytesInto(this.cm_1, bytes, 14, 6, 8);
|
|
15028
15034
|
// Inline function 'kotlin.code' call
|
|
15029
15035
|
var this_2 = _Char___init__impl__6a9atx(45);
|
|
15030
15036
|
var tmp$ret$2 = Char__toInt_impl_vasixd(this_2);
|
|
15031
15037
|
bytes[18] = toByte(tmp$ret$2);
|
|
15032
|
-
formatBytesInto(this.
|
|
15038
|
+
formatBytesInto(this.dm_1, bytes, 19, 0, 2);
|
|
15033
15039
|
// Inline function 'kotlin.code' call
|
|
15034
15040
|
var this_3 = _Char___init__impl__6a9atx(45);
|
|
15035
15041
|
var tmp$ret$3 = Char__toInt_impl_vasixd(this_3);
|
|
15036
15042
|
bytes[23] = toByte(tmp$ret$3);
|
|
15037
|
-
formatBytesInto(this.
|
|
15043
|
+
formatBytesInto(this.dm_1, bytes, 24, 2, 8);
|
|
15038
15044
|
return decodeToString(bytes);
|
|
15039
15045
|
};
|
|
15040
15046
|
protoOf(Uuid).equals = function (other) {
|
|
@@ -15042,25 +15048,25 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15042
15048
|
return true;
|
|
15043
15049
|
if (!(other instanceof Uuid))
|
|
15044
15050
|
return false;
|
|
15045
|
-
return equalsLong(this.
|
|
15051
|
+
return equalsLong(this.cm_1, other.cm_1) && equalsLong(this.dm_1, other.dm_1);
|
|
15046
15052
|
};
|
|
15047
|
-
protoOf(Uuid).
|
|
15053
|
+
protoOf(Uuid).fm = function (other) {
|
|
15048
15054
|
var tmp;
|
|
15049
|
-
if (!equalsLong(this.
|
|
15055
|
+
if (!equalsLong(this.cm_1, other.cm_1)) {
|
|
15050
15056
|
// Inline function 'kotlin.toULong' call
|
|
15051
|
-
var this_0 = this.
|
|
15057
|
+
var this_0 = this.cm_1;
|
|
15052
15058
|
var tmp0 = _ULong___init__impl__c78o9k(this_0);
|
|
15053
15059
|
// Inline function 'kotlin.toULong' call
|
|
15054
|
-
var this_1 = other.
|
|
15060
|
+
var this_1 = other.cm_1;
|
|
15055
15061
|
// Inline function 'kotlin.ULong.compareTo' call
|
|
15056
15062
|
var other_0 = _ULong___init__impl__c78o9k(this_1);
|
|
15057
15063
|
tmp = ulongCompare(_ULong___get_data__impl__fggpzb(tmp0), _ULong___get_data__impl__fggpzb(other_0));
|
|
15058
15064
|
} else {
|
|
15059
15065
|
// Inline function 'kotlin.toULong' call
|
|
15060
|
-
var this_2 = this.
|
|
15066
|
+
var this_2 = this.dm_1;
|
|
15061
15067
|
var tmp0_0 = _ULong___init__impl__c78o9k(this_2);
|
|
15062
15068
|
// Inline function 'kotlin.toULong' call
|
|
15063
|
-
var this_3 = other.
|
|
15069
|
+
var this_3 = other.dm_1;
|
|
15064
15070
|
// Inline function 'kotlin.ULong.compareTo' call
|
|
15065
15071
|
var other_1 = _ULong___init__impl__c78o9k(this_3);
|
|
15066
15072
|
tmp = ulongCompare(_ULong___get_data__impl__fggpzb(tmp0_0), _ULong___get_data__impl__fggpzb(other_1));
|
|
@@ -15068,10 +15074,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15068
15074
|
return tmp;
|
|
15069
15075
|
};
|
|
15070
15076
|
protoOf(Uuid).d = function (other) {
|
|
15071
|
-
return this.
|
|
15077
|
+
return this.fm(other instanceof Uuid ? other : THROW_CCE());
|
|
15072
15078
|
};
|
|
15073
15079
|
protoOf(Uuid).hashCode = function () {
|
|
15074
|
-
return bitwiseXor(this.
|
|
15080
|
+
return bitwiseXor(this.cm_1, this.dm_1).hashCode();
|
|
15075
15081
|
};
|
|
15076
15082
|
function truncateForErrorMessage_0(_this__u8e3s4, maxLength) {
|
|
15077
15083
|
return _this__u8e3s4.length <= maxLength ? _this__u8e3s4 : substring(_this__u8e3s4, 0, maxLength) + '...';
|
|
@@ -15091,10 +15097,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15091
15097
|
}
|
|
15092
15098
|
function Companion_28() {
|
|
15093
15099
|
Companion_instance_28 = this;
|
|
15094
|
-
this.
|
|
15095
|
-
this.
|
|
15096
|
-
this.
|
|
15097
|
-
this.
|
|
15100
|
+
this.gm_1 = _UByte___init__impl__g9hnc4(0);
|
|
15101
|
+
this.hm_1 = _UByte___init__impl__g9hnc4(-1);
|
|
15102
|
+
this.im_1 = 1;
|
|
15103
|
+
this.jm_1 = 8;
|
|
15098
15104
|
}
|
|
15099
15105
|
var Companion_instance_28;
|
|
15100
15106
|
function Companion_getInstance_28() {
|
|
@@ -15110,7 +15116,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15110
15116
|
return compareTo(tmp, tmp$ret$1);
|
|
15111
15117
|
}
|
|
15112
15118
|
function UByte__compareTo_impl_5w5192_0($this, other) {
|
|
15113
|
-
return UByte__compareTo_impl_5w5192($this.
|
|
15119
|
+
return UByte__compareTo_impl_5w5192($this.km_1, other instanceof UByte ? other.km_1 : THROW_CCE());
|
|
15114
15120
|
}
|
|
15115
15121
|
function UByte__toString_impl_v72jg($this) {
|
|
15116
15122
|
// Inline function 'kotlin.UByte.toInt' call
|
|
@@ -15122,28 +15128,28 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15122
15128
|
function UByte__equals_impl_nvqtsf($this, other) {
|
|
15123
15129
|
if (!(other instanceof UByte))
|
|
15124
15130
|
return false;
|
|
15125
|
-
if (!($this === other.
|
|
15131
|
+
if (!($this === other.km_1))
|
|
15126
15132
|
return false;
|
|
15127
15133
|
return true;
|
|
15128
15134
|
}
|
|
15129
15135
|
function UByte(data) {
|
|
15130
15136
|
Companion_getInstance_28();
|
|
15131
|
-
this.
|
|
15137
|
+
this.km_1 = data;
|
|
15132
15138
|
}
|
|
15133
|
-
protoOf(UByte).
|
|
15134
|
-
return UByte__compareTo_impl_5w5192(this.
|
|
15139
|
+
protoOf(UByte).lm = function (other) {
|
|
15140
|
+
return UByte__compareTo_impl_5w5192(this.km_1, other);
|
|
15135
15141
|
};
|
|
15136
15142
|
protoOf(UByte).d = function (other) {
|
|
15137
15143
|
return UByte__compareTo_impl_5w5192_0(this, other);
|
|
15138
15144
|
};
|
|
15139
15145
|
protoOf(UByte).toString = function () {
|
|
15140
|
-
return UByte__toString_impl_v72jg(this.
|
|
15146
|
+
return UByte__toString_impl_v72jg(this.km_1);
|
|
15141
15147
|
};
|
|
15142
15148
|
protoOf(UByte).hashCode = function () {
|
|
15143
|
-
return UByte__hashCode_impl_mmczcb(this.
|
|
15149
|
+
return UByte__hashCode_impl_mmczcb(this.km_1);
|
|
15144
15150
|
};
|
|
15145
15151
|
protoOf(UByte).equals = function (other) {
|
|
15146
|
-
return UByte__equals_impl_nvqtsf(this.
|
|
15152
|
+
return UByte__equals_impl_nvqtsf(this.km_1, other);
|
|
15147
15153
|
};
|
|
15148
15154
|
function _UByteArray___init__impl__ip4y9n(storage) {
|
|
15149
15155
|
return storage;
|
|
@@ -15171,27 +15177,27 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15171
15177
|
return new Iterator(_UByteArray___get_storage__impl__d4kctt($this));
|
|
15172
15178
|
}
|
|
15173
15179
|
function Iterator(array) {
|
|
15174
|
-
this.
|
|
15175
|
-
this.
|
|
15180
|
+
this.mm_1 = array;
|
|
15181
|
+
this.nm_1 = 0;
|
|
15176
15182
|
}
|
|
15177
15183
|
protoOf(Iterator).m = function () {
|
|
15178
|
-
return this.
|
|
15184
|
+
return this.nm_1 < this.mm_1.length;
|
|
15179
15185
|
};
|
|
15180
|
-
protoOf(Iterator).
|
|
15186
|
+
protoOf(Iterator).om = function () {
|
|
15181
15187
|
var tmp;
|
|
15182
|
-
if (this.
|
|
15183
|
-
var _unary__edvuaz = this.
|
|
15184
|
-
this.
|
|
15188
|
+
if (this.nm_1 < this.mm_1.length) {
|
|
15189
|
+
var _unary__edvuaz = this.nm_1;
|
|
15190
|
+
this.nm_1 = _unary__edvuaz + 1 | 0;
|
|
15185
15191
|
// Inline function 'kotlin.toUByte' call
|
|
15186
|
-
var this_0 = this.
|
|
15192
|
+
var this_0 = this.mm_1[_unary__edvuaz];
|
|
15187
15193
|
tmp = _UByte___init__impl__g9hnc4(this_0);
|
|
15188
15194
|
} else {
|
|
15189
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
15195
|
+
throw NoSuchElementException_init_$Create$_0(this.nm_1.toString());
|
|
15190
15196
|
}
|
|
15191
15197
|
return tmp;
|
|
15192
15198
|
};
|
|
15193
15199
|
protoOf(Iterator).n = function () {
|
|
15194
|
-
return new UByte(this.
|
|
15200
|
+
return new UByte(this.om());
|
|
15195
15201
|
};
|
|
15196
15202
|
function UByteArray__contains_impl_njh19q($this, element) {
|
|
15197
15203
|
var tmp = _UByteArray___get_storage__impl__d4kctt($this);
|
|
@@ -15202,7 +15208,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15202
15208
|
function UByteArray__contains_impl_njh19q_0($this, element) {
|
|
15203
15209
|
if (!(element instanceof UByte))
|
|
15204
15210
|
return false;
|
|
15205
|
-
return UByteArray__contains_impl_njh19q($this.
|
|
15211
|
+
return UByteArray__contains_impl_njh19q($this.pm_1, element instanceof UByte ? element.km_1 : THROW_CCE());
|
|
15206
15212
|
}
|
|
15207
15213
|
function UByteArray__containsAll_impl_v9s6dj($this, elements) {
|
|
15208
15214
|
var tmp0 = isInterface(elements, Collection) ? elements : THROW_CCE();
|
|
@@ -15226,7 +15232,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15226
15232
|
if (element instanceof UByte) {
|
|
15227
15233
|
var tmp_1 = _UByteArray___get_storage__impl__d4kctt($this);
|
|
15228
15234
|
// Inline function 'kotlin.UByte.toByte' call
|
|
15229
|
-
var this_0 = element.
|
|
15235
|
+
var this_0 = element.km_1;
|
|
15230
15236
|
var tmp$ret$1 = _UByte___get_data__impl__jof9qr(this_0);
|
|
15231
15237
|
tmp_0 = contains_4(tmp_1, tmp$ret$1);
|
|
15232
15238
|
} else {
|
|
@@ -15242,7 +15248,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15242
15248
|
return tmp$ret$0;
|
|
15243
15249
|
}
|
|
15244
15250
|
function UByteArray__containsAll_impl_v9s6dj_0($this, elements) {
|
|
15245
|
-
return UByteArray__containsAll_impl_v9s6dj($this.
|
|
15251
|
+
return UByteArray__containsAll_impl_v9s6dj($this.pm_1, elements);
|
|
15246
15252
|
}
|
|
15247
15253
|
function UByteArray__isEmpty_impl_nbfqsa($this) {
|
|
15248
15254
|
return _UByteArray___get_storage__impl__d4kctt($this).length === 0;
|
|
@@ -15256,43 +15262,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15256
15262
|
function UByteArray__equals_impl_roka4u($this, other) {
|
|
15257
15263
|
if (!(other instanceof UByteArray))
|
|
15258
15264
|
return false;
|
|
15259
|
-
var tmp0_other_with_cast = other.
|
|
15265
|
+
var tmp0_other_with_cast = other.pm_1;
|
|
15260
15266
|
if (!equals($this, tmp0_other_with_cast))
|
|
15261
15267
|
return false;
|
|
15262
15268
|
return true;
|
|
15263
15269
|
}
|
|
15264
15270
|
function UByteArray(storage) {
|
|
15265
|
-
this.
|
|
15271
|
+
this.pm_1 = storage;
|
|
15266
15272
|
}
|
|
15267
15273
|
protoOf(UByteArray).o = function () {
|
|
15268
|
-
return _UByteArray___get_size__impl__h6pkdv(this.
|
|
15274
|
+
return _UByteArray___get_size__impl__h6pkdv(this.pm_1);
|
|
15269
15275
|
};
|
|
15270
15276
|
protoOf(UByteArray).l = function () {
|
|
15271
|
-
return UByteArray__iterator_impl_509y1p(this.
|
|
15277
|
+
return UByteArray__iterator_impl_509y1p(this.pm_1);
|
|
15272
15278
|
};
|
|
15273
|
-
protoOf(UByteArray).
|
|
15274
|
-
return UByteArray__contains_impl_njh19q(this.
|
|
15279
|
+
protoOf(UByteArray).qm = function (element) {
|
|
15280
|
+
return UByteArray__contains_impl_njh19q(this.pm_1, element);
|
|
15275
15281
|
};
|
|
15276
15282
|
protoOf(UByteArray).u1 = function (element) {
|
|
15277
15283
|
return UByteArray__contains_impl_njh19q_0(this, element);
|
|
15278
15284
|
};
|
|
15279
|
-
protoOf(UByteArray).
|
|
15280
|
-
return UByteArray__containsAll_impl_v9s6dj(this.
|
|
15285
|
+
protoOf(UByteArray).rm = function (elements) {
|
|
15286
|
+
return UByteArray__containsAll_impl_v9s6dj(this.pm_1, elements);
|
|
15281
15287
|
};
|
|
15282
15288
|
protoOf(UByteArray).v1 = function (elements) {
|
|
15283
15289
|
return UByteArray__containsAll_impl_v9s6dj_0(this, elements);
|
|
15284
15290
|
};
|
|
15285
15291
|
protoOf(UByteArray).q = function () {
|
|
15286
|
-
return UByteArray__isEmpty_impl_nbfqsa(this.
|
|
15292
|
+
return UByteArray__isEmpty_impl_nbfqsa(this.pm_1);
|
|
15287
15293
|
};
|
|
15288
15294
|
protoOf(UByteArray).toString = function () {
|
|
15289
|
-
return UByteArray__toString_impl_ukpl97(this.
|
|
15295
|
+
return UByteArray__toString_impl_ukpl97(this.pm_1);
|
|
15290
15296
|
};
|
|
15291
15297
|
protoOf(UByteArray).hashCode = function () {
|
|
15292
|
-
return UByteArray__hashCode_impl_ip8jx2(this.
|
|
15298
|
+
return UByteArray__hashCode_impl_ip8jx2(this.pm_1);
|
|
15293
15299
|
};
|
|
15294
15300
|
protoOf(UByteArray).equals = function (other) {
|
|
15295
|
-
return UByteArray__equals_impl_roka4u(this.
|
|
15301
|
+
return UByteArray__equals_impl_roka4u(this.pm_1, other);
|
|
15296
15302
|
};
|
|
15297
15303
|
function _UInt___init__impl__l7qpdl(data) {
|
|
15298
15304
|
return data;
|
|
@@ -15302,10 +15308,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15302
15308
|
}
|
|
15303
15309
|
function Companion_29() {
|
|
15304
15310
|
Companion_instance_29 = this;
|
|
15305
|
-
this.
|
|
15306
|
-
this.
|
|
15307
|
-
this.
|
|
15308
|
-
this.
|
|
15311
|
+
this.sm_1 = _UInt___init__impl__l7qpdl(0);
|
|
15312
|
+
this.tm_1 = _UInt___init__impl__l7qpdl(-1);
|
|
15313
|
+
this.um_1 = 4;
|
|
15314
|
+
this.vm_1 = 32;
|
|
15309
15315
|
}
|
|
15310
15316
|
var Companion_instance_29;
|
|
15311
15317
|
function Companion_getInstance_29() {
|
|
@@ -15317,7 +15323,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15317
15323
|
return uintCompare(_UInt___get_data__impl__f0vqqw($this), _UInt___get_data__impl__f0vqqw(other));
|
|
15318
15324
|
}
|
|
15319
15325
|
function UInt__compareTo_impl_yacclj_0($this, other) {
|
|
15320
|
-
return UInt__compareTo_impl_yacclj($this.
|
|
15326
|
+
return UInt__compareTo_impl_yacclj($this.wm_1, other instanceof UInt ? other.wm_1 : THROW_CCE());
|
|
15321
15327
|
}
|
|
15322
15328
|
function UInt__toString_impl_dbgl21($this) {
|
|
15323
15329
|
// Inline function 'kotlin.uintToString' call
|
|
@@ -15331,28 +15337,28 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15331
15337
|
function UInt__equals_impl_ffdoxg($this, other) {
|
|
15332
15338
|
if (!(other instanceof UInt))
|
|
15333
15339
|
return false;
|
|
15334
|
-
if (!($this === other.
|
|
15340
|
+
if (!($this === other.wm_1))
|
|
15335
15341
|
return false;
|
|
15336
15342
|
return true;
|
|
15337
15343
|
}
|
|
15338
15344
|
function UInt(data) {
|
|
15339
15345
|
Companion_getInstance_29();
|
|
15340
|
-
this.
|
|
15346
|
+
this.wm_1 = data;
|
|
15341
15347
|
}
|
|
15342
|
-
protoOf(UInt).
|
|
15343
|
-
return UInt__compareTo_impl_yacclj(this.
|
|
15348
|
+
protoOf(UInt).xm = function (other) {
|
|
15349
|
+
return UInt__compareTo_impl_yacclj(this.wm_1, other);
|
|
15344
15350
|
};
|
|
15345
15351
|
protoOf(UInt).d = function (other) {
|
|
15346
15352
|
return UInt__compareTo_impl_yacclj_0(this, other);
|
|
15347
15353
|
};
|
|
15348
15354
|
protoOf(UInt).toString = function () {
|
|
15349
|
-
return UInt__toString_impl_dbgl21(this.
|
|
15355
|
+
return UInt__toString_impl_dbgl21(this.wm_1);
|
|
15350
15356
|
};
|
|
15351
15357
|
protoOf(UInt).hashCode = function () {
|
|
15352
|
-
return UInt__hashCode_impl_z2mhuw(this.
|
|
15358
|
+
return UInt__hashCode_impl_z2mhuw(this.wm_1);
|
|
15353
15359
|
};
|
|
15354
15360
|
protoOf(UInt).equals = function (other) {
|
|
15355
|
-
return UInt__equals_impl_ffdoxg(this.
|
|
15361
|
+
return UInt__equals_impl_ffdoxg(this.wm_1, other);
|
|
15356
15362
|
};
|
|
15357
15363
|
function _UIntArray___init__impl__ghjpc6(storage) {
|
|
15358
15364
|
return storage;
|
|
@@ -15380,27 +15386,27 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15380
15386
|
return new Iterator_0(_UIntArray___get_storage__impl__92a0v0($this));
|
|
15381
15387
|
}
|
|
15382
15388
|
function Iterator_0(array) {
|
|
15383
|
-
this.
|
|
15384
|
-
this.
|
|
15389
|
+
this.ym_1 = array;
|
|
15390
|
+
this.zm_1 = 0;
|
|
15385
15391
|
}
|
|
15386
15392
|
protoOf(Iterator_0).m = function () {
|
|
15387
|
-
return this.
|
|
15393
|
+
return this.zm_1 < this.ym_1.length;
|
|
15388
15394
|
};
|
|
15389
|
-
protoOf(Iterator_0).
|
|
15395
|
+
protoOf(Iterator_0).an = function () {
|
|
15390
15396
|
var tmp;
|
|
15391
|
-
if (this.
|
|
15392
|
-
var _unary__edvuaz = this.
|
|
15393
|
-
this.
|
|
15397
|
+
if (this.zm_1 < this.ym_1.length) {
|
|
15398
|
+
var _unary__edvuaz = this.zm_1;
|
|
15399
|
+
this.zm_1 = _unary__edvuaz + 1 | 0;
|
|
15394
15400
|
// Inline function 'kotlin.toUInt' call
|
|
15395
|
-
var this_0 = this.
|
|
15401
|
+
var this_0 = this.ym_1[_unary__edvuaz];
|
|
15396
15402
|
tmp = _UInt___init__impl__l7qpdl(this_0);
|
|
15397
15403
|
} else {
|
|
15398
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
15404
|
+
throw NoSuchElementException_init_$Create$_0(this.zm_1.toString());
|
|
15399
15405
|
}
|
|
15400
15406
|
return tmp;
|
|
15401
15407
|
};
|
|
15402
15408
|
protoOf(Iterator_0).n = function () {
|
|
15403
|
-
return new UInt(this.
|
|
15409
|
+
return new UInt(this.an());
|
|
15404
15410
|
};
|
|
15405
15411
|
function UIntArray__contains_impl_b16rzj($this, element) {
|
|
15406
15412
|
var tmp = _UIntArray___get_storage__impl__92a0v0($this);
|
|
@@ -15411,7 +15417,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15411
15417
|
function UIntArray__contains_impl_b16rzj_0($this, element) {
|
|
15412
15418
|
if (!(element instanceof UInt))
|
|
15413
15419
|
return false;
|
|
15414
|
-
return UIntArray__contains_impl_b16rzj($this.
|
|
15420
|
+
return UIntArray__contains_impl_b16rzj($this.bn_1, element instanceof UInt ? element.wm_1 : THROW_CCE());
|
|
15415
15421
|
}
|
|
15416
15422
|
function UIntArray__containsAll_impl_414g22($this, elements) {
|
|
15417
15423
|
var tmp0 = isInterface(elements, Collection) ? elements : THROW_CCE();
|
|
@@ -15435,7 +15441,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15435
15441
|
if (element instanceof UInt) {
|
|
15436
15442
|
var tmp_1 = _UIntArray___get_storage__impl__92a0v0($this);
|
|
15437
15443
|
// Inline function 'kotlin.UInt.toInt' call
|
|
15438
|
-
var this_0 = element.
|
|
15444
|
+
var this_0 = element.wm_1;
|
|
15439
15445
|
var tmp$ret$1 = _UInt___get_data__impl__f0vqqw(this_0);
|
|
15440
15446
|
tmp_0 = contains_2(tmp_1, tmp$ret$1);
|
|
15441
15447
|
} else {
|
|
@@ -15451,7 +15457,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15451
15457
|
return tmp$ret$0;
|
|
15452
15458
|
}
|
|
15453
15459
|
function UIntArray__containsAll_impl_414g22_0($this, elements) {
|
|
15454
|
-
return UIntArray__containsAll_impl_414g22($this.
|
|
15460
|
+
return UIntArray__containsAll_impl_414g22($this.bn_1, elements);
|
|
15455
15461
|
}
|
|
15456
15462
|
function UIntArray__isEmpty_impl_vd8j4n($this) {
|
|
15457
15463
|
return _UIntArray___get_storage__impl__92a0v0($this).length === 0;
|
|
@@ -15465,43 +15471,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15465
15471
|
function UIntArray__equals_impl_flcmof($this, other) {
|
|
15466
15472
|
if (!(other instanceof UIntArray))
|
|
15467
15473
|
return false;
|
|
15468
|
-
var tmp0_other_with_cast = other.
|
|
15474
|
+
var tmp0_other_with_cast = other.bn_1;
|
|
15469
15475
|
if (!equals($this, tmp0_other_with_cast))
|
|
15470
15476
|
return false;
|
|
15471
15477
|
return true;
|
|
15472
15478
|
}
|
|
15473
15479
|
function UIntArray(storage) {
|
|
15474
|
-
this.
|
|
15480
|
+
this.bn_1 = storage;
|
|
15475
15481
|
}
|
|
15476
15482
|
protoOf(UIntArray).o = function () {
|
|
15477
|
-
return _UIntArray___get_size__impl__r6l8ci(this.
|
|
15483
|
+
return _UIntArray___get_size__impl__r6l8ci(this.bn_1);
|
|
15478
15484
|
};
|
|
15479
15485
|
protoOf(UIntArray).l = function () {
|
|
15480
|
-
return UIntArray__iterator_impl_tkdv7k(this.
|
|
15486
|
+
return UIntArray__iterator_impl_tkdv7k(this.bn_1);
|
|
15481
15487
|
};
|
|
15482
|
-
protoOf(UIntArray).
|
|
15483
|
-
return UIntArray__contains_impl_b16rzj(this.
|
|
15488
|
+
protoOf(UIntArray).cn = function (element) {
|
|
15489
|
+
return UIntArray__contains_impl_b16rzj(this.bn_1, element);
|
|
15484
15490
|
};
|
|
15485
15491
|
protoOf(UIntArray).u1 = function (element) {
|
|
15486
15492
|
return UIntArray__contains_impl_b16rzj_0(this, element);
|
|
15487
15493
|
};
|
|
15488
|
-
protoOf(UIntArray).
|
|
15489
|
-
return UIntArray__containsAll_impl_414g22(this.
|
|
15494
|
+
protoOf(UIntArray).dn = function (elements) {
|
|
15495
|
+
return UIntArray__containsAll_impl_414g22(this.bn_1, elements);
|
|
15490
15496
|
};
|
|
15491
15497
|
protoOf(UIntArray).v1 = function (elements) {
|
|
15492
15498
|
return UIntArray__containsAll_impl_414g22_0(this, elements);
|
|
15493
15499
|
};
|
|
15494
15500
|
protoOf(UIntArray).q = function () {
|
|
15495
|
-
return UIntArray__isEmpty_impl_vd8j4n(this.
|
|
15501
|
+
return UIntArray__isEmpty_impl_vd8j4n(this.bn_1);
|
|
15496
15502
|
};
|
|
15497
15503
|
protoOf(UIntArray).toString = function () {
|
|
15498
|
-
return UIntArray__toString_impl_3zy802(this.
|
|
15504
|
+
return UIntArray__toString_impl_3zy802(this.bn_1);
|
|
15499
15505
|
};
|
|
15500
15506
|
protoOf(UIntArray).hashCode = function () {
|
|
15501
|
-
return UIntArray__hashCode_impl_hr7ost(this.
|
|
15507
|
+
return UIntArray__hashCode_impl_hr7ost(this.bn_1);
|
|
15502
15508
|
};
|
|
15503
15509
|
protoOf(UIntArray).equals = function (other) {
|
|
15504
|
-
return UIntArray__equals_impl_flcmof(this.
|
|
15510
|
+
return UIntArray__equals_impl_flcmof(this.bn_1, other);
|
|
15505
15511
|
};
|
|
15506
15512
|
function _ULong___init__impl__c78o9k(data) {
|
|
15507
15513
|
return data;
|
|
@@ -15511,10 +15517,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15511
15517
|
}
|
|
15512
15518
|
function Companion_30() {
|
|
15513
15519
|
Companion_instance_30 = this;
|
|
15514
|
-
this.
|
|
15515
|
-
this.
|
|
15516
|
-
this.
|
|
15517
|
-
this.
|
|
15520
|
+
this.en_1 = _ULong___init__impl__c78o9k(new Long(0, 0));
|
|
15521
|
+
this.fn_1 = _ULong___init__impl__c78o9k(new Long(-1, -1));
|
|
15522
|
+
this.gn_1 = 8;
|
|
15523
|
+
this.hn_1 = 64;
|
|
15518
15524
|
}
|
|
15519
15525
|
var Companion_instance_30;
|
|
15520
15526
|
function Companion_getInstance_30() {
|
|
@@ -15526,7 +15532,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15526
15532
|
return ulongCompare(_ULong___get_data__impl__fggpzb($this), _ULong___get_data__impl__fggpzb(other));
|
|
15527
15533
|
}
|
|
15528
15534
|
function ULong__compareTo_impl_38i7tu_0($this, other) {
|
|
15529
|
-
return ULong__compareTo_impl_38i7tu($this.
|
|
15535
|
+
return ULong__compareTo_impl_38i7tu($this.in_1, other instanceof ULong ? other.in_1 : THROW_CCE());
|
|
15530
15536
|
}
|
|
15531
15537
|
function ULong__toString_impl_f9au7k($this) {
|
|
15532
15538
|
// Inline function 'kotlin.ulongToString' call
|
|
@@ -15539,29 +15545,29 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15539
15545
|
function ULong__equals_impl_o0gnyb($this, other) {
|
|
15540
15546
|
if (!(other instanceof ULong))
|
|
15541
15547
|
return false;
|
|
15542
|
-
var tmp0_other_with_cast = other.
|
|
15548
|
+
var tmp0_other_with_cast = other.in_1;
|
|
15543
15549
|
if (!equalsLong($this, tmp0_other_with_cast))
|
|
15544
15550
|
return false;
|
|
15545
15551
|
return true;
|
|
15546
15552
|
}
|
|
15547
15553
|
function ULong(data) {
|
|
15548
15554
|
Companion_getInstance_30();
|
|
15549
|
-
this.
|
|
15555
|
+
this.in_1 = data;
|
|
15550
15556
|
}
|
|
15551
|
-
protoOf(ULong).
|
|
15552
|
-
return ULong__compareTo_impl_38i7tu(this.
|
|
15557
|
+
protoOf(ULong).jn = function (other) {
|
|
15558
|
+
return ULong__compareTo_impl_38i7tu(this.in_1, other);
|
|
15553
15559
|
};
|
|
15554
15560
|
protoOf(ULong).d = function (other) {
|
|
15555
15561
|
return ULong__compareTo_impl_38i7tu_0(this, other);
|
|
15556
15562
|
};
|
|
15557
15563
|
protoOf(ULong).toString = function () {
|
|
15558
|
-
return ULong__toString_impl_f9au7k(this.
|
|
15564
|
+
return ULong__toString_impl_f9au7k(this.in_1);
|
|
15559
15565
|
};
|
|
15560
15566
|
protoOf(ULong).hashCode = function () {
|
|
15561
|
-
return ULong__hashCode_impl_6hv2lb(this.
|
|
15567
|
+
return ULong__hashCode_impl_6hv2lb(this.in_1);
|
|
15562
15568
|
};
|
|
15563
15569
|
protoOf(ULong).equals = function (other) {
|
|
15564
|
-
return ULong__equals_impl_o0gnyb(this.
|
|
15570
|
+
return ULong__equals_impl_o0gnyb(this.in_1, other);
|
|
15565
15571
|
};
|
|
15566
15572
|
function _ULongArray___init__impl__twm1l3(storage) {
|
|
15567
15573
|
return storage;
|
|
@@ -15589,27 +15595,27 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15589
15595
|
return new Iterator_1(_ULongArray___get_storage__impl__28e64j($this));
|
|
15590
15596
|
}
|
|
15591
15597
|
function Iterator_1(array) {
|
|
15592
|
-
this.
|
|
15593
|
-
this.
|
|
15598
|
+
this.kn_1 = array;
|
|
15599
|
+
this.ln_1 = 0;
|
|
15594
15600
|
}
|
|
15595
15601
|
protoOf(Iterator_1).m = function () {
|
|
15596
|
-
return this.
|
|
15602
|
+
return this.ln_1 < this.kn_1.length;
|
|
15597
15603
|
};
|
|
15598
|
-
protoOf(Iterator_1).
|
|
15604
|
+
protoOf(Iterator_1).mn = function () {
|
|
15599
15605
|
var tmp;
|
|
15600
|
-
if (this.
|
|
15601
|
-
var _unary__edvuaz = this.
|
|
15602
|
-
this.
|
|
15606
|
+
if (this.ln_1 < this.kn_1.length) {
|
|
15607
|
+
var _unary__edvuaz = this.ln_1;
|
|
15608
|
+
this.ln_1 = _unary__edvuaz + 1 | 0;
|
|
15603
15609
|
// Inline function 'kotlin.toULong' call
|
|
15604
|
-
var this_0 = this.
|
|
15610
|
+
var this_0 = this.kn_1[_unary__edvuaz];
|
|
15605
15611
|
tmp = _ULong___init__impl__c78o9k(this_0);
|
|
15606
15612
|
} else {
|
|
15607
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
15613
|
+
throw NoSuchElementException_init_$Create$_0(this.ln_1.toString());
|
|
15608
15614
|
}
|
|
15609
15615
|
return tmp;
|
|
15610
15616
|
};
|
|
15611
15617
|
protoOf(Iterator_1).n = function () {
|
|
15612
|
-
return new ULong(this.
|
|
15618
|
+
return new ULong(this.mn());
|
|
15613
15619
|
};
|
|
15614
15620
|
function ULongArray__contains_impl_v9bgai($this, element) {
|
|
15615
15621
|
var tmp = _ULongArray___get_storage__impl__28e64j($this);
|
|
@@ -15620,7 +15626,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15620
15626
|
function ULongArray__contains_impl_v9bgai_0($this, element) {
|
|
15621
15627
|
if (!(element instanceof ULong))
|
|
15622
15628
|
return false;
|
|
15623
|
-
return ULongArray__contains_impl_v9bgai($this.
|
|
15629
|
+
return ULongArray__contains_impl_v9bgai($this.nn_1, element instanceof ULong ? element.in_1 : THROW_CCE());
|
|
15624
15630
|
}
|
|
15625
15631
|
function ULongArray__containsAll_impl_xx8ztf($this, elements) {
|
|
15626
15632
|
var tmp0 = isInterface(elements, Collection) ? elements : THROW_CCE();
|
|
@@ -15644,7 +15650,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15644
15650
|
if (element instanceof ULong) {
|
|
15645
15651
|
var tmp_1 = _ULongArray___get_storage__impl__28e64j($this);
|
|
15646
15652
|
// Inline function 'kotlin.ULong.toLong' call
|
|
15647
|
-
var this_0 = element.
|
|
15653
|
+
var this_0 = element.in_1;
|
|
15648
15654
|
var tmp$ret$1 = _ULong___get_data__impl__fggpzb(this_0);
|
|
15649
15655
|
tmp_0 = contains_1(tmp_1, tmp$ret$1);
|
|
15650
15656
|
} else {
|
|
@@ -15660,7 +15666,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15660
15666
|
return tmp$ret$0;
|
|
15661
15667
|
}
|
|
15662
15668
|
function ULongArray__containsAll_impl_xx8ztf_0($this, elements) {
|
|
15663
|
-
return ULongArray__containsAll_impl_xx8ztf($this.
|
|
15669
|
+
return ULongArray__containsAll_impl_xx8ztf($this.nn_1, elements);
|
|
15664
15670
|
}
|
|
15665
15671
|
function ULongArray__isEmpty_impl_c3yngu($this) {
|
|
15666
15672
|
return _ULongArray___get_storage__impl__28e64j($this).length === 0;
|
|
@@ -15674,43 +15680,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15674
15680
|
function ULongArray__equals_impl_vwitwa($this, other) {
|
|
15675
15681
|
if (!(other instanceof ULongArray))
|
|
15676
15682
|
return false;
|
|
15677
|
-
var tmp0_other_with_cast = other.
|
|
15683
|
+
var tmp0_other_with_cast = other.nn_1;
|
|
15678
15684
|
if (!equals($this, tmp0_other_with_cast))
|
|
15679
15685
|
return false;
|
|
15680
15686
|
return true;
|
|
15681
15687
|
}
|
|
15682
15688
|
function ULongArray(storage) {
|
|
15683
|
-
this.
|
|
15689
|
+
this.nn_1 = storage;
|
|
15684
15690
|
}
|
|
15685
15691
|
protoOf(ULongArray).o = function () {
|
|
15686
|
-
return _ULongArray___get_size__impl__ju6dtr(this.
|
|
15692
|
+
return _ULongArray___get_size__impl__ju6dtr(this.nn_1);
|
|
15687
15693
|
};
|
|
15688
15694
|
protoOf(ULongArray).l = function () {
|
|
15689
|
-
return ULongArray__iterator_impl_cq4d2h(this.
|
|
15695
|
+
return ULongArray__iterator_impl_cq4d2h(this.nn_1);
|
|
15690
15696
|
};
|
|
15691
|
-
protoOf(ULongArray).
|
|
15692
|
-
return ULongArray__contains_impl_v9bgai(this.
|
|
15697
|
+
protoOf(ULongArray).on = function (element) {
|
|
15698
|
+
return ULongArray__contains_impl_v9bgai(this.nn_1, element);
|
|
15693
15699
|
};
|
|
15694
15700
|
protoOf(ULongArray).u1 = function (element) {
|
|
15695
15701
|
return ULongArray__contains_impl_v9bgai_0(this, element);
|
|
15696
15702
|
};
|
|
15697
|
-
protoOf(ULongArray).
|
|
15698
|
-
return ULongArray__containsAll_impl_xx8ztf(this.
|
|
15703
|
+
protoOf(ULongArray).pn = function (elements) {
|
|
15704
|
+
return ULongArray__containsAll_impl_xx8ztf(this.nn_1, elements);
|
|
15699
15705
|
};
|
|
15700
15706
|
protoOf(ULongArray).v1 = function (elements) {
|
|
15701
15707
|
return ULongArray__containsAll_impl_xx8ztf_0(this, elements);
|
|
15702
15708
|
};
|
|
15703
15709
|
protoOf(ULongArray).q = function () {
|
|
15704
|
-
return ULongArray__isEmpty_impl_c3yngu(this.
|
|
15710
|
+
return ULongArray__isEmpty_impl_c3yngu(this.nn_1);
|
|
15705
15711
|
};
|
|
15706
15712
|
protoOf(ULongArray).toString = function () {
|
|
15707
|
-
return ULongArray__toString_impl_wqk1p5(this.
|
|
15713
|
+
return ULongArray__toString_impl_wqk1p5(this.nn_1);
|
|
15708
15714
|
};
|
|
15709
15715
|
protoOf(ULongArray).hashCode = function () {
|
|
15710
|
-
return ULongArray__hashCode_impl_aze4wa(this.
|
|
15716
|
+
return ULongArray__hashCode_impl_aze4wa(this.nn_1);
|
|
15711
15717
|
};
|
|
15712
15718
|
protoOf(ULongArray).equals = function (other) {
|
|
15713
|
-
return ULongArray__equals_impl_vwitwa(this.
|
|
15719
|
+
return ULongArray__equals_impl_vwitwa(this.nn_1, other);
|
|
15714
15720
|
};
|
|
15715
15721
|
function _UShort___init__impl__jigrne(data) {
|
|
15716
15722
|
return data;
|
|
@@ -15720,10 +15726,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15720
15726
|
}
|
|
15721
15727
|
function Companion_31() {
|
|
15722
15728
|
Companion_instance_31 = this;
|
|
15723
|
-
this.
|
|
15724
|
-
this.
|
|
15725
|
-
this.
|
|
15726
|
-
this.
|
|
15729
|
+
this.qn_1 = _UShort___init__impl__jigrne(0);
|
|
15730
|
+
this.rn_1 = _UShort___init__impl__jigrne(-1);
|
|
15731
|
+
this.sn_1 = 2;
|
|
15732
|
+
this.tn_1 = 16;
|
|
15727
15733
|
}
|
|
15728
15734
|
var Companion_instance_31;
|
|
15729
15735
|
function Companion_getInstance_31() {
|
|
@@ -15739,7 +15745,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15739
15745
|
return compareTo(tmp, tmp$ret$1);
|
|
15740
15746
|
}
|
|
15741
15747
|
function UShort__compareTo_impl_1pfgyc_0($this, other) {
|
|
15742
|
-
return UShort__compareTo_impl_1pfgyc($this.
|
|
15748
|
+
return UShort__compareTo_impl_1pfgyc($this.un_1, other instanceof UShort ? other.un_1 : THROW_CCE());
|
|
15743
15749
|
}
|
|
15744
15750
|
function UShort__toString_impl_edaoee($this) {
|
|
15745
15751
|
// Inline function 'kotlin.UShort.toInt' call
|
|
@@ -15751,28 +15757,28 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15751
15757
|
function UShort__equals_impl_7t9pdz($this, other) {
|
|
15752
15758
|
if (!(other instanceof UShort))
|
|
15753
15759
|
return false;
|
|
15754
|
-
if (!($this === other.
|
|
15760
|
+
if (!($this === other.un_1))
|
|
15755
15761
|
return false;
|
|
15756
15762
|
return true;
|
|
15757
15763
|
}
|
|
15758
15764
|
function UShort(data) {
|
|
15759
15765
|
Companion_getInstance_31();
|
|
15760
|
-
this.
|
|
15766
|
+
this.un_1 = data;
|
|
15761
15767
|
}
|
|
15762
|
-
protoOf(UShort).
|
|
15763
|
-
return UShort__compareTo_impl_1pfgyc(this.
|
|
15768
|
+
protoOf(UShort).vn = function (other) {
|
|
15769
|
+
return UShort__compareTo_impl_1pfgyc(this.un_1, other);
|
|
15764
15770
|
};
|
|
15765
15771
|
protoOf(UShort).d = function (other) {
|
|
15766
15772
|
return UShort__compareTo_impl_1pfgyc_0(this, other);
|
|
15767
15773
|
};
|
|
15768
15774
|
protoOf(UShort).toString = function () {
|
|
15769
|
-
return UShort__toString_impl_edaoee(this.
|
|
15775
|
+
return UShort__toString_impl_edaoee(this.un_1);
|
|
15770
15776
|
};
|
|
15771
15777
|
protoOf(UShort).hashCode = function () {
|
|
15772
|
-
return UShort__hashCode_impl_ywngrv(this.
|
|
15778
|
+
return UShort__hashCode_impl_ywngrv(this.un_1);
|
|
15773
15779
|
};
|
|
15774
15780
|
protoOf(UShort).equals = function (other) {
|
|
15775
|
-
return UShort__equals_impl_7t9pdz(this.
|
|
15781
|
+
return UShort__equals_impl_7t9pdz(this.un_1, other);
|
|
15776
15782
|
};
|
|
15777
15783
|
function _UShortArray___init__impl__9b26ef(storage) {
|
|
15778
15784
|
return storage;
|
|
@@ -15800,27 +15806,27 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15800
15806
|
return new Iterator_2(_UShortArray___get_storage__impl__t2jpv5($this));
|
|
15801
15807
|
}
|
|
15802
15808
|
function Iterator_2(array) {
|
|
15803
|
-
this.
|
|
15804
|
-
this.
|
|
15809
|
+
this.wn_1 = array;
|
|
15810
|
+
this.xn_1 = 0;
|
|
15805
15811
|
}
|
|
15806
15812
|
protoOf(Iterator_2).m = function () {
|
|
15807
|
-
return this.
|
|
15813
|
+
return this.xn_1 < this.wn_1.length;
|
|
15808
15814
|
};
|
|
15809
|
-
protoOf(Iterator_2).
|
|
15815
|
+
protoOf(Iterator_2).yn = function () {
|
|
15810
15816
|
var tmp;
|
|
15811
|
-
if (this.
|
|
15812
|
-
var _unary__edvuaz = this.
|
|
15813
|
-
this.
|
|
15817
|
+
if (this.xn_1 < this.wn_1.length) {
|
|
15818
|
+
var _unary__edvuaz = this.xn_1;
|
|
15819
|
+
this.xn_1 = _unary__edvuaz + 1 | 0;
|
|
15814
15820
|
// Inline function 'kotlin.toUShort' call
|
|
15815
|
-
var this_0 = this.
|
|
15821
|
+
var this_0 = this.wn_1[_unary__edvuaz];
|
|
15816
15822
|
tmp = _UShort___init__impl__jigrne(this_0);
|
|
15817
15823
|
} else {
|
|
15818
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
15824
|
+
throw NoSuchElementException_init_$Create$_0(this.xn_1.toString());
|
|
15819
15825
|
}
|
|
15820
15826
|
return tmp;
|
|
15821
15827
|
};
|
|
15822
15828
|
protoOf(Iterator_2).n = function () {
|
|
15823
|
-
return new UShort(this.
|
|
15829
|
+
return new UShort(this.yn());
|
|
15824
15830
|
};
|
|
15825
15831
|
function UShortArray__contains_impl_vo7k3g($this, element) {
|
|
15826
15832
|
var tmp = _UShortArray___get_storage__impl__t2jpv5($this);
|
|
@@ -15831,7 +15837,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15831
15837
|
function UShortArray__contains_impl_vo7k3g_0($this, element) {
|
|
15832
15838
|
if (!(element instanceof UShort))
|
|
15833
15839
|
return false;
|
|
15834
|
-
return UShortArray__contains_impl_vo7k3g($this.
|
|
15840
|
+
return UShortArray__contains_impl_vo7k3g($this.zn_1, element instanceof UShort ? element.un_1 : THROW_CCE());
|
|
15835
15841
|
}
|
|
15836
15842
|
function UShortArray__containsAll_impl_vlaaxp($this, elements) {
|
|
15837
15843
|
var tmp0 = isInterface(elements, Collection) ? elements : THROW_CCE();
|
|
@@ -15855,7 +15861,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15855
15861
|
if (element instanceof UShort) {
|
|
15856
15862
|
var tmp_1 = _UShortArray___get_storage__impl__t2jpv5($this);
|
|
15857
15863
|
// Inline function 'kotlin.UShort.toShort' call
|
|
15858
|
-
var this_0 = element.
|
|
15864
|
+
var this_0 = element.un_1;
|
|
15859
15865
|
var tmp$ret$1 = _UShort___get_data__impl__g0245(this_0);
|
|
15860
15866
|
tmp_0 = contains_3(tmp_1, tmp$ret$1);
|
|
15861
15867
|
} else {
|
|
@@ -15871,7 +15877,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15871
15877
|
return tmp$ret$0;
|
|
15872
15878
|
}
|
|
15873
15879
|
function UShortArray__containsAll_impl_vlaaxp_0($this, elements) {
|
|
15874
|
-
return UShortArray__containsAll_impl_vlaaxp($this.
|
|
15880
|
+
return UShortArray__containsAll_impl_vlaaxp($this.zn_1, elements);
|
|
15875
15881
|
}
|
|
15876
15882
|
function UShortArray__isEmpty_impl_cdd9l0($this) {
|
|
15877
15883
|
return _UShortArray___get_storage__impl__t2jpv5($this).length === 0;
|
|
@@ -15885,43 +15891,43 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
15885
15891
|
function UShortArray__equals_impl_tyc3mk($this, other) {
|
|
15886
15892
|
if (!(other instanceof UShortArray))
|
|
15887
15893
|
return false;
|
|
15888
|
-
var tmp0_other_with_cast = other.
|
|
15894
|
+
var tmp0_other_with_cast = other.zn_1;
|
|
15889
15895
|
if (!equals($this, tmp0_other_with_cast))
|
|
15890
15896
|
return false;
|
|
15891
15897
|
return true;
|
|
15892
15898
|
}
|
|
15893
15899
|
function UShortArray(storage) {
|
|
15894
|
-
this.
|
|
15900
|
+
this.zn_1 = storage;
|
|
15895
15901
|
}
|
|
15896
15902
|
protoOf(UShortArray).o = function () {
|
|
15897
|
-
return _UShortArray___get_size__impl__jqto1b(this.
|
|
15903
|
+
return _UShortArray___get_size__impl__jqto1b(this.zn_1);
|
|
15898
15904
|
};
|
|
15899
15905
|
protoOf(UShortArray).l = function () {
|
|
15900
|
-
return UShortArray__iterator_impl_ktpenn(this.
|
|
15906
|
+
return UShortArray__iterator_impl_ktpenn(this.zn_1);
|
|
15901
15907
|
};
|
|
15902
|
-
protoOf(UShortArray).
|
|
15903
|
-
return UShortArray__contains_impl_vo7k3g(this.
|
|
15908
|
+
protoOf(UShortArray).ao = function (element) {
|
|
15909
|
+
return UShortArray__contains_impl_vo7k3g(this.zn_1, element);
|
|
15904
15910
|
};
|
|
15905
15911
|
protoOf(UShortArray).u1 = function (element) {
|
|
15906
15912
|
return UShortArray__contains_impl_vo7k3g_0(this, element);
|
|
15907
15913
|
};
|
|
15908
|
-
protoOf(UShortArray).
|
|
15909
|
-
return UShortArray__containsAll_impl_vlaaxp(this.
|
|
15914
|
+
protoOf(UShortArray).bo = function (elements) {
|
|
15915
|
+
return UShortArray__containsAll_impl_vlaaxp(this.zn_1, elements);
|
|
15910
15916
|
};
|
|
15911
15917
|
protoOf(UShortArray).v1 = function (elements) {
|
|
15912
15918
|
return UShortArray__containsAll_impl_vlaaxp_0(this, elements);
|
|
15913
15919
|
};
|
|
15914
15920
|
protoOf(UShortArray).q = function () {
|
|
15915
|
-
return UShortArray__isEmpty_impl_cdd9l0(this.
|
|
15921
|
+
return UShortArray__isEmpty_impl_cdd9l0(this.zn_1);
|
|
15916
15922
|
};
|
|
15917
15923
|
protoOf(UShortArray).toString = function () {
|
|
15918
|
-
return UShortArray__toString_impl_omz03z(this.
|
|
15924
|
+
return UShortArray__toString_impl_omz03z(this.zn_1);
|
|
15919
15925
|
};
|
|
15920
15926
|
protoOf(UShortArray).hashCode = function () {
|
|
15921
|
-
return UShortArray__hashCode_impl_2vt3b4(this.
|
|
15927
|
+
return UShortArray__hashCode_impl_2vt3b4(this.zn_1);
|
|
15922
15928
|
};
|
|
15923
15929
|
protoOf(UShortArray).equals = function (other) {
|
|
15924
|
-
return UShortArray__equals_impl_tyc3mk(this.
|
|
15930
|
+
return UShortArray__equals_impl_tyc3mk(this.zn_1, other);
|
|
15925
15931
|
};
|
|
15926
15932
|
function toULongOrNull(_this__u8e3s4) {
|
|
15927
15933
|
return toULongOrNull_0(_this__u8e3s4, 10);
|