git-digger 1.7.27 → 1.7.29

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.
@@ -37,11 +37,6 @@ if (typeof Array.prototype.fill === 'undefined') {
37
37
  Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
38
38
  }
39
39
  });
40
- if (typeof Math.log2 === 'undefined') {
41
- Math.log2 = function (x) {
42
- return Math.log(x) * Math.LOG2E;
43
- };
44
- }
45
40
  if (typeof Math.clz32 === 'undefined') {
46
41
  Math.clz32 = function (log, LN2) {
47
42
  return function (x) {
@@ -53,11 +48,10 @@ if (typeof Math.clz32 === 'undefined') {
53
48
  };
54
49
  }(Math.log, Math.LN2);
55
50
  }
56
- if (typeof String.prototype.startsWith === 'undefined') {
57
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
58
- position = position || 0;
59
- return this.lastIndexOf(searchString, position) === position;
60
- }});
51
+ if (typeof Math.log2 === 'undefined') {
52
+ Math.log2 = function (x) {
53
+ return Math.log(x) * Math.LOG2E;
54
+ };
61
55
  }
62
56
  if (typeof String.prototype.endsWith === 'undefined') {
63
57
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
@@ -70,6 +64,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
70
64
  return lastIndex !== -1 && lastIndex === position;
71
65
  }});
72
66
  }
67
+ if (typeof String.prototype.startsWith === 'undefined') {
68
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
69
+ position = position || 0;
70
+ return this.lastIndexOf(searchString, position) === position;
71
+ }});
72
+ }
73
73
  //endregion
74
74
  (function (_) {
75
75
  'use strict';
@@ -242,8 +242,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
242
242
  initMetadataForClass(AbstractMap$values$1, VOID, VOID, AbstractCollection);
243
243
  initMetadataForCompanion(Companion_7);
244
244
  initMetadataForObject(EmptyList, 'EmptyList', VOID, VOID, [KtList, RandomAccess]);
245
- initMetadataForClass(ArrayAsCollection, 'ArrayAsCollection', VOID, VOID, [Collection]);
246
245
  initMetadataForObject(EmptyIterator, 'EmptyIterator');
246
+ initMetadataForClass(ArrayAsCollection, 'ArrayAsCollection', VOID, VOID, [Collection]);
247
247
  initMetadataForClass(IndexedValue, 'IndexedValue');
248
248
  initMetadataForClass(IndexingIterable, 'IndexingIterable');
249
249
  initMetadataForClass(IndexingIterator, 'IndexingIterator');
@@ -568,9 +568,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
568
568
  do {
569
569
  var i = inductionVariable;
570
570
  inductionVariable = inductionVariable + 1 | 0;
571
- var tmp2 = _this__u8e3s4[i];
571
+ var tmp0_0 = _this__u8e3s4[i];
572
572
  var t2 = other[i];
573
- var tmp$ret$1 = to(tmp2, t2);
573
+ var tmp$ret$1 = to(tmp0_0, t2);
574
574
  list.e(tmp$ret$1);
575
575
  }
576
576
  while (inductionVariable < size);
@@ -581,10 +581,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
581
581
  // Inline function 'kotlin.collections.listOf' call
582
582
  return emptyList();
583
583
  }
584
- var tmp1 = indices.n();
584
+ var tmp2 = indices.n();
585
585
  // Inline function 'kotlin.collections.copyOfRange' call
586
586
  var toIndex = indices.o() + 1 | 0;
587
- var tmp$ret$1 = copyOfRange(_this__u8e3s4, tmp1, toIndex);
587
+ var tmp$ret$1 = copyOfRange(_this__u8e3s4, tmp2, toIndex);
588
588
  return asList(tmp$ret$1);
589
589
  }
590
590
  function getOrNull(_this__u8e3s4, index) {
@@ -1013,9 +1013,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
1013
1013
  var tmp$ret$0 = Math.min(tmp0, b);
1014
1014
  var list = ArrayList_init_$Create$_0(tmp$ret$0);
1015
1015
  while (first.q() && second.q()) {
1016
- var tmp2 = first.r();
1016
+ var tmp0_0 = first.r();
1017
1017
  var t2 = second.r();
1018
- var tmp$ret$1 = to(tmp2, t2);
1018
+ var tmp$ret$1 = to(tmp0_0, t2);
1019
1019
  list.e(tmp$ret$1);
1020
1020
  }
1021
1021
  return list;
@@ -1262,10 +1262,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
1262
1262
  var message = 'Requested character count ' + n + ' is less than zero.';
1263
1263
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
1264
1264
  }
1265
- // Inline function 'kotlin.text.substring' call
1266
- var startIndex = coerceAtMost(n, _this__u8e3s4.length);
1267
- // Inline function 'kotlin.js.asDynamic' call
1268
- return _this__u8e3s4.substring(startIndex);
1265
+ return substring_0(_this__u8e3s4, coerceAtMost(n, _this__u8e3s4.length));
1269
1266
  }
1270
1267
  function first_1(_this__u8e3s4) {
1271
1268
  // Inline function 'kotlin.text.isEmpty' call
@@ -1276,7 +1273,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
1276
1273
  function slice_0(_this__u8e3s4, indices) {
1277
1274
  if (indices.m())
1278
1275
  return '';
1279
- return substring_0(_this__u8e3s4, indices);
1276
+ return substring_2(_this__u8e3s4, indices);
1280
1277
  }
1281
1278
  function take_0(_this__u8e3s4, n) {
1282
1279
  // Inline function 'kotlin.require' call
@@ -1284,10 +1281,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
1284
1281
  var message = 'Requested character count ' + n + ' is less than zero.';
1285
1282
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
1286
1283
  }
1287
- // Inline function 'kotlin.text.substring' call
1288
- var endIndex = coerceAtMost(n, _this__u8e3s4.length);
1289
- // Inline function 'kotlin.js.asDynamic' call
1290
- return _this__u8e3s4.substring(0, endIndex);
1284
+ return substring(_this__u8e3s4, 0, coerceAtMost(n, _this__u8e3s4.length));
1291
1285
  }
