git-digger 1.2.16 → 1.2.17

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.
@@ -32,11 +32,6 @@ if (typeof Array.prototype.fill === 'undefined') {
32
32
  Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
33
33
  }
34
34
  });
35
- if (typeof Math.log10 === 'undefined') {
36
- Math.log10 = function (x) {
37
- return Math.log(x) * Math.LOG10E;
38
- };
39
- }
40
35
  if (typeof Math.clz32 === 'undefined') {
41
36
  Math.clz32 = function (log, LN2) {
42
37
  return function (x) {
@@ -48,11 +43,22 @@ if (typeof Math.clz32 === 'undefined') {
48
43
  };
49
44
  }(Math.log, Math.LN2);
50
45
  }
46
+ if (typeof Math.log10 === 'undefined') {
47
+ Math.log10 = function (x) {
48
+ return Math.log(x) * Math.LOG10E;
49
+ };
50
+ }
51
51
  if (typeof Math.log2 === 'undefined') {
52
52
  Math.log2 = function (x) {
53
53
  return Math.log(x) * Math.LOG2E;
54
54
  };
55
55
  }
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
+ }});
61
+ }
56
62
  if (typeof String.prototype.endsWith === 'undefined') {
57
63
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
58
64
  var subjectString = this.toString();
@@ -64,12 +70,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
64
70
  return lastIndex !== -1 && lastIndex === position;
65
71
  }});
