game_client_logic_deb 1.8.76 → 1.8.96

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.
@@ -43,6 +43,12 @@ if (typeof Math.clz32 === 'undefined') {
43
43
  };
44
44
  }(Math.log, Math.LN2);
45
45
  }
46
+ if (typeof String.prototype.startsWith === 'undefined') {
47
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
48
+ position = position || 0;
49
+ return this.lastIndexOf(searchString, position) === position;
50
+ }});
51
+ }
46
52
  if (typeof String.prototype.endsWith === 'undefined') {
47
53
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
48
54
  var subjectString = this.toString();
@@ -54,12 +60,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
54
60
  return lastIndex !== -1 && lastIndex === position;
55
61
  }});
56
62
  }
57
- if (typeof String.prototype.startsWith === 'undefined') {
58
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
59
- position = position || 0;
60
- return this.lastIndexOf(searchString, position) === position;
61
- }});
62
- }
63
63
  if (typeof Math.imul === 'undefined') {
64
64
  Math.imul = function imul(a, b) {
65
65
  return (a & 4.29490176E9) * (b & 65535) + (a & 65535) * (b | 0) | 0;
@@ -3915,6 +3915,11 @@ if (typeof Math.imul === 'undefined') {
3915
3915
  }
3916
3916
  return tmp;
3917
3917
  }
3918
+ function last_0(_this__u8e3s4) {
3919
+ if (_this__u8e3s4.c1())
3920
+ throw NoSuchElementException_init_$Create$_0('List is empty.');
3921
+ return _this__u8e3s4.g1(get_lastIndex_2(_this__u8e3s4));
3922
+ }
3918
3923
  function sum(_this__u8e3s4) {
3919
3924
  var sum = 0.0;
3920
3925
  var tmp0_iterator = _this__u8e3s4.v();
@@ -3947,11 +3952,6 @@ if (typeof Math.imul === 'undefined') {
3947
3952
  sortWith(this_1, comparator);
3948
3953
  return this_1;
3949
3954
  }
3950
- function last_0(_this__u8e3s4) {
3951
- if (_this__u8e3s4.c1())
3952
- throw NoSuchElementException_init_$Create$_0('List is empty.');
3953
- return _this__u8e3s4.g1(get_lastIndex_2(_this__u8e3s4));
3954
- }
3955
3955
  function plus_2(_this__u8e3s4, elements) {
3956
3956
  if (isInterface(elements, Collection)) {
3957
3957
  var result = ArrayList_init_$Create$_0(_this__u8e3s4.n() + elements.n() | 0);
@@ -8346,6 +8346,9 @@ if (typeof Math.imul === 'undefined') {
8346
8346
  }
8347
8347
  return optimizeReadOnlyMap(toMap_1(_this__u8e3s4, LinkedHashMap_init_$Create$()));
8348
8348
  }
8349
+ function toMutableMap(_this__u8e3s4) {
8350
+ return LinkedHashMap_init_$Create$_1(_this__u8e3s4);
8351
+ }
8349
8352
  function toMap_0(_this__u8e3s4, destination) {
8350
8353
  // Inline function 'kotlin.apply' call
8351
8354
  // Inline function 'kotlin.contracts.contract' call
@@ -13004,175 +13007,176 @@ if (typeof Math.imul === 'undefined') {
13004
13007
  _.$_$.m8 = toList;
13005
13008
  _.$_$.n8 = toMap;
13006
13009
  _.$_$.o8 = toMutableList_0;
13007
- _.$_$.p8 = toMutableSet;
13008
- _.$_$.q8 = toSet_0;
13009
- _.$_$.r8 = withIndex;
13010
- _.$_$.s8 = zip_0;
13011
- _.$_$.t8 = zip;
13012
- _.$_$.u8 = compareValues;
13013
- _.$_$.v8 = CancellationException;
13014
- _.$_$.w8 = get_COROUTINE_SUSPENDED;
13015
- _.$_$.x8 = createCoroutineUnintercepted;
13016
- _.$_$.y8 = intercepted;
13017
- _.$_$.z8 = AbstractCoroutineContextElement;
13018
- _.$_$.a9 = AbstractCoroutineContextKey;
13019
- _.$_$.b9 = get_0;
13020
- _.$_$.c9 = minusKey_0;
13021
- _.$_$.d9 = ContinuationInterceptor;
13022
- _.$_$.e9 = Continuation;
13023
- _.$_$.f9 = fold;
13024
- _.$_$.g9 = get;
13025
- _.$_$.h9 = minusKey;
13026
- _.$_$.i9 = Element;
13027
- _.$_$.j9 = plus;
13028
- _.$_$.k9 = CoroutineImpl;
13029
- _.$_$.l9 = startCoroutine;
13030
- _.$_$.m9 = enumEntries;
13031
- _.$_$.n9 = anyToString;
13032
- _.$_$.o9 = arrayIterator;
13033
- _.$_$.p9 = booleanArray;
13034
- _.$_$.q9 = captureStack;
13035
- _.$_$.r9 = charArrayOf;
13036
- _.$_$.s9 = charArray;
13037
- _.$_$.t9 = charSequenceGet;
13038
- _.$_$.u9 = charSequenceLength;
13039
- _.$_$.v9 = charSequenceSubSequence;
13040
- _.$_$.w9 = classMeta;
13041
- _.$_$.x9 = compareTo_0;
13042
- _.$_$.y9 = defineProp;
13043
- _.$_$.z9 = equals_0;
13044
- _.$_$.aa = fillArrayVal;
13045
- _.$_$.ba = getBooleanHashCode;
13046
- _.$_$.ca = getNumberHashCode;
13047
- _.$_$.da = getPropertyCallableRef;
13048
- _.$_$.ea = getStringHashCode;
13049
- _.$_$.fa = hashCode;
13050
- _.$_$.ga = interfaceMeta;
13051
- _.$_$.ha = isArray;
13052
- _.$_$.ia = isBooleanArray;
13053
- _.$_$.ja = isByteArray;
13054
- _.$_$.ka = isCharArray;
13055
- _.$_$.la = isDoubleArray;
13056
- _.$_$.ma = isFloatArray;
13057
- _.$_$.na = isIntArray;
13058
- _.$_$.oa = isInterface;
13059
- _.$_$.pa = isLongArray;
13060
- _.$_$.qa = isShortArray;
13061
- _.$_$.ra = get_js;
13062
- _.$_$.sa = longArray;
13063
- _.$_$.ta = numberRangeToNumber;
13064
- _.$_$.ua = numberToChar;
13065
- _.$_$.va = numberToInt;
13066
- _.$_$.wa = numberToLong;
13067
- _.$_$.xa = objectCreate;
13068
- _.$_$.ya = objectMeta;
13069
- _.$_$.za = protoOf;
13070
- _.$_$.ab = setMetadataFor;
13071
- _.$_$.bb = toByte;
13072
- _.$_$.cb = toLong_0;
13073
- _.$_$.db = toShort;
13074
- _.$_$.eb = toString_1;
13075
- _.$_$.fb = abs;
13076
- _.$_$.gb = round;
13077
- _.$_$.hb = ClosedRange;
13078
- _.$_$.ib = coerceAtLeast;
13079
- _.$_$.jb = coerceAtMost;
13080
- _.$_$.kb = coerceIn;
13081
- _.$_$.lb = contains_5;
13082
- _.$_$.mb = step;
13083
- _.$_$.nb = until;
13084
- _.$_$.ob = KClass;
13085
- _.$_$.pb = KProperty0;
13086
- _.$_$.qb = KProperty1;
13087
- _.$_$.rb = KTypeParameter;
13088
- _.$_$.sb = filter;
13089
- _.$_$.tb = firstOrNull_1;
13090
- _.$_$.ub = flatMap;
13091
- _.$_$.vb = mapNotNull;
13092
- _.$_$.wb = map;
13093
- _.$_$.xb = toList_1;
13094
- _.$_$.yb = concatToString;
13095
- _.$_$.zb = contains_8;
13096
- _.$_$.ac = contains_7;
13097
- _.$_$.bc = endsWith_0;
13098
- _.$_$.cc = equals;
13099
- _.$_$.dc = indexOf_4;
13100
- _.$_$.ec = isBlank;
13101
- _.$_$.fc = isLowerCase;
13102
- _.$_$.gc = lastIndexOf;
13103
- _.$_$.hc = last_1;
13104
- _.$_$.ic = removeSuffix;
13105
- _.$_$.jc = repeat;
13106
- _.$_$.kc = replace;
13107
- _.$_$.lc = single_2;
13108
- _.$_$.mc = split;
13109
- _.$_$.nc = startsWith;
13110
- _.$_$.oc = substringAfter;
13111
- _.$_$.pc = substringBefore;
13112
- _.$_$.qc = take_0;
13113
- _.$_$.rc = titlecase;
13114
- _.$_$.sc = toBooleanStrictOrNull;
13115
- _.$_$.tc = toDoubleOrNull;
13116
- _.$_$.uc = toDouble;
13117
- _.$_$.vc = toIntOrNull;
13118
- _.$_$.wc = toInt;
13119
- _.$_$.xc = toLongOrNull;
13120
- _.$_$.yc = toUByte;
13121
- _.$_$.zc = toUInt;
13122
- _.$_$.ad = toULongOrNull;
13123
- _.$_$.bd = toULong;
13124
- _.$_$.cd = toUShort;
13125
- _.$_$.dd = trimIndent;
13126
- _.$_$.ed = Duration;
13127
- _.$_$.fd = toDuration_1;
13128
- _.$_$.gd = toDuration;
13129
- _.$_$.hd = ArithmeticException;
13130
- _.$_$.id = Char;
13131
- _.$_$.jd = Comparable;
13132
- _.$_$.kd = Comparator;
13133
- _.$_$.ld = DeepRecursiveFunction;
13134
- _.$_$.md = DeepRecursiveScope;
13135
- _.$_$.nd = Enum;
13136
- _.$_$.od = Error_0;
13137
- _.$_$.pd = Exception;
13138
- _.$_$.qd = IllegalArgumentException;
13139
- _.$_$.rd = IllegalStateException;
13140
- _.$_$.sd = Long;
13141
- _.$_$.td = NoSuchElementException;
13142
- _.$_$.ud = NotImplementedError;
13143
- _.$_$.vd = Pair;
13144
- _.$_$.wd = Result;
13145
- _.$_$.xd = RuntimeException;
13146
- _.$_$.yd = THROW_CCE;
13147
- _.$_$.zd = THROW_IAE;
13148
- _.$_$.ae = Triple;
13149
- _.$_$.be = UByteArray;
13150
- _.$_$.ce = UByte;
13151
- _.$_$.de = UIntArray;
13152
- _.$_$.ee = UInt;
13153
- _.$_$.fe = ULongArray;
13154
- _.$_$.ge = ULong;
13155
- _.$_$.he = UShortArray;
13156
- _.$_$.ie = UShort;
13157
- _.$_$.je = Unit;
13158
- _.$_$.ke = UnsupportedOperationException;
13159
- _.$_$.le = addSuppressed;
13160
- _.$_$.me = arrayOf;
13161
- _.$_$.ne = countTrailingZeroBits;
13162
- _.$_$.oe = createFailure;
13163
- _.$_$.pe = ensureNotNull;
13164
- _.$_$.qe = invoke;
13165
- _.$_$.re = isFinite;
13166
- _.$_$.se = isFinite_0;
13167
- _.$_$.te = lazy;
13168
- _.$_$.ue = lazy_0;
13169
- _.$_$.ve = noWhenBranchMatchedException;
13170
- _.$_$.we = plus_4;
13171
- _.$_$.xe = printStackTrace;
13172
- _.$_$.ye = stackTraceToString;
13173
- _.$_$.ze = throwUninitializedPropertyAccessException;
13174
- _.$_$.af = toString_0;
13175
- _.$_$.bf = to;
13010
+ _.$_$.p8 = toMutableMap;
13011
+ _.$_$.q8 = toMutableSet;
13012
+ _.$_$.r8 = toSet_0;
13013
+ _.$_$.s8 = withIndex;
13014
+ _.$_$.t8 = zip_0;
13015
+ _.$_$.u8 = zip;
13016
+ _.$_$.v8 = compareValues;
13017
+ _.$_$.w8 = CancellationException;
13018
+ _.$_$.x8 = get_COROUTINE_SUSPENDED;
13019
+ _.$_$.y8 = createCoroutineUnintercepted;
13020
+ _.$_$.z8 = intercepted;
13021
+ _.$_$.a9 = AbstractCoroutineContextElement;
13022
+ _.$_$.b9 = AbstractCoroutineContextKey;
13023
+ _.$_$.c9 = get_0;
13024
+ _.$_$.d9 = minusKey_0;
13025
+ _.$_$.e9 = ContinuationInterceptor;
13026
+ _.$_$.f9 = Continuation;
13027
+ _.$_$.g9 = fold;
13028
+ _.$_$.h9 = get;
13029
+ _.$_$.i9 = minusKey;
13030
+ _.$_$.j9 = Element;
13031
+ _.$_$.k9 = plus;
13032
+ _.$_$.l9 = CoroutineImpl;
13033
+ _.$_$.m9 = startCoroutine;
13034
+ _.$_$.n9 = enumEntries;
13035
+ _.$_$.o9 = anyToString;
13036
+ _.$_$.p9 = arrayIterator;
13037
+ _.$_$.q9 = booleanArray;
13038
+ _.$_$.r9 = captureStack;
13039
+ _.$_$.s9 = charArrayOf;
13040
+ _.$_$.t9 = charArray;
13041
+ _.$_$.u9 = charSequenceGet;
13042
+ _.$_$.v9 = charSequenceLength;
13043
+ _.$_$.w9 = charSequenceSubSequence;
13044
+ _.$_$.x9 = classMeta;
13045
+ _.$_$.y9 = compareTo_0;
13046
+ _.$_$.z9 = defineProp;
13047
+ _.$_$.aa = equals_0;
13048
+ _.$_$.ba = fillArrayVal;
13049
+ _.$_$.ca = getBooleanHashCode;
13050
+ _.$_$.da = getNumberHashCode;
13051
+ _.$_$.ea = getPropertyCallableRef;
13052
+ _.$_$.fa = getStringHashCode;
13053
+ _.$_$.ga = hashCode;
13054
+ _.$_$.ha = interfaceMeta;
13055
+ _.$_$.ia = isArray;
13056
+ _.$_$.ja = isBooleanArray;
13057
+ _.$_$.ka = isByteArray;
13058
+ _.$_$.la = isCharArray;
13059
+ _.$_$.ma = isDoubleArray;
13060
+ _.$_$.na = isFloatArray;
13061
+ _.$_$.oa = isIntArray;
13062
+ _.$_$.pa = isInterface;
13063
+ _.$_$.qa = isLongArray;
13064
+ _.$_$.ra = isShortArray;
13065
+ _.$_$.sa = get_js;
13066
+ _.$_$.ta = longArray;
13067
+ _.$_$.ua = numberRangeToNumber;
13068
+ _.$_$.va = numberToChar;
13069
+ _.$_$.wa = numberToInt;
13070
+ _.$_$.xa = numberToLong;
13071
+ _.$_$.ya = objectCreate;
13072
+ _.$_$.za = objectMeta;
13073
+ _.$_$.ab = protoOf;
13074
+ _.$_$.bb = setMetadataFor;
13075
+ _.$_$.cb = toByte;
13076
+ _.$_$.db = toLong_0;
13077
+ _.$_$.eb = toShort;
13078
+ _.$_$.fb = toString_1;
13079
+ _.$_$.gb = abs;
13080
+ _.$_$.hb = round;
13081
+ _.$_$.ib = ClosedRange;
13082
+ _.$_$.jb = coerceAtLeast;
13083
+ _.$_$.kb = coerceAtMost;
13084
+ _.$_$.lb = coerceIn;
13085
+ _.$_$.mb = contains_5;
13086
+ _.$_$.nb = step;
13087
+ _.$_$.ob = until;
13088
+ _.$_$.pb = KClass;
13089
+ _.$_$.qb = KProperty0;
13090
+ _.$_$.rb = KProperty1;
13091
+ _.$_$.sb = KTypeParameter;
13092
+ _.$_$.tb = filter;
13093
+ _.$_$.ub = firstOrNull_1;
13094
+ _.$_$.vb = flatMap;
13095
+ _.$_$.wb = mapNotNull;
13096
+ _.$_$.xb = map;
13097
+ _.$_$.yb = toList_1;
13098
+ _.$_$.zb = concatToString;
13099
+ _.$_$.ac = contains_8;
13100
+ _.$_$.bc = contains_7;
13101
+ _.$_$.cc = endsWith_0;
13102
+ _.$_$.dc = equals;
13103
+ _.$_$.ec = indexOf_4;
13104
+ _.$_$.fc = isBlank;
13105
+ _.$_$.gc = isLowerCase;
13106
+ _.$_$.hc = lastIndexOf;
13107
+ _.$_$.ic = last_1;
13108
+ _.$_$.jc = removeSuffix;
13109
+ _.$_$.kc = repeat;
13110
+ _.$_$.lc = replace;
13111
+ _.$_$.mc = single_2;
13112
+ _.$_$.nc = split;
13113
+ _.$_$.oc = startsWith;
13114
+ _.$_$.pc = substringAfter;
13115
+ _.$_$.qc = substringBefore;
13116
+ _.$_$.rc = take_0;
13117
+ _.$_$.sc = titlecase;
13118
+ _.$_$.tc = toBooleanStrictOrNull;
13119
+ _.$_$.uc = toDoubleOrNull;
13120
+ _.$_$.vc = toDouble;
13121
+ _.$_$.wc = toIntOrNull;
13122
+ _.$_$.xc = toInt;
13123
+ _.$_$.yc = toLongOrNull;
13124
+ _.$_$.zc = toUByte;
13125
+ _.$_$.ad = toUInt;
13126
+ _.$_$.bd = toULongOrNull;
13127
+ _.$_$.cd = toULong;
13128
+ _.$_$.dd = toUShort;
13129
+ _.$_$.ed = trimIndent;
13130
+ _.$_$.fd = Duration;
13131
+ _.$_$.gd = toDuration_1;
13132
+ _.$_$.hd = toDuration;
13133
+ _.$_$.id = ArithmeticException;
13134
+ _.$_$.jd = Char;
13135
+ _.$_$.kd = Comparable;
13136
+ _.$_$.ld = Comparator;
13137
+ _.$_$.md = DeepRecursiveFunction;
13138
+ _.$_$.nd = DeepRecursiveScope;
13139
+ _.$_$.od = Enum;
13140
+ _.$_$.pd = Error_0;
13141
+ _.$_$.qd = Exception;
13142
+ _.$_$.rd = IllegalArgumentException;
13143
+ _.$_$.sd = IllegalStateException;
13144
+ _.$_$.td = Long;
13145
+ _.$_$.ud = NoSuchElementException;
13146
+ _.$_$.vd = NotImplementedError;
13147
+ _.$_$.wd = Pair;
13148
+ _.$_$.xd = Result;
13149
+ _.$_$.yd = RuntimeException;
13150
+ _.$_$.zd = THROW_CCE;
13151
+ _.$_$.ae = THROW_IAE;
13152
+ _.$_$.be = Triple;
13153
+ _.$_$.ce = UByteArray;
13154
+ _.$_$.de = UByte;
13155
+ _.$_$.ee = UIntArray;
13156
+ _.$_$.fe = UInt;
13157
+ _.$_$.ge = ULongArray;
13158
+ _.$_$.he = ULong;
13159
+ _.$_$.ie = UShortArray;
13160
+ _.$_$.je = UShort;
13161
+ _.$_$.ke = Unit;
13162
+ _.$_$.le = UnsupportedOperationException;
13163
+ _.$_$.me = addSuppressed;
13164
+ _.$_$.ne = arrayOf;
13165
+ _.$_$.oe = countTrailingZeroBits;
13166
+ _.$_$.pe = createFailure;
13167
+ _.$_$.qe = ensureNotNull;
13168
+ _.$_$.re = invoke;
13169
+ _.$_$.se = isFinite;
13170
+ _.$_$.te = isFinite_0;
13171
+ _.$_$.ue = lazy;
13172
+ _.$_$.ve = lazy_0;
13173
+ _.$_$.we = noWhenBranchMatchedException;
13174
+ _.$_$.xe = plus_4;
13175
+ _.$_$.ye = printStackTrace;
13176
+ _.$_$.ze = stackTraceToString;
13177
+ _.$_$.af = throwUninitializedPropertyAccessException;
13178
+ _.$_$.bf = toString_0;
13179
+ _.$_$.cf = to;
13176
13180
  //endregion
13177
13181
  return _;
13178
13182
  }));