1292
1286
  function chunked(_this__u8e3s4, size) {
1293
1287
  return windowed(_this__u8e3s4, size, size, true);
@@ -1748,10 +1742,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
1748
1742
  function charSequenceGet(a, index) {
1749
1743
  var tmp;
1750
1744
  if (isString(a)) {
1751
- // Inline function 'kotlin.js.asDynamic' call
1752
- // Inline function 'kotlin.js.unsafeCast' call
1753
- var tmp$ret$1 = a.charCodeAt(index);
1754
- tmp = numberToChar(tmp$ret$1);
1745
+ tmp = charCodeAt(a, index);
1755
1746
  } else {
1756
1747
  tmp = a.b(index);
1757
1748
  }
@@ -1760,6 +1751,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
1760
1751
  function isString(a) {
1761
1752
  return typeof a === 'string';
1762
1753
  }
1754
+ function charCodeAt(_this__u8e3s4, index) {
1755
+ // Inline function 'kotlin.js.asDynamic' call
1756
+ return _this__u8e3s4.charCodeAt(index);
1757
+ }
1763
1758
  function charSequenceLength(a) {
1764
1759
  var tmp;
1765
1760
  if (isString(a)) {
@@ -1774,9 +1769,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
1774
1769
  function charSequenceSubSequence(a, startIndex, endIndex) {
1775
1770
  var tmp;
1776
1771
  if (isString(a)) {
1777
- // Inline function 'kotlin.js.asDynamic' call
1778
- // Inline function 'kotlin.js.unsafeCast' call
1779
- tmp = a.substring(startIndex, endIndex);
1772
+ tmp = substring(a, startIndex, endIndex);
1780
1773
  } else {
1781
1774
  tmp = a.c(startIndex, endIndex);
1782
1775
  }
@@ -1913,13 +1906,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
1913
1906
  // Inline function 'kotlin.js.jsBitwiseOr' call
1914
1907
  return Math.random() * 4.294967296E9 | 0;
1915
1908
  }
1916
- function defineProp(obj, name, getter, setter) {
1917
- return Object.defineProperty(obj, name, {configurable: true, get: getter, set: setter});
1918
- }
1919
1909
  function objectCreate(proto) {
1920
1910
  proto = proto === VOID ? null : proto;
1921
1911
  return Object.create(proto);
1922
1912
  }
1913
+ function defineProp(obj, name, getter, setter) {
1914
+ return Object.defineProperty(obj, name, {configurable: true, get: getter, set: setter});
1915
+ }
1923
1916
  function toString_1(o) {
1924
1917
  var tmp;
1925
1918
  if (o == null) {
@@ -2085,32 +2078,32 @@ if (typeof String.prototype.endsWith === 'undefined') {
2085
2078
  function protoOf(constructor) {
2086
2079
  return constructor.prototype;
2087
2080
  }
2088
- function extendThrowable(this_, message, cause) {
2089
- Error.call(this_);
2090
- setPropertiesToThrowableInstance(this_, message, cause);
2091
- }
2092
- function setPropertiesToThrowableInstance(this_, message, cause) {
2093
- var errorInfo = calculateErrorInfo(Object.getPrototypeOf(this_));
2094
- if ((errorInfo & 1) === 0) {
2095
- var tmp;
2096
- if (message == null) {
2097
- var tmp_0;
2098
- if (!(message === null)) {
2099
- var tmp1_elvis_lhs = cause == null ? null : cause.toString();
2100
- tmp_0 = tmp1_elvis_lhs == null ? VOID : tmp1_elvis_lhs;
2101
- } else {
2102
- tmp_0 = VOID;
2103
- }
2104
- tmp = tmp_0;
2081
+ function defineMessage(message, cause) {
2082
+ var tmp;
2083
+ if (isUndefined(message)) {
2084
+ var tmp_0;
2085
+ if (isUndefined(cause)) {
2086
+ tmp_0 = message;
2105
2087
  } else {
2106
- tmp = message;
2088
+ var tmp1_elvis_lhs = cause == null ? null : cause.toString();
2089
+ tmp_0 = tmp1_elvis_lhs == null ? VOID : tmp1_elvis_lhs;
2107
2090
  }
2108
- this_.message = tmp;
2109
- }
2110
- if ((errorInfo & 2) === 0) {
2111
- this_.cause = cause;
2091
+ tmp = tmp_0;
2092
+ } else {
2093
+ tmp = message == null ? VOID : message;
2112
2094
  }
2113
- this_.name = Object.getPrototypeOf(this_).constructor.name;
2095
+ return tmp;
2096
+ }
2097
+ function isUndefined(value) {
2098
+ return value === VOID;
2099
+ }
2100
+ function extendThrowable(this_, message, cause) {
2101
+ defineFieldOnInstance(this_, 'message', defineMessage(message, cause));
2102
+ defineFieldOnInstance(this_, 'cause', cause);
2103
+ defineFieldOnInstance(this_, 'name', Object.getPrototypeOf(this_).constructor.name);
2104
+ }
2105
+ function defineFieldOnInstance(this_, name, value) {
2106
+ Object.defineProperty(this_, name, {configurable: true, writable: true, value: value});
2114
2107
  }
2115
2108
  function ensureNotNull(v) {
2116
2109
  var tmp;
@@ -2936,38 +2929,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
2936
2929
  function jsGetPrototypeOf(jsClass) {
2937
2930
  return Object.getPrototypeOf(jsClass);
2938
2931
  }
2939
- function calculateErrorInfo(proto) {
2940
- var tmp0_safe_receiver = proto.constructor;
2941
- var metadata = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.$metadata$;
2942
- var tmp2_safe_receiver = metadata == null ? null : metadata.errorInfo;
2943
- if (tmp2_safe_receiver == null)
2944
- null;
2945
- else {
2946
- // Inline function 'kotlin.let' call
2947
- return tmp2_safe_receiver;
2948
- }
2949
- var result = 0;
2950
- if (hasProp(proto, 'message'))
2951
- result = result | 1;
2952
- if (hasProp(proto, 'cause'))
2953
- result = result | 2;
2954
- if (!(result === 3)) {
2955
- var parentProto = getPrototypeOf(proto);
2956
- if (parentProto != Error.prototype) {
2957
- result = result | calculateErrorInfo(parentProto);
2958
- }
2959
- }
2960
- if (!(metadata == null)) {
2961
- metadata.errorInfo = result;
2962
- }
2963
- return result;
2964
- }
2965
- function hasProp(proto, propName) {
2966
- return proto.hasOwnProperty(propName);
2967
- }
2968
- function getPrototypeOf(obj) {
2969
- return Object.getPrototypeOf(obj);
2970
- }
2971
2932
  function get_VOID() {
2972
2933
  _init_properties_void_kt__3zg9as();
2973
2934
  return VOID;
@@ -3178,7 +3139,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
3178
3139
  return collectionToArrayCommonImpl(collection);
3179
3140
  }
3180
3141
  function listOf(element) {
3181
- return arrayListOf([element]);
3142
+ // Inline function 'kotlin.arrayOf' call
3143
+ // Inline function 'kotlin.js.unsafeCast' call
3144
+ // Inline function 'kotlin.js.asDynamic' call
3145
+ var tmp$ret$2 = [element];
3146
+ return new ArrayList(tmp$ret$2);
3182
3147
  }
3183
3148
  function setOf(element) {
3184
3149
  return hashSetOf([element]);
@@ -4900,17 +4865,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
4900
4865
  // Inline function 'kotlin.js.asDynamic' call
4901
4866
  var i = s.lastIndexOf('\n', 0);
4902
4867
  if (i >= 0) {
4903
- var tmp = this;
4904
- var tmp_0 = this.o8_1;
4905
- // Inline function 'kotlin.text.substring' call
4906
- // Inline function 'kotlin.js.asDynamic' call
4907
- tmp.o8_1 = tmp_0 + s.substring(0, i);
4868
+ this.o8_1 = this.o8_1 + substring(s, 0, i);
4908
4869
  this.p8();
4909
- var tmp6 = s;
4910
- // Inline function 'kotlin.text.substring' call
4911
- var startIndex = i + 1 | 0;
4912
- // Inline function 'kotlin.js.asDynamic' call
4913
- s = tmp6.substring(startIndex);
4870
+ s = substring_0(s, i + 1 | 0);
4914
4871
  }
4915
4872
  this.o8_1 = this.o8_1 + s;
4916
4873
  };
@@ -6073,47 +6030,51 @@ if (typeof String.prototype.endsWith === 'undefined') {
6073
6030
  }
6074
6031
  if (tmp_0) {
6075
6032
  // Inline function 'kotlin.js.asDynamic' call
6076
- var tmp0_safe_receiver = annotationClass.z9().$metadata$;
6077
- var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.associatedObjectKey;
6033
+ var tmp$ret$0 = annotationClass.z9();
6034
+ var tmp0_elvis_lhs = getAssociatedObjectId(tmp$ret$0);
6078
6035
  var tmp_1;
6079
- if (tmp1_safe_receiver == null) {
6080
- tmp_1 = null;
6036
+ if (tmp0_elvis_lhs == null) {
6037
+ return null;
6081
6038
  } else {
6082
- // Inline function 'kotlin.js.unsafeCast' call
6083
- tmp_1 = tmp1_safe_receiver;
6039
+ tmp_1 = tmp0_elvis_lhs;
6084
6040
  }
6085
- var tmp2_elvis_lhs = tmp_1;
6041
+ var key = tmp_1;
6042
+ // Inline function 'kotlin.js.asDynamic' call
6043
+ var tmp1_safe_receiver = _this__u8e3s4.z9().$metadata$;
6044
+ var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.associatedObjects;
6086
6045
  var tmp_2;
6087
6046
  if (tmp2_elvis_lhs == null) {
6088
6047
  return null;
6089
6048
  } else {
6090
6049
  tmp_2 = tmp2_elvis_lhs;
6091
6050
  }
6092
- var key = tmp_2;
6093
- // Inline function 'kotlin.js.asDynamic' call
6094
- var tmp3_safe_receiver = _this__u8e3s4.z9().$metadata$;
6095
- var tmp4_elvis_lhs = tmp3_safe_receiver == null ? null : tmp3_safe_receiver.associatedObjects;
6051
+ var map = tmp_2;
6052
+ var tmp3_elvis_lhs = map[key];
6096
6053
  var tmp_3;
6097
- if (tmp4_elvis_lhs == null) {
6098
- return null;
6099
- } else {
6100
- tmp_3 = tmp4_elvis_lhs;
6101
- }
6102
- var map = tmp_3;
6103
- var tmp5_elvis_lhs = map[key];
6104
- var tmp_4;
6105
- if (tmp5_elvis_lhs == null) {
6054
+ if (tmp3_elvis_lhs == null) {
6106
6055
  return null;
6107
6056
  } else {
6108
- tmp_4 = tmp5_elvis_lhs;
6057
+ tmp_3 = tmp3_elvis_lhs;
6109
6058
  }
6110
- var factory = tmp_4;
6059
+ var factory = tmp_3;
6111
6060
  return factory();
6112
6061
  } else {
6113
6062
  tmp = null;
6114
6063
  }
6115
6064
  return tmp;
6116
6065
  }
6066
+ function getAssociatedObjectId(annotationClass) {
6067
+ var tmp0_safe_receiver = annotationClass.$metadata$;
6068
+ var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.associatedObjectKey;
6069
+ var tmp;
6070
+ if (tmp1_safe_receiver == null) {
6071
+ tmp = null;
6072
+ } else {
6073
+ // Inline function 'kotlin.js.unsafeCast' call
6074
+ tmp = tmp1_safe_receiver;
6075
+ }
6076
+ return tmp;
6077
+ }
6117
6078
  function reset(_this__u8e3s4) {
6118
6079
  _this__u8e3s4.lastIndex = 0;
6119
6080
  }
@@ -6178,9 +6139,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
6178
6139
  return tmp;
6179
6140
  };
6180
6141
  protoOf(StringBuilder).c = function (startIndex, endIndex) {
6181
- // Inline function 'kotlin.text.substring' call
6182
- // Inline function 'kotlin.js.asDynamic' call
6183
- return this.v7_1.substring(startIndex, endIndex);
6142
+ return substring(this.v7_1, startIndex, endIndex);
6184
6143
  };
6185
6144
  protoOf(StringBuilder).y7 = function (value) {
6186
6145
  this.v7_1 = this.v7_1 + toString(value);
@@ -6211,13 +6170,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
6211
6170
  };
6212
6171
  protoOf(StringBuilder).qb = function (index, value) {
6213
6172
  Companion_instance_5.d4(index, this.a());
6214
- var tmp = this;
6215
- // Inline function 'kotlin.text.substring' call
6216
- // Inline function 'kotlin.js.asDynamic' call
6217
- var tmp_0 = this.v7_1.substring(0, index) + toString(value);
6218
- // Inline function 'kotlin.text.substring' call
6219
- // Inline function 'kotlin.js.asDynamic' call
6220
- tmp.v7_1 = tmp_0 + this.v7_1.substring(index);
6173
+ this.v7_1 = substring(this.v7_1, 0, index) + toString(value) + substring_0(this.v7_1, index);
6221
6174
  return this;
6222
6175
  };
6223
6176
  protoOf(StringBuilder).toString = function () {
@@ -6230,11 +6183,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
6230
6183
  protoOf(StringBuilder).nb = function (value, startIndex, endIndex) {
6231
6184
  var stringCsq = toString_1(value);
6232
6185
  Companion_instance_5.sb(startIndex, endIndex, stringCsq.length);
6233
- var tmp = this;
6234
- var tmp_0 = this.v7_1;
6235
- // Inline function 'kotlin.text.substring' call
6236
- // Inline function 'kotlin.js.asDynamic' call
6237
- tmp.v7_1 = tmp_0 + stringCsq.substring(startIndex, endIndex);
6186
+ this.v7_1 = this.v7_1 + substring(stringCsq, startIndex, endIndex);
6238
6187
  return this;
6239
6188
  };
6240
6189
  function uppercaseChar(_this__u8e3s4) {
@@ -6242,7 +6191,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
6242
6191
  // Inline function 'kotlin.js.asDynamic' call
6243
6192
  // Inline function 'kotlin.js.unsafeCast' call
6244
6193
  var uppercase = toString(_this__u8e3s4).toUpperCase();
6245
- return uppercase.length > 1 ? _this__u8e3s4 : charSequenceGet(uppercase, 0);
6194
+ return uppercase.length > 1 ? _this__u8e3s4 : charCodeAt(uppercase, 0);
6246
6195
  }
6247
6196
  function isLowSurrogate(_this__u8e3s4) {
6248
6197
  return _Char___init__impl__6a9atx(56320) <= _this__u8e3s4 ? _this__u8e3s4 <= _Char___init__impl__6a9atx(57343) : false;
@@ -6464,42 +6413,35 @@ if (typeof String.prototype.endsWith === 'undefined') {
6464
6413
  while (index < replacement.length) {
6465
6414
  var _unary__edvuaz = index;
6466
6415
  index = _unary__edvuaz + 1 | 0;
6467
- var char = charSequenceGet(replacement, _unary__edvuaz);
6416
+ var char = charCodeAt(replacement, _unary__edvuaz);
6468
6417
  if (char === _Char___init__impl__6a9atx(92)) {
6469
6418
  if (index === replacement.length)
6470
6419
  throw IllegalArgumentException_init_$Create$_0('The Char to be escaped is missing');
6471
6420
  var _unary__edvuaz_0 = index;
6472
6421
  index = _unary__edvuaz_0 + 1 | 0;
6473
- result.y7(charSequenceGet(replacement, _unary__edvuaz_0));
6422
+ result.y7(charCodeAt(replacement, _unary__edvuaz_0));
6474
6423
  } else if (char === _Char___init__impl__6a9atx(36)) {
6475
6424
  if (index === replacement.length)
6476
6425
  throw IllegalArgumentException_init_$Create$_0('Capturing group index is missing');
6477
- if (charSequenceGet(replacement, index) === _Char___init__impl__6a9atx(123)) {
6426
+ if (charCodeAt(replacement, index) === _Char___init__impl__6a9atx(123)) {
6478
6427
  index = index + 1 | 0;
6479
6428
  var endIndex = readGroupName(replacement, index);
6480
6429
  if (index === endIndex)
6481
6430
  throw IllegalArgumentException_init_$Create$_0('Named capturing group reference should have a non-empty name');
6482
- if (endIndex === replacement.length || !(charSequenceGet(replacement, endIndex) === _Char___init__impl__6a9atx(125)))
6431
+ if (endIndex === replacement.length || !(charCodeAt(replacement, endIndex) === _Char___init__impl__6a9atx(125)))
6483
6432
  throw IllegalArgumentException_init_$Create$_0("Named capturing group reference is missing trailing '}'");
6484
- // Inline function 'kotlin.text.substring' call
6485
- var startIndex = index;
6486
- // Inline function 'kotlin.js.asDynamic' call
6487
- var groupName = replacement.substring(startIndex, endIndex);
6433
+ var groupName = substring(replacement, index, endIndex);
6488
6434
  var tmp0_safe_receiver = get(match.pc(), groupName);
6489
6435
  var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.lc_1;
6490
6436
  result.x7(tmp1_elvis_lhs == null ? '' : tmp1_elvis_lhs);
6491
6437
  index = endIndex + 1 | 0;
6492
6438
  } else {
6493
- var containsArg = charSequenceGet(replacement, index);
6439
+ var containsArg = charCodeAt(replacement, index);
6494
6440
  if (!(_Char___init__impl__6a9atx(48) <= containsArg ? containsArg <= _Char___init__impl__6a9atx(57) : false))
6495
6441
  throw IllegalArgumentException_init_$Create$_0('Invalid capturing group reference');
6496
6442
  var groups = match.pc();
6497
6443
  var endIndex_0 = readGroupIndex(replacement, index, groups.s());
6498
- // Inline function 'kotlin.text.substring' call
6499
- var startIndex_0 = index;
6500
- // Inline function 'kotlin.js.asDynamic' call
6501
- var tmp$ret$3 = replacement.substring(startIndex_0, endIndex_0);
6502
- var groupIndex = toInt_0(tmp$ret$3);
6444
+ var groupIndex = toInt_0(substring(replacement, index, endIndex_0));
6503
6445
  if (groupIndex >= groups.s())
6504
6446
  throw IndexOutOfBoundsException_init_$Create$_0('Group with index ' + groupIndex + ' does not exist');
6505
6447
  var tmp2_safe_receiver = groups.t(groupIndex);
@@ -6516,7 +6458,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
6516
6458
  function readGroupName(_this__u8e3s4, startIndex) {
6517
6459
  var index = startIndex;
6518
6460
  $l$loop: while (index < _this__u8e3s4.length) {
6519
- if (charSequenceGet(_this__u8e3s4, index) === _Char___init__impl__6a9atx(125)) {
6461
+ if (charCodeAt(_this__u8e3s4, index) === _Char___init__impl__6a9atx(125)) {
6520
6462
  break $l$loop;
6521
6463
  } else {
6522
6464
  index = index + 1 | 0;
@@ -6537,11 +6479,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
6537
6479
  }
6538
6480
  function readGroupIndex(_this__u8e3s4, startIndex, groupCount) {
6539
6481
  var index = startIndex + 1 | 0;
6540
- var groupIndex = Char__minus_impl_a2frrh(charSequenceGet(_this__u8e3s4, startIndex), _Char___init__impl__6a9atx(48));
6482
+ var groupIndex = Char__minus_impl_a2frrh(charCodeAt(_this__u8e3s4, startIndex), _Char___init__impl__6a9atx(48));
6541
6483
  $l$loop_0: while (true) {
6542
6484
  var tmp;
6543
6485
  if (index < _this__u8e3s4.length) {
6544
- var containsArg = charSequenceGet(_this__u8e3s4, index);
6486
+ var containsArg = charCodeAt(_this__u8e3s4, index);
6545
6487
  tmp = _Char___init__impl__6a9atx(48) <= containsArg ? containsArg <= _Char___init__impl__6a9atx(57) : false;
6546
6488
  } else {
6547
6489
  tmp = false;
@@ -6549,7 +6491,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
6549
6491
  if (!tmp) {
6550
6492
  break $l$loop_0;
6551
6493
  }
6552
- var newGroupIndex = imul(groupIndex, 10) + Char__minus_impl_a2frrh(charSequenceGet(_this__u8e3s4, index), _Char___init__impl__6a9atx(48)) | 0;
6494
+ var newGroupIndex = imul(groupIndex, 10) + Char__minus_impl_a2frrh(charCodeAt(_this__u8e3s4, index), _Char___init__impl__6a9atx(48)) | 0;
6553
6495
  if (0 <= newGroupIndex ? newGroupIndex < groupCount : false) {
6554
6496
  groupIndex = newGroupIndex;
6555
6497
  index = index + 1 | 0;
@@ -6687,6 +6629,16 @@ if (typeof String.prototype.endsWith === 'undefined') {
6687
6629
  return RegexOption_MULTILINE_instance;
6688
6630
  }
6689
6631
  var STRING_CASE_INSENSITIVE_ORDER;
6632
+ function substring(_this__u8e3s4, startIndex, endIndex) {
6633
+ _init_properties_stringJs_kt__bg7zye();
6634
+ // Inline function 'kotlin.js.asDynamic' call
6635
+ return _this__u8e3s4.substring(startIndex, endIndex);
6636
+ }
6637
+ function substring_0(_this__u8e3s4, startIndex) {
6638
+ _init_properties_stringJs_kt__bg7zye();
6639
+ // Inline function 'kotlin.js.asDynamic' call
6640
+ return _this__u8e3s4.substring(startIndex);
6641
+ }
6690
6642
  function compareTo_0(_this__u8e3s4, other, ignoreCase) {
6691
6643
  ignoreCase = ignoreCase === VOID ? false : ignoreCase;
6692
6644
  _init_properties_stringJs_kt__bg7zye();
@@ -6702,8 +6654,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
6702
6654
  do {
6703
6655
  var index = inductionVariable;
6704
6656
  inductionVariable = inductionVariable + 1 | 0;
6705
- var thisChar = charSequenceGet(_this__u8e3s4, index);
6706
- var otherChar = charSequenceGet(other, index);
6657
+ var thisChar = charCodeAt(_this__u8e3s4, index);
6658
+ var otherChar = charCodeAt(other, index);
6707
6659
  if (!(thisChar === otherChar)) {
6708
6660
  thisChar = uppercaseChar(thisChar);
6709
6661
  otherChar = uppercaseChar(otherChar);
@@ -6714,14 +6666,14 @@ if (typeof String.prototype.endsWith === 'undefined') {
6714
6666
  // Inline function 'kotlin.js.asDynamic' call
6715
6667
  // Inline function 'kotlin.js.unsafeCast' call
6716
6668
  var tmp$ret$3 = toString(this_0).toLowerCase();
6717
- thisChar = charSequenceGet(tmp$ret$3, 0);
6669
+ thisChar = charCodeAt(tmp$ret$3, 0);
6718
6670
  // Inline function 'kotlin.text.lowercaseChar' call
6719
6671
  // Inline function 'kotlin.text.lowercase' call
6720
6672
  var this_1 = otherChar;
6721
6673
  // Inline function 'kotlin.js.asDynamic' call
6722
6674
  // Inline function 'kotlin.js.unsafeCast' call
6723
6675
  var tmp$ret$7 = toString(this_1).toLowerCase();
6724
- otherChar = charSequenceGet(tmp$ret$7, 0);
6676
+ otherChar = charCodeAt(tmp$ret$7, 0);
6725
6677
  if (!(thisChar === otherChar)) {
6726
6678
  return Char__compareTo_impl_ypi4mb(thisChar, otherChar);
6727
6679
  }
@@ -6819,11 +6771,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
6819
6771
  }
6820
6772
  function replace(_this__u8e3s4, oldValue, newValue, ignoreCase) {
6821
6773
  ignoreCase = ignoreCase === VOID ? false : ignoreCase;
6822
- var tmp1 = new RegExp(Companion_getInstance_4().wb(oldValue), ignoreCase ? 'gui' : 'gu');
6774
+ var tmp2 = new RegExp(Companion_getInstance_4().wb(oldValue), ignoreCase ? 'gui' : 'gu');
6823
6775
  // Inline function 'kotlin.text.nativeReplace' call
6824
6776
  var replacement = Companion_getInstance_4().xb(newValue);
6825
6777
  // Inline function 'kotlin.js.asDynamic' call
6826
- return _this__u8e3s4.replace(tmp1, replacement);
6778
+ return _this__u8e3s4.replace(tmp2, replacement);
6827
6779
  }
6828
6780
  function startsWith(_this__u8e3s4, prefix, ignoreCase) {
6829
6781
  ignoreCase = ignoreCase === VOID ? false : ignoreCase;
@@ -6858,11 +6810,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
6858
6810
  }
6859
6811
  function replace_0(_this__u8e3s4, oldChar, newChar, ignoreCase) {
6860
6812
  ignoreCase = ignoreCase === VOID ? false : ignoreCase;
6861
- var tmp1 = new RegExp(Companion_getInstance_4().wb(toString(oldChar)), ignoreCase ? 'gui' : 'gu');
6813
+ var tmp2 = new RegExp(Companion_getInstance_4().wb(toString(oldChar)), ignoreCase ? 'gui' : 'gu');
6862
6814
  // Inline function 'kotlin.text.nativeReplace' call
6863
6815
  var replacement = toString(newChar);
6864
6816
  // Inline function 'kotlin.js.asDynamic' call
6865
- return _this__u8e3s4.replace(tmp1, replacement);
6817
+ return _this__u8e3s4.replace(tmp2, replacement);
6866
6818
  }
6867
6819
  var REPLACEMENT_BYTE_SEQUENCE;
6868
6820
  function decodeUtf8(bytes, startIndex, endIndex, throwOnMalformed) {
@@ -7193,6 +7145,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
7193
7145
  protoOf(SubList_0).s = function () {
7194
7146
  return this.jd_1;
7195
7147
  };
7148
+ protoOf(SubList_0).s1 = function (fromIndex, toIndex) {
7149
+ Companion_instance_5.q3(fromIndex, toIndex, this.jd_1);
7150
+ return new SubList_0(this.hd_1, this.id_1 + fromIndex | 0, this.id_1 + toIndex | 0);
7151
+ };
7196
7152
  function IteratorImpl_0($outer) {
7197
7153
  this.ld_1 = $outer;
7198
7154
  this.kd_1 = 0;
@@ -7606,7 +7562,16 @@ if (typeof String.prototype.endsWith === 'undefined') {
7606
7562
  return numberRangeToNumber(0, _this__u8e3s4.s() - 1 | 0);
7607
7563
  }
7608
7564
  function mutableListOf(elements) {
7609
- return elements.length === 0 ? ArrayList_init_$Create$() : ArrayList_init_$Create$_1(new ArrayAsCollection(elements, true));
7565
+ var tmp;
7566
+ if (elements.length === 0) {
7567
+ tmp = ArrayList_init_$Create$();
7568
+ } else {
7569
+ // Inline function 'kotlin.collections.asArrayList' call
7570
+ // Inline function 'kotlin.js.unsafeCast' call
7571
+ // Inline function 'kotlin.js.asDynamic' call
7572
+ tmp = new ArrayList(elements);
7573
+ }
7574
+ return tmp;
7610
7575
  }
7611
7576
  function listOfNotNull(elements) {
7612
7577
  return filterNotNull(elements);
@@ -7689,28 +7654,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
7689
7654
  new EmptyList();
7690
7655
  return EmptyList_instance;
7691
7656
  }
7692
- function ArrayAsCollection(values, isVarargs) {
7693
- this.wd_1 = values;
7694
- this.xd_1 = isVarargs;
7695
- }
7696
- protoOf(ArrayAsCollection).s = function () {
7697
- return this.wd_1.length;
7698
- };
7699
- protoOf(ArrayAsCollection).m = function () {
7700
- // Inline function 'kotlin.collections.isEmpty' call
7701
- return this.wd_1.length === 0;
7702
- };
7703
- protoOf(ArrayAsCollection).yd = function (element) {
7704
- return contains(this.wd_1, element);
7705
- };
7706
- protoOf(ArrayAsCollection).d1 = function (element) {
7707
- if (!(element == null ? true : !(element == null)))
7708
- return false;
7709
- return this.yd((element == null ? true : !(element == null)) ? element : THROW_CCE());
7710
- };
7711
- protoOf(ArrayAsCollection).p = function () {
7712
- return arrayIterator(this.wd_1);
7713
- };
7714
7657
  function binarySearch(_this__u8e3s4, fromIndex, toIndex, comparison) {
7715
7658
  fromIndex = fromIndex === VOID ? 0 : fromIndex;
7716
7659
  toIndex = toIndex === VOID ? _this__u8e3s4.s() : toIndex;
@@ -7772,15 +7715,35 @@ if (typeof String.prototype.endsWith === 'undefined') {
7772
7715
  return _this__u8e3s4;
7773
7716
  }
7774
7717
  }
7775
- function arrayListOf(elements) {
7776
- return elements.length === 0 ? ArrayList_init_$Create$() : ArrayList_init_$Create$_1(new ArrayAsCollection(elements, true));
7777
- }
7778
7718
  function throwCountOverflow() {
7779
7719
  throw ArithmeticException_init_$Create$_0('Count overflow has happened.');
7780
7720
  }
7781
- function asCollection(_this__u8e3s4) {
7782
- return new ArrayAsCollection(_this__u8e3s4, false);
7721
+ function asCollection(_this__u8e3s4, isVarargs) {
7722
+ isVarargs = isVarargs === VOID ? false : isVarargs;
7723
+ return new ArrayAsCollection(_this__u8e3s4, isVarargs);
7783
7724
  }
7725
+ function ArrayAsCollection(values, isVarargs) {
7726
+ this.wd_1 = values;
7727
+ this.xd_1 = isVarargs;
7728
+ }
7729
+ protoOf(ArrayAsCollection).s = function () {
7730
+ return this.wd_1.length;
7731
+ };
7732
+ protoOf(ArrayAsCollection).m = function () {
7733
+ // Inline function 'kotlin.collections.isEmpty' call
7734
+ return this.wd_1.length === 0;
7735
+ };
7736
+ protoOf(ArrayAsCollection).yd = function (element) {
7737
+ return contains(this.wd_1, element);
7738
+ };
7739
+ protoOf(ArrayAsCollection).d1 = function (element) {
7740
+ if (!(element == null ? true : !(element == null)))
7741
+ return false;
7742
+ return this.yd((element == null ? true : !(element == null)) ? element : THROW_CCE());
7743
+ };
7744
+ protoOf(ArrayAsCollection).p = function () {
7745
+ return arrayIterator(this.wd_1);
7746
+ };
7784
7747
  function throwIndexOverflow() {
7785
7748
  throw ArithmeticException_init_$Create$_0('Index overflow has happened.');
7786
7749
  }
@@ -8903,13 +8866,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
8903
8866
  // Inline function 'kotlin.js.asDynamic' call
8904
8867
  // Inline function 'kotlin.js.unsafeCast' call
8905
8868
  var tmp$ret$2 = toString(thisUpper).toLowerCase();
8906
- var tmp_0 = charSequenceGet(tmp$ret$2, 0);
8869
+ var tmp_0 = charCodeAt(tmp$ret$2, 0);
8907
8870
  // Inline function 'kotlin.text.lowercaseChar' call
8908
8871
  // Inline function 'kotlin.text.lowercase' call
8909
8872
  // Inline function 'kotlin.js.asDynamic' call
8910
8873
  // Inline function 'kotlin.js.unsafeCast' call
8911
8874
  var tmp$ret$6 = toString(otherUpper).toLowerCase();
8912
- tmp = tmp_0 === charSequenceGet(tmp$ret$6, 0);
8875
+ tmp = tmp_0 === charCodeAt(tmp$ret$6, 0);
8913
8876
  }
8914
8877
  return tmp;
8915
8878
  }
@@ -8930,10 +8893,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
8930
8893
  while (tmp < 256) {
8931
8894
  var tmp_1 = tmp;
8932
8895
  // Inline function 'kotlin.code' call
8933
- var this_0 = charSequenceGet('0123456789abcdef', tmp_1 >> 4);
8896
+ var this_0 = charCodeAt('0123456789abcdef', tmp_1 >> 4);
8934
8897
  var tmp_2 = Char__toInt_impl_vasixd(this_0) << 8;
8935
8898
  // Inline function 'kotlin.code' call
8936
- var this_1 = charSequenceGet('0123456789abcdef', tmp_1 & 15);
8899
+ var this_1 = charCodeAt('0123456789abcdef', tmp_1 & 15);
8937
8900
  tmp_0[tmp_1] = tmp_2 | Char__toInt_impl_vasixd(this_1);
8938
8901
  tmp = tmp + 1 | 0;
8939
8902
  }
@@ -8943,10 +8906,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
8943
8906
  while (tmp_3 < 256) {
8944
8907
  var tmp_5 = tmp_3;
8945
8908
  // Inline function 'kotlin.code' call
8946
- var this_2 = charSequenceGet('0123456789ABCDEF', tmp_5 >> 4);
8909
+ var this_2 = charCodeAt('0123456789ABCDEF', tmp_5 >> 4);
8947
8910
  var tmp_6 = Char__toInt_impl_vasixd(this_2) << 8;
8948
8911
  // Inline function 'kotlin.code' call
8949
- var this_3 = charSequenceGet('0123456789ABCDEF', tmp_5 & 15);
8912
+ var this_3 = charCodeAt('0123456789ABCDEF', tmp_5 & 15);
8950
8913
  tmp_4[tmp_5] = tmp_6 | Char__toInt_impl_vasixd(this_3);
8951
8914
  tmp_3 = tmp_3 + 1 | 0;
8952
8915
  }
@@ -9036,7 +8999,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9036
8999
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
9037
9000
  }
9038
9001
  var lines_0 = lines(_this__u8e3s4);
9039
- var tmp1 = _this__u8e3s4.length + imul(newIndent.length, lines_0.s()) | 0;
9002
+ var tmp2 = _this__u8e3s4.length + imul(newIndent.length, lines_0.s()) | 0;
9040
9003
  // Inline function 'kotlin.text.reindent' call
9041
9004
  var indentAddFunction = getIndentFunction(newIndent);
9042
9005
  var lastIndex = get_lastIndex_1(lines_0);
@@ -9074,26 +9037,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
9074
9037
  tmp$ret$4 = -1;
9075
9038
  }
9076
9039
  var firstNonWhitespaceIndex = tmp$ret$4;
9040
+ var tmp0_safe_receiver = firstNonWhitespaceIndex === -1 ? null : startsWith_0(item, marginPrefix, firstNonWhitespaceIndex) ? substring_0(item, firstNonWhitespaceIndex + marginPrefix.length | 0) : null;
9077
9041
  var tmp_0;
9078
- if (firstNonWhitespaceIndex === -1) {
9079
- tmp_0 = null;
9080
- } else if (startsWith_0(item, marginPrefix, firstNonWhitespaceIndex)) {
9081
- // Inline function 'kotlin.text.substring' call
9082
- var startIndex = firstNonWhitespaceIndex + marginPrefix.length | 0;
9083
- // Inline function 'kotlin.js.asDynamic' call
9084
- tmp_0 = item.substring(startIndex);
9085
- } else {
9086
- tmp_0 = null;
9087
- }
9088
- var tmp0_safe_receiver = tmp_0;
9089
- var tmp_1;
9090
9042
  if (tmp0_safe_receiver == null) {
9091
- tmp_1 = null;
9043
+ tmp_0 = null;
9092
9044
  } else {
9093
9045
  // Inline function 'kotlin.let' call
9094
- tmp_1 = indentAddFunction(tmp0_safe_receiver);
9046
+ tmp_0 = indentAddFunction(tmp0_safe_receiver);
9095
9047
  }
9096
- var tmp1_elvis_lhs = tmp_1;
9048
+ var tmp1_elvis_lhs = tmp_0;
9097
9049
  tmp = tmp1_elvis_lhs == null ? item : tmp1_elvis_lhs;
9098
9050
  }
9099
9051
  var tmp0_safe_receiver_0 = tmp;
@@ -9104,7 +9056,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9104
9056
  destination.e(tmp0_safe_receiver_0);
9105
9057
  }
9106
9058
  }
9107
- return joinTo_0(destination, StringBuilder_init_$Create$(tmp1), '\n').toString();
9059
+ return joinTo_0(destination, StringBuilder_init_$Create$(tmp2), '\n').toString();
9108
9060
  }
9109
9061
  function getIndentFunction(indent) {
9110
9062
  var tmp;
@@ -9144,7 +9096,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9144
9096
  }
9145
9097
  var tmp0_elvis_lhs = minOrNull(destination_0);
9146
9098
  var minCommonIndent = tmp0_elvis_lhs == null ? 0 : tmp0_elvis_lhs;
9147
- var tmp1 = _this__u8e3s4.length + imul(newIndent.length, lines_0.s()) | 0;
9099
+ var tmp2 = _this__u8e3s4.length + imul(newIndent.length, lines_0.s()) | 0;
9148
9100
  // Inline function 'kotlin.text.reindent' call
9149
9101
  var indentAddFunction = getIndentFunction(newIndent);
9150
9102
  var lastIndex = get_lastIndex_1(lines_0);
@@ -9182,7 +9134,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9182
9134
  destination_1.e(tmp0_safe_receiver_0);
9183
9135
  }
9184
9136
  }
9185
- return joinTo_0(destination_1, StringBuilder_init_$Create$(tmp1), '\n').toString();
9137
+ return joinTo_0(destination_1, StringBuilder_init_$Create$(tmp2), '\n').toString();
9186
9138
  }
9187
9139
  function indentWidth(_this__u8e3s4) {
9188
9140
  var tmp$ret$1;
@@ -9237,7 +9189,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9237
9189
  var start;
9238
9190
  var isNegative;
9239
9191
  var limit;
9240
- var firstChar = charSequenceGet(_this__u8e3s4, 0);
9192
+ var firstChar = charCodeAt(_this__u8e3s4, 0);
9241
9193
  if (Char__compareTo_impl_ypi4mb(firstChar, _Char___init__impl__6a9atx(48)) < 0) {
9242
9194
  if (length === 1)
9243
9195
  return null;
@@ -9263,7 +9215,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9263
9215
  do {
9264
9216
  var i = inductionVariable;
9265
9217
  inductionVariable = inductionVariable + 1 | 0;
9266
- var digit = digitOf(charSequenceGet(_this__u8e3s4, i), radix);
9218
+ var digit = digitOf(charCodeAt(_this__u8e3s4, i), radix);
9267
9219
  if (digit < 0)
9268
9220
  return null;
9269
9221
  if (result < limitBeforeMul) {
@@ -9313,10 +9265,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9313
9265
  }
9314
9266
  function removePrefix(_this__u8e3s4, prefix) {
9315
9267
  if (startsWith_3(_this__u8e3s4, prefix)) {
9316
- // Inline function 'kotlin.text.substring' call
9317
- var startIndex = charSequenceLength(prefix);
9318
- // Inline function 'kotlin.js.asDynamic' call
9319
- return _this__u8e3s4.substring(startIndex);
9268
+ return substring_0(_this__u8e3s4, charSequenceLength(prefix));
9320
9269
  }
9321
9270
  return _this__u8e3s4;
9322
9271
  }
@@ -9371,10 +9320,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9371
9320
  }
9372
9321
  function removeSuffix(_this__u8e3s4, suffix) {
9373
9322
  if (endsWith_0(_this__u8e3s4, suffix)) {
9374
- // Inline function 'kotlin.text.substring' call
9375
- var endIndex = _this__u8e3s4.length - charSequenceLength(suffix) | 0;
9376
- // Inline function 'kotlin.js.asDynamic' call
9377
- return _this__u8e3s4.substring(0, endIndex);
9323
+ return substring(_this__u8e3s4, 0, _this__u8e3s4.length - charSequenceLength(suffix) | 0);
9378
9324
  }
9379
9325
  return _this__u8e3s4;
9380
9326
  }
@@ -9395,7 +9341,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9395
9341
  var _iterator__ex2g4s = this_0.p();
9396
9342
  while (_iterator__ex2g4s.q()) {
9397
9343
  var item = _iterator__ex2g4s.r();
9398
- var tmp$ret$1 = substring(_this__u8e3s4, item);
9344
+ var tmp$ret$1 = substring_1(_this__u8e3s4, item);
9399
9345
  destination.e(tmp$ret$1);
9400
9346
  }
9401
9347
  return destination;
@@ -9620,10 +9566,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
9620
9566
  var isLimited = limit > 0;
9621
9567
  var result = ArrayList_init_$Create$_0(isLimited ? coerceAtMost(limit, 10) : 10);
9622
9568
  $l$loop: do {
9623
- var tmp1 = currentOffset;
9569
+ var tmp2 = currentOffset;
9624
9570
  // Inline function 'kotlin.text.substring' call
9625
9571
  var endIndex = nextIndex;
9626
- var tmp$ret$0 = toString_1(charSequenceSubSequence(_this__u8e3s4, tmp1, endIndex));
9572
+ var tmp$ret$0 = toString_1(charSequenceSubSequence(_this__u8e3s4, tmp2, endIndex));
9627
9573
  result.e(tmp$ret$0);
9628
9574
  currentOffset = nextIndex + delimiter.length | 0;
9629
9575
  if (isLimited && result.s() === (limit - 1 | 0))
@@ -9631,16 +9577,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
9631
9577
  nextIndex = indexOf_6(_this__u8e3s4, delimiter, currentOffset, ignoreCase);
9632
9578
  }
9633
9579
  while (!(nextIndex === -1));
9634
- var tmp4 = currentOffset;
9580
+ var tmp2_0 = currentOffset;
9635
9581
  // Inline function 'kotlin.text.substring' call
9636
9582
  var endIndex_0 = charSequenceLength(_this__u8e3s4);
9637
- var tmp$ret$1 = toString_1(charSequenceSubSequence(_this__u8e3s4, tmp4, endIndex_0));
9583
+ var tmp$ret$1 = toString_1(charSequenceSubSequence(_this__u8e3s4, tmp2_0, endIndex_0));
9638
9584
  result.e(tmp$ret$1);
9639
9585
  return result;
9640
9586
  }
9641
- function substring(_this__u8e3s4, range) {
9642
- return toString_1(charSequenceSubSequence(_this__u8e3s4, range.n(), range.o() + 1 | 0));
9643
- }
9644
9587
  function rangesDelimitedBy(_this__u8e3s4, delimiters, startIndex, ignoreCase, limit) {
9645
9588
  startIndex = startIndex === VOID ? 0 : startIndex;
9646
9589
  ignoreCase = ignoreCase === VOID ? false : ignoreCase;
@@ -9649,6 +9592,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
9649
9592
  var delimitersList = asList(delimiters);
9650
9593
  return new DelimitedRangesSequence(_this__u8e3s4, startIndex, limit, rangesDelimitedBy$lambda(delimitersList, ignoreCase));
9651
9594
  }
9595
+ function substring_1(_this__u8e3s4, range) {
9596
+ return toString_1(charSequenceSubSequence(_this__u8e3s4, range.n(), range.o() + 1 | 0));
9597
+ }
9652
9598
  function indexOf_6(_this__u8e3s4, string, startIndex, ignoreCase) {
9653
9599
  startIndex = startIndex === VOID ? 0 : startIndex;
9654
9600
  ignoreCase = ignoreCase === VOID ? false : ignoreCase;
@@ -9868,12 +9814,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
9868
9814
  function lines(_this__u8e3s4) {
9869
9815
  return toList_2(lineSequence(_this__u8e3s4));
9870
9816
  }
9871
- function substring_0(_this__u8e3s4, range) {
9872
- var tmp1 = range.n();
9873
- // Inline function 'kotlin.text.substring' call
9874
- var endIndex = range.o() + 1 | 0;
9875
- // Inline function 'kotlin.js.asDynamic' call
9876
- return _this__u8e3s4.substring(tmp1, endIndex);
9817
+ function substring_2(_this__u8e3s4, range) {
9818
+ return substring(_this__u8e3s4, range.n(), range.o() + 1 | 0);
9877
9819
  }
9878
9820
  function trimStart(_this__u8e3s4, chars) {
9879
9821
  // Inline function 'kotlin.text.trimStart' call
@@ -9901,15 +9843,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9901
9843
  function substringBefore(_this__u8e3s4, delimiter, missingDelimiterValue) {
9902
9844
  missingDelimiterValue = missingDelimiterValue === VOID ? _this__u8e3s4 : missingDelimiterValue;
9903
9845
  var index = indexOf_6(_this__u8e3s4, delimiter);
9904
- var tmp;
9905
- if (index === -1) {
9906
- tmp = missingDelimiterValue;
9907
- } else {
9908
- // Inline function 'kotlin.text.substring' call
9909
- // Inline function 'kotlin.js.asDynamic' call
9910
- tmp = _this__u8e3s4.substring(0, index);
9911
- }
9912
- return tmp;
9846
+ return index === -1 ? missingDelimiterValue : substring(_this__u8e3s4, 0, index);
9913
9847
  }
9914
9848
  function trim(_this__u8e3s4) {
9915
9849
  // Inline function 'kotlin.text.trim' call
@@ -10069,10 +10003,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
10069
10003
  var tmp$ret$0 = _get_value__a43j40_0($this).v2(toLong(1000));
10070
10004
  tmp = millisToNanos(tmp$ret$0).d3();
10071
10005
  } else {
10072
- var tmp2 = _get_value__a43j40_0($this);
10006
+ var tmp0 = _get_value__a43j40_0($this);
10073
10007
  // Inline function 'kotlin.Long.rem' call
10074
10008
  var other = 1000000000;
10075
- tmp = tmp2.v2(toLong(other)).d3();
10009
+ tmp = tmp0.v2(toLong(other)).d3();
10076
10010
  }
10077
10011
  return tmp;
10078
10012
  }
@@ -10111,18 +10045,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
10111
10045
  }
10112
10046
  // Inline function 'kotlin.time.Duration.toComponents' call
10113
10047
  var this_1 = _Duration___get_absoluteValue__impl__vr7i6w($this);
10114
- var tmp1 = _Duration___get_inWholeDays__impl__7bvpxz(this_1);
10048
+ var tmp0 = _Duration___get_inWholeDays__impl__7bvpxz(this_1);
10115
10049
  var tmp2 = _Duration___get_hoursComponent__impl__7hllxa(this_1);
10116
- var tmp3 = _Duration___get_minutesComponent__impl__ctvd8u(this_1);
10117
- var tmp4 = _Duration___get_secondsComponent__impl__if34a6(this_1);
10050
+ var tmp4 = _Duration___get_minutesComponent__impl__ctvd8u(this_1);
10051
+ var tmp6 = _Duration___get_secondsComponent__impl__if34a6(this_1);
10118
10052
  var nanoseconds = _Duration___get_nanosecondsComponent__impl__nh19kq(this_1);
10119
- var hasDays = !tmp1.equals(new Long(0, 0));
10053
+ var hasDays = !tmp0.equals(new Long(0, 0));
10120
10054
  var hasHours = !(tmp2 === 0);
10121
- var hasMinutes = !(tmp3 === 0);
10122
- var hasSeconds = !(tmp4 === 0) || !(nanoseconds === 0);
10055
+ var hasMinutes = !(tmp4 === 0);
10056
+ var hasSeconds = !(tmp6 === 0) || !(nanoseconds === 0);
10123
10057
  var components = 0;
10124
10058
  if (hasDays) {
10125
- this_0.pb(tmp1).y7(_Char___init__impl__6a9atx(100));
10059
+ this_0.pb(tmp0).y7(_Char___init__impl__6a9atx(100));
10126
10060
  components = components + 1 | 0;
10127
10061
  }
10128
10062
  if (hasHours || (hasDays && (hasMinutes || hasSeconds))) {
@@ -10139,7 +10073,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
10139
10073
  if (_unary__edvuaz_0 > 0) {
10140
10074
  this_0.y7(_Char___init__impl__6a9atx(32));
10141
10075
  }
10142
- this_0.ob(tmp3).y7(_Char___init__impl__6a9atx(109));
10076
+ this_0.ob(tmp4).y7(_Char___init__impl__6a9atx(109));
10143
10077
  }
10144
10078
  if (hasSeconds) {
10145
10079
  var _unary__edvuaz_1 = components;
@@ -10147,8 +10081,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
10147
10081
  if (_unary__edvuaz_1 > 0) {
10148
10082
  this_0.y7(_Char___init__impl__6a9atx(32));
10149
10083
  }
10150
- if (!(tmp4 === 0) || hasDays || hasHours || hasMinutes) {
10151
- appendFractional($this, this_0, tmp4, nanoseconds, 9, 's', false);
10084
+ if (!(tmp6 === 0) || hasDays || hasHours || hasMinutes) {
10085
+ appendFractional($this, this_0, tmp6, nanoseconds, 9, 's', false);
10152
10086
  } else if (nanoseconds >= 1000000) {
10153
10087
  appendFractional($this, this_0, nanoseconds / 1000000 | 0, nanoseconds % 1000000 | 0, 6, 'ms', false);
10154
10088
  } else if (nanoseconds >= 1000) {
@@ -10206,16 +10140,16 @@ if (typeof String.prototype.endsWith === 'undefined') {
10206
10140
  this_0.x7('PT');
10207
10141
  // Inline function 'kotlin.time.Duration.toComponents' call
10208
10142
  var this_1 = _Duration___get_absoluteValue__impl__vr7i6w($this);
10209
- var tmp1 = _Duration___get_inWholeHours__impl__kb9f3j(this_1);
10143
+ var tmp0 = _Duration___get_inWholeHours__impl__kb9f3j(this_1);
10210
10144
  var tmp2 = _Duration___get_minutesComponent__impl__ctvd8u(this_1);
10211
- var tmp3 = _Duration___get_secondsComponent__impl__if34a6(this_1);
10145
+ var tmp4 = _Duration___get_secondsComponent__impl__if34a6(this_1);
10212
10146
  var nanoseconds = _Duration___get_nanosecondsComponent__impl__nh19kq(this_1);
10213
- var hours = tmp1;
10147
+ var hours = tmp0;
10214
10148
  if (Duration__isInfinite_impl_tsn9y3($this)) {
10215
10149
  hours = new Long(1316134911, 2328);
10216
10150
  }
10217
10151
  var hasHours = !hours.equals(new Long(0, 0));
10218
- var hasSeconds = !(tmp3 === 0) || !(nanoseconds === 0);
10152
+ var hasSeconds = !(tmp4 === 0) || !(nanoseconds === 0);
10219
10153
  var hasMinutes = !(tmp2 === 0) || (hasSeconds && hasHours);
10220
10154
  if (hasHours) {
10221
10155
  this_0.pb(hours).y7(_Char___init__impl__6a9atx(72));
@@ -10224,7 +10158,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
10224
10158
  this_0.ob(tmp2).y7(_Char___init__impl__6a9atx(77));
10225
10159
  }
10226
10160
  if (hasSeconds || (!hasHours && !hasMinutes)) {
10227
- appendFractional($this, this_0, tmp3, nanoseconds, 9, 'S', true);
10161
+ appendFractional($this, this_0, tmp4, nanoseconds, 9, 'S', true);
10228
10162
  }
10229
10163
  return this_0.toString();
10230
10164
  }
@@ -10534,21 +10468,21 @@ if (typeof String.prototype.endsWith === 'undefined') {
10534
10468
  if (!this.sh_1.equals(other.sh_1)) {
10535
10469
  // Inline function 'kotlin.toULong' call
10536
10470
  var this_0 = this.sh_1;
10537
- var tmp2 = _ULong___init__impl__c78o9k(this_0);
10471
+ var tmp0 = _ULong___init__impl__c78o9k(this_0);
10538
10472
  // Inline function 'kotlin.toULong' call
10539
10473
  var this_1 = other.sh_1;
10540
10474
  // Inline function 'kotlin.ULong.compareTo' call
10541
10475
  var other_0 = _ULong___init__impl__c78o9k(this_1);
10542
- tmp = ulongCompare(_ULong___get_data__impl__fggpzb(tmp2), _ULong___get_data__impl__fggpzb(other_0));
10476
+ tmp = ulongCompare(_ULong___get_data__impl__fggpzb(tmp0), _ULong___get_data__impl__fggpzb(other_0));
10543
10477
  } else {
10544
10478
  // Inline function 'kotlin.toULong' call
10545
10479
  var this_2 = this.th_1;
10546
- var tmp6 = _ULong___init__impl__c78o9k(this_2);
10480
+ var tmp0_0 = _ULong___init__impl__c78o9k(this_2);
10547
10481
  // Inline function 'kotlin.toULong' call
10548
10482
  var this_3 = other.th_1;
10549
10483
  // Inline function 'kotlin.ULong.compareTo' call
10550
10484
  var other_1 = _ULong___init__impl__c78o9k(this_3);
10551
- tmp = ulongCompare(_ULong___get_data__impl__fggpzb(tmp6), _ULong___get_data__impl__fggpzb(other_1));
10485
+ tmp = ulongCompare(_ULong___get_data__impl__fggpzb(tmp0_0), _ULong___get_data__impl__fggpzb(other_1));
10552
10486
  }
10553
10487
  return tmp;
10554
10488
  };
@@ -11390,152 +11324,155 @@ if (typeof String.prototype.endsWith === 'undefined') {
11390
11324
  _.$_$.f7 = booleanArray;
11391
11325
  _.$_$.g7 = captureStack;
11392
11326
  _.$_$.h7 = charArrayOf;
11393
- _.$_$.i7 = charSequenceGet;
11394
- _.$_$.j7 = charSequenceLength;
11395
- _.$_$.k7 = charSequenceSubSequence;
11396
- _.$_$.l7 = compareTo;
11397
- _.$_$.m7 = equals;
11398
- _.$_$.n7 = getBooleanHashCode;
11399
- _.$_$.o7 = getNumberHashCode;
11400
- _.$_$.p7 = getPropertyCallableRef;
11401
- _.$_$.q7 = getStringHashCode;
11402
- _.$_$.r7 = hashCode;
11403
- _.$_$.s7 = initMetadataForClass;
11404
- _.$_$.t7 = initMetadataForCompanion;
11405
- _.$_$.u7 = initMetadataForCoroutine;
11406
- _.$_$.v7 = initMetadataForInterface;
11407
- _.$_$.w7 = initMetadataForLambda;
11408
- _.$_$.x7 = initMetadataForObject;
11409
- _.$_$.y7 = isArray;
11410
- _.$_$.z7 = isBooleanArray;
11411
- _.$_$.a8 = isByteArray;
11412
- _.$_$.b8 = isCharArray;
11413
- _.$_$.c8 = isCharSequence;
11414
- _.$_$.d8 = isDoubleArray;
11415
- _.$_$.e8 = isFloatArray;
11416
- _.$_$.f8 = isIntArray;
11417
- _.$_$.g8 = isInterface;
11418
- _.$_$.h8 = isLongArray;
11419
- _.$_$.i8 = isShortArray;
11420
- _.$_$.j8 = get_js;
11421
- _.$_$.k8 = json;
11422
- _.$_$.l8 = numberRangeToNumber;
11423
- _.$_$.m8 = numberToChar;
11424
- _.$_$.n8 = numberToDouble;
11425
- _.$_$.o8 = numberToInt;
11426
- _.$_$.p8 = numberToLong;
11427
- _.$_$.q8 = objectCreate;
11428
- _.$_$.r8 = protoOf;
11429
- _.$_$.s8 = toByte;
11430
- _.$_$.t8 = toLong;
11431
- _.$_$.u8 = toString_1;
11432
- _.$_$.v8 = roundToInt;
11433
- _.$_$.w8 = withSign;
11434
- _.$_$.x8 = coerceAtLeast_1;
11435
- _.$_$.y8 = coerceAtLeast;
11436
- _.$_$.z8 = coerceAtLeast_0;
11437
- _.$_$.a9 = coerceAtMost;
11438
- _.$_$.b9 = coerceIn;
11439
- _.$_$.c9 = coerceIn_0;
11440
- _.$_$.d9 = until;
11441
- _.$_$.e9 = KClass;
11442
- _.$_$.f9 = KMutableProperty0;
11443
- _.$_$.g9 = KMutableProperty1;
11444
- _.$_$.h9 = KProperty0;
11445
- _.$_$.i9 = KProperty1;
11446
- _.$_$.j9 = KTypeParameter;
11447
- _.$_$.k9 = SequenceScope;
11448
- _.$_$.l9 = Sequence;
11449
- _.$_$.m9 = filter;
11450
- _.$_$.n9 = firstOrNull_0;
11451
- _.$_$.o9 = generateSequence;
11452
- _.$_$.p9 = generateSequence_0;
11453
- _.$_$.q9 = joinToString_1;
11454
- _.$_$.r9 = last_2;
11455
- _.$_$.s9 = mapNotNull;
11456
- _.$_$.t9 = map;
11457
- _.$_$.u9 = maxOrNull_0;
11458
- _.$_$.v9 = onEach;
11459
- _.$_$.w9 = sequence;
11460
- _.$_$.x9 = toList_2;
11461
- _.$_$.y9 = Regex;
11462
- _.$_$.z9 = chunked;
11463
- _.$_$.aa = commonPrefixWith;
11464
- _.$_$.ba = contains_6;
11465
- _.$_$.ca = contains_5;
11466
- _.$_$.da = drop_0;
11467
- _.$_$.ea = endsWith;
11468
- _.$_$.fa = firstOrNull_1;
11469
- _.$_$.ga = first_1;
11470
- _.$_$.ha = get;
11471
- _.$_$.ia = indexOf_5;
11472
- _.$_$.ja = isBlank;
11473
- _.$_$.ka = isDigit;
11474
- _.$_$.la = isWhitespace;
11475
- _.$_$.ma = get_lastIndex_2;
11476
- _.$_$.na = lastIndexOf;
11477
- _.$_$.oa = lineSequence;
11478
- _.$_$.pa = padStart;
11479
- _.$_$.qa = prependIndent;
11480
- _.$_$.ra = removePrefix;
11481
- _.$_$.sa = removeSuffix;
11482
- _.$_$.ta = repeat;
11483
- _.$_$.ua = replace;
11484
- _.$_$.va = replace_0;
11485
- _.$_$.wa = slice_0;
11486
- _.$_$.xa = split;
11487
- _.$_$.ya = startsWith;
11488
- _.$_$.za = startsWith_2;
11489
- _.$_$.ab = startsWith_1;
11490
- _.$_$.bb = substringBefore;
11491
- _.$_$.cb = take_0;
11492
- _.$_$.db = toIntOrNull;
11493
- _.$_$.eb = toInt_0;
11494
- _.$_$.fb = toInt;
11495
- _.$_$.gb = trimIndent;
11496
- _.$_$.hb = trimMargin;
11497
- _.$_$.ib = trimStart;
11498
- _.$_$.jb = trim;
11499
- _.$_$.kb = Duration;
11500
- _.$_$.lb = Uuid;
11501
- _.$_$.mb = ArithmeticException;
11502
- _.$_$.nb = Char;
11503
- _.$_$.ob = ClassCastException;
11504
- _.$_$.pb = Comparable;
11505
- _.$_$.qb = Comparator;
11506
- _.$_$.rb = Enum;
11507
- _.$_$.sb = Exception;
11508
- _.$_$.tb = IllegalArgumentException;
11509
- _.$_$.ub = IllegalStateException;
11510
- _.$_$.vb = Long;
11511
- _.$_$.wb = Pair;
11512
- _.$_$.xb = Result;
11513
- _.$_$.yb = RuntimeException;
11514
- _.$_$.zb = THROW_CCE;
11515
- _.$_$.ac = Triple;
11516
- _.$_$.bc = UByteArray;
11517
- _.$_$.cc = UByte;
11518
- _.$_$.dc = UIntArray;
11519
- _.$_$.ec = UInt;
11520
- _.$_$.fc = ULongArray;
11521
- _.$_$.gc = ULong;
11522
- _.$_$.hc = UShortArray;
11523
- _.$_$.ic = UShort;
11524
- _.$_$.jc = Unit;
11525
- _.$_$.kc = addSuppressed;
11526
- _.$_$.lc = arrayOf;
11527
- _.$_$.mc = closeFinally;
11528
- _.$_$.nc = createFailure;
11529
- _.$_$.oc = ensureNotNull;
11530
- _.$_$.pc = isFinite;
11531
- _.$_$.qc = isFinite_0;
11532
- _.$_$.rc = lazy;
11533
- _.$_$.sc = lazy_0;
11534
- _.$_$.tc = noWhenBranchMatchedException;
11535
- _.$_$.uc = plus_3;
11536
- _.$_$.vc = toList_3;
11537
- _.$_$.wc = toString_0;
11538
- _.$_$.xc = to;
11327
+ _.$_$.i7 = charCodeAt;
11328
+ _.$_$.j7 = charSequenceGet;
11329
+ _.$_$.k7 = charSequenceLength;
11330
+ _.$_$.l7 = charSequenceSubSequence;
11331
+ _.$_$.m7 = compareTo;
11332
+ _.$_$.n7 = equals;
11333
+ _.$_$.o7 = getBooleanHashCode;
11334
+ _.$_$.p7 = getNumberHashCode;
11335
+ _.$_$.q7 = getPropertyCallableRef;
11336
+ _.$_$.r7 = getStringHashCode;
11337
+ _.$_$.s7 = hashCode;
11338
+ _.$_$.t7 = initMetadataForClass;
11339
+ _.$_$.u7 = initMetadataForCompanion;
11340
+ _.$_$.v7 = initMetadataForCoroutine;
11341
+ _.$_$.w7 = initMetadataForInterface;
11342
+ _.$_$.x7 = initMetadataForLambda;
11343
+ _.$_$.y7 = initMetadataForObject;
11344
+ _.$_$.z7 = isArray;
11345
+ _.$_$.a8 = isBooleanArray;
11346
+ _.$_$.b8 = isByteArray;
11347
+ _.$_$.c8 = isCharArray;
11348
+ _.$_$.d8 = isCharSequence;
11349
+ _.$_$.e8 = isDoubleArray;
11350
+ _.$_$.f8 = isFloatArray;
11351
+ _.$_$.g8 = isIntArray;
11352
+ _.$_$.h8 = isInterface;
11353
+ _.$_$.i8 = isLongArray;
11354
+ _.$_$.j8 = isShortArray;
11355
+ _.$_$.k8 = get_js;
11356
+ _.$_$.l8 = json;
11357
+ _.$_$.m8 = numberRangeToNumber;
11358
+ _.$_$.n8 = numberToChar;
11359
+ _.$_$.o8 = numberToDouble;
11360
+ _.$_$.p8 = numberToInt;
11361
+ _.$_$.q8 = numberToLong;
11362
+ _.$_$.r8 = objectCreate;
11363
+ _.$_$.s8 = protoOf;
11364
+ _.$_$.t8 = toByte;
11365
+ _.$_$.u8 = toLong;
11366
+ _.$_$.v8 = toString_1;
11367
+ _.$_$.w8 = roundToInt;
11368
+ _.$_$.x8 = withSign;
11369
+ _.$_$.y8 = coerceAtLeast_1;
11370
+ _.$_$.z8 = coerceAtLeast;
11371
+ _.$_$.a9 = coerceAtLeast_0;
11372
+ _.$_$.b9 = coerceAtMost;
11373
+ _.$_$.c9 = coerceIn;
11374
+ _.$_$.d9 = coerceIn_0;
11375
+ _.$_$.e9 = until;
11376
+ _.$_$.f9 = KClass;
11377
+ _.$_$.g9 = KMutableProperty0;
11378
+ _.$_$.h9 = KMutableProperty1;
11379
+ _.$_$.i9 = KProperty0;
11380
+ _.$_$.j9 = KProperty1;
11381
+ _.$_$.k9 = KTypeParameter;
11382
+ _.$_$.l9 = SequenceScope;
11383
+ _.$_$.m9 = Sequence;
11384
+ _.$_$.n9 = filter;
11385
+ _.$_$.o9 = firstOrNull_0;
11386
+ _.$_$.p9 = generateSequence;
11387
+ _.$_$.q9 = generateSequence_0;
11388
+ _.$_$.r9 = joinToString_1;
11389
+ _.$_$.s9 = last_2;
11390
+ _.$_$.t9 = mapNotNull;
11391
+ _.$_$.u9 = map;
11392
+ _.$_$.v9 = maxOrNull_0;
11393
+ _.$_$.w9 = onEach;
11394
+ _.$_$.x9 = sequence;
11395
+ _.$_$.y9 = toList_2;
11396
+ _.$_$.z9 = Regex;
11397
+ _.$_$.aa = chunked;
11398
+ _.$_$.ba = commonPrefixWith;
11399
+ _.$_$.ca = contains_6;
11400
+ _.$_$.da = contains_5;
11401
+ _.$_$.ea = drop_0;
11402
+ _.$_$.fa = endsWith;
11403
+ _.$_$.ga = firstOrNull_1;
11404
+ _.$_$.ha = first_1;
11405
+ _.$_$.ia = get;
11406
+ _.$_$.ja = indexOf_5;
11407
+ _.$_$.ka = isBlank;
11408
+ _.$_$.la = isDigit;
11409
+ _.$_$.ma = isWhitespace;
11410
+ _.$_$.na = get_lastIndex_2;
11411
+ _.$_$.oa = lastIndexOf;
11412
+ _.$_$.pa = lineSequence;
11413
+ _.$_$.qa = padStart;
11414
+ _.$_$.ra = prependIndent;
11415
+ _.$_$.sa = removePrefix;
11416
+ _.$_$.ta = removeSuffix;
11417
+ _.$_$.ua = repeat;
11418
+ _.$_$.va = replace;
11419
+ _.$_$.wa = replace_0;
11420
+ _.$_$.xa = slice_0;
11421
+ _.$_$.ya = split;
11422
+ _.$_$.za = startsWith;
11423
+ _.$_$.ab = startsWith_2;
11424
+ _.$_$.bb = startsWith_1;
11425
+ _.$_$.cb = substringBefore;
11426
+ _.$_$.db = substring_0;
11427
+ _.$_$.eb = substring;
11428
+ _.$_$.fb = take_0;
11429
+ _.$_$.gb = toIntOrNull;
11430
+ _.$_$.hb = toInt_0;
11431
+ _.$_$.ib = toInt;
11432
+ _.$_$.jb = trimIndent;
11433
+ _.$_$.kb = trimMargin;
11434
+ _.$_$.lb = trimStart;
11435
+ _.$_$.mb = trim;
11436
+ _.$_$.nb = Duration;
11437
+ _.$_$.ob = Uuid;
11438
+ _.$_$.pb = ArithmeticException;
11439
+ _.$_$.qb = Char;
11440
+ _.$_$.rb = ClassCastException;
11441
+ _.$_$.sb = Comparable;
11442
+ _.$_$.tb = Comparator;
11443
+ _.$_$.ub = Enum;
11444
+ _.$_$.vb = Exception;
11445
+ _.$_$.wb = IllegalArgumentException;
11446
+ _.$_$.xb = IllegalStateException;
11447
+ _.$_$.yb = Long;
11448
+ _.$_$.zb = Pair;
11449
+ _.$_$.ac = Result;
11450
+ _.$_$.bc = RuntimeException;
11451
+ _.$_$.cc = THROW_CCE;
11452
+ _.$_$.dc = Triple;
11453
+ _.$_$.ec = UByteArray;
11454
+ _.$_$.fc = UByte;
11455
+ _.$_$.gc = UIntArray;
11456
+ _.$_$.hc = UInt;
11457
+ _.$_$.ic = ULongArray;
11458
+ _.$_$.jc = ULong;
11459
+ _.$_$.kc = UShortArray;
11460
+ _.$_$.lc = UShort;
11461
+ _.$_$.mc = Unit;
11462
+ _.$_$.nc = addSuppressed;
11463
+ _.$_$.oc = arrayOf;
11464
+ _.$_$.pc = closeFinally;
11465
+ _.$_$.qc = createFailure;
11466
+ _.$_$.rc = ensureNotNull;
11467
+ _.$_$.sc = isFinite;
11468
+ _.$_$.tc = isFinite_0;
11469
+ _.$_$.uc = lazy;
11470
+ _.$_$.vc = lazy_0;
11471
+ _.$_$.wc = noWhenBranchMatchedException;
11472
+ _.$_$.xc = plus_3;
11473
+ _.$_$.yc = toList_3;
11474
+ _.$_$.zc = toString_0;
11475
+ _.$_$.ad = to;
11539
11476
  //endregion
11540
11477
  return _;
11541
11478
  }(module.exports));