66
72
  }
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
  if (typeof Math.imul === 'undefined') {
74
74
  Math.imul = function imul(a, b) {
75
75
  return (a & 4.29490176E9) * (b & 65535) + (a & 65535) * (b | 0) | 0;
@@ -11056,322 +11056,323 @@ if (typeof Math.imul === 'undefined') {
11056
11056
  _.$_$.z = AssertionError_init_$Create$_0;
11057
11057
  _.$_$.a1 = Error_init_$Create$_0;
11058
11058
  _.$_$.b1 = Exception_init_$Init$_0;
11059
- _.$_$.c1 = IllegalArgumentException_init_$Create$_2;
11060
- _.$_$.d1 = IllegalArgumentException_init_$Init$;
11061
- _.$_$.e1 = IllegalArgumentException_init_$Init$_0;
11062
- _.$_$.f1 = IllegalArgumentException_init_$Create$_0;
11063
- _.$_$.g1 = IllegalArgumentException_init_$Init$_1;
11064
- _.$_$.h1 = IllegalArgumentException_init_$Create$_1;
11065
- _.$_$.i1 = IllegalStateException_init_$Init$_0;
11066
- _.$_$.j1 = IllegalStateException_init_$Create$_0;
11067
- _.$_$.k1 = IndexOutOfBoundsException_init_$Create$;
11068
- _.$_$.l1 = IndexOutOfBoundsException_init_$Create$_0;
11069
- _.$_$.m1 = NoSuchElementException_init_$Create$;
11070
- _.$_$.n1 = NoSuchElementException_init_$Create$_0;
11071
- _.$_$.o1 = RuntimeException_init_$Create$_0;
11072
- _.$_$.p1 = RuntimeException_init_$Init$_1;
11073
- _.$_$.q1 = UnsupportedOperationException_init_$Create$_0;
11074
- _.$_$.r1 = Duration__toIsoString_impl_9h6wsm;
11075
- _.$_$.s1 = _Char___init__impl__6a9atx;
11076
- _.$_$.t1 = Char__hashCode_impl_otmys;
11077
- _.$_$.u1 = Char__toInt_impl_vasixd;
11078
- _.$_$.v1 = toString;
11079
- _.$_$.w1 = _Result___init__impl__xyqfz8;
11080
- _.$_$.x1 = _Result___get_isFailure__impl__jpiriv;
11081
- _.$_$.y1 = _Result___get_isSuccess__impl__sndoy8;
11082
- _.$_$.z1 = _Result___get_value__impl__bjfvqg;
11083
- _.$_$.a2 = _UByte___init__impl__g9hnc4;
11084
- _.$_$.b2 = _UByte___get_data__impl__jof9qr;
11085
- _.$_$.c2 = UByte__toString_impl_v72jg;
11086
- _.$_$.d2 = UByteArray__get_impl_t5f3hv;
11087
- _.$_$.e2 = _UByteArray___get_size__impl__h6pkdv;
11088
- _.$_$.f2 = _UInt___init__impl__l7qpdl;
11089
- _.$_$.g2 = _UInt___get_data__impl__f0vqqw;
11090
- _.$_$.h2 = UInt__toString_impl_dbgl21;
11091
- _.$_$.i2 = UIntArray__get_impl_gp5kza;
11092
- _.$_$.j2 = _UIntArray___get_size__impl__r6l8ci;
11093
- _.$_$.k2 = _ULong___init__impl__c78o9k;
11094
- _.$_$.l2 = _ULong___get_data__impl__fggpzb;
11095
- _.$_$.m2 = ULong__toString_impl_f9au7k;
11096
- _.$_$.n2 = ULongArray__get_impl_pr71q9;
11097
- _.$_$.o2 = _ULongArray___get_size__impl__ju6dtr;
11098
- _.$_$.p2 = _UShort___init__impl__jigrne;
11099
- _.$_$.q2 = _UShort___get_data__impl__g0245;
11100
- _.$_$.r2 = UShort__toString_impl_edaoee;
11101
- _.$_$.s2 = UShortArray__get_impl_fnbhmx;
11102
- _.$_$.t2 = _UShortArray___get_size__impl__jqto1b;
11103
- _.$_$.u2 = BooleanCompanionObject_instance;
11104
- _.$_$.v2 = ByteCompanionObject_instance;
11105
- _.$_$.w2 = DoubleCompanionObject_instance;
11106
- _.$_$.x2 = FloatCompanionObject_instance;
11107
- _.$_$.y2 = IntCompanionObject_instance;
11108
- _.$_$.z2 = ShortCompanionObject_instance;
11109
- _.$_$.a3 = StringCompanionObject_instance;
11110
- _.$_$.b3 = PrimitiveClasses_getInstance;
11111
- _.$_$.c3 = Companion_getInstance_11;
11112
- _.$_$.d3 = Companion_getInstance_2;
11113
- _.$_$.e3 = Companion_getInstance_4;
11114
- _.$_$.f3 = Companion_instance_12;
11115
- _.$_$.g3 = Companion_getInstance_13;
11116
- _.$_$.h3 = Companion_getInstance_14;
11117
- _.$_$.i3 = Companion_getInstance_15;
11118
- _.$_$.j3 = Companion_getInstance_16;
11119
- _.$_$.k3 = Unit_instance;
11120
- _.$_$.l3 = ArrayList;
11121
- _.$_$.m3 = Collection;
11122
- _.$_$.n3 = HashMap;
11123
- _.$_$.o3 = HashSet;
11124
- _.$_$.p3 = LinkedHashMap;
11125
- _.$_$.q3 = LinkedHashSet;
11126
- _.$_$.r3 = List;
11127
- _.$_$.s3 = Entry;
11128
- _.$_$.t3 = Map_0;
11129
- _.$_$.u3 = MutableList;
11130
- _.$_$.v3 = MutableMap;
11131
- _.$_$.w3 = MutableSet;
11132
- _.$_$.x3 = Set;
11133
- _.$_$.y3 = addAll;
11134
- _.$_$.z3 = asList;
11135
- _.$_$.a4 = asReversed_0;
11136
- _.$_$.b4 = asReversed;
11137
- _.$_$.c4 = asSequence_0;
11138
- _.$_$.d4 = binarySearch;
11139
- _.$_$.e4 = checkBuilderCapacity;
11140
- _.$_$.f4 = checkCountOverflow;
11141
- _.$_$.g4 = checkIndexOverflow;
11142
- _.$_$.h4 = collectionSizeOrDefault;
11143
- _.$_$.i4 = contains;
11144
- _.$_$.j4 = contentEquals_0;
11145
- _.$_$.k4 = contentEquals_1;
11146
- _.$_$.l4 = contentHashCode;
11147
- _.$_$.m4 = copyOf_1;
11148
- _.$_$.n4 = copyOf;
11149
- _.$_$.o4 = copyOf_0;
11150
- _.$_$.p4 = copyToArray;
11151
- _.$_$.q4 = distinct;
11152
- _.$_$.r4 = dropLast;
11153
- _.$_$.s4 = drop;
11154
- _.$_$.t4 = emptyList;
11155
- _.$_$.u4 = emptyMap;
11156
- _.$_$.v4 = emptySet;
11157
- _.$_$.w4 = filterNotNull;
11158
- _.$_$.x4 = firstOrNull;
11159
- _.$_$.y4 = first_0;
11160
- _.$_$.z4 = first;
11161
- _.$_$.a5 = flatten;
11162
- _.$_$.b5 = getOrNull_0;
11163
- _.$_$.c5 = getValue;
11164
- _.$_$.d5 = hashMapOf;
11165
- _.$_$.e5 = get_indices;
11166
- _.$_$.f5 = get_indices_0;
11167
- _.$_$.g5 = joinToString_0;
11168
- _.$_$.h5 = joinTo_0;
11169
- _.$_$.i5 = get_lastIndex;
11170
- _.$_$.j5 = get_lastIndex_1;
11171
- _.$_$.k5 = get_lastIndex_0;
11172
- _.$_$.l5 = lastOrNull_1;
11173
- _.$_$.m5 = lastOrNull_2;
11174
- _.$_$.n5 = lastOrNull;
11175
- _.$_$.o5 = lastOrNull_0;
11176
- _.$_$.p5 = last_0;
11177
- _.$_$.q5 = last;
11178
- _.$_$.r5 = listOf;
11179
- _.$_$.s5 = listOf_0;
11180
- _.$_$.t5 = mapCapacity;
11181
- _.$_$.u5 = mapOf_0;
11182
- _.$_$.v5 = maxOrNull;
11183
- _.$_$.w5 = max;
11184
- _.$_$.x5 = minus_0;
11185
- _.$_$.y5 = minus;
11186
- _.$_$.z5 = mutableListOf;
11187
- _.$_$.a6 = mutableMapOf;
11188
- _.$_$.b6 = plus_1;
11189
- _.$_$.c6 = plus_2;
11190
- _.$_$.d6 = plus_3;
11191
- _.$_$.e6 = plus;
11192
- _.$_$.f6 = plus_0;
11193
- _.$_$.g6 = removeLastOrNull;
11194
- _.$_$.h6 = removeLast;
11195
- _.$_$.i6 = reversed;
11196
- _.$_$.j6 = setOf;
11197
- _.$_$.k6 = setOf_0;
11198
- _.$_$.l6 = single_0;
11199
- _.$_$.m6 = slice_0;
11200
- _.$_$.n6 = slice;
11201
- _.$_$.o6 = sortWith;
11202
- _.$_$.p6 = sortedWith;
11203
- _.$_$.q6 = sorted;
11204
- _.$_$.r6 = sort;
11205
- _.$_$.s6 = sum;
11206
- _.$_$.t6 = takeLast;
11207
- _.$_$.u6 = toBooleanArray;
11208
- _.$_$.v6 = toHashSet;
11209
- _.$_$.w6 = toList_1;
11210
- _.$_$.x6 = toList_0;
11211
- _.$_$.y6 = toList;
11212
- _.$_$.z6 = toMap;
11213
- _.$_$.a7 = toMutableList_0;
11214
- _.$_$.b7 = toMutableMap;
11215
- _.$_$.c7 = toSet_0;
11216
- _.$_$.d7 = toSet;
11217
- _.$_$.e7 = withDefault;
11218
- _.$_$.f7 = withIndex;
11219
- _.$_$.g7 = withIndex_0;
11220
- _.$_$.h7 = zip;
11221
- _.$_$.i7 = compareValues;
11222
- _.$_$.j7 = enumEntries;
11223
- _.$_$.k7 = println_0;
11224
- _.$_$.l7 = println;
11225
- _.$_$.m7 = print;
11226
- _.$_$.n7 = arrayIterator;
11227
- _.$_$.o7 = booleanArray;
11228
- _.$_$.p7 = captureStack;
11229
- _.$_$.q7 = charArrayOf;
11230
- _.$_$.r7 = charArray;
11231
- _.$_$.s7 = charSequenceGet;
11232
- _.$_$.t7 = charSequenceLength;
11233
- _.$_$.u7 = charSequenceSubSequence;
11234
- _.$_$.v7 = classMeta;
11235
- _.$_$.w7 = compareTo_0;
11236
- _.$_$.x7 = equals_0;
11237
- _.$_$.y7 = fillArrayVal;
11238
- _.$_$.z7 = getBooleanHashCode;
11239
- _.$_$.a8 = getNumberHashCode;
11240
- _.$_$.b8 = getPropertyCallableRef;
11241
- _.$_$.c8 = getStringHashCode;
11242
- _.$_$.d8 = hashCode;
11243
- _.$_$.e8 = interfaceMeta;
11244
- _.$_$.f8 = isArray;
11245
- _.$_$.g8 = isBooleanArray;
11246
- _.$_$.h8 = isByteArray;
11247
- _.$_$.i8 = isCharArray;
11248
- _.$_$.j8 = isCharSequence;
11249
- _.$_$.k8 = isDoubleArray;
11250
- _.$_$.l8 = isFloatArray;
11251
- _.$_$.m8 = isIntArray;
11252
- _.$_$.n8 = isInterface;
11253
- _.$_$.o8 = isLongArray;
11254
- _.$_$.p8 = isShortArray;
11255
- _.$_$.q8 = get_js;
11256
- _.$_$.r8 = json;
11257
- _.$_$.s8 = numberRangeToNumber;
11258
- _.$_$.t8 = numberToChar;
11259
- _.$_$.u8 = numberToDouble;
11260
- _.$_$.v8 = numberToInt;
11261
- _.$_$.w8 = numberToLong;
11262
- _.$_$.x8 = objectCreate;
11263
- _.$_$.y8 = objectMeta;
11264
- _.$_$.z8 = protoOf;
11265
- _.$_$.a9 = setMetadataFor;
11266
- _.$_$.b9 = toLong;
11267
- _.$_$.c9 = toString_1;
11268
- _.$_$.d9 = roundToInt;
11269
- _.$_$.e9 = withSign;
11270
- _.$_$.f9 = IntRange;
11271
- _.$_$.g9 = coerceAtLeast_1;
11272
- _.$_$.h9 = coerceAtLeast;
11273
- _.$_$.i9 = coerceAtLeast_0;
11274
- _.$_$.j9 = coerceAtMost;
11275
- _.$_$.k9 = coerceIn;
11276
- _.$_$.l9 = coerceIn_0;
11277
- _.$_$.m9 = until;
11278
- _.$_$.n9 = KClass;
11279
- _.$_$.o9 = KMutableProperty0;
11280
- _.$_$.p9 = KMutableProperty1;
11281
- _.$_$.q9 = KProperty0;
11282
- _.$_$.r9 = KProperty1;
11283
- _.$_$.s9 = KTypeParameter;
11284
- _.$_$.t9 = filter;
11285
- _.$_$.u9 = generateSequence_0;
11286
- _.$_$.v9 = generateSequence;
11287
- _.$_$.w9 = joinToString_1;
11288
- _.$_$.x9 = mapNotNull;
11289
- _.$_$.y9 = map;
11290
- _.$_$.z9 = maxOrNull_0;
11291
- _.$_$.aa = toList_2;
11292
- _.$_$.ba = Regex;
11293
- _.$_$.ca = chunked;
11294
- _.$_$.da = commonPrefixWith;
11295
- _.$_$.ea = concatToString;
11296
- _.$_$.fa = contains_5;
11297
- _.$_$.ga = contains_6;
11298
- _.$_$.ha = drop_0;
11299
- _.$_$.ia = endsWith;
11300
- _.$_$.ja = equals;
11301
- _.$_$.ka = firstOrNull_0;
11302
- _.$_$.la = first_1;
11303
- _.$_$.ma = get;
11304
- _.$_$.na = indexOf_6;
11305
- _.$_$.oa = indexOf_5;
11306
- _.$_$.pa = isBlank;
11307
- _.$_$.qa = isDigit;
11308
- _.$_$.ra = isHighSurrogate;
11309
- _.$_$.sa = isLowSurrogate;
11310
- _.$_$.ta = isLowerCase;
11311
- _.$_$.ua = isWhitespace;
11312
- _.$_$.va = get_lastIndex_2;
11313
- _.$_$.wa = lastIndexOf;
11314
- _.$_$.xa = matches;
11315
- _.$_$.ya = padStart;
11316
- _.$_$.za = prependIndent;
11317
- _.$_$.ab = removePrefix;
11318
- _.$_$.bb = removeSuffix;
11319
- _.$_$.cb = removeSurrounding;
11320
- _.$_$.db = repeat;
11321
- _.$_$.eb = replace;
11322
- _.$_$.fb = replace_0;
11323
- _.$_$.gb = slice_1;
11324
- _.$_$.hb = split_1;
11325
- _.$_$.ib = split;
11326
- _.$_$.jb = startsWith;
11327
- _.$_$.kb = startsWith_2;
11328
- _.$_$.lb = startsWith_1;
11329
- _.$_$.mb = substringBefore;
11330
- _.$_$.nb = take_1;
11331
- _.$_$.ob = titlecase;
11332
- _.$_$.pb = toIntOrNull;
11333
- _.$_$.qb = toInt_0;
11334
- _.$_$.rb = toInt;
11335
- _.$_$.sb = trimIndent;
11336
- _.$_$.tb = trimMargin;
11337
- _.$_$.ub = trimStart;
11338
- _.$_$.vb = trim;
11339
- _.$_$.wb = Duration;
11340
- _.$_$.xb = ArithmeticException;
11341
- _.$_$.yb = Char;
11342
- _.$_$.zb = ClassCastException;
11343
- _.$_$.ac = Comparable;
11344
- _.$_$.bc = Comparator;
11345
- _.$_$.cc = Enum;
11346
- _.$_$.dc = Exception;
11347
- _.$_$.ec = IllegalArgumentException;
11348
- _.$_$.fc = IllegalStateException;
11349
- _.$_$.gc = Long;
11350
- _.$_$.hc = Pair;
11351
- _.$_$.ic = Result;
11352
- _.$_$.jc = RuntimeException;
11353
- _.$_$.kc = THROW_CCE;
11354
- _.$_$.lc = Triple;
11355
- _.$_$.mc = UByteArray;
11356
- _.$_$.nc = UByte;
11357
- _.$_$.oc = UIntArray;
11358
- _.$_$.pc = UInt;
11359
- _.$_$.qc = ULongArray;
11360
- _.$_$.rc = ULong;
11361
- _.$_$.sc = UShortArray;
11362
- _.$_$.tc = UShort;
11363
- _.$_$.uc = Unit;
11364
- _.$_$.vc = addSuppressed;
11365
- _.$_$.wc = arrayOf;
11366
- _.$_$.xc = createFailure;
11367
- _.$_$.yc = ensureNotNull;
11368
- _.$_$.zc = isFinite_0;
11369
- _.$_$.ad = isFinite;
11370
- _.$_$.bd = lazy;
11371
- _.$_$.cd = lazy_0;
11372
- _.$_$.dd = noWhenBranchMatchedException;
11373
- _.$_$.ed = toString_0;
11374
- _.$_$.fd = to;
11059
+ _.$_$.c1 = Exception_init_$Create$_0;
11060
+ _.$_$.d1 = IllegalArgumentException_init_$Create$_2;
11061
+ _.$_$.e1 = IllegalArgumentException_init_$Init$;
11062
+ _.$_$.f1 = IllegalArgumentException_init_$Init$_0;
11063
+ _.$_$.g1 = IllegalArgumentException_init_$Create$_0;
11064
+ _.$_$.h1 = IllegalArgumentException_init_$Init$_1;
11065
+ _.$_$.i1 = IllegalArgumentException_init_$Create$_1;
11066
+ _.$_$.j1 = IllegalStateException_init_$Init$_0;
11067
+ _.$_$.k1 = IllegalStateException_init_$Create$_0;
11068
+ _.$_$.l1 = IndexOutOfBoundsException_init_$Create$;
11069
+ _.$_$.m1 = IndexOutOfBoundsException_init_$Create$_0;
11070
+ _.$_$.n1 = NoSuchElementException_init_$Create$;
11071
+ _.$_$.o1 = NoSuchElementException_init_$Create$_0;
11072
+ _.$_$.p1 = RuntimeException_init_$Create$_0;
11073
+ _.$_$.q1 = RuntimeException_init_$Init$_1;
11074
+ _.$_$.r1 = UnsupportedOperationException_init_$Create$_0;
11075
+ _.$_$.s1 = Duration__toIsoString_impl_9h6wsm;
11076
+ _.$_$.t1 = _Char___init__impl__6a9atx;
11077
+ _.$_$.u1 = Char__hashCode_impl_otmys;
11078
+ _.$_$.v1 = Char__toInt_impl_vasixd;
11079
+ _.$_$.w1 = toString;
11080
+ _.$_$.x1 = _Result___init__impl__xyqfz8;
11081
+ _.$_$.y1 = _Result___get_isFailure__impl__jpiriv;
11082
+ _.$_$.z1 = _Result___get_isSuccess__impl__sndoy8;
11083
+ _.$_$.a2 = _Result___get_value__impl__bjfvqg;
11084
+ _.$_$.b2 = _UByte___init__impl__g9hnc4;
11085
+ _.$_$.c2 = _UByte___get_data__impl__jof9qr;
11086
+ _.$_$.d2 = UByte__toString_impl_v72jg;
11087
+ _.$_$.e2 = UByteArray__get_impl_t5f3hv;
11088
+ _.$_$.f2 = _UByteArray___get_size__impl__h6pkdv;
11089
+ _.$_$.g2 = _UInt___init__impl__l7qpdl;
11090
+ _.$_$.h2 = _UInt___get_data__impl__f0vqqw;
11091
+ _.$_$.i2 = UInt__toString_impl_dbgl21;
11092
+ _.$_$.j2 = UIntArray__get_impl_gp5kza;
11093
+ _.$_$.k2 = _UIntArray___get_size__impl__r6l8ci;
11094
+ _.$_$.l2 = _ULong___init__impl__c78o9k;
11095
+ _.$_$.m2 = _ULong___get_data__impl__fggpzb;
11096
+ _.$_$.n2 = ULong__toString_impl_f9au7k;
11097
+ _.$_$.o2 = ULongArray__get_impl_pr71q9;
11098
+ _.$_$.p2 = _ULongArray___get_size__impl__ju6dtr;
11099
+ _.$_$.q2 = _UShort___init__impl__jigrne;
11100
+ _.$_$.r2 = _UShort___get_data__impl__g0245;
11101
+ _.$_$.s2 = UShort__toString_impl_edaoee;
11102
+ _.$_$.t2 = UShortArray__get_impl_fnbhmx;
11103
+ _.$_$.u2 = _UShortArray___get_size__impl__jqto1b;
11104
+ _.$_$.v2 = BooleanCompanionObject_instance;
11105
+ _.$_$.w2 = ByteCompanionObject_instance;
11106
+ _.$_$.x2 = DoubleCompanionObject_instance;
11107
+ _.$_$.y2 = FloatCompanionObject_instance;
11108
+ _.$_$.z2 = IntCompanionObject_instance;
11109
+ _.$_$.a3 = ShortCompanionObject_instance;
11110
+ _.$_$.b3 = StringCompanionObject_instance;
11111
+ _.$_$.c3 = PrimitiveClasses_getInstance;
11112
+ _.$_$.d3 = Companion_getInstance_11;
11113
+ _.$_$.e3 = Companion_getInstance_2;
11114
+ _.$_$.f3 = Companion_getInstance_4;
11115
+ _.$_$.g3 = Companion_instance_12;
11116
+ _.$_$.h3 = Companion_getInstance_13;
11117
+ _.$_$.i3 = Companion_getInstance_14;
11118
+ _.$_$.j3 = Companion_getInstance_15;
11119
+ _.$_$.k3 = Companion_getInstance_16;
11120
+ _.$_$.l3 = Unit_instance;
11121
+ _.$_$.m3 = ArrayList;
11122
+ _.$_$.n3 = Collection;
11123
+ _.$_$.o3 = HashMap;
11124
+ _.$_$.p3 = HashSet;
11125
+ _.$_$.q3 = LinkedHashMap;
11126
+ _.$_$.r3 = LinkedHashSet;
11127
+ _.$_$.s3 = List;
11128
+ _.$_$.t3 = Entry;
11129
+ _.$_$.u3 = Map_0;
11130
+ _.$_$.v3 = MutableList;
11131
+ _.$_$.w3 = MutableMap;
11132
+ _.$_$.x3 = MutableSet;
11133
+ _.$_$.y3 = Set;
11134
+ _.$_$.z3 = addAll;
11135
+ _.$_$.a4 = asList;
11136
+ _.$_$.b4 = asReversed_0;
11137
+ _.$_$.c4 = asReversed;
11138
+ _.$_$.d4 = asSequence_0;
11139
+ _.$_$.e4 = binarySearch;
11140
+ _.$_$.f4 = checkBuilderCapacity;
11141
+ _.$_$.g4 = checkCountOverflow;
11142
+ _.$_$.h4 = checkIndexOverflow;
11143
+ _.$_$.i4 = collectionSizeOrDefault;
11144
+ _.$_$.j4 = contains;
11145
+ _.$_$.k4 = contentEquals_0;
11146
+ _.$_$.l4 = contentEquals_1;
11147
+ _.$_$.m4 = contentHashCode;
11148
+ _.$_$.n4 = copyOf_1;
11149
+ _.$_$.o4 = copyOf;
11150
+ _.$_$.p4 = copyOf_0;
11151
+ _.$_$.q4 = copyToArray;
11152
+ _.$_$.r4 = distinct;
11153
+ _.$_$.s4 = dropLast;
11154
+ _.$_$.t4 = drop;
11155
+ _.$_$.u4 = emptyList;
11156
+ _.$_$.v4 = emptyMap;
11157
+ _.$_$.w4 = emptySet;
11158
+ _.$_$.x4 = filterNotNull;
11159
+ _.$_$.y4 = firstOrNull;
11160
+ _.$_$.z4 = first_0;
11161
+ _.$_$.a5 = first;
11162
+ _.$_$.b5 = flatten;
11163
+ _.$_$.c5 = getOrNull_0;
11164
+ _.$_$.d5 = getValue;
11165
+ _.$_$.e5 = hashMapOf;
11166
+ _.$_$.f5 = get_indices;
11167
+ _.$_$.g5 = get_indices_0;
11168
+ _.$_$.h5 = joinToString_0;
11169
+ _.$_$.i5 = joinTo_0;
11170
+ _.$_$.j5 = get_lastIndex;
11171
+ _.$_$.k5 = get_lastIndex_1;
11172
+ _.$_$.l5 = get_lastIndex_0;
11173
+ _.$_$.m5 = lastOrNull_1;
11174
+ _.$_$.n5 = lastOrNull_2;
11175
+ _.$_$.o5 = lastOrNull;
11176
+ _.$_$.p5 = lastOrNull_0;
11177
+ _.$_$.q5 = last_0;
11178
+ _.$_$.r5 = last;
11179
+ _.$_$.s5 = listOf;
11180
+ _.$_$.t5 = listOf_0;
11181
+ _.$_$.u5 = mapCapacity;
11182
+ _.$_$.v5 = mapOf_0;
11183
+ _.$_$.w5 = maxOrNull;
11184
+ _.$_$.x5 = max;
11185
+ _.$_$.y5 = minus_0;
11186
+ _.$_$.z5 = minus;
11187
+ _.$_$.a6 = mutableListOf;
11188
+ _.$_$.b6 = mutableMapOf;
11189
+ _.$_$.c6 = plus_1;
11190
+ _.$_$.d6 = plus_2;
11191
+ _.$_$.e6 = plus_3;
11192
+ _.$_$.f6 = plus;
11193
+ _.$_$.g6 = plus_0;
11194
+ _.$_$.h6 = removeLastOrNull;
11195
+ _.$_$.i6 = removeLast;
11196
+ _.$_$.j6 = reversed;
11197
+ _.$_$.k6 = setOf;
11198
+ _.$_$.l6 = setOf_0;
11199
+ _.$_$.m6 = single_0;
11200
+ _.$_$.n6 = slice_0;
11201
+ _.$_$.o6 = slice;
11202
+ _.$_$.p6 = sortWith;
11203
+ _.$_$.q6 = sortedWith;
11204
+ _.$_$.r6 = sorted;
11205
+ _.$_$.s6 = sort;
11206
+ _.$_$.t6 = sum;
11207
+ _.$_$.u6 = takeLast;
11208
+ _.$_$.v6 = toBooleanArray;
11209
+ _.$_$.w6 = toHashSet;
11210
+ _.$_$.x6 = toList_1;
11211
+ _.$_$.y6 = toList_0;
11212
+ _.$_$.z6 = toList;
11213
+ _.$_$.a7 = toMap;
11214
+ _.$_$.b7 = toMutableList_0;
11215
+ _.$_$.c7 = toMutableMap;
11216
+ _.$_$.d7 = toSet_0;
11217
+ _.$_$.e7 = toSet;
11218
+ _.$_$.f7 = withDefault;
11219
+ _.$_$.g7 = withIndex;
11220
+ _.$_$.h7 = withIndex_0;
11221
+ _.$_$.i7 = zip;
11222
+ _.$_$.j7 = compareValues;
11223
+ _.$_$.k7 = enumEntries;
11224
+ _.$_$.l7 = println_0;
11225
+ _.$_$.m7 = println;
11226
+ _.$_$.n7 = print;
11227
+ _.$_$.o7 = arrayIterator;
11228
+ _.$_$.p7 = booleanArray;
11229
+ _.$_$.q7 = captureStack;
11230
+ _.$_$.r7 = charArrayOf;
11231
+ _.$_$.s7 = charArray;
11232
+ _.$_$.t7 = charSequenceGet;
11233
+ _.$_$.u7 = charSequenceLength;
11234
+ _.$_$.v7 = charSequenceSubSequence;
11235
+ _.$_$.w7 = classMeta;
11236
+ _.$_$.x7 = compareTo_0;
11237
+ _.$_$.y7 = equals_0;
11238
+ _.$_$.z7 = fillArrayVal;
11239
+ _.$_$.a8 = getBooleanHashCode;
11240
+ _.$_$.b8 = getNumberHashCode;
11241
+ _.$_$.c8 = getPropertyCallableRef;
11242
+ _.$_$.d8 = getStringHashCode;
11243
+ _.$_$.e8 = hashCode;
11244
+ _.$_$.f8 = interfaceMeta;
11245
+ _.$_$.g8 = isArray;
11246
+ _.$_$.h8 = isBooleanArray;
11247
+ _.$_$.i8 = isByteArray;
11248
+ _.$_$.j8 = isCharArray;
11249
+ _.$_$.k8 = isCharSequence;
11250
+ _.$_$.l8 = isDoubleArray;
11251
+ _.$_$.m8 = isFloatArray;
11252
+ _.$_$.n8 = isIntArray;
11253
+ _.$_$.o8 = isInterface;
11254
+ _.$_$.p8 = isLongArray;
11255
+ _.$_$.q8 = isShortArray;
11256
+ _.$_$.r8 = get_js;
11257
+ _.$_$.s8 = json;
11258
+ _.$_$.t8 = numberRangeToNumber;
11259
+ _.$_$.u8 = numberToChar;
11260
+ _.$_$.v8 = numberToDouble;
11261
+ _.$_$.w8 = numberToInt;
11262
+ _.$_$.x8 = numberToLong;
11263
+ _.$_$.y8 = objectCreate;
11264
+ _.$_$.z8 = objectMeta;
11265
+ _.$_$.a9 = protoOf;
11266
+ _.$_$.b9 = setMetadataFor;
11267
+ _.$_$.c9 = toLong;
11268
+ _.$_$.d9 = toString_1;
11269
+ _.$_$.e9 = roundToInt;
11270
+ _.$_$.f9 = withSign;
11271
+ _.$_$.g9 = IntRange;
11272
+ _.$_$.h9 = coerceAtLeast_1;
11273
+ _.$_$.i9 = coerceAtLeast;
11274
+ _.$_$.j9 = coerceAtLeast_0;
11275
+ _.$_$.k9 = coerceAtMost;
11276
+ _.$_$.l9 = coerceIn;
11277
+ _.$_$.m9 = coerceIn_0;
11278
+ _.$_$.n9 = until;
11279
+ _.$_$.o9 = KClass;
11280
+ _.$_$.p9 = KMutableProperty0;
11281
+ _.$_$.q9 = KMutableProperty1;
11282
+ _.$_$.r9 = KProperty0;
11283
+ _.$_$.s9 = KProperty1;
11284
+ _.$_$.t9 = KTypeParameter;
11285
+ _.$_$.u9 = filter;
11286
+ _.$_$.v9 = generateSequence_0;
11287
+ _.$_$.w9 = generateSequence;
11288
+ _.$_$.x9 = joinToString_1;
11289
+ _.$_$.y9 = mapNotNull;
11290
+ _.$_$.z9 = map;
11291
+ _.$_$.aa = maxOrNull_0;
11292
+ _.$_$.ba = toList_2;
11293
+ _.$_$.ca = Regex;
11294
+ _.$_$.da = chunked;
11295
+ _.$_$.ea = commonPrefixWith;
11296
+ _.$_$.fa = concatToString;
11297
+ _.$_$.ga = contains_5;
11298
+ _.$_$.ha = contains_6;
11299
+ _.$_$.ia = drop_0;
11300
+ _.$_$.ja = endsWith;
11301
+ _.$_$.ka = equals;
11302
+ _.$_$.la = firstOrNull_0;
11303
+ _.$_$.ma = first_1;
11304
+ _.$_$.na = get;
11305
+ _.$_$.oa = indexOf_6;
11306
+ _.$_$.pa = indexOf_5;
11307
+ _.$_$.qa = isBlank;
11308
+ _.$_$.ra = isDigit;
11309
+ _.$_$.sa = isHighSurrogate;
11310
+ _.$_$.ta = isLowSurrogate;
11311
+ _.$_$.ua = isLowerCase;
11312
+ _.$_$.va = isWhitespace;
11313
+ _.$_$.wa = get_lastIndex_2;
11314
+ _.$_$.xa = lastIndexOf;
11315
+ _.$_$.ya = matches;
11316
+ _.$_$.za = padStart;
11317
+ _.$_$.ab = prependIndent;
11318
+ _.$_$.bb = removePrefix;
11319
+ _.$_$.cb = removeSuffix;
11320
+ _.$_$.db = removeSurrounding;
11321
+ _.$_$.eb = repeat;
11322
+ _.$_$.fb = replace;
11323
+ _.$_$.gb = replace_0;
11324
+ _.$_$.hb = slice_1;
11325
+ _.$_$.ib = split_1;
11326
+ _.$_$.jb = split;
11327
+ _.$_$.kb = startsWith;
11328
+ _.$_$.lb = startsWith_2;
11329
+ _.$_$.mb = startsWith_1;
11330
+ _.$_$.nb = substringBefore;
11331
+ _.$_$.ob = take_1;
11332
+ _.$_$.pb = titlecase;
11333
+ _.$_$.qb = toIntOrNull;
11334
+ _.$_$.rb = toInt_0;
11335
+ _.$_$.sb = toInt;
11336
+ _.$_$.tb = trimIndent;
11337
+ _.$_$.ub = trimMargin;
11338
+ _.$_$.vb = trimStart;
11339
+ _.$_$.wb = trim;
11340
+ _.$_$.xb = Duration;
11341
+ _.$_$.yb = ArithmeticException;
11342
+ _.$_$.zb = Char;
11343
+ _.$_$.ac = ClassCastException;
11344
+ _.$_$.bc = Comparable;
11345
+ _.$_$.cc = Comparator;
11346
+ _.$_$.dc = Enum;
11347
+ _.$_$.ec = Exception;
11348
+ _.$_$.fc = IllegalArgumentException;
11349
+ _.$_$.gc = IllegalStateException;
11350
+ _.$_$.hc = Long;
11351
+ _.$_$.ic = Pair;
11352
+ _.$_$.jc = Result;
11353
+ _.$_$.kc = RuntimeException;
11354
+ _.$_$.lc = THROW_CCE;
11355
+ _.$_$.mc = Triple;
11356
+ _.$_$.nc = UByteArray;
11357
+ _.$_$.oc = UByte;
11358
+ _.$_$.pc = UIntArray;
11359
+ _.$_$.qc = UInt;
11360
+ _.$_$.rc = ULongArray;
11361
+ _.$_$.sc = ULong;
11362
+ _.$_$.tc = UShortArray;
11363
+ _.$_$.uc = UShort;
11364
+ _.$_$.vc = Unit;
11365
+ _.$_$.wc = addSuppressed;
11366
+ _.$_$.xc = arrayOf;
11367
+ _.$_$.yc = createFailure;
11368
+ _.$_$.zc = ensureNotNull;
11369
+ _.$_$.ad = isFinite_0;
11370
+ _.$_$.bd = isFinite;
11371
+ _.$_$.cd = lazy;
11372
+ _.$_$.dd = lazy_0;
11373
+ _.$_$.ed = noWhenBranchMatchedException;
11374
+ _.$_$.fd = toString_0;
11375
+ _.$_$.gd = to;
11375
11376
  //endregion
11376
11377
  return _;
11377
11378
  }(module.exports));