@tuprolog/2p-full 0.31.5-dev0c → 0.31.5-dev0f

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.
@@ -182,7 +182,10 @@ if (typeof Math.imul === 'undefined') {
182
182
  function createJsMap() {
183
183
  var result = Object.create(null);
184
184
  result['foo'] = 1;
185
- jsDeleteProperty(result, 'foo');
185
+ var tmp$ret$0;
186
+ // Inline function 'kotlin.js.jsDeleteProperty' call
187
+ delete result['foo'];
188
+ tmp$ret$0 = Unit_getInstance();
186
189
  return result;
187
190
  }
188
191
  setMetadataFor(InternalMap, 'InternalMap', interfaceMeta, undefined, [MutableIterable], undefined, undefined, []);
@@ -219,12 +222,10 @@ if (typeof Math.imul === 'undefined') {
219
222
  setMetadataFor(Companion_7, 'Companion', objectMeta, undefined, undefined, undefined, undefined, []);
220
223
  setMetadataFor(Char, 'Char', classMeta, undefined, [Comparable], undefined, undefined, []);
221
224
  setMetadataFor(Companion_8, 'Companion', objectMeta, undefined, undefined, undefined, undefined, []);
222
- setMetadataFor(BitMask, 'BitMask', classMeta, undefined, undefined, undefined, undefined, []);
223
225
  setMetadataFor(arrayIterator$1, undefined, classMeta, undefined, undefined, undefined, undefined, []);
224
226
  setMetadataFor(charArrayIterator$1, undefined, classMeta, CharIterator, undefined, undefined, undefined, []);
225
227
  setMetadataFor(Companion_9, 'Companion', objectMeta, undefined, undefined, undefined, undefined, []);
226
228
  setMetadataFor(Long, 'Long', classMeta, Number_0, [Number_0, Comparable], undefined, undefined, []);
227
- setMetadataFor(InterfaceIdService, 'InterfaceIdService', objectMeta, undefined, undefined, undefined, undefined, []);
228
229
  setMetadataFor(Digit, 'Digit', objectMeta, undefined, undefined, undefined, undefined, []);
229
230
  setMetadataFor(Letter, 'Letter', objectMeta, undefined, undefined, undefined, undefined, []);
230
231
  setMetadataFor(OtherLowercase, 'OtherLowercase', objectMeta, undefined, undefined, undefined, undefined, []);
@@ -232,10 +233,10 @@ if (typeof Math.imul === 'undefined') {
232
233
  setMetadataFor(CompletedContinuation, 'CompletedContinuation', objectMeta, undefined, [Continuation], undefined, undefined, []);
233
234
  setMetadataFor(_no_name_provided__qut3iv_6, undefined, classMeta, CoroutineImpl, undefined, undefined, undefined, []);
234
235
  setMetadataFor(IllegalArgumentException, 'IllegalArgumentException', classMeta, RuntimeException, undefined, undefined, undefined, []);
236
+ setMetadataFor(IndexOutOfBoundsException, 'IndexOutOfBoundsException', classMeta, RuntimeException, undefined, undefined, undefined, []);
235
237
  setMetadataFor(IllegalStateException, 'IllegalStateException', classMeta, RuntimeException, undefined, undefined, undefined, []);
236
238
  setMetadataFor(NoSuchElementException, 'NoSuchElementException', classMeta, RuntimeException, undefined, undefined, undefined, []);
237
239
  setMetadataFor(NumberFormatException, 'NumberFormatException', classMeta, IllegalArgumentException, undefined, undefined, undefined, []);
238
- setMetadataFor(IndexOutOfBoundsException, 'IndexOutOfBoundsException', classMeta, RuntimeException, undefined, undefined, undefined, []);
239
240
  setMetadataFor(ArithmeticException, 'ArithmeticException', classMeta, RuntimeException, undefined, undefined, undefined, []);
240
241
  setMetadataFor(AssertionError, 'AssertionError', classMeta, Error_0, undefined, undefined, undefined, []);
241
242
  setMetadataFor(ClassCastException, 'ClassCastException', classMeta, RuntimeException, undefined, undefined, undefined, []);
@@ -473,6 +474,60 @@ if (typeof Math.imul === 'undefined') {
473
474
  tmp$ret$0 = arrayIterator(this.l_1);
474
475
  return tmp$ret$0;
475
476
  };
477
+ function joinToString_0(_this__u8e3s4, separator, prefix, postfix, limit, truncated, transform) {
478
+ return joinTo_0(_this__u8e3s4, StringBuilder_init_$Create$_1(), separator, prefix, postfix, limit, truncated, transform).toString();
479
+ }
480
+ function joinToString$default_0(_this__u8e3s4, separator, prefix, postfix, limit, truncated, transform, $mask0, $handler) {
481
+ if (!(($mask0 & 1) === 0))
482
+ separator = ', ';
483
+ if (!(($mask0 & 2) === 0))
484
+ prefix = '';
485
+ if (!(($mask0 & 4) === 0))
486
+ postfix = '';
487
+ if (!(($mask0 & 8) === 0))
488
+ limit = -1;
489
+ if (!(($mask0 & 16) === 0))
490
+ truncated = '...';
491
+ if (!(($mask0 & 32) === 0))
492
+ transform = null;
493
+ return joinToString_0(_this__u8e3s4, separator, prefix, postfix, limit, truncated, transform);
494
+ }
495
+ function joinTo_0(_this__u8e3s4, buffer, separator, prefix, postfix, limit, truncated, transform) {
496
+ buffer.h(prefix);
497
+ var count = 0;
498
+ var tmp0_iterator = _this__u8e3s4.j();
499
+ $l$loop: while (tmp0_iterator.m()) {
500
+ var element = tmp0_iterator.n();
501
+ count = count + 1 | 0;
502
+ if (count > 1) {
503
+ buffer.h(separator);
504
+ }
505
+ if (limit < 0 ? true : count <= limit) {
506
+ appendElement(buffer, element, transform);
507
+ } else
508
+ break $l$loop;
509
+ }
510
+ if (limit >= 0 ? count > limit : false) {
511
+ buffer.h(truncated);
512
+ }
513
+ buffer.h(postfix);
514
+ return buffer;
515
+ }
516
+ function joinTo$default(_this__u8e3s4, buffer, separator, prefix, postfix, limit, truncated, transform, $mask0, $handler) {
517
+ if (!(($mask0 & 2) === 0))
518
+ separator = ', ';
519
+ if (!(($mask0 & 4) === 0))
520
+ prefix = '';
521
+ if (!(($mask0 & 8) === 0))
522
+ postfix = '';
523
+ if (!(($mask0 & 16) === 0))
524
+ limit = -1;
525
+ if (!(($mask0 & 32) === 0))
526
+ truncated = '...';
527
+ if (!(($mask0 & 64) === 0))
528
+ transform = null;
529
+ return joinTo_0(_this__u8e3s4, buffer, separator, prefix, postfix, limit, truncated, transform);
530
+ }
476
531
  function asSequence_1(_this__u8e3s4) {
477
532
  var tmp$ret$0;
478
533
  // Inline function 'kotlin.sequences.Sequence' call
@@ -487,16 +542,16 @@ if (typeof Math.imul === 'undefined') {
487
542
  function last_0(_this__u8e3s4) {
488
543
  if (_this__u8e3s4.d())
489
544
  throw NoSuchElementException_init_$Create$_0('List is empty.');
490
- return _this__u8e3s4.n(get_lastIndex_0(_this__u8e3s4));
545
+ return _this__u8e3s4.o(get_lastIndex_0(_this__u8e3s4));
491
546
  }
492
547
  function single_0(_this__u8e3s4) {
493
- var tmp0_subject = _this__u8e3s4.o();
548
+ var tmp0_subject = _this__u8e3s4.p();
494
549
  var tmp;
495
550
  switch (tmp0_subject) {
496
551
  case 0:
497
552
  throw NoSuchElementException_init_$Create$_0('List is empty.');
498
553
  case 1:
499
- tmp = _this__u8e3s4.n(0);
554
+ tmp = _this__u8e3s4.o(0);
500
555
  break;
501
556
  default:
502
557
  throw IllegalArgumentException_init_$Create$('List has more than one element.');
@@ -505,7 +560,7 @@ if (typeof Math.imul === 'undefined') {
505
560
  }
506
561
  function toList_0(_this__u8e3s4) {
507
562
  if (isInterface(_this__u8e3s4, Collection)) {
508
- var tmp0_subject = _this__u8e3s4.o();
563
+ var tmp0_subject = _this__u8e3s4.p();
509
564
  var tmp;
510
565
  switch (tmp0_subject) {
511
566
  case 0:
@@ -514,9 +569,9 @@ if (typeof Math.imul === 'undefined') {
514
569
  case 1:
515
570
  var tmp_0;
516
571
  if (isInterface(_this__u8e3s4, List)) {
517
- tmp_0 = _this__u8e3s4.n(0);
572
+ tmp_0 = _this__u8e3s4.o(0);
518
573
  } else {
519
- tmp_0 = _this__u8e3s4.j().p();
574
+ tmp_0 = _this__u8e3s4.j().n();
520
575
  }
521
576
 
522
577
  tmp = listOf_0(tmp_0);
@@ -532,11 +587,11 @@ if (typeof Math.imul === 'undefined') {
532
587
  function first(_this__u8e3s4) {
533
588
  if (_this__u8e3s4.d())
534
589
  throw NoSuchElementException_init_$Create$_0('List is empty.');
535
- return _this__u8e3s4.n(0);
590
+ return _this__u8e3s4.o(0);
536
591
  }
537
592
  function plus(_this__u8e3s4, elements) {
538
593
  if (isInterface(elements, Collection)) {
539
- var result = ArrayList_init_$Create$_0(_this__u8e3s4.o() + elements.o() | 0);
594
+ var result = ArrayList_init_$Create$_0(_this__u8e3s4.p() + elements.p() | 0);
540
595
  result.t(_this__u8e3s4);
541
596
  result.t(elements);
542
597
  return result;
@@ -556,33 +611,15 @@ if (typeof Math.imul === 'undefined') {
556
611
  return toList_0(_this__u8e3s4.u(indices.e(), indices.f() + 1 | 0));
557
612
  }
558
613
  function firstOrNull(_this__u8e3s4) {
559
- return _this__u8e3s4.d() ? null : _this__u8e3s4.n(0);
614
+ return _this__u8e3s4.d() ? null : _this__u8e3s4.o(0);
560
615
  }
561
616
  function contains_2(_this__u8e3s4, element) {
562
617
  if (isInterface(_this__u8e3s4, Collection))
563
618
  return _this__u8e3s4.v(element);
564
619
  return indexOf_1(_this__u8e3s4, element) >= 0;
565
620
  }
566
- function joinToString_0(_this__u8e3s4, separator, prefix, postfix, limit, truncated, transform) {
567
- return joinTo_0(_this__u8e3s4, StringBuilder_init_$Create$_1(), separator, prefix, postfix, limit, truncated, transform).toString();
568
- }
569
- function joinToString$default_0(_this__u8e3s4, separator, prefix, postfix, limit, truncated, transform, $mask0, $handler) {
570
- if (!(($mask0 & 1) === 0))
571
- separator = ', ';
572
- if (!(($mask0 & 2) === 0))
573
- prefix = '';
574
- if (!(($mask0 & 4) === 0))
575
- postfix = '';
576
- if (!(($mask0 & 8) === 0))
577
- limit = -1;
578
- if (!(($mask0 & 16) === 0))
579
- truncated = '...';
580
- if (!(($mask0 & 32) === 0))
581
- transform = null;
582
- return joinToString_0(_this__u8e3s4, separator, prefix, postfix, limit, truncated, transform);
583
- }
584
621
  function plus_0(_this__u8e3s4, element) {
585
- var result = ArrayList_init_$Create$_0(_this__u8e3s4.o() + 1 | 0);
622
+ var result = ArrayList_init_$Create$_0(_this__u8e3s4.p() + 1 | 0);
586
623
  result.t(_this__u8e3s4);
587
624
  result.g(element);
588
625
  return result;
@@ -595,12 +632,12 @@ if (typeof Math.imul === 'undefined') {
595
632
  var iterator = _this__u8e3s4.j();
596
633
  if (!iterator.m())
597
634
  throw NoSuchElementException_init_$Create$_0('Collection is empty.');
598
- return iterator.p();
635
+ return iterator.n();
599
636
  }
600
637
  }
601
638
  function toSet_0(_this__u8e3s4) {
602
639
  if (isInterface(_this__u8e3s4, Collection)) {
603
- var tmp0_subject = _this__u8e3s4.o();
640
+ var tmp0_subject = _this__u8e3s4.p();
604
641
  var tmp;
605
642
  switch (tmp0_subject) {
606
643
  case 0:
@@ -609,15 +646,15 @@ if (typeof Math.imul === 'undefined') {
609
646
  case 1:
610
647
  var tmp_0;
611
648
  if (isInterface(_this__u8e3s4, List)) {
612
- tmp_0 = _this__u8e3s4.n(0);
649
+ tmp_0 = _this__u8e3s4.o(0);
613
650
  } else {
614
- tmp_0 = _this__u8e3s4.j().p();
651
+ tmp_0 = _this__u8e3s4.j().n();
615
652
  }
616
653
 
617
654
  tmp = setOf_0(tmp_0);
618
655
  break;
619
656
  default:
620
- tmp = toCollection_0(_this__u8e3s4, LinkedHashSet_init_$Create$_1(mapCapacity(_this__u8e3s4.o())));
657
+ tmp = toCollection_0(_this__u8e3s4, LinkedHashSet_init_$Create$_1(mapCapacity(_this__u8e3s4.p())));
621
658
  break;
622
659
  }
623
660
  return tmp;
@@ -644,7 +681,7 @@ if (typeof Math.imul === 'undefined') {
644
681
  return toList_0(_this__u8e3s4);
645
682
  var list;
646
683
  if (isInterface(_this__u8e3s4, Collection)) {
647
- var resultSize = _this__u8e3s4.o() - n | 0;
684
+ var resultSize = _this__u8e3s4.p() - n | 0;
648
685
  if (resultSize <= 0)
649
686
  return emptyList();
650
687
  if (resultSize === 1)
@@ -653,12 +690,12 @@ if (typeof Math.imul === 'undefined') {
653
690
  if (isInterface(_this__u8e3s4, List)) {
654
691
  if (isInterface(_this__u8e3s4, RandomAccess)) {
655
692
  var inductionVariable = n;
656
- var last = _this__u8e3s4.o();
693
+ var last = _this__u8e3s4.p();
657
694
  if (inductionVariable < last)
658
695
  do {
659
696
  var index = inductionVariable;
660
697
  inductionVariable = inductionVariable + 1 | 0;
661
- list.g(_this__u8e3s4.n(index));
698
+ list.g(_this__u8e3s4.o(index));
662
699
  }
663
700
  while (inductionVariable < last);
664
701
  } else {
@@ -668,7 +705,7 @@ if (typeof Math.imul === 'undefined') {
668
705
  tmp$ret$1 = tmp1_iterator;
669
706
  var tmp1_iterator_0 = tmp$ret$1;
670
707
  while (tmp1_iterator_0.m()) {
671
- var item = tmp1_iterator_0.p();
708
+ var item = tmp1_iterator_0.n();
672
709
  list.g(item);
673
710
  }
674
711
  }
@@ -680,7 +717,7 @@ if (typeof Math.imul === 'undefined') {
680
717
  var count = 0;
681
718
  var tmp2_iterator = _this__u8e3s4.j();
682
719
  while (tmp2_iterator.m()) {
683
- var item_0 = tmp2_iterator.p();
720
+ var item_0 = tmp2_iterator.n();
684
721
  if (count >= n) {
685
722
  list.g(item_0);
686
723
  } else {
@@ -693,7 +730,7 @@ if (typeof Math.imul === 'undefined') {
693
730
  return ArrayList_init_$Create$_1(_this__u8e3s4);
694
731
  }
695
732
  function lastOrNull(_this__u8e3s4) {
696
- return _this__u8e3s4.d() ? null : _this__u8e3s4.n(_this__u8e3s4.o() - 1 | 0);
733
+ return _this__u8e3s4.d() ? null : _this__u8e3s4.o(_this__u8e3s4.p() - 1 | 0);
697
734
  }
698
735
  function toMutableList_1(_this__u8e3s4) {
699
736
  if (isInterface(_this__u8e3s4, Collection))
@@ -706,7 +743,7 @@ if (typeof Math.imul === 'undefined') {
706
743
  var index = 0;
707
744
  var tmp0_iterator = _this__u8e3s4.j();
708
745
  while (tmp0_iterator.m()) {
709
- var item = tmp0_iterator.p();
746
+ var item = tmp0_iterator.n();
710
747
  checkIndexOverflow(index);
711
748
  if (equals_0(element, item))
712
749
  return index;
@@ -715,46 +752,10 @@ if (typeof Math.imul === 'undefined') {
715
752
  }
716
753
  return -1;
717
754
  }
718
- function joinTo_0(_this__u8e3s4, buffer, separator, prefix, postfix, limit, truncated, transform) {
719
- buffer.h(prefix);
720
- var count = 0;
721
- var tmp0_iterator = _this__u8e3s4.j();
722
- $l$loop: while (tmp0_iterator.m()) {
723
- var element = tmp0_iterator.p();
724
- count = count + 1 | 0;
725
- if (count > 1) {
726
- buffer.h(separator);
727
- }
728
- if (limit < 0 ? true : count <= limit) {
729
- appendElement(buffer, element, transform);
730
- } else
731
- break $l$loop;
732
- }
733
- if (limit >= 0 ? count > limit : false) {
734
- buffer.h(truncated);
735
- }
736
- buffer.h(postfix);
737
- return buffer;
738
- }
739
- function joinTo$default(_this__u8e3s4, buffer, separator, prefix, postfix, limit, truncated, transform, $mask0, $handler) {
740
- if (!(($mask0 & 2) === 0))
741
- separator = ', ';
742
- if (!(($mask0 & 4) === 0))
743
- prefix = '';
744
- if (!(($mask0 & 8) === 0))
745
- postfix = '';
746
- if (!(($mask0 & 16) === 0))
747
- limit = -1;
748
- if (!(($mask0 & 32) === 0))
749
- truncated = '...';
750
- if (!(($mask0 & 64) === 0))
751
- transform = null;
752
- return joinTo_0(_this__u8e3s4, buffer, separator, prefix, postfix, limit, truncated, transform);
753
- }
754
755
  function toCollection_0(_this__u8e3s4, destination) {
755
756
  var tmp0_iterator = _this__u8e3s4.j();
756
757
  while (tmp0_iterator.m()) {
757
- var item = tmp0_iterator.p();
758
+ var item = tmp0_iterator.n();
758
759
  destination.g(item);
759
760
  }
760
761
  return destination;
@@ -771,7 +772,7 @@ if (typeof Math.imul === 'undefined') {
771
772
  }
772
773
  function sortedWith(_this__u8e3s4, comparator) {
773
774
  if (isInterface(_this__u8e3s4, Collection)) {
774
- if (_this__u8e3s4.o() <= 1)
775
+ if (_this__u8e3s4.p() <= 1)
775
776
  return toList_0(_this__u8e3s4);
776
777
  var tmp$ret$1;
777
778
  // Inline function 'kotlin.apply' call
@@ -804,9 +805,9 @@ if (typeof Math.imul === 'undefined') {
804
805
  var iterator = _this__u8e3s4.j();
805
806
  if (!iterator.m())
806
807
  throw NoSuchElementException_init_$Create$_0('Collection is empty.');
807
- var last = iterator.p();
808
+ var last = iterator.n();
808
809
  while (iterator.m())
809
- last = iterator.p();
810
+ last = iterator.n();
810
811
  return last;
811
812
  }
812
813
  }
@@ -820,11 +821,11 @@ if (typeof Math.imul === 'undefined') {
820
821
  }
821
822
  function count(_this__u8e3s4) {
822
823
  if (isInterface(_this__u8e3s4, Collection))
823
- return _this__u8e3s4.o();
824
+ return _this__u8e3s4.p();
824
825
  var count = 0;
825
826
  var tmp0_iterator = _this__u8e3s4.j();
826
827
  while (tmp0_iterator.m()) {
827
- var element = tmp0_iterator.p();
828
+ var element = tmp0_iterator.n();
828
829
  count = count + 1 | 0;
829
830
  checkCountOverflow(count);
830
831
  }
@@ -837,9 +838,9 @@ if (typeof Math.imul === 'undefined') {
837
838
  var iterator = _this__u8e3s4.j();
838
839
  if (!iterator.m())
839
840
  return null;
840
- var min = iterator.p();
841
+ var min = iterator.n();
841
842
  while (iterator.m()) {
842
- var e = iterator.p();
843
+ var e = iterator.n();
843
844
  if (compareTo_0(min, e) > 0)
844
845
  min = e;
845
846
  }
@@ -853,14 +854,14 @@ if (typeof Math.imul === 'undefined') {
853
854
  var iterator = _this__u8e3s4.j();
854
855
  if (!iterator.m())
855
856
  throw NoSuchElementException_init_$Create$_0('Collection is empty.');
856
- var single = iterator.p();
857
+ var single = iterator.n();
857
858
  if (iterator.m())
858
859
  throw IllegalArgumentException_init_$Create$('Collection has more than one element.');
859
860
  return single;
860
861
  }
861
862
  }
862
863
  function plus_1(_this__u8e3s4, elements) {
863
- var result = ArrayList_init_$Create$_0(_this__u8e3s4.o() + elements.length | 0);
864
+ var result = ArrayList_init_$Create$_0(_this__u8e3s4.p() + elements.length | 0);
864
865
  result.t(_this__u8e3s4);
865
866
  addAll_1(result, elements);
866
867
  return result;
@@ -881,7 +882,7 @@ if (typeof Math.imul === 'undefined') {
881
882
  }
882
883
  if (n === 0)
883
884
  return emptyList();
884
- var size = _this__u8e3s4.o();
885
+ var size = _this__u8e3s4.p();
885
886
  if (n >= size)
886
887
  return toList_0(_this__u8e3s4);
887
888
  if (n === 1)
@@ -893,7 +894,7 @@ if (typeof Math.imul === 'undefined') {
893
894
  do {
894
895
  var index = inductionVariable;
895
896
  inductionVariable = inductionVariable + 1 | 0;
896
- list.g(_this__u8e3s4.n(index));
897
+ list.g(_this__u8e3s4.o(index));
897
898
  }
898
899
  while (inductionVariable < size);
899
900
  } else {
@@ -903,7 +904,7 @@ if (typeof Math.imul === 'undefined') {
903
904
  tmp$ret$1 = tmp1_iterator;
904
905
  var tmp1_iterator_0 = tmp$ret$1;
905
906
  while (tmp1_iterator_0.m()) {
906
- var item = tmp1_iterator_0.p();
907
+ var item = tmp1_iterator_0.n();
907
908
  list.g(item);
908
909
  }
909
910
  }
@@ -912,7 +913,7 @@ if (typeof Math.imul === 'undefined') {
912
913
  function filterNotNullTo(_this__u8e3s4, destination) {
913
914
  var tmp0_iterator = _this__u8e3s4.j();
914
915
  while (tmp0_iterator.m()) {
915
- var element = tmp0_iterator.p();
916
+ var element = tmp0_iterator.n();
916
917
  if (!(element == null)) {
917
918
  destination.g(element);
918
919
  }
@@ -937,19 +938,19 @@ if (typeof Math.imul === 'undefined') {
937
938
  return asSequence_1(_this__u8e3s4.z());
938
939
  }
939
940
  function toList_1(_this__u8e3s4) {
940
- if (_this__u8e3s4.o() === 0)
941
+ if (_this__u8e3s4.p() === 0)
941
942
  return emptyList();
942
943
  var iterator = _this__u8e3s4.z().j();
943
944
  if (!iterator.m())
944
945
  return emptyList();
945
- var first = iterator.p();
946
+ var first = iterator.n();
946
947
  if (!iterator.m()) {
947
948
  var tmp$ret$0;
948
949
  // Inline function 'kotlin.collections.toPair' call
949
950
  tmp$ret$0 = new Pair(first.a1(), first.b1());
950
951
  return listOf_0(tmp$ret$0);
951
952
  }
952
- var result = ArrayList_init_$Create$_0(_this__u8e3s4.o());
953
+ var result = ArrayList_init_$Create$_0(_this__u8e3s4.p());
953
954
  var tmp$ret$1;
954
955
  // Inline function 'kotlin.collections.toPair' call
955
956
  tmp$ret$1 = new Pair(first.a1(), first.b1());
@@ -957,7 +958,7 @@ if (typeof Math.imul === 'undefined') {
957
958
  do {
958
959
  var tmp$ret$2;
959
960
  // Inline function 'kotlin.collections.toPair' call
960
- var tmp0_toPair = iterator.p();
961
+ var tmp0_toPair = iterator.n();
961
962
  tmp$ret$2 = new Pair(tmp0_toPair.a1(), tmp0_toPair.b1());
962
963
  result.g(tmp$ret$2);
963
964
  }
@@ -1045,7 +1046,7 @@ if (typeof Math.imul === 'undefined') {
1045
1046
  var count = 0;
1046
1047
  var tmp0_iterator = _this__u8e3s4.j();
1047
1048
  while (tmp0_iterator.m()) {
1048
- var element = tmp0_iterator.p();
1049
+ var element = tmp0_iterator.n();
1049
1050
  count = count + 1 | 0;
1050
1051
  checkCountOverflow(count);
1051
1052
  }
@@ -1061,9 +1062,9 @@ if (typeof Math.imul === 'undefined') {
1061
1062
  var iterator = _this__u8e3s4.j();
1062
1063
  if (!iterator.m())
1063
1064
  return null;
1064
- var last = iterator.p();
1065
+ var last = iterator.n();
1065
1066
  while (iterator.m())
1066
- last = iterator.p();
1067
+ last = iterator.n();
1067
1068
  return last;
1068
1069
  }
1069
1070
  function joinToString_1(_this__u8e3s4, separator, prefix, postfix, limit, truncated, transform) {
@@ -1088,9 +1089,9 @@ if (typeof Math.imul === 'undefined') {
1088
1089
  var iterator = _this__u8e3s4.j();
1089
1090
  if (!iterator.m())
1090
1091
  throw NoSuchElementException_init_$Create$_0('Sequence is empty.');
1091
- var last = iterator.p();
1092
+ var last = iterator.n();
1092
1093
  while (iterator.m())
1093
- last = iterator.p();
1094
+ last = iterator.n();
1094
1095
  return last;
1095
1096
  }
1096
1097
  function take(_this__u8e3s4, n) {
@@ -1120,7 +1121,7 @@ if (typeof Math.imul === 'undefined') {
1120
1121
  var iterator = _this__u8e3s4.j();
1121
1122
  if (!iterator.m())
1122
1123
  throw NoSuchElementException_init_$Create$_0('Sequence is empty.');
1123
- return iterator.p();
1124
+ return iterator.n();
1124
1125
  }
1125
1126
  function drop_0(_this__u8e3s4, n) {
1126
1127
  // Inline function 'kotlin.require' call
@@ -1164,7 +1165,7 @@ if (typeof Math.imul === 'undefined') {
1164
1165
  var iterator = _this__u8e3s4.j();
1165
1166
  if (!iterator.m())
1166
1167
  return null;
1167
- return iterator.p();
1168
+ return iterator.n();
1168
1169
  }
1169
1170
  function any_0(_this__u8e3s4) {
1170
1171
  return _this__u8e3s4.j().m();
@@ -1178,7 +1179,7 @@ if (typeof Math.imul === 'undefined') {
1178
1179
  var index = 0;
1179
1180
  var tmp0_iterator = _this__u8e3s4.j();
1180
1181
  while (tmp0_iterator.m()) {
1181
- var item = tmp0_iterator.p();
1182
+ var item = tmp0_iterator.n();
1182
1183
  checkIndexOverflow(index);
1183
1184
  if (equals_0(element, item))
1184
1185
  return index;
@@ -1201,7 +1202,7 @@ if (typeof Math.imul === 'undefined') {
1201
1202
  var count = 0;
1202
1203
  var tmp0_iterator = _this__u8e3s4.j();
1203
1204
  $l$loop: while (tmp0_iterator.m()) {
1204
- var element = tmp0_iterator.p();
1205
+ var element = tmp0_iterator.n();
1205
1206
  count = count + 1 | 0;
1206
1207
  if (count > 1) {
1207
1208
  buffer.h(separator);
@@ -1223,7 +1224,7 @@ if (typeof Math.imul === 'undefined') {
1223
1224
  function toCollection_1(_this__u8e3s4, destination) {
1224
1225
  var tmp0_iterator = _this__u8e3s4.j();
1225
1226
  while (tmp0_iterator.m()) {
1226
- var item = tmp0_iterator.p();
1227
+ var item = tmp0_iterator.n();
1227
1228
  destination.g(item);
1228
1229
  }
1229
1230
  return destination;
@@ -1254,7 +1255,7 @@ if (typeof Math.imul === 'undefined') {
1254
1255
  var sum = 0;
1255
1256
  var tmp0_iterator = _this__u8e3s4.j();
1256
1257
  while (tmp0_iterator.m()) {
1257
- var element = tmp0_iterator.p();
1258
+ var element = tmp0_iterator.n();
1258
1259
  sum = sum + element | 0;
1259
1260
  }
1260
1261
  return sum;
@@ -1263,9 +1264,9 @@ if (typeof Math.imul === 'undefined') {
1263
1264
  var iterator = _this__u8e3s4.j();
1264
1265
  if (!iterator.m())
1265
1266
  return null;
1266
- var min = iterator.p();
1267
+ var min = iterator.n();
1267
1268
  while (iterator.m()) {
1268
- var e = iterator.p();
1269
+ var e = iterator.n();
1269
1270
  if (comparator.compare(min, e) > 0)
1270
1271
  min = e;
1271
1272
  }
@@ -1318,24 +1319,24 @@ if (typeof Math.imul === 'undefined') {
1318
1319
  // Inline function 'kotlin.contracts.contract' call
1319
1320
  var tmp$ret$0;
1320
1321
  // Inline function 'kotlin.collections.plus.<anonymous>' call
1321
- tmp$ret$0 = _this__u8e3s4.o() + tmp0_safe_receiver | 0;
1322
+ tmp$ret$0 = _this__u8e3s4.p() + tmp0_safe_receiver | 0;
1322
1323
  tmp$ret$1 = tmp$ret$0;
1323
1324
  tmp = tmp$ret$1;
1324
1325
  }
1325
1326
  var tmp1_elvis_lhs = tmp;
1326
- var result = LinkedHashSet_init_$Create$_1(mapCapacity(tmp1_elvis_lhs == null ? imul(_this__u8e3s4.o(), 2) : tmp1_elvis_lhs));
1327
+ var result = LinkedHashSet_init_$Create$_1(mapCapacity(tmp1_elvis_lhs == null ? imul(_this__u8e3s4.p(), 2) : tmp1_elvis_lhs));
1327
1328
  result.t(_this__u8e3s4);
1328
1329
  addAll(result, elements);
1329
1330
  return result;
1330
1331
  }
1331
1332
  function minus(_this__u8e3s4, element) {
1332
- var result = LinkedHashSet_init_$Create$_1(mapCapacity(_this__u8e3s4.o()));
1333
+ var result = LinkedHashSet_init_$Create$_1(mapCapacity(_this__u8e3s4.p()));
1333
1334
  var removed = false;
1334
1335
  var tmp$ret$1;
1335
1336
  // Inline function 'kotlin.collections.filterTo' call
1336
1337
  var tmp0_iterator = _this__u8e3s4.j();
1337
1338
  while (tmp0_iterator.m()) {
1338
- var element_0 = tmp0_iterator.p();
1339
+ var element_0 = tmp0_iterator.n();
1339
1340
  var tmp$ret$0;
1340
1341
  // Inline function 'kotlin.collections.minus.<anonymous>' call
1341
1342
  var tmp;
@@ -1363,7 +1364,7 @@ if (typeof Math.imul === 'undefined') {
1363
1364
  var tmp0_filterNotTo = LinkedHashSet_init_$Create$();
1364
1365
  var tmp0_iterator = _this__u8e3s4.j();
1365
1366
  while (tmp0_iterator.m()) {
1366
- var element = tmp0_iterator.p();
1367
+ var element = tmp0_iterator.n();
1367
1368
  var tmp$ret$0;
1368
1369
  // Inline function 'kotlin.collections.minus.<anonymous>' call
1369
1370
  tmp$ret$0 = other.v(element);
@@ -1471,7 +1472,7 @@ if (typeof Math.imul === 'undefined') {
1471
1472
  }
1472
1473
  var tmp0_iterator = this.j();
1473
1474
  while (tmp0_iterator.m()) {
1474
- var element_0 = tmp0_iterator.p();
1475
+ var element_0 = tmp0_iterator.n();
1475
1476
  var tmp$ret$1;
1476
1477
  // Inline function 'kotlin.collections.AbstractCollection.contains.<anonymous>' call
1477
1478
  tmp$ret$1 = equals_0(element_0, element);
@@ -1500,7 +1501,7 @@ if (typeof Math.imul === 'undefined') {
1500
1501
  }
1501
1502
  var tmp0_iterator = elements.j();
1502
1503
  while (tmp0_iterator.m()) {
1503
- var element = tmp0_iterator.p();
1504
+ var element = tmp0_iterator.n();
1504
1505
  var tmp$ret$1;
1505
1506
  // Inline function 'kotlin.collections.AbstractCollection.containsAll.<anonymous>' call
1506
1507
  tmp$ret$1 = this.v(element);
@@ -1514,7 +1515,7 @@ if (typeof Math.imul === 'undefined') {
1514
1515
  return tmp$ret$0;
1515
1516
  };
1516
1517
  AbstractCollection.prototype.d = function () {
1517
- return this.o() === 0;
1518
+ return this.p() === 0;
1518
1519
  };
1519
1520
  AbstractCollection.prototype.toString = function () {
1520
1521
  return joinToString$default_0(this, ', ', '[', ']', 0, null, AbstractCollection$toString$lambda(this), 24, null);
@@ -1555,7 +1556,7 @@ if (typeof Math.imul === 'undefined') {
1555
1556
  return tryToComputeNext(this);
1556
1557
  }
1557
1558
  };
1558
- AbstractIterator.prototype.p = function () {
1559
+ AbstractIterator.prototype.n = function () {
1559
1560
  if (!this.m())
1560
1561
  throw NoSuchElementException_init_$Create$();
1561
1562
  this.n1_1 = State_NotReady_getInstance();
@@ -1607,14 +1608,14 @@ if (typeof Math.imul === 'undefined') {
1607
1608
  this.v1_1 = list;
1608
1609
  this.w1_1 = fromIndex;
1609
1610
  this.x1_1 = 0;
1610
- Companion_getInstance().y1(this.w1_1, toIndex, this.v1_1.o());
1611
+ Companion_getInstance().y1(this.w1_1, toIndex, this.v1_1.p());
1611
1612
  this.x1_1 = toIndex - this.w1_1 | 0;
1612
1613
  }
1613
- SubList.prototype.n = function (index) {
1614
+ SubList.prototype.o = function (index) {
1614
1615
  Companion_getInstance().z1(index, this.x1_1);
1615
- return this.v1_1.n(this.w1_1 + index | 0);
1616
+ return this.v1_1.o(this.w1_1 + index | 0);
1616
1617
  };
1617
- SubList.prototype.o = function () {
1618
+ SubList.prototype.p = function () {
1618
1619
  return this.x1_1;
1619
1620
  };
1620
1621
  function IteratorImpl($outer) {
@@ -1622,20 +1623,20 @@ if (typeof Math.imul === 'undefined') {
1622
1623
  this.a2_1 = 0;
1623
1624
  }
1624
1625
  IteratorImpl.prototype.m = function () {
1625
- return this.a2_1 < this.b2_1.o();
1626
+ return this.a2_1 < this.b2_1.p();
1626
1627
  };
1627
- IteratorImpl.prototype.p = function () {
1628
+ IteratorImpl.prototype.n = function () {
1628
1629
  if (!this.m())
1629
1630
  throw NoSuchElementException_init_$Create$();
1630
1631
  var tmp0_this = this;
1631
1632
  var tmp1 = tmp0_this.a2_1;
1632
1633
  tmp0_this.a2_1 = tmp1 + 1 | 0;
1633
- return this.b2_1.n(tmp1);
1634
+ return this.b2_1.o(tmp1);
1634
1635
  };
1635
1636
  function ListIteratorImpl($outer, index) {
1636
1637
  this.e2_1 = $outer;
1637
1638
  IteratorImpl.call(this, $outer);
1638
- Companion_getInstance().f2(index, this.e2_1.o());
1639
+ Companion_getInstance().f2(index, this.e2_1.p());
1639
1640
  this.a2_1 = index;
1640
1641
  }
1641
1642
  ListIteratorImpl.prototype.g2 = function () {
@@ -1646,7 +1647,7 @@ if (typeof Math.imul === 'undefined') {
1646
1647
  throw NoSuchElementException_init_$Create$();
1647
1648
  var tmp0_this = this;
1648
1649
  tmp0_this.a2_1 = tmp0_this.a2_1 - 1 | 0;
1649
- return this.e2_1.n(tmp0_this.a2_1);
1650
+ return this.e2_1.o(tmp0_this.a2_1);
1650
1651
  };
1651
1652
  function Companion() {
1652
1653
  Companion_instance = this;
@@ -1681,7 +1682,7 @@ if (typeof Math.imul === 'undefined') {
1681
1682
  var hashCode_0 = 1;
1682
1683
  var tmp0_iterator = c.j();
1683
1684
  while (tmp0_iterator.m()) {
1684
- var e = tmp0_iterator.p();
1685
+ var e = tmp0_iterator.n();
1685
1686
  var tmp = imul(31, hashCode_0);
1686
1687
  var tmp1_safe_receiver = e;
1687
1688
  var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : hashCode(tmp1_safe_receiver);
@@ -1690,13 +1691,13 @@ if (typeof Math.imul === 'undefined') {
1690
1691
  return hashCode_0;
1691
1692
  };
1692
1693
  Companion.prototype.k2 = function (c, other) {
1693
- if (!(c.o() === other.o()))
1694
+ if (!(c.p() === other.p()))
1694
1695
  return false;
1695
1696
  var otherIterator = other.j();
1696
1697
  var tmp0_iterator = c.j();
1697
1698
  while (tmp0_iterator.m()) {
1698
- var elem = tmp0_iterator.p();
1699
- var elemOther = otherIterator.p();
1699
+ var elem = tmp0_iterator.n();
1700
+ var elemOther = otherIterator.n();
1700
1701
  if (!equals_0(elem, elemOther)) {
1701
1702
  return false;
1702
1703
  }
@@ -1723,7 +1724,7 @@ if (typeof Math.imul === 'undefined') {
1723
1724
  var index = 0;
1724
1725
  var tmp0_iterator = this.j();
1725
1726
  while (tmp0_iterator.m()) {
1726
- var item = tmp0_iterator.p();
1727
+ var item = tmp0_iterator.n();
1727
1728
  var tmp$ret$0;
1728
1729
  // Inline function 'kotlin.collections.AbstractList.indexOf.<anonymous>' call
1729
1730
  tmp$ret$0 = equals_0(item, element);
@@ -1760,8 +1761,8 @@ if (typeof Math.imul === 'undefined') {
1760
1761
  AbstractMap$keys$1$iterator$1.prototype.m = function () {
1761
1762
  return this.l2_1.m();
1762
1763
  };
1763
- AbstractMap$keys$1$iterator$1.prototype.p = function () {
1764
- return this.l2_1.p().a1();
1764
+ AbstractMap$keys$1$iterator$1.prototype.n = function () {
1765
+ return this.l2_1.n().a1();
1765
1766
  };
1766
1767
  function AbstractMap$values$1$iterator$1($entryIterator) {
1767
1768
  this.m2_1 = $entryIterator;
@@ -1769,8 +1770,8 @@ if (typeof Math.imul === 'undefined') {
1769
1770
  AbstractMap$values$1$iterator$1.prototype.m = function () {
1770
1771
  return this.m2_1.m();
1771
1772
  };
1772
- AbstractMap$values$1$iterator$1.prototype.p = function () {
1773
- return this.m2_1.p().b1();
1773
+ AbstractMap$values$1$iterator$1.prototype.n = function () {
1774
+ return this.m2_1.n().b1();
1774
1775
  };
1775
1776
  function toString($this, o) {
1776
1777
  return o === $this ? '(this Map)' : toString_2(o);
@@ -1782,7 +1783,7 @@ if (typeof Math.imul === 'undefined') {
1782
1783
  var tmp0_firstOrNull = $this.z();
1783
1784
  var tmp0_iterator = tmp0_firstOrNull.j();
1784
1785
  while (tmp0_iterator.m()) {
1785
- var element = tmp0_iterator.p();
1786
+ var element = tmp0_iterator.n();
1786
1787
  var tmp$ret$0;
1787
1788
  // Inline function 'kotlin.collections.AbstractMap.implFindEntry.<anonymous>' call
1788
1789
  tmp$ret$0 = equals_0(element.a1(), key);
@@ -1850,8 +1851,8 @@ if (typeof Math.imul === 'undefined') {
1850
1851
  var entryIterator = this.q2_1.z().j();
1851
1852
  return new AbstractMap$keys$1$iterator$1(entryIterator);
1852
1853
  };
1853
- AbstractMap$keys$1.prototype.o = function () {
1854
- return this.q2_1.o();
1854
+ AbstractMap$keys$1.prototype.p = function () {
1855
+ return this.q2_1.p();
1855
1856
  };
1856
1857
  function AbstractMap$toString$lambda(this$0) {
1857
1858
  return function (it) {
@@ -1874,8 +1875,8 @@ if (typeof Math.imul === 'undefined') {
1874
1875
  var entryIterator = this.w2_1.z().j();
1875
1876
  return new AbstractMap$values$1$iterator$1(entryIterator);
1876
1877
  };
1877
- AbstractMap$values$1.prototype.o = function () {
1878
- return this.w2_1.o();
1878
+ AbstractMap$values$1.prototype.p = function () {
1879
+ return this.w2_1.p();
1879
1880
  };
1880
1881
  function AbstractMap() {
1881
1882
  Companion_getInstance_0();
@@ -1902,7 +1903,7 @@ if (typeof Math.imul === 'undefined') {
1902
1903
  }
1903
1904
  var tmp0_iterator = tmp0_any.j();
1904
1905
  while (tmp0_iterator.m()) {
1905
- var element = tmp0_iterator.p();
1906
+ var element = tmp0_iterator.n();
1906
1907
  var tmp$ret$1;
1907
1908
  // Inline function 'kotlin.collections.AbstractMap.containsValue.<anonymous>' call
1908
1909
  tmp$ret$1 = equals_0(element.b1(), value);
@@ -1946,7 +1947,7 @@ if (typeof Math.imul === 'undefined') {
1946
1947
  return true;
1947
1948
  if (!(!(other == null) ? isInterface(other, Map) : false))
1948
1949
  return false;
1949
- if (!(this.o() === other.o()))
1950
+ if (!(this.p() === other.p()))
1950
1951
  return false;
1951
1952
  var tmp$ret$0;
1952
1953
  $l$block_0: {
@@ -1964,7 +1965,7 @@ if (typeof Math.imul === 'undefined') {
1964
1965
  }
1965
1966
  var tmp0_iterator = tmp0_all.j();
1966
1967
  while (tmp0_iterator.m()) {
1967
- var element = tmp0_iterator.p();
1968
+ var element = tmp0_iterator.n();
1968
1969
  var tmp$ret$1;
1969
1970
  // Inline function 'kotlin.collections.AbstractMap.equals.<anonymous>' call
1970
1971
  tmp$ret$1 = this.z2(element);
@@ -1985,10 +1986,10 @@ if (typeof Math.imul === 'undefined') {
1985
1986
  return hashCode(this.z());
1986
1987
  };
1987
1988
  AbstractMap.prototype.d = function () {
1988
- return this.o() === 0;
1989
+ return this.p() === 0;
1989
1990
  };
1990
- AbstractMap.prototype.o = function () {
1991
- return this.z().o();
1991
+ AbstractMap.prototype.p = function () {
1992
+ return this.z().p();
1992
1993
  };
1993
1994
  AbstractMap.prototype.b3 = function () {
1994
1995
  if (this.s2_1 == null) {
@@ -2018,7 +2019,7 @@ if (typeof Math.imul === 'undefined') {
2018
2019
  var hashCode_0 = 0;
2019
2020
  var tmp0_iterator = c.j();
2020
2021
  while (tmp0_iterator.m()) {
2021
- var element = tmp0_iterator.p();
2022
+ var element = tmp0_iterator.n();
2022
2023
  var tmp = hashCode_0;
2023
2024
  var tmp1_safe_receiver = element;
2024
2025
  var tmp2_elvis_lhs = tmp1_safe_receiver == null ? null : hashCode(tmp1_safe_receiver);
@@ -2027,7 +2028,7 @@ if (typeof Math.imul === 'undefined') {
2027
2028
  return hashCode_0;
2028
2029
  };
2029
2030
  Companion_1.prototype.e3 = function (c, other) {
2030
- if (!(c.o() === other.o()))
2031
+ if (!(c.p() === other.p()))
2031
2032
  return false;
2032
2033
  var tmp$ret$0;
2033
2034
  // Inline function 'kotlin.collections.containsAll' call
@@ -2064,13 +2065,13 @@ if (typeof Math.imul === 'undefined') {
2064
2065
  return !(element == null) ? listOf_0(element) : emptyList();
2065
2066
  }
2066
2067
  function get_lastIndex_0(_this__u8e3s4) {
2067
- return _this__u8e3s4.o() - 1 | 0;
2068
+ return _this__u8e3s4.p() - 1 | 0;
2068
2069
  }
2069
2070
  function mutableListOf(elements) {
2070
2071
  return elements.length === 0 ? ArrayList_init_$Create$() : ArrayList_init_$Create$_1(new ArrayAsCollection(elements, true));
2071
2072
  }
2072
2073
  function get_indices(_this__u8e3s4) {
2073
- return numberRangeToNumber(0, _this__u8e3s4.o() - 1 | 0);
2074
+ return numberRangeToNumber(0, _this__u8e3s4.p() - 1 | 0);
2074
2075
  }
2075
2076
  function EmptyIterator() {
2076
2077
  EmptyIterator_instance = this;
@@ -2081,7 +2082,7 @@ if (typeof Math.imul === 'undefined') {
2081
2082
  EmptyIterator.prototype.g2 = function () {
2082
2083
  return false;
2083
2084
  };
2084
- EmptyIterator.prototype.p = function () {
2085
+ EmptyIterator.prototype.n = function () {
2085
2086
  throw NoSuchElementException_init_$Create$();
2086
2087
  };
2087
2088
  EmptyIterator.prototype.h2 = function () {
@@ -2100,12 +2101,12 @@ if (typeof Math.imul === 'undefined') {
2100
2101
  return elements.length === 0 ? ArrayList_init_$Create$() : ArrayList_init_$Create$_1(new ArrayAsCollection(elements, true));
2101
2102
  }
2102
2103
  function optimizeReadOnlyList(_this__u8e3s4) {
2103
- var tmp0_subject = _this__u8e3s4.o();
2104
+ var tmp0_subject = _this__u8e3s4.p();
2104
2105
  switch (tmp0_subject) {
2105
2106
  case 0:
2106
2107
  return emptyList();
2107
2108
  case 1:
2108
- return listOf_0(_this__u8e3s4.n(0));
2109
+ return listOf_0(_this__u8e3s4.o(0));
2109
2110
  default:
2110
2111
  return _this__u8e3s4;
2111
2112
  }
@@ -2129,7 +2130,7 @@ if (typeof Math.imul === 'undefined') {
2129
2130
  EmptyList.prototype.toString = function () {
2130
2131
  return '[]';
2131
2132
  };
2132
- EmptyList.prototype.o = function () {
2133
+ EmptyList.prototype.p = function () {
2133
2134
  return 0;
2134
2135
  };
2135
2136
  EmptyList.prototype.d = function () {
@@ -2155,7 +2156,7 @@ if (typeof Math.imul === 'undefined') {
2155
2156
  EmptyList.prototype.m1 = function (elements) {
2156
2157
  return this.h3(elements);
2157
2158
  };
2158
- EmptyList.prototype.n = function (index) {
2159
+ EmptyList.prototype.o = function (index) {
2159
2160
  throw IndexOutOfBoundsException_init_$Create$_0("Empty list doesn't contain element at index " + index + '.');
2160
2161
  };
2161
2162
  EmptyList.prototype.i3 = function (element) {
@@ -2195,7 +2196,7 @@ if (typeof Math.imul === 'undefined') {
2195
2196
  this.j3_1 = values;
2196
2197
  this.k3_1 = isVarargs;
2197
2198
  }
2198
- ArrayAsCollection.prototype.o = function () {
2199
+ ArrayAsCollection.prototype.p = function () {
2199
2200
  return this.j3_1.length;
2200
2201
  };
2201
2202
  ArrayAsCollection.prototype.d = function () {
@@ -2229,7 +2230,7 @@ if (typeof Math.imul === 'undefined') {
2229
2230
  }
2230
2231
  var tmp0_iterator = elements.j();
2231
2232
  while (tmp0_iterator.m()) {
2232
- var element = tmp0_iterator.p();
2233
+ var element = tmp0_iterator.n();
2233
2234
  var tmp$ret$1;
2234
2235
  // Inline function 'kotlin.collections.ArrayAsCollection.containsAll.<anonymous>' call
2235
2236
  tmp$ret$1 = this.l3(element);
@@ -2287,7 +2288,7 @@ if (typeof Math.imul === 'undefined') {
2287
2288
  function collectionSizeOrDefault(_this__u8e3s4, default_0) {
2288
2289
  var tmp;
2289
2290
  if (isInterface(_this__u8e3s4, Collection)) {
2290
- tmp = _this__u8e3s4.o();
2291
+ tmp = _this__u8e3s4.p();
2291
2292
  } else {
2292
2293
  tmp = default_0;
2293
2294
  }
@@ -2296,7 +2297,7 @@ if (typeof Math.imul === 'undefined') {
2296
2297
  function collectionSizeOrNull(_this__u8e3s4) {
2297
2298
  var tmp;
2298
2299
  if (isInterface(_this__u8e3s4, Collection)) {
2299
- tmp = _this__u8e3s4.o();
2300
+ tmp = _this__u8e3s4.p();
2300
2301
  } else {
2301
2302
  tmp = null;
2302
2303
  }
@@ -2315,11 +2316,11 @@ if (typeof Math.imul === 'undefined') {
2315
2316
  IndexingIterator.prototype.m = function () {
2316
2317
  return this.q3_1.m();
2317
2318
  };
2318
- IndexingIterator.prototype.p = function () {
2319
+ IndexingIterator.prototype.n = function () {
2319
2320
  var tmp0_this = this;
2320
2321
  var tmp1 = tmp0_this.r3_1;
2321
2322
  tmp0_this.r3_1 = tmp1 + 1 | 0;
2322
- return new IndexedValue(checkIndexOverflow(tmp1), this.q3_1.p());
2323
+ return new IndexedValue(checkIndexOverflow(tmp1), this.q3_1.n());
2323
2324
  };
2324
2325
  function getOrImplicitDefault(_this__u8e3s4, key) {
2325
2326
  if (isInterface(_this__u8e3s4, MapWithDefault))
@@ -2367,8 +2368,8 @@ if (typeof Math.imul === 'undefined') {
2367
2368
  MutableMapWithDefaultImpl.prototype.toString = function () {
2368
2369
  return toString_3(this.u3_1);
2369
2370
  };
2370
- MutableMapWithDefaultImpl.prototype.o = function () {
2371
- return this.u3_1.o();
2371
+ MutableMapWithDefaultImpl.prototype.p = function () {
2372
+ return this.u3_1.p();
2372
2373
  };
2373
2374
  MutableMapWithDefaultImpl.prototype.d = function () {
2374
2375
  return this.u3_1.d();
@@ -2418,7 +2419,7 @@ if (typeof Math.imul === 'undefined') {
2418
2419
  return isInterface(tmp, Map) ? tmp : THROW_CCE();
2419
2420
  }
2420
2421
  function toMap(_this__u8e3s4) {
2421
- var tmp0_subject = _this__u8e3s4.o();
2422
+ var tmp0_subject = _this__u8e3s4.p();
2422
2423
  var tmp;
2423
2424
  switch (tmp0_subject) {
2424
2425
  case 0:
@@ -2493,7 +2494,7 @@ if (typeof Math.imul === 'undefined') {
2493
2494
  EmptyMap.prototype.toString = function () {
2494
2495
  return '{}';
2495
2496
  };
2496
- EmptyMap.prototype.o = function () {
2497
+ EmptyMap.prototype.p = function () {
2497
2498
  return 0;
2498
2499
  };
2499
2500
  EmptyMap.prototype.d = function () {
@@ -2534,7 +2535,7 @@ if (typeof Math.imul === 'undefined') {
2534
2535
  return LinkedHashMap_init_$Create$_2(_this__u8e3s4);
2535
2536
  }
2536
2537
  function optimizeReadOnlyMap(_this__u8e3s4) {
2537
- var tmp0_subject = _this__u8e3s4.o();
2538
+ var tmp0_subject = _this__u8e3s4.p();
2538
2539
  var tmp;
2539
2540
  switch (tmp0_subject) {
2540
2541
  case 0:
@@ -2577,7 +2578,7 @@ if (typeof Math.imul === 'undefined') {
2577
2578
  function putAll_0(_this__u8e3s4, pairs) {
2578
2579
  var tmp0_iterator = pairs.j();
2579
2580
  while (tmp0_iterator.m()) {
2580
- var tmp1_loop_parameter = tmp0_iterator.p();
2581
+ var tmp1_loop_parameter = tmp0_iterator.n();
2581
2582
  var key = tmp1_loop_parameter.n3();
2582
2583
  var value = tmp1_loop_parameter.o3();
2583
2584
  _this__u8e3s4.w3(key, value);
@@ -2599,7 +2600,7 @@ if (typeof Math.imul === 'undefined') {
2599
2600
  }
2600
2601
  function toMap_2(_this__u8e3s4) {
2601
2602
  if (isInterface(_this__u8e3s4, Collection)) {
2602
- var tmp0_subject = _this__u8e3s4.o();
2603
+ var tmp0_subject = _this__u8e3s4.p();
2603
2604
  var tmp;
2604
2605
  switch (tmp0_subject) {
2605
2606
  case 0:
@@ -2608,15 +2609,15 @@ if (typeof Math.imul === 'undefined') {
2608
2609
  case 1:
2609
2610
  var tmp_0;
2610
2611
  if (isInterface(_this__u8e3s4, List)) {
2611
- tmp_0 = _this__u8e3s4.n(0);
2612
+ tmp_0 = _this__u8e3s4.o(0);
2612
2613
  } else {
2613
- tmp_0 = _this__u8e3s4.j().p();
2614
+ tmp_0 = _this__u8e3s4.j().n();
2614
2615
  }
2615
2616
 
2616
2617
  tmp = mapOf_0(tmp_0);
2617
2618
  break;
2618
2619
  default:
2619
- tmp = toMap_5(_this__u8e3s4, LinkedHashMap_init_$Create$_1(mapCapacity(_this__u8e3s4.o())));
2620
+ tmp = toMap_5(_this__u8e3s4, LinkedHashMap_init_$Create$_1(mapCapacity(_this__u8e3s4.p())));
2620
2621
  break;
2621
2622
  }
2622
2623
  return tmp;
@@ -2682,7 +2683,7 @@ if (typeof Math.imul === 'undefined') {
2682
2683
  function putAll_1(_this__u8e3s4, pairs) {
2683
2684
  var tmp0_iterator = pairs.j();
2684
2685
  while (tmp0_iterator.m()) {
2685
- var tmp1_loop_parameter = tmp0_iterator.p();
2686
+ var tmp1_loop_parameter = tmp0_iterator.n();
2686
2687
  var key = tmp1_loop_parameter.n3();
2687
2688
  var value = tmp1_loop_parameter.o3();
2688
2689
  _this__u8e3s4.w3(key, value);
@@ -2706,7 +2707,7 @@ if (typeof Math.imul === 'undefined') {
2706
2707
  var result = false;
2707
2708
  var tmp1_iterator = elements.j();
2708
2709
  while (tmp1_iterator.m()) {
2709
- var item = tmp1_iterator.p();
2710
+ var item = tmp1_iterator.n();
2710
2711
  if (_this__u8e3s4.g(item))
2711
2712
  result = true;
2712
2713
  }
@@ -2742,7 +2743,7 @@ if (typeof Math.imul === 'undefined') {
2742
2743
  $l$loop: do {
2743
2744
  var readIndex = inductionVariable;
2744
2745
  inductionVariable = inductionVariable + 1 | 0;
2745
- var element = _this__u8e3s4.n(readIndex);
2746
+ var element = _this__u8e3s4.o(readIndex);
2746
2747
  if (predicate(element) === predicateResultToRemove)
2747
2748
  continue $l$loop;
2748
2749
  if (!(writeIndex === readIndex)) {
@@ -2752,7 +2753,7 @@ if (typeof Math.imul === 'undefined') {
2752
2753
  writeIndex = tmp1 + 1 | 0;
2753
2754
  }
2754
2755
  while (!(readIndex === last));
2755
- if (writeIndex < _this__u8e3s4.o()) {
2756
+ if (writeIndex < _this__u8e3s4.p()) {
2756
2757
  var inductionVariable_0 = get_lastIndex_0(_this__u8e3s4);
2757
2758
  var last_0 = writeIndex;
2758
2759
  if (last_0 <= inductionVariable_0)
@@ -2774,7 +2775,7 @@ if (typeof Math.imul === 'undefined') {
2774
2775
  var tmp0_with = _this__u8e3s4.j();
2775
2776
  // Inline function 'kotlin.contracts.contract' call
2776
2777
  while (tmp0_with.m())
2777
- if (predicate(tmp0_with.p()) === predicateResultToRemove) {
2778
+ if (predicate(tmp0_with.n()) === predicateResultToRemove) {
2778
2779
  tmp0_with.u4();
2779
2780
  result = true;
2780
2781
  }
@@ -2785,7 +2786,7 @@ if (typeof Math.imul === 'undefined') {
2785
2786
  var result = false;
2786
2787
  var tmp0_iterator = elements.j();
2787
2788
  while (tmp0_iterator.m()) {
2788
- var item = tmp0_iterator.p();
2789
+ var item = tmp0_iterator.n();
2789
2790
  if (_this__u8e3s4.g(item))
2790
2791
  result = true;
2791
2792
  }
@@ -2809,7 +2810,7 @@ if (typeof Math.imul === 'undefined') {
2809
2810
  }
2810
2811
  function IntIterator() {
2811
2812
  }
2812
- IntIterator.prototype.p = function () {
2813
+ IntIterator.prototype.n = function () {
2813
2814
  return this.v4();
2814
2815
  };
2815
2816
  function CharIterator() {
@@ -2817,7 +2818,7 @@ if (typeof Math.imul === 'undefined') {
2817
2818
  CharIterator.prototype.w4 = function () {
2818
2819
  return this.x4();
2819
2820
  };
2820
- CharIterator.prototype.p = function () {
2821
+ CharIterator.prototype.n = function () {
2821
2822
  return new Char(this.w4());
2822
2823
  };
2823
2824
  function asReversed(_this__u8e3s4) {
@@ -2827,11 +2828,11 @@ if (typeof Math.imul === 'undefined') {
2827
2828
  AbstractList.call(this);
2828
2829
  this.y4_1 = delegate;
2829
2830
  }
2830
- ReversedListReadOnly.prototype.o = function () {
2831
- return this.y4_1.o();
2831
+ ReversedListReadOnly.prototype.p = function () {
2832
+ return this.y4_1.p();
2832
2833
  };
2833
- ReversedListReadOnly.prototype.n = function (index) {
2834
- return this.y4_1.n(reverseElementIndex(this, index));
2834
+ ReversedListReadOnly.prototype.o = function (index) {
2835
+ return this.y4_1.o(reverseElementIndex(this, index));
2835
2836
  };
2836
2837
  function reverseElementIndex(_this__u8e3s4, index) {
2837
2838
  var tmp;
@@ -2875,7 +2876,7 @@ if (typeof Math.imul === 'undefined') {
2875
2876
  if (!$this.m())
2876
2877
  throw NoSuchElementException_init_$Create$();
2877
2878
  else
2878
- return $this.p();
2879
+ return $this.n();
2879
2880
  }
2880
2881
  function exceptionalState($this) {
2881
2882
  var tmp0_subject = $this.d5_1;
@@ -2931,7 +2932,7 @@ if (typeof Math.imul === 'undefined') {
2931
2932
  tmp$ret$1 = Unit_getInstance();
2932
2933
  }
2933
2934
  };
2934
- SequenceBuilderIterator.prototype.p = function () {
2935
+ SequenceBuilderIterator.prototype.n = function () {
2935
2936
  var tmp0_subject = this.d5_1;
2936
2937
  switch (tmp0_subject) {
2937
2938
  case 0:
@@ -2939,7 +2940,7 @@ if (typeof Math.imul === 'undefined') {
2939
2940
  return nextNotReady(this);
2940
2941
  case 2:
2941
2942
  this.d5_1 = 1;
2942
- return ensureNotNull(this.f5_1).p();
2943
+ return ensureNotNull(this.f5_1).n();
2943
2944
  case 3:
2944
2945
  this.d5_1 = 0;
2945
2946
  var tmp = this.e5_1;
@@ -3020,8 +3021,8 @@ if (typeof Math.imul === 'undefined') {
3020
3021
  this.m5_1 = this$0;
3021
3022
  this.l5_1 = this$0.n5_1.j();
3022
3023
  }
3023
- TransformingSequence$iterator$1.prototype.p = function () {
3024
- return this.m5_1.o5_1(this.l5_1.p());
3024
+ TransformingSequence$iterator$1.prototype.n = function () {
3025
+ return this.m5_1.o5_1(this.l5_1.n());
3025
3026
  };
3026
3027
  TransformingSequence$iterator$1.prototype.m = function () {
3027
3028
  return this.l5_1.m();
@@ -3044,7 +3045,7 @@ if (typeof Math.imul === 'undefined') {
3044
3045
  if (!$this.q5_1.m()) {
3045
3046
  return false;
3046
3047
  } else {
3047
- var element = $this.q5_1.p();
3048
+ var element = $this.q5_1.n();
3048
3049
  var nextItemIterator = $this.s5_1.v5_1($this.s5_1.u5_1(element));
3049
3050
  if (nextItemIterator.m()) {
3050
3051
  $this.r5_1 = nextItemIterator;
@@ -3059,10 +3060,10 @@ if (typeof Math.imul === 'undefined') {
3059
3060
  this.q5_1 = this$0.t5_1.j();
3060
3061
  this.r5_1 = null;
3061
3062
  }
3062
- FlatteningSequence$iterator$1.prototype.p = function () {
3063
+ FlatteningSequence$iterator$1.prototype.n = function () {
3063
3064
  if (!ensureItemIterator(this))
3064
3065
  throw NoSuchElementException_init_$Create$();
3065
- return ensureNotNull(this.r5_1).p();
3066
+ return ensureNotNull(this.r5_1).n();
3066
3067
  };
3067
3068
  FlatteningSequence$iterator$1.prototype.m = function () {
3068
3069
  return ensureItemIterator(this);
@@ -3081,13 +3082,13 @@ if (typeof Math.imul === 'undefined') {
3081
3082
  this.w5_1 = this$0.z5_1;
3082
3083
  this.x5_1 = this$0.y5_1.j();
3083
3084
  }
3084
- TakeSequence$iterator$1.prototype.p = function () {
3085
+ TakeSequence$iterator$1.prototype.n = function () {
3085
3086
  if (this.w5_1 === 0)
3086
3087
  throw NoSuchElementException_init_$Create$();
3087
3088
  var tmp0_this = this;
3088
3089
  var tmp1 = tmp0_this.w5_1;
3089
3090
  tmp0_this.w5_1 = tmp1 - 1 | 0;
3090
- return this.x5_1.p();
3091
+ return this.x5_1.n();
3091
3092
  };
3092
3093
  TakeSequence$iterator$1.prototype.m = function () {
3093
3094
  return this.w5_1 > 0 ? this.x5_1.m() : false;
@@ -3117,7 +3118,7 @@ if (typeof Math.imul === 'undefined') {
3117
3118
  };
3118
3119
  function drop_2($this) {
3119
3120
  while ($this.b6_1 > 0 ? $this.a6_1.m() : false) {
3120
- $this.a6_1.p();
3121
+ $this.a6_1.n();
3121
3122
  var tmp0_this = $this;
3122
3123
  var tmp1 = tmp0_this.b6_1;
3123
3124
  tmp0_this.b6_1 = tmp1 - 1 | 0;
@@ -3127,9 +3128,9 @@ if (typeof Math.imul === 'undefined') {
3127
3128
  this.a6_1 = this$0.c6_1.j();
3128
3129
  this.b6_1 = this$0.d6_1;
3129
3130
  }
3130
- DropSequence$iterator$1.prototype.p = function () {
3131
+ DropSequence$iterator$1.prototype.n = function () {
3131
3132
  drop_2(this);
3132
- return this.a6_1.p();
3133
+ return this.a6_1.n();
3133
3134
  };
3134
3135
  DropSequence$iterator$1.prototype.m = function () {
3135
3136
  drop_2(this);
@@ -3179,7 +3180,7 @@ if (typeof Math.imul === 'undefined') {
3179
3180
  }
3180
3181
  function calcNext($this) {
3181
3182
  while ($this.e6_1.m()) {
3182
- var item = $this.e6_1.p();
3183
+ var item = $this.e6_1.n();
3183
3184
  if ($this.h6_1.k6_1(item) === $this.h6_1.j6_1) {
3184
3185
  $this.g6_1 = item;
3185
3186
  $this.f6_1 = 1;
@@ -3194,7 +3195,7 @@ if (typeof Math.imul === 'undefined') {
3194
3195
  this.f6_1 = -1;
3195
3196
  this.g6_1 = null;
3196
3197
  }
3197
- FilteringSequence$iterator$1.prototype.p = function () {
3198
+ FilteringSequence$iterator$1.prototype.n = function () {
3198
3199
  if (this.f6_1 === -1) {
3199
3200
  calcNext(this);
3200
3201
  }
@@ -3223,11 +3224,11 @@ if (typeof Math.imul === 'undefined') {
3223
3224
  this.l6_1 = this$0.n6_1.j();
3224
3225
  this.m6_1 = 0;
3225
3226
  }
3226
- IndexingSequence$iterator$1.prototype.p = function () {
3227
+ IndexingSequence$iterator$1.prototype.n = function () {
3227
3228
  var tmp0_this = this;
3228
3229
  var tmp1 = tmp0_this.m6_1;
3229
3230
  tmp0_this.m6_1 = tmp1 + 1 | 0;
3230
- return new IndexedValue(checkIndexOverflow(tmp1), this.l6_1.p());
3231
+ return new IndexedValue(checkIndexOverflow(tmp1), this.l6_1.n());
3231
3232
  };
3232
3233
  IndexingSequence$iterator$1.prototype.m = function () {
3233
3234
  return this.l6_1.m();
@@ -3274,7 +3275,7 @@ if (typeof Math.imul === 'undefined') {
3274
3275
  }
3275
3276
  function drop_3($this) {
3276
3277
  while ($this.r6_1 < $this.s6_1.u6_1 ? $this.q6_1.m() : false) {
3277
- $this.q6_1.p();
3278
+ $this.q6_1.n();
3278
3279
  var tmp0_this = $this;
3279
3280
  var tmp1 = tmp0_this.r6_1;
3280
3281
  tmp0_this.r6_1 = tmp1 + 1 | 0;
@@ -3292,14 +3293,14 @@ if (typeof Math.imul === 'undefined') {
3292
3293
  drop_3(this);
3293
3294
  return this.r6_1 < this.s6_1.v6_1 ? this.q6_1.m() : false;
3294
3295
  };
3295
- SubSequence$iterator$1.prototype.p = function () {
3296
+ SubSequence$iterator$1.prototype.n = function () {
3296
3297
  drop_3(this);
3297
3298
  if (this.r6_1 >= this.s6_1.v6_1)
3298
3299
  throw NoSuchElementException_init_$Create$();
3299
3300
  var tmp0_this = this;
3300
3301
  var tmp1 = tmp0_this.r6_1;
3301
3302
  tmp0_this.r6_1 = tmp1 + 1 | 0;
3302
- return this.q6_1.p();
3303
+ return this.q6_1.n();
3303
3304
  };
3304
3305
  function SubSequence(sequence, startIndex, endIndex) {
3305
3306
  this.t6_1 = sequence;
@@ -3359,7 +3360,7 @@ if (typeof Math.imul === 'undefined') {
3359
3360
  }
3360
3361
  DistinctIterator.prototype.p1 = function () {
3361
3362
  while (this.y6_1.m()) {
3362
- var next = this.y6_1.p();
3363
+ var next = this.y6_1.n();
3363
3364
  var key = this.z6_1(next);
3364
3365
  if (this.a7_1.g(key)) {
3365
3366
  this.s1(next);
@@ -3380,7 +3381,7 @@ if (typeof Math.imul === 'undefined') {
3380
3381
  this.c7_1 = null;
3381
3382
  this.d7_1 = -2;
3382
3383
  }
3383
- GeneratorSequence$iterator$1.prototype.p = function () {
3384
+ GeneratorSequence$iterator$1.prototype.n = function () {
3384
3385
  if (this.d7_1 < 0) {
3385
3386
  calcNext_0(this);
3386
3387
  }
@@ -3418,11 +3419,11 @@ if (typeof Math.imul === 'undefined') {
3418
3419
  this.h7_1 = this$0.k7_1.j();
3419
3420
  this.i7_1 = 0;
3420
3421
  }
3421
- TransformingIndexedSequence$iterator$1.prototype.p = function () {
3422
+ TransformingIndexedSequence$iterator$1.prototype.n = function () {
3422
3423
  var tmp0_this = this;
3423
3424
  var tmp1 = tmp0_this.i7_1;
3424
3425
  tmp0_this.i7_1 = tmp1 + 1 | 0;
3425
- return this.j7_1.l7_1(checkIndexOverflow(tmp1), this.h7_1.p());
3426
+ return this.j7_1.l7_1(checkIndexOverflow(tmp1), this.h7_1.n());
3426
3427
  };
3427
3428
  TransformingIndexedSequence$iterator$1.prototype.m = function () {
3428
3429
  return this.h7_1.m();
@@ -3436,7 +3437,7 @@ if (typeof Math.imul === 'undefined') {
3436
3437
  };
3437
3438
  function calcNext_1($this) {
3438
3439
  if ($this.m7_1.m()) {
3439
- var item = $this.m7_1.p();
3440
+ var item = $this.m7_1.n();
3440
3441
  if ($this.p7_1.r7_1(item)) {
3441
3442
  $this.n7_1 = 1;
3442
3443
  $this.o7_1 = item;
@@ -3451,7 +3452,7 @@ if (typeof Math.imul === 'undefined') {
3451
3452
  this.n7_1 = -1;
3452
3453
  this.o7_1 = null;
3453
3454
  }
3454
- TakeWhileSequence$iterator$1.prototype.p = function () {
3455
+ TakeWhileSequence$iterator$1.prototype.n = function () {
3455
3456
  if (this.n7_1 === -1) {
3456
3457
  calcNext_1(this);
3457
3458
  }
@@ -3481,8 +3482,8 @@ if (typeof Math.imul === 'undefined') {
3481
3482
  this.s7_1 = this$0.v7_1.j();
3482
3483
  this.t7_1 = this$0.w7_1.j();
3483
3484
  }
3484
- MergingSequence$iterator$1.prototype.p = function () {
3485
- return this.u7_1.x7_1(this.s7_1.p(), this.t7_1.p());
3485
+ MergingSequence$iterator$1.prototype.n = function () {
3486
+ return this.u7_1.x7_1(this.s7_1.n(), this.t7_1.n());
3486
3487
  };
3487
3488
  MergingSequence$iterator$1.prototype.m = function () {
3488
3489
  return this.s7_1.m() ? this.t7_1.m() : false;
@@ -3543,7 +3544,7 @@ if (typeof Math.imul === 'undefined') {
3543
3544
  EmptySet.prototype.toString = function () {
3544
3545
  return '[]';
3545
3546
  };
3546
- EmptySet.prototype.o = function () {
3547
+ EmptySet.prototype.p = function () {
3547
3548
  return 0;
3548
3549
  };
3549
3550
  EmptySet.prototype.d = function () {
@@ -3582,12 +3583,12 @@ if (typeof Math.imul === 'undefined') {
3582
3583
  return toCollection(elements, HashSet_init_$Create$_0(mapCapacity(elements.length)));
3583
3584
  }
3584
3585
  function optimizeReadOnlySet(_this__u8e3s4) {
3585
- var tmp0_subject = _this__u8e3s4.o();
3586
+ var tmp0_subject = _this__u8e3s4.p();
3586
3587
  switch (tmp0_subject) {
3587
3588
  case 0:
3588
3589
  return emptySet();
3589
3590
  case 1:
3590
- return setOf_0(_this__u8e3s4.j().p());
3591
+ return setOf_0(_this__u8e3s4.j().n());
3591
3592
  default:
3592
3593
  return _this__u8e3s4;
3593
3594
  }
@@ -4019,7 +4020,7 @@ if (typeof Math.imul === 'undefined') {
4019
4020
  var lines_0 = lines(_this__u8e3s4);
4020
4021
  var tmp$ret$12;
4021
4022
  // Inline function 'kotlin.text.reindent' call
4022
- var tmp1_reindent = _this__u8e3s4.length + imul(newIndent.length, lines_0.o()) | 0;
4023
+ var tmp1_reindent = _this__u8e3s4.length + imul(newIndent.length, lines_0.p()) | 0;
4023
4024
  var tmp2_reindent = getIndentFunction(newIndent);
4024
4025
  var lastIndex = get_lastIndex_0(lines_0);
4025
4026
  var tmp$ret$11;
@@ -4031,7 +4032,7 @@ if (typeof Math.imul === 'undefined') {
4031
4032
  var index = 0;
4032
4033
  var tmp0_iterator = lines_0.j();
4033
4034
  while (tmp0_iterator.m()) {
4034
- var item = tmp0_iterator.p();
4035
+ var item = tmp0_iterator.n();
4035
4036
  // Inline function 'kotlin.collections.mapIndexedNotNullTo.<anonymous>' call
4036
4037
  var tmp1 = index;
4037
4038
  index = tmp1 + 1 | 0;
@@ -4148,7 +4149,7 @@ if (typeof Math.imul === 'undefined') {
4148
4149
  var tmp0_filterTo = ArrayList_init_$Create$();
4149
4150
  var tmp0_iterator = lines_0.j();
4150
4151
  while (tmp0_iterator.m()) {
4151
- var element = tmp0_iterator.p();
4152
+ var element = tmp0_iterator.n();
4152
4153
  var tmp$ret$0;
4153
4154
  // Inline function 'kotlin.text.isNotBlank' call
4154
4155
  var tmp0_isNotBlank = element;
@@ -4165,7 +4166,7 @@ if (typeof Math.imul === 'undefined') {
4165
4166
  var tmp0_mapTo = ArrayList_init_$Create$_0(collectionSizeOrDefault(tmp1_map, 10));
4166
4167
  var tmp0_iterator_0 = tmp1_map.j();
4167
4168
  while (tmp0_iterator_0.m()) {
4168
- var item = tmp0_iterator_0.p();
4169
+ var item = tmp0_iterator_0.n();
4169
4170
  tmp0_mapTo.g(indentWidth(item));
4170
4171
  }
4171
4172
  tmp$ret$3 = tmp0_mapTo;
@@ -4174,7 +4175,7 @@ if (typeof Math.imul === 'undefined') {
4174
4175
  var minCommonIndent = tmp0_elvis_lhs == null ? 0 : tmp0_elvis_lhs;
4175
4176
  var tmp$ret$11;
4176
4177
  // Inline function 'kotlin.text.reindent' call
4177
- var tmp2_reindent = _this__u8e3s4.length + imul(newIndent.length, lines_0.o()) | 0;
4178
+ var tmp2_reindent = _this__u8e3s4.length + imul(newIndent.length, lines_0.p()) | 0;
4178
4179
  var tmp3_reindent = getIndentFunction(newIndent);
4179
4180
  var lastIndex = get_lastIndex_0(lines_0);
4180
4181
  var tmp$ret$10;
@@ -4186,7 +4187,7 @@ if (typeof Math.imul === 'undefined') {
4186
4187
  var index = 0;
4187
4188
  var tmp0_iterator_1 = lines_0.j();
4188
4189
  while (tmp0_iterator_1.m()) {
4189
- var item_0 = tmp0_iterator_1.p();
4190
+ var item_0 = tmp0_iterator_1.n();
4190
4191
  // Inline function 'kotlin.collections.mapIndexedNotNullTo.<anonymous>' call
4191
4192
  var tmp1 = index;
4192
4193
  index = tmp1 + 1 | 0;
@@ -4345,6 +4346,9 @@ if (typeof Math.imul === 'undefined') {
4345
4346
  function toIntOrNull_0(_this__u8e3s4) {
4346
4347
  return toIntOrNull(_this__u8e3s4, 10);
4347
4348
  }
4349
+ function get_lastIndex_1(_this__u8e3s4) {
4350
+ return charSequenceLength(_this__u8e3s4) - 1 | 0;
4351
+ }
4348
4352
  function removeRange(_this__u8e3s4, startIndex, endIndex) {
4349
4353
  if (endIndex < startIndex)
4350
4354
  throw IndexOutOfBoundsException_init_$Create$_0('End index (' + endIndex + ') is less than start index (' + startIndex + ').');
@@ -4429,9 +4433,6 @@ if (typeof Math.imul === 'undefined') {
4429
4433
  ignoreCase = false;
4430
4434
  return commonPrefixWith(_this__u8e3s4, other, ignoreCase);
4431
4435
  }
4432
- function get_lastIndex_1(_this__u8e3s4) {
4433
- return charSequenceLength(_this__u8e3s4) - 1 | 0;
4434
- }
4435
4436
  function lastIndexOfAny(_this__u8e3s4, chars, startIndex, ignoreCase) {
4436
4437
  var tmp;
4437
4438
  if (!ignoreCase ? chars.length === 1 : false) {
@@ -4787,7 +4788,7 @@ if (typeof Math.imul === 'undefined') {
4787
4788
  var tmp0_mapTo = ArrayList_init_$Create$_0(collectionSizeOrDefault(tmp0_map, 10));
4788
4789
  var tmp0_iterator = tmp0_map.j();
4789
4790
  while (tmp0_iterator.m()) {
4790
- var item = tmp0_iterator.p();
4791
+ var item = tmp0_iterator.n();
4791
4792
  var tmp$ret$1;
4792
4793
  // Inline function 'kotlin.text.split.<anonymous>' call
4793
4794
  tmp$ret$1 = substring(_this__u8e3s4, item);
@@ -4816,7 +4817,7 @@ if (typeof Math.imul === 'undefined') {
4816
4817
  var tmp0_mapTo = ArrayList_init_$Create$_0(collectionSizeOrDefault(tmp0_map, 10));
4817
4818
  var tmp0_iterator = tmp0_map.j();
4818
4819
  while (tmp0_iterator.m()) {
4819
- var item = tmp0_iterator.p();
4820
+ var item = tmp0_iterator.n();
4820
4821
  var tmp$ret$0;
4821
4822
  // Inline function 'kotlin.text.split.<anonymous>' call
4822
4823
  tmp$ret$0 = substring(_this__u8e3s4, item);
@@ -4923,7 +4924,7 @@ if (typeof Math.imul === 'undefined') {
4923
4924
  tmp$ret$0 = toString_3(charSequenceSubSequence(_this__u8e3s4, tmp0_substring, tmp1_substring));
4924
4925
  result.g(tmp$ret$0);
4925
4926
  currentOffset = nextIndex + delimiter.length | 0;
4926
- if (isLimited ? result.o() === (limit - 1 | 0) : false)
4927
+ if (isLimited ? result.p() === (limit - 1 | 0) : false)
4927
4928
  break $l$loop;
4928
4929
  nextIndex = indexOf_3(_this__u8e3s4, delimiter, currentOffset, ignoreCase);
4929
4930
  }
@@ -5037,7 +5038,7 @@ if (typeof Math.imul === 'undefined') {
5037
5038
  this.c9_1 = null;
5038
5039
  this.d9_1 = 0;
5039
5040
  }
5040
- DelimitedRangesSequence$iterator$1.prototype.p = function () {
5041
+ DelimitedRangesSequence$iterator$1.prototype.n = function () {
5041
5042
  if (this.z8_1 === -1) {
5042
5043
  calcNext_2(this);
5043
5044
  }
@@ -5065,7 +5066,7 @@ if (typeof Math.imul === 'undefined') {
5065
5066
  return new DelimitedRangesSequence$iterator$1(this);
5066
5067
  };
5067
5068
  function findAnyOf(_this__u8e3s4, strings, startIndex, ignoreCase, last) {
5068
- if (!ignoreCase ? strings.o() === 1 : false) {
5069
+ if (!ignoreCase ? strings.p() === 1 : false) {
5069
5070
  var string = single_1(strings);
5070
5071
  var tmp;
5071
5072
  if (!last) {
@@ -5090,7 +5091,7 @@ if (typeof Math.imul === 'undefined') {
5090
5091
  // Inline function 'kotlin.collections.firstOrNull' call
5091
5092
  var tmp0_iterator = strings.j();
5092
5093
  while (tmp0_iterator.m()) {
5093
- var element = tmp0_iterator.p();
5094
+ var element = tmp0_iterator.n();
5094
5095
  var tmp$ret$0;
5095
5096
  // Inline function 'kotlin.text.findAnyOf.<anonymous>' call
5096
5097
  tmp$ret$0 = regionMatches(element, 0, _this__u8e3s4, index_0, element.length, ignoreCase);
@@ -5119,7 +5120,7 @@ if (typeof Math.imul === 'undefined') {
5119
5120
  // Inline function 'kotlin.collections.firstOrNull' call
5120
5121
  var tmp0_iterator_0 = strings.j();
5121
5122
  while (tmp0_iterator_0.m()) {
5122
- var element_0 = tmp0_iterator_0.p();
5123
+ var element_0 = tmp0_iterator_0.n();
5123
5124
  var tmp$ret$2;
5124
5125
  // Inline function 'kotlin.text.findAnyOf.<anonymous>' call
5125
5126
  tmp$ret$2 = regionMatchesImpl(element_0, 0, _this__u8e3s4, index_1, element_0.length, ignoreCase);
@@ -5644,6 +5645,20 @@ if (typeof Math.imul === 'undefined') {
5644
5645
  new DoubleCompanionObject();
5645
5646
  return DoubleCompanionObject_instance;
5646
5647
  }
5648
+ function copyToArrayImpl(collection) {
5649
+ var tmp$ret$0;
5650
+ // Inline function 'kotlin.emptyArray' call
5651
+ tmp$ret$0 = [];
5652
+ var array = tmp$ret$0;
5653
+ var iterator = collection.j();
5654
+ while (iterator.m()) {
5655
+ var tmp$ret$1;
5656
+ // Inline function 'kotlin.js.asDynamic' call
5657
+ tmp$ret$1 = array;
5658
+ tmp$ret$1.push(iterator.n());
5659
+ }
5660
+ return array;
5661
+ }
5647
5662
  function mapOf_0(pair) {
5648
5663
  return hashMapOf([pair]);
5649
5664
  }
@@ -5682,20 +5697,6 @@ if (typeof Math.imul === 'undefined') {
5682
5697
  }
5683
5698
  return tmp;
5684
5699
  }
5685
- function copyToArrayImpl(collection) {
5686
- var tmp$ret$0;
5687
- // Inline function 'kotlin.emptyArray' call
5688
- tmp$ret$0 = [];
5689
- var array = tmp$ret$0;
5690
- var iterator = collection.j();
5691
- while (iterator.m()) {
5692
- var tmp$ret$1;
5693
- // Inline function 'kotlin.js.asDynamic' call
5694
- tmp$ret$1 = array;
5695
- tmp$ret$1.push(iterator.p());
5696
- }
5697
- return array;
5698
- }
5699
5700
  function checkIndexOverflow(index) {
5700
5701
  if (index < 0) {
5701
5702
  throwIndexOverflow();
@@ -5712,7 +5713,7 @@ if (typeof Math.imul === 'undefined') {
5712
5713
  return count;
5713
5714
  }
5714
5715
  function collectionsSort(list, comparator) {
5715
- if (list.o() <= 1)
5716
+ if (list.p() <= 1)
5716
5717
  return Unit_getInstance();
5717
5718
  var array = copyToArray(list);
5718
5719
  sortArrayWith(array, comparator);
@@ -5738,7 +5739,7 @@ if (typeof Math.imul === 'undefined') {
5738
5739
  this.ja();
5739
5740
  var iterator = this.j();
5740
5741
  while (iterator.m()) {
5741
- if (equals_0(iterator.p(), element)) {
5742
+ if (equals_0(iterator.n(), element)) {
5742
5743
  iterator.u4();
5743
5744
  return true;
5744
5745
  }
@@ -5750,7 +5751,7 @@ if (typeof Math.imul === 'undefined') {
5750
5751
  var modified = false;
5751
5752
  var tmp0_iterator = elements.j();
5752
5753
  while (tmp0_iterator.m()) {
5753
- var element = tmp0_iterator.p();
5754
+ var element = tmp0_iterator.n();
5754
5755
  if (this.g(element))
5755
5756
  modified = true;
5756
5757
  }
@@ -5772,9 +5773,9 @@ if (typeof Math.imul === 'undefined') {
5772
5773
  this.la_1 = -1;
5773
5774
  }
5774
5775
  IteratorImpl_0.prototype.m = function () {
5775
- return this.ka_1 < this.ma_1.o();
5776
+ return this.ka_1 < this.ma_1.p();
5776
5777
  };
5777
- IteratorImpl_0.prototype.p = function () {
5778
+ IteratorImpl_0.prototype.n = function () {
5778
5779
  if (!this.m())
5779
5780
  throw NoSuchElementException_init_$Create$();
5780
5781
  var tmp = this;
@@ -5782,7 +5783,7 @@ if (typeof Math.imul === 'undefined') {
5782
5783
  var tmp1 = tmp0_this.ka_1;
5783
5784
  tmp0_this.ka_1 = tmp1 + 1 | 0;
5784
5785
  tmp.la_1 = tmp1;
5785
- return this.ma_1.n(this.la_1);
5786
+ return this.ma_1.o(this.la_1);
5786
5787
  };
5787
5788
  IteratorImpl_0.prototype.u4 = function () {
5788
5789
  // Inline function 'kotlin.check' call
@@ -5802,7 +5803,7 @@ if (typeof Math.imul === 'undefined') {
5802
5803
  function ListIteratorImpl_0($outer, index) {
5803
5804
  this.ra_1 = $outer;
5804
5805
  IteratorImpl_0.call(this, $outer);
5805
- Companion_getInstance().f2(index, this.ra_1.o());
5806
+ Companion_getInstance().f2(index, this.ra_1.p());
5806
5807
  this.ka_1 = index;
5807
5808
  }
5808
5809
  ListIteratorImpl_0.prototype.g2 = function () {
@@ -5815,7 +5816,7 @@ if (typeof Math.imul === 'undefined') {
5815
5816
  var tmp0_this = this;
5816
5817
  tmp0_this.ka_1 = tmp0_this.ka_1 - 1 | 0;
5817
5818
  tmp.la_1 = tmp0_this.ka_1;
5818
- return this.ra_1.n(this.la_1);
5819
+ return this.ra_1.o(this.la_1);
5819
5820
  };
5820
5821
  ListIteratorImpl_0.prototype.sa = function () {
5821
5822
  return this.ka_1 - 1 | 0;
@@ -5835,7 +5836,7 @@ if (typeof Math.imul === 'undefined') {
5835
5836
  this.xa_1 = list;
5836
5837
  this.ya_1 = fromIndex;
5837
5838
  this.za_1 = 0;
5838
- Companion_getInstance().y1(this.ya_1, toIndex, this.xa_1.o());
5839
+ Companion_getInstance().y1(this.ya_1, toIndex, this.xa_1.p());
5839
5840
  this.za_1 = toIndex - this.ya_1 | 0;
5840
5841
  }
5841
5842
  SubList_0.prototype.ua = function (index, element) {
@@ -5845,9 +5846,9 @@ if (typeof Math.imul === 'undefined') {
5845
5846
  var tmp1 = tmp0_this.za_1;
5846
5847
  tmp0_this.za_1 = tmp1 + 1 | 0;
5847
5848
  };
5848
- SubList_0.prototype.n = function (index) {
5849
+ SubList_0.prototype.o = function (index) {
5849
5850
  Companion_getInstance().z1(index, this.za_1);
5850
- return this.xa_1.n(this.ya_1 + index | 0);
5851
+ return this.xa_1.o(this.ya_1 + index | 0);
5851
5852
  };
5852
5853
  SubList_0.prototype.t4 = function (index) {
5853
5854
  Companion_getInstance().z1(index, this.za_1);
@@ -5861,7 +5862,7 @@ if (typeof Math.imul === 'undefined') {
5861
5862
  Companion_getInstance().z1(index, this.za_1);
5862
5863
  return this.xa_1.s4(this.ya_1 + index | 0, element);
5863
5864
  };
5864
- SubList_0.prototype.o = function () {
5865
+ SubList_0.prototype.p = function () {
5865
5866
  return this.za_1;
5866
5867
  };
5867
5868
  SubList_0.prototype.ja = function () {
@@ -5878,12 +5879,12 @@ if (typeof Math.imul === 'undefined') {
5878
5879
  }
5879
5880
  AbstractMutableList.prototype.g = function (element) {
5880
5881
  this.ja();
5881
- this.ua(this.o(), element);
5882
+ this.ua(this.p(), element);
5882
5883
  return true;
5883
5884
  };
5884
5885
  AbstractMutableList.prototype.ab = function () {
5885
5886
  this.ja();
5886
- this.cb(0, this.o());
5887
+ this.cb(0, this.p());
5887
5888
  };
5888
5889
  AbstractMutableList.prototype.j1 = function (elements) {
5889
5890
  this.ja();
@@ -5902,7 +5903,7 @@ if (typeof Math.imul === 'undefined') {
5902
5903
  do {
5903
5904
  var index = inductionVariable;
5904
5905
  inductionVariable = inductionVariable + 1 | 0;
5905
- if (equals_0(this.n(index), element)) {
5906
+ if (equals_0(this.o(index), element)) {
5906
5907
  return index;
5907
5908
  }
5908
5909
  }
@@ -5929,7 +5930,7 @@ if (typeof Math.imul === 'undefined') {
5929
5930
  var index = inductionVariable;
5930
5931
  inductionVariable = inductionVariable + 1 | 0;
5931
5932
  // Inline function 'kotlin.collections.AbstractMutableList.removeRange.<anonymous>' call
5932
- iterator.p();
5933
+ iterator.n();
5933
5934
  iterator.u4();
5934
5935
  }
5935
5936
  while (inductionVariable < tmp0_repeat);
@@ -5950,8 +5951,8 @@ if (typeof Math.imul === 'undefined') {
5950
5951
  AbstractMutableMap$keys$1$iterator$1.prototype.m = function () {
5951
5952
  return this.db_1.m();
5952
5953
  };
5953
- AbstractMutableMap$keys$1$iterator$1.prototype.p = function () {
5954
- return this.db_1.p().a1();
5954
+ AbstractMutableMap$keys$1$iterator$1.prototype.n = function () {
5955
+ return this.db_1.n().a1();
5955
5956
  };
5956
5957
  AbstractMutableMap$keys$1$iterator$1.prototype.u4 = function () {
5957
5958
  return this.db_1.u4();
@@ -5962,8 +5963,8 @@ if (typeof Math.imul === 'undefined') {
5962
5963
  AbstractMutableMap$values$1$iterator$1.prototype.m = function () {
5963
5964
  return this.eb_1.m();
5964
5965
  };
5965
- AbstractMutableMap$values$1$iterator$1.prototype.p = function () {
5966
- return this.eb_1.p().b1();
5966
+ AbstractMutableMap$values$1$iterator$1.prototype.n = function () {
5967
+ return this.eb_1.n().b1();
5967
5968
  };
5968
5969
  AbstractMutableMap$values$1$iterator$1.prototype.u4 = function () {
5969
5970
  return this.eb_1.u4();
@@ -6036,8 +6037,8 @@ if (typeof Math.imul === 'undefined') {
6036
6037
  return false;
6037
6038
  return this.x3((element == null ? true : isObject(element)) ? element : THROW_CCE());
6038
6039
  };
6039
- AbstractMutableMap$keys$1.prototype.o = function () {
6040
- return this.kb_1.o();
6040
+ AbstractMutableMap$keys$1.prototype.p = function () {
6041
+ return this.kb_1.p();
6041
6042
  };
6042
6043
  AbstractMutableMap$keys$1.prototype.ja = function () {
6043
6044
  return this.kb_1.ja();
@@ -6064,8 +6065,8 @@ if (typeof Math.imul === 'undefined') {
6064
6065
  var entryIterator = this.mb_1.z().j();
6065
6066
  return new AbstractMutableMap$values$1$iterator$1(entryIterator);
6066
6067
  };
6067
- AbstractMutableMap$values$1.prototype.o = function () {
6068
- return this.mb_1.o();
6068
+ AbstractMutableMap$values$1.prototype.p = function () {
6069
+ return this.mb_1.p();
6069
6070
  };
6070
6071
  AbstractMutableMap$values$1.prototype.ja = function () {
6071
6072
  return this.mb_1.ja();
@@ -6089,7 +6090,7 @@ if (typeof Math.imul === 'undefined') {
6089
6090
  tmp$ret$0 = from.z().j();
6090
6091
  var tmp0_iterator = tmp$ret$0;
6091
6092
  while (tmp0_iterator.m()) {
6092
- var tmp1_loop_parameter = tmp0_iterator.p();
6093
+ var tmp1_loop_parameter = tmp0_iterator.n();
6093
6094
  var tmp$ret$1;
6094
6095
  // Inline function 'kotlin.collections.component1' call
6095
6096
  tmp$ret$1 = tmp1_loop_parameter.a1();
@@ -6112,7 +6113,7 @@ if (typeof Math.imul === 'undefined') {
6112
6113
  this.ja();
6113
6114
  var iter = this.z().j();
6114
6115
  while (iter.m()) {
6115
- var entry = iter.p();
6116
+ var entry = iter.n();
6116
6117
  var k = entry.a1();
6117
6118
  if (equals_0(key, k)) {
6118
6119
  var value = entry.b1();
@@ -6172,7 +6173,7 @@ if (typeof Math.imul === 'undefined') {
6172
6173
  // Inline function 'kotlin.apply' call
6173
6174
  // Inline function 'kotlin.contracts.contract' call
6174
6175
  // Inline function 'kotlin.collections.ArrayList.rangeCheck.<anonymous>' call
6175
- Companion_getInstance().z1(index, $this.o());
6176
+ Companion_getInstance().z1(index, $this.p());
6176
6177
  tmp$ret$0 = index;
6177
6178
  return tmp$ret$0;
6178
6179
  }
@@ -6181,7 +6182,7 @@ if (typeof Math.imul === 'undefined') {
6181
6182
  // Inline function 'kotlin.apply' call
6182
6183
  // Inline function 'kotlin.contracts.contract' call
6183
6184
  // Inline function 'kotlin.collections.ArrayList.insertionRangeCheck.<anonymous>' call
6184
- Companion_getInstance().f2(index, $this.o());
6185
+ Companion_getInstance().f2(index, $this.p());
6185
6186
  tmp$ret$0 = index;
6186
6187
  return tmp$ret$0;
6187
6188
  }
@@ -6195,10 +6196,10 @@ if (typeof Math.imul === 'undefined') {
6195
6196
  this.s_1 = true;
6196
6197
  return this;
6197
6198
  };
6198
- ArrayList.prototype.o = function () {
6199
+ ArrayList.prototype.p = function () {
6199
6200
  return this.r_1.length;
6200
6201
  };
6201
- ArrayList.prototype.n = function (index) {
6202
+ ArrayList.prototype.o = function (index) {
6202
6203
  var tmp = this.r_1[rangeCheck(this, index)];
6203
6204
  return (tmp == null ? true : isObject(tmp)) ? tmp : THROW_CCE();
6204
6205
  };
@@ -6522,8 +6523,8 @@ if (typeof Math.imul === 'undefined') {
6522
6523
  }
6523
6524
  return false;
6524
6525
  };
6525
- EntrySet.prototype.o = function () {
6526
- return this.sb_1.o();
6526
+ EntrySet.prototype.p = function () {
6527
+ return this.sb_1.p();
6527
6528
  };
6528
6529
  function HashMap_init_$Init$(internalMap, $this) {
6529
6530
  AbstractMutableMap.call($this);
@@ -6593,7 +6594,7 @@ if (typeof Math.imul === 'undefined') {
6593
6594
  }
6594
6595
  var tmp0_iterator = tmp0_any.j();
6595
6596
  while (tmp0_iterator.m()) {
6596
- var element = tmp0_iterator.p();
6597
+ var element = tmp0_iterator.n();
6597
6598
  var tmp$ret$1;
6598
6599
  // Inline function 'kotlin.collections.HashMap.containsValue.<anonymous>' call
6599
6600
  tmp$ret$1 = this.zb_1.qb(element.b1(), value);
@@ -6624,8 +6625,8 @@ if (typeof Math.imul === 'undefined') {
6624
6625
  HashMap.prototype.x3 = function (key) {
6625
6626
  return this.yb_1.x3(key);
6626
6627
  };
6627
- HashMap.prototype.o = function () {
6628
- return this.yb_1.o();
6628
+ HashMap.prototype.p = function () {
6629
+ return this.yb_1.p();
6629
6630
  };
6630
6631
  function HashMap() {
6631
6632
  this.ac_1 = null;
@@ -6674,8 +6675,8 @@ if (typeof Math.imul === 'undefined') {
6674
6675
  HashSet.prototype.ia = function (element) {
6675
6676
  return !(this.b7_1.x3(element) == null);
6676
6677
  };
6677
- HashSet.prototype.o = function () {
6678
- return this.b7_1.o();
6678
+ HashSet.prototype.p = function () {
6679
+ return this.b7_1.p();
6679
6680
  };
6680
6681
  function HashSet() {
6681
6682
  }
@@ -6767,7 +6768,7 @@ if (typeof Math.imul === 'undefined') {
6767
6768
  this.dc_1 = computeNext(this);
6768
6769
  return this.dc_1 === 0;
6769
6770
  };
6770
- InternalHashCodeMap$iterator$1.prototype.p = function () {
6771
+ InternalHashCodeMap$iterator$1.prototype.n = function () {
6771
6772
  if (!this.m())
6772
6773
  throw NoSuchElementException_init_$Create$();
6773
6774
  var tmp;
@@ -6824,7 +6825,7 @@ if (typeof Math.imul === 'undefined') {
6824
6825
  InternalHashCodeMap.prototype.bc = function () {
6825
6826
  return this.lc_1;
6826
6827
  };
6827
- InternalHashCodeMap.prototype.o = function () {
6828
+ InternalHashCodeMap.prototype.p = function () {
6828
6829
  return this.nc_1;
6829
6830
  };
6830
6831
  InternalHashCodeMap.prototype.w3 = function (key, value) {
@@ -6884,7 +6885,11 @@ if (typeof Math.imul === 'undefined') {
6884
6885
  if (!(!(chainOrEntry == null) ? isArray(chainOrEntry) : false)) {
6885
6886
  var entry = chainOrEntry;
6886
6887
  if (this.lc_1.qb(entry.a1(), key)) {
6887
- jsDeleteProperty(this.mc_1, hashCode);
6888
+ var tmp$ret$0;
6889
+ // Inline function 'kotlin.js.jsDeleteProperty' call
6890
+ var tmp0_jsDeleteProperty = this.mc_1;
6891
+ delete tmp0_jsDeleteProperty[hashCode];
6892
+ tmp$ret$0 = Unit_getInstance();
6888
6893
  var tmp1_this = this;
6889
6894
  var tmp2 = tmp1_this.nc_1;
6890
6895
  tmp1_this.nc_1 = tmp2 - 1 | 0;
@@ -6903,16 +6908,20 @@ if (typeof Math.imul === 'undefined') {
6903
6908
  var entry_0 = chain[index];
6904
6909
  if (this.lc_1.qb(key, entry_0.a1())) {
6905
6910
  if (chain.length === 1) {
6906
- var tmp$ret$0;
6907
- // Inline function 'kotlin.js.asDynamic' call
6908
- tmp$ret$0 = chain;
6909
- tmp$ret$0.length = 0;
6910
- jsDeleteProperty(this.mc_1, hashCode);
6911
- } else {
6912
6911
  var tmp$ret$1;
6913
6912
  // Inline function 'kotlin.js.asDynamic' call
6914
6913
  tmp$ret$1 = chain;
6915
- tmp$ret$1.splice(index, 1);
6914
+ tmp$ret$1.length = 0;
6915
+ var tmp$ret$2;
6916
+ // Inline function 'kotlin.js.jsDeleteProperty' call
6917
+ var tmp1_jsDeleteProperty = this.mc_1;
6918
+ delete tmp1_jsDeleteProperty[hashCode];
6919
+ tmp$ret$2 = Unit_getInstance();
6920
+ } else {
6921
+ var tmp$ret$3;
6922
+ // Inline function 'kotlin.js.asDynamic' call
6923
+ tmp$ret$3 = chain;
6924
+ tmp$ret$3.splice(index, 1);
6916
6925
  }
6917
6926
  var tmp4_this = this;
6918
6927
  var tmp5 = tmp4_this.nc_1;
@@ -6945,7 +6954,7 @@ if (typeof Math.imul === 'undefined') {
6945
6954
  EntryIterator.prototype.m = function () {
6946
6955
  return !(this.qc_1 === null);
6947
6956
  };
6948
- EntryIterator.prototype.p = function () {
6957
+ EntryIterator.prototype.n = function () {
6949
6958
  if (!this.m())
6950
6959
  throw NoSuchElementException_init_$Create$();
6951
6960
  var current = ensureNotNull(this.qc_1);
@@ -7020,8 +7029,8 @@ if (typeof Math.imul === 'undefined') {
7020
7029
  }
7021
7030
  return false;
7022
7031
  };
7023
- EntrySet_0.prototype.o = function () {
7024
- return this.sc_1.o();
7032
+ EntrySet_0.prototype.p = function () {
7033
+ return this.sc_1.p();
7025
7034
  };
7026
7035
  EntrySet_0.prototype.ja = function () {
7027
7036
  return this.sc_1.ja();
@@ -7169,8 +7178,8 @@ if (typeof Math.imul === 'undefined') {
7169
7178
  }
7170
7179
  return null;
7171
7180
  };
7172
- LinkedHashMap.prototype.o = function () {
7173
- return this.q4_1.o();
7181
+ LinkedHashMap.prototype.p = function () {
7182
+ return this.q4_1.p();
7174
7183
  };
7175
7184
  LinkedHashMap.prototype.ja = function () {
7176
7185
  if (this.r4_1)
@@ -7899,7 +7908,7 @@ if (typeof Math.imul === 'undefined') {
7899
7908
  return tmp;
7900
7909
  }
7901
7910
  function getKClassFromExpression(e) {
7902
- var tmp$ret$3;
7911
+ var tmp$ret$4;
7903
7912
  // Inline function 'kotlin.js.unsafeCast' call
7904
7913
  var tmp0_subject = typeof e;
7905
7914
  var tmp;
@@ -7909,12 +7918,15 @@ if (typeof Math.imul === 'undefined') {
7909
7918
  break;
7910
7919
  case 'number':
7911
7920
  var tmp_0;
7912
- var tmp$ret$0;
7921
+ var tmp$ret$1;
7913
7922
  // Inline function 'kotlin.js.asDynamic' call
7914
- var tmp0_asDynamic = jsBitwiseOr(e, 0);
7915
- tmp$ret$0 = tmp0_asDynamic;
7923
+ var tmp$ret$0;
7924
+ // Inline function 'kotlin.js.jsBitwiseOr' call
7925
+ tmp$ret$0 = e | 0;
7926
+ var tmp0_asDynamic = tmp$ret$0;
7927
+ tmp$ret$1 = tmp0_asDynamic;
7916
7928
 
7917
- if (tmp$ret$0 === e) {
7929
+ if (tmp$ret$1 === e) {
7918
7930
  tmp_0 = PrimitiveClasses_getInstance().intClass;
7919
7931
  } else {
7920
7932
  tmp_0 = PrimitiveClasses_getInstance().doubleClass;
@@ -7927,11 +7939,11 @@ if (typeof Math.imul === 'undefined') {
7927
7939
  break;
7928
7940
  case 'function':
7929
7941
  var tmp_1 = PrimitiveClasses_getInstance();
7930
- var tmp$ret$1;
7942
+ var tmp$ret$2;
7931
7943
  // Inline function 'kotlin.js.asDynamic' call
7932
- tmp$ret$1 = e;
7944
+ tmp$ret$2 = e;
7933
7945
 
7934
- tmp = tmp_1.functionClass(tmp$ret$1.length);
7946
+ tmp = tmp_1.functionClass(tmp$ret$2.length);
7935
7947
  break;
7936
7948
  default:
7937
7949
  var tmp_2;
@@ -7991,11 +8003,11 @@ if (typeof Math.imul === 'undefined') {
7991
8003
  break;
7992
8004
  }
7993
8005
  var tmp1_unsafeCast = tmp;
7994
- var tmp$ret$2;
8006
+ var tmp$ret$3;
7995
8007
  // Inline function 'kotlin.js.asDynamic' call
7996
- tmp$ret$2 = tmp1_unsafeCast;
7997
- tmp$ret$3 = tmp$ret$2;
7998
- return tmp$ret$3;
8008
+ tmp$ret$3 = tmp1_unsafeCast;
8009
+ tmp$ret$4 = tmp$ret$3;
8010
+ return tmp$ret$4;
7999
8011
  }
8000
8012
  function reset(_this__u8e3s4) {
8001
8013
  _this__u8e3s4.lastIndex = 0;
@@ -8118,21 +8130,6 @@ if (typeof Math.imul === 'undefined') {
8118
8130
  tmp.x8_1 = tmp_0 + tmp$ret$1;
8119
8131
  return this;
8120
8132
  };
8121
- function uppercaseChar(_this__u8e3s4) {
8122
- var tmp$ret$2;
8123
- // Inline function 'kotlin.text.uppercase' call
8124
- var tmp$ret$1;
8125
- // Inline function 'kotlin.js.unsafeCast' call
8126
- var tmp$ret$0;
8127
- // Inline function 'kotlin.js.asDynamic' call
8128
- var tmp0_asDynamic = toString_1(_this__u8e3s4);
8129
- tmp$ret$0 = tmp0_asDynamic;
8130
- var tmp1_unsafeCast = tmp$ret$0.toUpperCase();
8131
- tmp$ret$1 = tmp1_unsafeCast;
8132
- tmp$ret$2 = tmp$ret$1;
8133
- var uppercase = tmp$ret$2;
8134
- return uppercase.length > 1 ? _this__u8e3s4 : charSequenceGet(uppercase, 0);
8135
- }
8136
8133
  function isLowSurrogate(_this__u8e3s4) {
8137
8134
  Companion_getInstance_7();
8138
8135
  var containsLower = _Char___init__impl__6a9atx(56320);
@@ -8157,6 +8154,21 @@ if (typeof Math.imul === 'undefined') {
8157
8154
  }
8158
8155
  return tmp;
8159
8156
  }
8157
+ function uppercaseChar(_this__u8e3s4) {
8158
+ var tmp$ret$2;
8159
+ // Inline function 'kotlin.text.uppercase' call
8160
+ var tmp$ret$1;
8161
+ // Inline function 'kotlin.js.unsafeCast' call
8162
+ var tmp$ret$0;
8163
+ // Inline function 'kotlin.js.asDynamic' call
8164
+ var tmp0_asDynamic = toString_1(_this__u8e3s4);
8165
+ tmp$ret$0 = tmp0_asDynamic;
8166
+ var tmp1_unsafeCast = tmp$ret$0.toUpperCase();
8167
+ tmp$ret$1 = tmp1_unsafeCast;
8168
+ tmp$ret$2 = tmp$ret$1;
8169
+ var uppercase = tmp$ret$2;
8170
+ return uppercase.length > 1 ? _this__u8e3s4 : charSequenceGet(uppercase, 0);
8171
+ }
8160
8172
  function isWhitespace(_this__u8e3s4) {
8161
8173
  return isWhitespaceImpl(_this__u8e3s4);
8162
8174
  }
@@ -8172,6 +8184,12 @@ if (typeof Math.imul === 'undefined') {
8172
8184
  function titlecaseChar(_this__u8e3s4) {
8173
8185
  return titlecaseCharImpl(_this__u8e3s4);
8174
8186
  }
8187
+ function toString_0(_this__u8e3s4, radix) {
8188
+ var tmp$ret$0;
8189
+ // Inline function 'kotlin.js.asDynamic' call
8190
+ tmp$ret$0 = _this__u8e3s4;
8191
+ return tmp$ret$0.toString(checkRadix(radix));
8192
+ }
8175
8193
  function checkRadix(radix) {
8176
8194
  if (!(2 <= radix ? radix <= 36 : false)) {
8177
8195
  throw IllegalArgumentException_init_$Create$('radix ' + radix + ' was not in valid range 2..36');
@@ -8269,12 +8287,6 @@ if (typeof Math.imul === 'undefined') {
8269
8287
  tmp$ret$1 = tmp$ret$0;
8270
8288
  return tmp$ret$1;
8271
8289
  }
8272
- function toString_0(_this__u8e3s4, radix) {
8273
- var tmp$ret$0;
8274
- // Inline function 'kotlin.js.asDynamic' call
8275
- tmp$ret$0 = _this__u8e3s4;
8276
- return tmp$ret$0.toString(checkRadix(radix));
8277
- }
8278
8290
  function Regex_init_$Init$(pattern, option, $this) {
8279
8291
  Regex.call($this, pattern, setOf_0(option));
8280
8292
  return $this;
@@ -8365,7 +8377,7 @@ if (typeof Math.imul === 'undefined') {
8365
8377
  };
8366
8378
  }
8367
8379
  function Regex$findAll$lambda_0(match) {
8368
- return match.p();
8380
+ return match.n();
8369
8381
  }
8370
8382
  function Regex$replace$lambda($replacement) {
8371
8383
  return function (it) {
@@ -8449,7 +8461,7 @@ if (typeof Math.imul === 'undefined') {
8449
8461
  sb.pe(input, lastStart, foundMatch.k9().e());
8450
8462
  sb.h(transform(foundMatch));
8451
8463
  lastStart = foundMatch.k9().f() + 1 | 0;
8452
- match = foundMatch.p();
8464
+ match = foundMatch.n();
8453
8465
  }
8454
8466
  while (lastStart < length ? !(match == null) : false);
8455
8467
  if (lastStart < length) {
@@ -8475,7 +8487,7 @@ if (typeof Math.imul === 'undefined') {
8475
8487
  var lastStart = 0;
8476
8488
  var tmp0_iterator = matches.j();
8477
8489
  while (tmp0_iterator.m()) {
8478
- var match = tmp0_iterator.p();
8490
+ var match = tmp0_iterator.n();
8479
8491
  result.g(toString_3(charSequenceSubSequence(input, lastStart, match.k9().e())));
8480
8492
  lastStart = match.k9().f() + 1 | 0;
8481
8493
  }
@@ -8550,7 +8562,7 @@ if (typeof Math.imul === 'undefined') {
8550
8562
  if (!(_Char___init__impl__6a9atx(48) <= containsArg ? containsArg <= _Char___init__impl__6a9atx(57) : false))
8551
8563
  throw IllegalArgumentException_init_$Create$('Invalid capturing group reference');
8552
8564
  var groups = match.l9();
8553
- var endIndex_0 = readGroupIndex(replacement, index, groups.o());
8565
+ var endIndex_0 = readGroupIndex(replacement, index, groups.p());
8554
8566
  var tmp$ret$3;
8555
8567
  // Inline function 'kotlin.text.substring' call
8556
8568
  var tmp1_substring = index;
@@ -8559,9 +8571,9 @@ if (typeof Math.imul === 'undefined') {
8559
8571
  tmp$ret$2 = replacement;
8560
8572
  tmp$ret$3 = tmp$ret$2.substring(tmp1_substring, endIndex_0);
8561
8573
  var groupIndex = toInt_0(tmp$ret$3);
8562
- if (groupIndex >= groups.o())
8574
+ if (groupIndex >= groups.p())
8563
8575
  throw IndexOutOfBoundsException_init_$Create$_0('Group with index ' + groupIndex + ' does not exist');
8564
- var tmp4_safe_receiver = groups.n(groupIndex);
8576
+ var tmp4_safe_receiver = groups.o(groupIndex);
8565
8577
  var tmp5_elvis_lhs = tmp4_safe_receiver == null ? null : tmp4_safe_receiver.qf_1;
8566
8578
  result.re(tmp5_elvis_lhs == null ? '' : tmp5_elvis_lhs);
8567
8579
  index = endIndex_0;
@@ -8644,7 +8656,7 @@ if (typeof Math.imul === 'undefined') {
8644
8656
  }
8645
8657
  function findNext$o$groups$o$iterator$lambda(this$0) {
8646
8658
  return function (it) {
8647
- return this$0.n(it);
8659
+ return this$0.o(it);
8648
8660
  };
8649
8661
  }
8650
8662
  function hasOwnPrototypeProperty($this, o, name) {
@@ -8685,14 +8697,14 @@ if (typeof Math.imul === 'undefined') {
8685
8697
  this.sf_1 = this$0;
8686
8698
  AbstractCollection.call(this);
8687
8699
  }
8688
- findNext$1$groups$1.prototype.o = function () {
8700
+ findNext$1$groups$1.prototype.p = function () {
8689
8701
  return this.rf_1.length;
8690
8702
  };
8691
8703
  findNext$1$groups$1.prototype.j = function () {
8692
8704
  var tmp = asSequence_1(get_indices(this));
8693
8705
  return map(tmp, findNext$o$groups$o$iterator$lambda(this)).j();
8694
8706
  };
8695
- findNext$1$groups$1.prototype.n = function (index) {
8707
+ findNext$1$groups$1.prototype.o = function (index) {
8696
8708
  var tmp$ret$1;
8697
8709
  // Inline function 'kotlin.js.get' call
8698
8710
  var tmp$ret$0;
@@ -8742,10 +8754,10 @@ if (typeof Math.imul === 'undefined') {
8742
8754
  this.ag_1 = $match;
8743
8755
  AbstractList.call(this);
8744
8756
  }
8745
- findNext$1$groupValues$1.prototype.o = function () {
8757
+ findNext$1$groupValues$1.prototype.p = function () {
8746
8758
  return this.ag_1.length;
8747
8759
  };
8748
- findNext$1$groupValues$1.prototype.n = function (index) {
8760
+ findNext$1$groupValues$1.prototype.o = function (index) {
8749
8761
  var tmp$ret$1;
8750
8762
  // Inline function 'kotlin.js.get' call
8751
8763
  var tmp$ret$0;
@@ -8787,7 +8799,7 @@ if (typeof Math.imul === 'undefined') {
8787
8799
  }
8788
8800
  return ensureNotNull(this.vf_1);
8789
8801
  };
8790
- findNext$1.prototype.p = function () {
8802
+ findNext$1.prototype.n = function () {
8791
8803
  return findNext(this.yf_1, this.zf_1, this.wf_1.d() ? advanceToNextCharacter(this, this.wf_1.e()) : this.wf_1.f() + 1 | 0, this.yf_1);
8792
8804
  };
8793
8805
  function RegexOption_IGNORE_CASE_getInstance() {
@@ -8795,6 +8807,19 @@ if (typeof Math.imul === 'undefined') {
8795
8807
  return RegexOption_IGNORE_CASE_instance;
8796
8808
  }
8797
8809
  var STRING_CASE_INSENSITIVE_ORDER;
8810
+ function concatToString(_this__u8e3s4) {
8811
+ init_properties_string_kt_z8k4s7();
8812
+ var result = '';
8813
+ var indexedObject = _this__u8e3s4;
8814
+ var inductionVariable = 0;
8815
+ var last = indexedObject.length;
8816
+ while (inductionVariable < last) {
8817
+ var char = indexedObject[inductionVariable];
8818
+ inductionVariable = inductionVariable + 1 | 0;
8819
+ result = result + new Char(char);
8820
+ }
8821
+ return result;
8822
+ }
8798
8823
  function compareTo(_this__u8e3s4, other, ignoreCase) {
8799
8824
  init_properties_string_kt_z8k4s7();
8800
8825
  if (ignoreCase) {
@@ -8861,19 +8886,6 @@ if (typeof Math.imul === 'undefined') {
8861
8886
  return compareTo_0(_this__u8e3s4, other);
8862
8887
  }
8863
8888
  }
8864
- function concatToString(_this__u8e3s4) {
8865
- init_properties_string_kt_z8k4s7();
8866
- var result = '';
8867
- var indexedObject = _this__u8e3s4;
8868
- var inductionVariable = 0;
8869
- var last = indexedObject.length;
8870
- while (inductionVariable < last) {
8871
- var char = indexedObject[inductionVariable];
8872
- inductionVariable = inductionVariable + 1 | 0;
8873
- result = result + new Char(char);
8874
- }
8875
- return result;
8876
- }
8877
8889
  function toCharArray(_this__u8e3s4) {
8878
8890
  init_properties_string_kt_z8k4s7();
8879
8891
  var tmp = 0;
@@ -9180,18 +9192,18 @@ if (typeof Math.imul === 'undefined') {
9180
9192
  Char.prototype.toString = function () {
9181
9193
  return toString_1(this.v8_1);
9182
9194
  };
9183
- function Set() {
9184
- }
9185
9195
  function List() {
9186
9196
  }
9197
+ function Collection() {
9198
+ }
9199
+ function Set() {
9200
+ }
9187
9201
  function Entry() {
9188
9202
  }
9189
9203
  function Map() {
9190
9204
  }
9191
9205
  function MutableEntry() {
9192
9206
  }
9193
- function Collection() {
9194
- }
9195
9207
  function MutableIterable() {
9196
9208
  }
9197
9209
  function Companion_8() {
@@ -9242,48 +9254,14 @@ if (typeof Math.imul === 'undefined') {
9242
9254
  var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : toString_3(tmp0_safe_receiver);
9243
9255
  return tmp + (tmp1_elvis_lhs == null ? 'null' : tmp1_elvis_lhs);
9244
9256
  }
9245
- function BitMask(activeBits) {
9246
- var tmp = this;
9247
- var tmp$ret$2;
9248
- // Inline function 'kotlin.run' call
9249
- // Inline function 'kotlin.contracts.contract' call
9250
- var tmp$ret$1;
9251
- // Inline function 'kotlin.js.BitMask.intArray.<anonymous>' call
9252
- var tmp_0;
9253
- if (activeBits.length === 0) {
9254
- tmp_0 = new Int32Array(0);
9255
- } else {
9256
- var tmp$ret$0;
9257
- // Inline function 'kotlin.js.asDynamic' call
9258
- var tmp0_asDynamic = Math;
9259
- tmp$ret$0 = tmp0_asDynamic;
9260
- var max = tmp$ret$0.max.apply(null, activeBits);
9261
- var intArray = new Int32Array((max >> 5) + 1 | 0);
9262
- var indexedObject = activeBits;
9263
- var inductionVariable = 0;
9264
- var last = indexedObject.length;
9265
- while (inductionVariable < last) {
9266
- var activeBit = indexedObject[inductionVariable];
9267
- inductionVariable = inductionVariable + 1 | 0;
9268
- var numberIndex = activeBit >> 5;
9269
- var positionInNumber = activeBit & 31;
9270
- var numberWithSettledBit = 1 << positionInNumber;
9271
- intArray[numberIndex] = intArray[numberIndex] | numberWithSettledBit;
9272
- }
9273
- tmp_0 = intArray;
9274
- }
9275
- tmp$ret$1 = tmp_0;
9276
- tmp$ret$2 = tmp$ret$1;
9277
- tmp.qg_1 = tmp$ret$2;
9278
- }
9279
- BitMask.prototype.rg = function (possibleActiveBit) {
9257
+ function isBitSet(_this__u8e3s4, possibleActiveBit) {
9280
9258
  var numberIndex = possibleActiveBit >> 5;
9281
- if (numberIndex > this.qg_1.length)
9259
+ if (numberIndex > _this__u8e3s4.length)
9282
9260
  return false;
9283
9261
  var positionInNumber = possibleActiveBit & 31;
9284
9262
  var numberWithSettledBit = 1 << positionInNumber;
9285
- return !((this.qg_1[numberIndex] & numberWithSettledBit) === 0);
9286
- };
9263
+ return !((_this__u8e3s4[numberIndex] & numberWithSettledBit) === 0);
9264
+ }
9287
9265
  function implement(interfaces) {
9288
9266
  var maxSize = 1;
9289
9267
  var masks = [];
@@ -9298,7 +9276,7 @@ if (typeof Math.imul === 'undefined') {
9298
9276
  var imask = tmp1_elvis_lhs == null ? i.$imask$ : tmp1_elvis_lhs;
9299
9277
  if (!(imask == null)) {
9300
9278
  masks.push(imask);
9301
- currentSize = imask.qg_1.length;
9279
+ currentSize = imask.length;
9302
9280
  }
9303
9281
  var iid = i.$metadata$.iid;
9304
9282
  var tmp2_safe_receiver = iid;
@@ -9306,56 +9284,58 @@ if (typeof Math.imul === 'undefined') {
9306
9284
  if (tmp2_safe_receiver == null) {
9307
9285
  tmp = null;
9308
9286
  } else {
9309
- var tmp$ret$4;
9287
+ var tmp$ret$1;
9310
9288
  // Inline function 'kotlin.let' call
9311
9289
  // Inline function 'kotlin.contracts.contract' call
9312
- var tmp$ret$3;
9313
- // Inline function 'kotlin.js.implement.<anonymous>' call
9314
- var tmp$ret$2;
9315
- // Inline function 'kotlin.arrayOf' call
9316
- var tmp$ret$1;
9317
- // Inline function 'kotlin.js.unsafeCast' call
9318
9290
  var tmp$ret$0;
9319
- // Inline function 'kotlin.js.asDynamic' call
9320
- tmp$ret$0 = [tmp2_safe_receiver];
9291
+ // Inline function 'kotlin.js.implement.<anonymous>' call
9292
+ tmp$ret$0 = bitMaskWith(tmp2_safe_receiver);
9321
9293
  tmp$ret$1 = tmp$ret$0;
9322
- tmp$ret$2 = tmp$ret$1;
9323
- tmp$ret$3 = new BitMask(tmp$ret$2);
9324
- tmp$ret$4 = tmp$ret$3;
9325
- tmp = tmp$ret$4;
9294
+ tmp = tmp$ret$1;
9326
9295
  }
9327
9296
  var iidImask = tmp;
9328
9297
  if (!(iidImask == null)) {
9329
9298
  masks.push(iidImask);
9330
- currentSize = Math.max(currentSize, iidImask.qg_1.length);
9299
+ currentSize = Math.max(currentSize, iidImask.length);
9331
9300
  }
9332
9301
  if (currentSize > maxSize) {
9333
9302
  maxSize = currentSize;
9334
9303
  }
9335
9304
  }
9336
- var tmp_0 = 0;
9337
- var tmp_1 = maxSize;
9338
- var tmp_2 = new Int32Array(tmp_1);
9339
- while (tmp_0 < tmp_1) {
9340
- var tmp_3 = tmp_0;
9341
- var tmp$ret$5;
9342
- // Inline function 'kotlin.js.implement.<anonymous>' call
9343
- tmp$ret$5 = masks.reduce(implement$lambda(tmp_3), 0);
9344
- tmp_2[tmp_3] = tmp$ret$5;
9345
- tmp_0 = tmp_0 + 1 | 0;
9346
- }
9347
- var resultIntArray = tmp_2;
9348
- var tmp$ret$6;
9349
- // Inline function 'kotlin.emptyArray' call
9350
- tmp$ret$6 = [];
9351
- var result = new BitMask(tmp$ret$6);
9352
- result.qg_1 = resultIntArray;
9353
- return result;
9305
+ return compositeBitMask(maxSize, masks);
9354
9306
  }
9355
- function implement$lambda($tmp) {
9356
- return function (acc, it) {
9357
- return $tmp >= it.qg_1.length ? acc : acc | it.qg_1[$tmp];
9358
- };
9307
+ function bitMaskWith(activeBit) {
9308
+ var intArray = new Int32Array((activeBit >> 5) + 1 | 0);
9309
+ var numberIndex = activeBit >> 5;
9310
+ var positionInNumber = activeBit & 31;
9311
+ var numberWithSettledBit = 1 << positionInNumber;
9312
+ intArray[numberIndex] = intArray[numberIndex] | numberWithSettledBit;
9313
+ return intArray;
9314
+ }
9315
+ function compositeBitMask(capacity, masks) {
9316
+ var tmp = 0;
9317
+ var tmp_0 = capacity;
9318
+ var tmp_1 = new Int32Array(tmp_0);
9319
+ while (tmp < tmp_0) {
9320
+ var tmp_2 = tmp;
9321
+ var tmp$ret$0;
9322
+ // Inline function 'kotlin.js.compositeBitMask.<anonymous>' call
9323
+ var result = 0;
9324
+ var indexedObject = masks;
9325
+ var inductionVariable = 0;
9326
+ var last = indexedObject.length;
9327
+ while (inductionVariable < last) {
9328
+ var mask = indexedObject[inductionVariable];
9329
+ inductionVariable = inductionVariable + 1 | 0;
9330
+ if (tmp_2 < mask.length) {
9331
+ result = result | mask[tmp_2];
9332
+ }
9333
+ }
9334
+ tmp$ret$0 = result;
9335
+ tmp_1[tmp_2] = tmp$ret$0;
9336
+ tmp = tmp + 1 | 0;
9337
+ }
9338
+ return tmp_1;
9359
9339
  }
9360
9340
  function fillArrayVal(array, initValue) {
9361
9341
  var inductionVariable = 0;
@@ -9439,41 +9419,41 @@ if (typeof Math.imul === 'undefined') {
9439
9419
  return tmp$ret$2;
9440
9420
  }
9441
9421
  function arrayIterator$1($array) {
9442
- this.tg_1 = $array;
9443
- this.sg_1 = 0;
9422
+ this.rg_1 = $array;
9423
+ this.qg_1 = 0;
9444
9424
  }
9445
9425
  arrayIterator$1.prototype.m = function () {
9446
- return !(this.sg_1 === this.tg_1.length);
9426
+ return !(this.qg_1 === this.rg_1.length);
9447
9427
  };
9448
- arrayIterator$1.prototype.p = function () {
9428
+ arrayIterator$1.prototype.n = function () {
9449
9429
  var tmp;
9450
- if (!(this.sg_1 === this.tg_1.length)) {
9430
+ if (!(this.qg_1 === this.rg_1.length)) {
9451
9431
  var tmp0_this = this;
9452
- var tmp1 = tmp0_this.sg_1;
9453
- tmp0_this.sg_1 = tmp1 + 1 | 0;
9454
- tmp = this.tg_1[tmp1];
9432
+ var tmp1 = tmp0_this.qg_1;
9433
+ tmp0_this.qg_1 = tmp1 + 1 | 0;
9434
+ tmp = this.rg_1[tmp1];
9455
9435
  } else {
9456
- throw NoSuchElementException_init_$Create$_0('' + this.sg_1);
9436
+ throw NoSuchElementException_init_$Create$_0('' + this.qg_1);
9457
9437
  }
9458
9438
  return tmp;
9459
9439
  };
9460
9440
  function charArrayIterator$1($array) {
9461
- this.vg_1 = $array;
9441
+ this.tg_1 = $array;
9462
9442
  CharIterator.call(this);
9463
- this.ug_1 = 0;
9443
+ this.sg_1 = 0;
9464
9444
  }
9465
9445
  charArrayIterator$1.prototype.m = function () {
9466
- return !(this.ug_1 === this.vg_1.length);
9446
+ return !(this.sg_1 === this.tg_1.length);
9467
9447
  };
9468
9448
  charArrayIterator$1.prototype.x4 = function () {
9469
9449
  var tmp;
9470
- if (!(this.ug_1 === this.vg_1.length)) {
9450
+ if (!(this.sg_1 === this.tg_1.length)) {
9471
9451
  var tmp0_this = this;
9472
- var tmp1 = tmp0_this.ug_1;
9473
- tmp0_this.ug_1 = tmp1 + 1 | 0;
9474
- tmp = this.vg_1[tmp1];
9452
+ var tmp1 = tmp0_this.sg_1;
9453
+ tmp0_this.sg_1 = tmp1 + 1 | 0;
9454
+ tmp = this.tg_1[tmp1];
9475
9455
  } else {
9476
- throw NoSuchElementException_init_$Create$_0('' + this.ug_1);
9456
+ throw NoSuchElementException_init_$Create$_0('' + this.sg_1);
9477
9457
  }
9478
9458
  return tmp;
9479
9459
  };
@@ -9510,14 +9490,17 @@ if (typeof Math.imul === 'undefined') {
9510
9490
  }
9511
9491
  function getNumberHashCode(obj) {
9512
9492
  init_properties_bitUtils_kt_cxtw9i();
9513
- var tmp$ret$1;
9493
+ var tmp$ret$2;
9514
9494
  // Inline function 'kotlin.js.unsafeCast' call
9515
- var tmp0_unsafeCast = jsBitwiseOr(obj, 0);
9516
9495
  var tmp$ret$0;
9496
+ // Inline function 'kotlin.js.jsBitwiseOr' call
9497
+ tmp$ret$0 = obj | 0;
9498
+ var tmp0_unsafeCast = tmp$ret$0;
9499
+ var tmp$ret$1;
9517
9500
  // Inline function 'kotlin.js.asDynamic' call
9518
- tmp$ret$0 = tmp0_unsafeCast;
9519
- tmp$ret$1 = tmp$ret$0;
9520
- if (tmp$ret$1 === obj) {
9501
+ tmp$ret$1 = tmp0_unsafeCast;
9502
+ tmp$ret$2 = tmp$ret$1;
9503
+ if (tmp$ret$2 === obj) {
9521
9504
  return numberToInt(obj);
9522
9505
  }
9523
9506
  get_bufFloat64()[0] = obj;
@@ -9655,7 +9638,7 @@ if (typeof Math.imul === 'undefined') {
9655
9638
  tmp_0 = doubleCompareTo(a, b);
9656
9639
  } else {
9657
9640
  if (b instanceof Long) {
9658
- tmp_0 = doubleCompareTo(a, b.wg());
9641
+ tmp_0 = doubleCompareTo(a, b.ug());
9659
9642
  } else {
9660
9643
  tmp_0 = primitiveCompareTo(a, b);
9661
9644
  }
@@ -9721,18 +9704,27 @@ if (typeof Math.imul === 'undefined') {
9721
9704
  return getObjectHashCode(obj);
9722
9705
  }
9723
9706
  function getObjectHashCode(obj) {
9724
- if (!jsIn('kotlinHashCodeValue$', obj)) {
9725
- var hash = jsBitwiseOr(Math.random() * 4.294967296E9, 0);
9707
+ var tmp$ret$0;
9708
+ // Inline function 'kotlin.js.jsIn' call
9709
+ var tmp0_jsIn = 'kotlinHashCodeValue$';
9710
+ var tmp1_jsIn = obj;
9711
+ tmp$ret$0 = tmp0_jsIn in tmp1_jsIn;
9712
+ if (!tmp$ret$0) {
9713
+ var tmp$ret$1;
9714
+ // Inline function 'kotlin.js.jsBitwiseOr' call
9715
+ var tmp2_jsBitwiseOr = Math.random() * 4.294967296E9;
9716
+ tmp$ret$1 = tmp2_jsBitwiseOr | 0;
9717
+ var hash = tmp$ret$1;
9726
9718
  var descriptor = new Object();
9727
9719
  descriptor.value = hash;
9728
9720
  descriptor.enumerable = false;
9729
9721
  Object.defineProperty(obj, 'kotlinHashCodeValue$', descriptor);
9730
9722
  }
9731
- var tmp$ret$0;
9723
+ var tmp$ret$2;
9732
9724
  // Inline function 'kotlin.js.unsafeCast' call
9733
- var tmp0_unsafeCast = obj['kotlinHashCodeValue$'];
9734
- tmp$ret$0 = tmp0_unsafeCast;
9735
- return tmp$ret$0;
9725
+ var tmp3_unsafeCast = obj['kotlinHashCodeValue$'];
9726
+ tmp$ret$2 = tmp3_unsafeCast;
9727
+ return tmp$ret$2;
9736
9728
  }
9737
9729
  function toString_3(o) {
9738
9730
  var tmp;
@@ -9839,6 +9831,9 @@ if (typeof Math.imul === 'undefined') {
9839
9831
  while (!(i === last));
9840
9832
  return hash;
9841
9833
  }
9834
+ function objectCreate(proto) {
9835
+ return Object.create(proto);
9836
+ }
9842
9837
  function boxIntrinsic(x) {
9843
9838
  throw IllegalStateException_init_$Create$_0('Should be lowered');
9844
9839
  }
@@ -9867,9 +9862,9 @@ if (typeof Math.imul === 'undefined') {
9867
9862
  if (!(message === null)) {
9868
9863
  var tmp0_safe_receiver = cause;
9869
9864
  var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.toString();
9870
- tmp_0 = tmp1_elvis_lhs == null ? undefined : tmp1_elvis_lhs;
9865
+ tmp_0 = tmp1_elvis_lhs == null ? get_VOID() : tmp1_elvis_lhs;
9871
9866
  } else {
9872
- tmp_0 = undefined;
9867
+ tmp_0 = get_VOID();
9873
9868
  }
9874
9869
  tmp = tmp_0;
9875
9870
  } else {
@@ -9961,10 +9956,10 @@ if (typeof Math.imul === 'undefined') {
9961
9956
  }
9962
9957
  function Companion_9() {
9963
9958
  Companion_instance_9 = this;
9964
- this.xg_1 = new Long(0, -2147483648);
9965
- this.yg_1 = new Long(-1, 2147483647);
9966
- this.zg_1 = 8;
9967
- this.ah_1 = 64;
9959
+ this.vg_1 = new Long(0, -2147483648);
9960
+ this.wg_1 = new Long(-1, 2147483647);
9961
+ this.xg_1 = 8;
9962
+ this.yg_1 = 64;
9968
9963
  }
9969
9964
  var Companion_instance_9;
9970
9965
  function Companion_getInstance_9() {
@@ -9984,71 +9979,71 @@ if (typeof Math.imul === 'undefined') {
9984
9979
  Long.prototype.aa = function (other) {
9985
9980
  return this.jd(other instanceof Long ? other : THROW_CCE());
9986
9981
  };
9987
- Long.prototype.bh = function (other) {
9982
+ Long.prototype.zg = function (other) {
9988
9983
  return add(this, other);
9989
9984
  };
9990
- Long.prototype.ch = function (other) {
9985
+ Long.prototype.ah = function (other) {
9991
9986
  return subtract_0(this, other);
9992
9987
  };
9993
- Long.prototype.dh = function (other) {
9988
+ Long.prototype.bh = function (other) {
9994
9989
  return multiply(this, other);
9995
9990
  };
9996
- Long.prototype.eh = function (other) {
9991
+ Long.prototype.ch = function (other) {
9997
9992
  return divide(this, other);
9998
9993
  };
9999
- Long.prototype.fh = function (other) {
9994
+ Long.prototype.dh = function (other) {
10000
9995
  return modulo(this, other);
10001
9996
  };
10002
- Long.prototype.gh = function () {
10003
- return this.bh(new Long(1, 0));
9997
+ Long.prototype.eh = function () {
9998
+ return this.zg(new Long(1, 0));
10004
9999
  };
10005
- Long.prototype.hh = function () {
10006
- return this.ch(new Long(1, 0));
10000
+ Long.prototype.fh = function () {
10001
+ return this.ah(new Long(1, 0));
10007
10002
  };
10008
10003
  Long.prototype.id = function () {
10009
- return this.ih().bh(new Long(1, 0));
10004
+ return this.gh().zg(new Long(1, 0));
10010
10005
  };
10011
- Long.prototype.jh = function (bitCount) {
10006
+ Long.prototype.hh = function (bitCount) {
10012
10007
  return shiftLeft(this, bitCount);
10013
10008
  };
10014
- Long.prototype.kh = function (bitCount) {
10009
+ Long.prototype.ih = function (bitCount) {
10015
10010
  return shiftRight(this, bitCount);
10016
10011
  };
10017
- Long.prototype.lh = function (bitCount) {
10012
+ Long.prototype.jh = function (bitCount) {
10018
10013
  return shiftRightUnsigned(this, bitCount);
10019
10014
  };
10020
- Long.prototype.mh = function (other) {
10015
+ Long.prototype.kh = function (other) {
10021
10016
  return new Long(this.gd_1 & other.gd_1, this.hd_1 & other.hd_1);
10022
10017
  };
10023
- Long.prototype.nh = function (other) {
10018
+ Long.prototype.lh = function (other) {
10024
10019
  return new Long(this.gd_1 | other.gd_1, this.hd_1 | other.hd_1);
10025
10020
  };
10026
- Long.prototype.oh = function (other) {
10021
+ Long.prototype.mh = function (other) {
10027
10022
  return new Long(this.gd_1 ^ other.gd_1, this.hd_1 ^ other.hd_1);
10028
10023
  };
10029
- Long.prototype.ih = function () {
10024
+ Long.prototype.gh = function () {
10030
10025
  return new Long(~this.gd_1, ~this.hd_1);
10031
10026
  };
10032
- Long.prototype.ph = function () {
10027
+ Long.prototype.nh = function () {
10033
10028
  return toByte(this.gd_1);
10034
10029
  };
10035
- Long.prototype.qh = function () {
10030
+ Long.prototype.oh = function () {
10036
10031
  return toShort(this.gd_1);
10037
10032
  };
10038
- Long.prototype.rh = function () {
10033
+ Long.prototype.ph = function () {
10039
10034
  return this.gd_1;
10040
10035
  };
10041
- Long.prototype.sh = function () {
10036
+ Long.prototype.qh = function () {
10042
10037
  return this;
10043
10038
  };
10044
- Long.prototype.th = function () {
10045
- return this.wg();
10039
+ Long.prototype.rh = function () {
10040
+ return this.ug();
10046
10041
  };
10047
- Long.prototype.wg = function () {
10042
+ Long.prototype.ug = function () {
10048
10043
  return toNumber(this);
10049
10044
  };
10050
10045
  Long.prototype.valueOf = function () {
10051
- return this.wg();
10046
+ return this.ug();
10052
10047
  };
10053
10048
  Long.prototype.equals = function (other) {
10054
10049
  var tmp;
@@ -10209,12 +10204,12 @@ if (typeof Math.imul === 'undefined') {
10209
10204
  return get_ONE();
10210
10205
  } else {
10211
10206
  var halfThis = shiftRight(_this__u8e3s4, 1);
10212
- var approx = shiftLeft(halfThis.eh(other), 1);
10207
+ var approx = shiftLeft(halfThis.ch(other), 1);
10213
10208
  if (equalsLong(approx, get_ZERO())) {
10214
10209
  return isNegative(other) ? get_ONE() : get_NEG_ONE();
10215
10210
  } else {
10216
10211
  var rem = subtract_0(_this__u8e3s4, multiply(other, approx));
10217
- return add(approx, rem.eh(other));
10212
+ return add(approx, rem.ch(other));
10218
10213
  }
10219
10214
  }
10220
10215
  } else if (equalsLong(other, get_MIN_VALUE())) {
@@ -10223,13 +10218,13 @@ if (typeof Math.imul === 'undefined') {
10223
10218
  if (isNegative(_this__u8e3s4)) {
10224
10219
  var tmp;
10225
10220
  if (isNegative(other)) {
10226
- tmp = negate(_this__u8e3s4).eh(negate(other));
10221
+ tmp = negate(_this__u8e3s4).ch(negate(other));
10227
10222
  } else {
10228
- tmp = negate(negate(_this__u8e3s4).eh(other));
10223
+ tmp = negate(negate(_this__u8e3s4).ch(other));
10229
10224
  }
10230
10225
  return tmp;
10231
10226
  } else if (isNegative(other)) {
10232
- return negate(_this__u8e3s4.eh(negate(other)));
10227
+ return negate(_this__u8e3s4.ch(negate(other)));
10233
10228
  }
10234
10229
  var res = get_ZERO();
10235
10230
  var rem_0 = _this__u8e3s4;
@@ -10255,7 +10250,7 @@ if (typeof Math.imul === 'undefined') {
10255
10250
  }
10256
10251
  function modulo(_this__u8e3s4, other) {
10257
10252
  init_properties_longjs_kt_ttk8rv();
10258
- return subtract_0(_this__u8e3s4, multiply(_this__u8e3s4.eh(other), other));
10253
+ return subtract_0(_this__u8e3s4, multiply(_this__u8e3s4.ch(other), other));
10259
10254
  }
10260
10255
  function shiftLeft(_this__u8e3s4, numBits) {
10261
10256
  init_properties_longjs_kt_ttk8rv();
@@ -10325,8 +10320,8 @@ if (typeof Math.imul === 'undefined') {
10325
10320
  if (isNegative(_this__u8e3s4)) {
10326
10321
  if (equalsLong(_this__u8e3s4, get_MIN_VALUE())) {
10327
10322
  var radixLong = fromInt(radix);
10328
- var div = _this__u8e3s4.eh(radixLong);
10329
- var rem = subtract_0(multiply(div, radixLong), _this__u8e3s4).rh();
10323
+ var div = _this__u8e3s4.ch(radixLong);
10324
+ var rem = subtract_0(multiply(div, radixLong), _this__u8e3s4).ph();
10330
10325
  var tmp = toStringImpl(div, radix);
10331
10326
  var tmp$ret$1;
10332
10327
  // Inline function 'kotlin.js.unsafeCast' call
@@ -10345,8 +10340,8 @@ if (typeof Math.imul === 'undefined') {
10345
10340
  var rem_0 = _this__u8e3s4;
10346
10341
  var result = '';
10347
10342
  while (true) {
10348
- var remDiv = rem_0.eh(radixToPower);
10349
- var intval = subtract_0(rem_0, multiply(remDiv, radixToPower)).rh();
10343
+ var remDiv = rem_0.ch(radixToPower);
10344
+ var intval = subtract_0(rem_0, multiply(remDiv, radixToPower)).ph();
10350
10345
  var tmp$ret$3;
10351
10346
  // Inline function 'kotlin.js.unsafeCast' call
10352
10347
  var tmp$ret$2;
@@ -10402,7 +10397,16 @@ if (typeof Math.imul === 'undefined') {
10402
10397
  return negate(fromNumber(-value));
10403
10398
  } else {
10404
10399
  var twoPwr32 = 4.294967296E9;
10405
- return new Long(jsBitwiseOr(value % twoPwr32, 0), jsBitwiseOr(value / twoPwr32, 0));
10400
+ var tmp$ret$0;
10401
+ // Inline function 'kotlin.js.jsBitwiseOr' call
10402
+ var tmp0_jsBitwiseOr = value % twoPwr32;
10403
+ tmp$ret$0 = tmp0_jsBitwiseOr | 0;
10404
+ var tmp = tmp$ret$0;
10405
+ var tmp$ret$1;
10406
+ // Inline function 'kotlin.js.jsBitwiseOr' call
10407
+ var tmp1_jsBitwiseOr = value / twoPwr32;
10408
+ tmp$ret$1 = tmp1_jsBitwiseOr | 0;
10409
+ return new Long(tmp, tmp$ret$1);
10406
10410
  }
10407
10411
  }
10408
10412
  function greaterThan(_this__u8e3s4, other) {
@@ -10463,14 +10467,25 @@ if (typeof Math.imul === 'undefined') {
10463
10467
  function numberToInt(a) {
10464
10468
  var tmp;
10465
10469
  if (a instanceof Long) {
10466
- tmp = a.rh();
10470
+ tmp = a.ph();
10467
10471
  } else {
10468
10472
  tmp = doubleToInt(a);
10469
10473
  }
10470
10474
  return tmp;
10471
10475
  }
10472
10476
  function doubleToInt(a) {
10473
- return a > 2.147483647E9 ? 2147483647 : a < -2.147483648E9 ? -2147483648 : jsBitwiseOr(a, 0);
10477
+ var tmp;
10478
+ if (a > 2.147483647E9) {
10479
+ tmp = 2147483647;
10480
+ } else if (a < -2.147483648E9) {
10481
+ tmp = -2147483648;
10482
+ } else {
10483
+ var tmp$ret$0;
10484
+ // Inline function 'kotlin.js.jsBitwiseOr' call
10485
+ tmp$ret$0 = a | 0;
10486
+ tmp = tmp$ret$0;
10487
+ }
10488
+ return tmp;
10474
10489
  }
10475
10490
  function toShort(a) {
10476
10491
  var tmp$ret$0;
@@ -10508,8 +10523,7 @@ if (typeof Math.imul === 'undefined') {
10508
10523
  var propertyRefClassMetadataCache;
10509
10524
  function metadataObject() {
10510
10525
  init_properties_reflectRuntime_kt_yf9l8h();
10511
- var undef = undefined;
10512
- return classMeta(undef, undef, undef, undef);
10526
+ return classMeta(get_VOID(), get_VOID(), get_VOID(), get_VOID());
10513
10527
  }
10514
10528
  function getPropertyCallableRef(name, paramCount, superType, getter, setter) {
10515
10529
  init_properties_reflectRuntime_kt_yf9l8h();
@@ -10536,7 +10550,22 @@ if (typeof Math.imul === 'undefined') {
10536
10550
  function getInterfaceMaskFor(obj, superType) {
10537
10551
  init_properties_reflectRuntime_kt_yf9l8h();
10538
10552
  var tmp0_elvis_lhs = obj.$imask$;
10539
- return tmp0_elvis_lhs == null ? implement([superType]) : tmp0_elvis_lhs;
10553
+ var tmp;
10554
+ if (tmp0_elvis_lhs == null) {
10555
+ var tmp$ret$2;
10556
+ // Inline function 'kotlin.arrayOf' call
10557
+ var tmp$ret$1;
10558
+ // Inline function 'kotlin.js.unsafeCast' call
10559
+ var tmp$ret$0;
10560
+ // Inline function 'kotlin.js.asDynamic' call
10561
+ tmp$ret$0 = [superType];
10562
+ tmp$ret$1 = tmp$ret$0;
10563
+ tmp$ret$2 = tmp$ret$1;
10564
+ tmp = implement(tmp$ret$2);
10565
+ } else {
10566
+ tmp = tmp0_elvis_lhs;
10567
+ }
10568
+ return tmp;
10540
10569
  }
10541
10570
  var properties_initialized_reflectRuntime_kt_inkhwd;
10542
10571
  function init_properties_reflectRuntime_kt_yf9l8h() {
@@ -10592,7 +10621,8 @@ if (typeof Math.imul === 'undefined') {
10592
10621
  return createMetadata('class', name, associatedObjectKey, associatedObjects, suspendArity, null);
10593
10622
  }
10594
10623
  function createMetadata(kind, name, associatedObjectKey, associatedObjects, suspendArity, iid) {
10595
- return {kind: kind, simpleName: name, associatedObjectKey: associatedObjectKey, associatedObjects: associatedObjects, suspendArity: suspendArity, $kClass$: undefined, iid: iid};
10624
+ var undef = get_VOID();
10625
+ return {kind: kind, simpleName: name, associatedObjectKey: associatedObjectKey, associatedObjects: associatedObjects, suspendArity: suspendArity, $kClass$: undef, iid: iid};
10596
10626
  }
10597
10627
  function isArrayish(o) {
10598
10628
  return isJsArray(o) ? true : isView(o);
@@ -10607,18 +10637,30 @@ if (typeof Math.imul === 'undefined') {
10607
10637
  function isObject(obj) {
10608
10638
  var objTypeOf = typeof obj;
10609
10639
  var tmp0_subject = objTypeOf;
10640
+ var tmp;
10610
10641
  switch (tmp0_subject) {
10611
10642
  case 'string':
10612
- return true;
10643
+ tmp = true;
10644
+ break;
10613
10645
  case 'number':
10614
- return true;
10646
+ tmp = true;
10647
+ break;
10615
10648
  case 'boolean':
10616
- return true;
10649
+ tmp = true;
10650
+ break;
10617
10651
  case 'function':
10618
- return true;
10652
+ tmp = true;
10653
+ break;
10619
10654
  default:
10620
- return jsInstanceOf(obj, Object);
10655
+ var tmp$ret$0;
10656
+ // Inline function 'kotlin.js.jsInstanceOf' call
10657
+ var tmp0_jsInstanceOf = Object;
10658
+ tmp$ret$0 = obj instanceof tmp0_jsInstanceOf;
10659
+
10660
+ tmp = tmp$ret$0;
10661
+ break;
10621
10662
  }
10663
+ return tmp;
10622
10664
  }
10623
10665
  function isInterfaceImpl(obj, iface) {
10624
10666
  var tmp$ret$0;
@@ -10633,74 +10675,23 @@ if (typeof Math.imul === 'undefined') {
10633
10675
  tmp = tmp0_elvis_lhs;
10634
10676
  }
10635
10677
  var mask = tmp;
10636
- return mask.rg(iface);
10637
- }
10638
- function verySlowIsInterfaceImpl(obj, iface) {
10639
- var tmp0_elvis_lhs = searchForMetadata(obj);
10640
- var tmp;
10641
- if (tmp0_elvis_lhs == null) {
10642
- return false;
10643
- } else {
10644
- tmp = tmp0_elvis_lhs;
10645
- }
10646
- var metadata = tmp;
10647
- var tmp$ret$0;
10648
- // Inline function 'kotlin.js.asDynamic' call
10649
- tmp$ret$0 = metadata;
10650
- var interfaces = tmp$ret$0.associatedObjectKey;
10651
- var tmp_0;
10652
- if (interfaces != null) {
10653
- var tmp_1;
10654
- if (interfaces.indexOf(iface) != -1) {
10655
- tmp_1 = true;
10656
- } else {
10657
- tmp_1 = interfaces.some(verySlowIsInterfaceImpl$lambda(iface));
10658
- }
10659
- tmp_0 = tmp_1;
10660
- } else {
10661
- tmp_0 = false;
10662
- }
10663
- if (tmp_0) {
10664
- return true;
10665
- }
10666
- return verySlowIsInterfaceImpl(getPrototypeOf(obj), iface);
10667
- }
10668
- function searchForMetadata(obj) {
10669
- if (obj == null) {
10670
- return null;
10671
- }
10672
- var metadata = obj.$metadata$;
10673
- var currentObject = getPrototypeOf(obj);
10674
- while (metadata == null ? currentObject != null : false) {
10675
- var currentConstructor = currentObject.constructor;
10676
- metadata = currentConstructor.$metadata$;
10677
- currentObject = getPrototypeOf(currentObject);
10678
- }
10679
- return metadata;
10680
- }
10681
- function getPrototypeOf(obj) {
10682
- return Object.getPrototypeOf(obj);
10678
+ return isBitSet(mask, iface);
10683
10679
  }
10684
10680
  function setMetadataFor(ctor, name, metadataConstructor, parent, interfaces, associatedObjectKey, associatedObjects, suspendArity) {
10685
10681
  if (!(parent == null)) {
10686
10682
  ctor.prototype = Object.create(parent.prototype);
10687
10683
  ctor.prototype.constructor = ctor;
10688
10684
  }
10689
- var metadata = metadataConstructor(name, associatedObjectKey, associatedObjects, suspendArity);
10685
+ var tmp0_elvis_lhs = suspendArity;
10686
+ var metadata = metadataConstructor(name, associatedObjectKey, associatedObjects, tmp0_elvis_lhs == null ? [] : tmp0_elvis_lhs);
10690
10687
  ctor.$metadata$ = metadata;
10691
10688
  if (!(interfaces == null)) {
10692
10689
  var receiver = !(metadata.iid == null) ? ctor : ctor.prototype;
10693
- receiver.$imask$ = implement(interfaces.slice());
10690
+ receiver.$imask$ = implement(interfaces);
10694
10691
  }
10695
10692
  }
10696
10693
  function isInterface(obj, iface) {
10697
- var tmp;
10698
- if (obj.$imask$ != null) {
10699
- tmp = isInterfaceImpl(obj, iface.$metadata$.iid);
10700
- } else {
10701
- tmp = verySlowIsInterfaceImpl(obj, iface);
10702
- }
10703
- return tmp;
10694
+ return isInterfaceImpl(obj, iface.$metadata$.iid);
10704
10695
  }
10705
10696
  function isArray(obj) {
10706
10697
  var tmp;
@@ -10734,51 +10725,104 @@ if (typeof Math.imul === 'undefined') {
10734
10725
  return isJsArray(a) ? a.$type$ === 'BooleanArray' : false;
10735
10726
  }
10736
10727
  function isByteArray(a) {
10737
- return jsInstanceOf(a, Int8Array);
10728
+ var tmp$ret$0;
10729
+ // Inline function 'kotlin.js.jsInstanceOf' call
10730
+ var tmp0_jsInstanceOf = Int8Array;
10731
+ tmp$ret$0 = a instanceof tmp0_jsInstanceOf;
10732
+ return tmp$ret$0;
10738
10733
  }
10739
10734
  function isShortArray(a) {
10740
- return jsInstanceOf(a, Int16Array);
10735
+ var tmp$ret$0;
10736
+ // Inline function 'kotlin.js.jsInstanceOf' call
10737
+ var tmp0_jsInstanceOf = Int16Array;
10738
+ tmp$ret$0 = a instanceof tmp0_jsInstanceOf;
10739
+ return tmp$ret$0;
10741
10740
  }
10742
10741
  function isCharArray(a) {
10743
- return jsInstanceOf(a, Uint16Array) ? a.$type$ === 'CharArray' : false;
10742
+ var tmp;
10743
+ var tmp$ret$0;
10744
+ // Inline function 'kotlin.js.jsInstanceOf' call
10745
+ var tmp0_jsInstanceOf = Uint16Array;
10746
+ tmp$ret$0 = a instanceof tmp0_jsInstanceOf;
10747
+ if (tmp$ret$0) {
10748
+ tmp = a.$type$ === 'CharArray';
10749
+ } else {
10750
+ tmp = false;
10751
+ }
10752
+ return tmp;
10744
10753
  }
10745
10754
  function isIntArray(a) {
10746
- return jsInstanceOf(a, Int32Array);
10755
+ var tmp$ret$0;
10756
+ // Inline function 'kotlin.js.jsInstanceOf' call
10757
+ var tmp0_jsInstanceOf = Int32Array;
10758
+ tmp$ret$0 = a instanceof tmp0_jsInstanceOf;
10759
+ return tmp$ret$0;
10747
10760
  }
10748
10761
  function isFloatArray(a) {
10749
- return jsInstanceOf(a, Float32Array);
10762
+ var tmp$ret$0;
10763
+ // Inline function 'kotlin.js.jsInstanceOf' call
10764
+ var tmp0_jsInstanceOf = Float32Array;
10765
+ tmp$ret$0 = a instanceof tmp0_jsInstanceOf;
10766
+ return tmp$ret$0;
10750
10767
  }
10751
10768
  function isLongArray(a) {
10752
10769
  return isJsArray(a) ? a.$type$ === 'LongArray' : false;
10753
10770
  }
10754
10771
  function isDoubleArray(a) {
10755
- return jsInstanceOf(a, Float64Array);
10772
+ var tmp$ret$0;
10773
+ // Inline function 'kotlin.js.jsInstanceOf' call
10774
+ var tmp0_jsInstanceOf = Float64Array;
10775
+ tmp$ret$0 = a instanceof tmp0_jsInstanceOf;
10776
+ return tmp$ret$0;
10756
10777
  }
10757
10778
  function interfaceMeta(name, associatedObjectKey, associatedObjects, suspendArity) {
10758
- return createMetadata('interface', name, associatedObjectKey, associatedObjects, suspendArity, generateInterfaceId(InterfaceIdService_getInstance()));
10759
- }
10760
- function generateInterfaceId(_this__u8e3s4) {
10761
- var tmp0_this = _this__u8e3s4;
10762
- tmp0_this.uh_1 = tmp0_this.uh_1 + 1 | 0;
10763
- return _this__u8e3s4.uh_1;
10779
+ return createMetadata('interface', name, associatedObjectKey, associatedObjects, suspendArity, generateInterfaceId());
10764
10780
  }
10765
- function InterfaceIdService() {
10766
- InterfaceIdService_instance = this;
10767
- this.uh_1 = 0;
10781
+ function generateInterfaceId() {
10782
+ if (!!(iid == null)) {
10783
+ iid = 0;
10784
+ }
10785
+ var tmp$ret$1;
10786
+ // Inline function 'kotlin.js.unsafeCast' call
10787
+ var tmp0_unsafeCast = get_iid();
10788
+ var tmp$ret$0;
10789
+ // Inline function 'kotlin.js.asDynamic' call
10790
+ tmp$ret$0 = tmp0_unsafeCast;
10791
+ tmp$ret$1 = tmp$ret$0;
10792
+ iid = tmp$ret$1 + 1 | 0;
10793
+ var tmp$ret$3;
10794
+ // Inline function 'kotlin.js.unsafeCast' call
10795
+ var tmp1_unsafeCast = get_iid();
10796
+ var tmp$ret$2;
10797
+ // Inline function 'kotlin.js.asDynamic' call
10798
+ tmp$ret$2 = tmp1_unsafeCast;
10799
+ tmp$ret$3 = tmp$ret$2;
10800
+ return tmp$ret$3;
10768
10801
  }
10769
- var InterfaceIdService_instance;
10770
- function InterfaceIdService_getInstance() {
10771
- if (InterfaceIdService_instance == null)
10772
- new InterfaceIdService();
10773
- return InterfaceIdService_instance;
10802
+ function get_iid() {
10803
+ var tmp = iid;
10804
+ if (!(tmp == null))
10805
+ return tmp;
10806
+ else {
10807
+ throwUninitializedPropertyAccessException('iid');
10808
+ }
10774
10809
  }
10810
+ var iid;
10775
10811
  function objectMeta(name, associatedObjectKey, associatedObjects, suspendArity) {
10776
10812
  return createMetadata('object', name, associatedObjectKey, associatedObjects, suspendArity, null);
10777
10813
  }
10778
- function verySlowIsInterfaceImpl$lambda($iface) {
10779
- return function (x) {
10780
- return verySlowIsInterfaceImpl(x, $iface);
10781
- };
10814
+ function get_VOID() {
10815
+ init_properties_void_kt_71liqu();
10816
+ return VOID;
10817
+ }
10818
+ var VOID;
10819
+ var properties_initialized_void_kt_e4ret2;
10820
+ function init_properties_void_kt_71liqu() {
10821
+ if (properties_initialized_void_kt_e4ret2) {
10822
+ } else {
10823
+ properties_initialized_void_kt_e4ret2 = true;
10824
+ VOID = void 0;
10825
+ }
10782
10826
  }
10783
10827
  function copyOf(_this__u8e3s4, newSize) {
10784
10828
  // Inline function 'kotlin.require' call
@@ -10867,8 +10911,8 @@ if (typeof Math.imul === 'undefined') {
10867
10911
  // Inline function 'kotlin.code' call
10868
10912
  tmp$ret$0 = Char__toInt_impl_vasixd(_this__u8e3s4);
10869
10913
  var ch = tmp$ret$0;
10870
- var index = binarySearchRange(Digit_getInstance().vh_1, ch);
10871
- var diff = ch - Digit_getInstance().vh_1[index] | 0;
10914
+ var index = binarySearchRange(Digit_getInstance().sh_1, ch);
10915
+ var diff = ch - Digit_getInstance().sh_1[index] | 0;
10872
10916
  return diff < 10 ? diff : -1;
10873
10917
  }
10874
10918
  function binarySearchRange(array, needle) {
@@ -10894,7 +10938,7 @@ if (typeof Math.imul === 'undefined') {
10894
10938
  var tmp$ret$0;
10895
10939
  // Inline function 'kotlin.intArrayOf' call
10896
10940
  tmp$ret$0 = new Int32Array([48, 1632, 1776, 1984, 2406, 2534, 2662, 2790, 2918, 3046, 3174, 3302, 3430, 3558, 3664, 3792, 3872, 4160, 4240, 6112, 6160, 6470, 6608, 6784, 6800, 6992, 7088, 7232, 7248, 42528, 43216, 43264, 43472, 43504, 43600, 44016, 65296]);
10897
- tmp.vh_1 = tmp$ret$0;
10941
+ tmp.sh_1 = tmp$ret$0;
10898
10942
  }
10899
10943
  var Digit_instance;
10900
10944
  function Digit_getInstance() {
@@ -10919,10 +10963,10 @@ if (typeof Math.imul === 'undefined') {
10919
10963
  // Inline function 'kotlin.code' call
10920
10964
  tmp$ret$0 = Char__toInt_impl_vasixd(_this__u8e3s4);
10921
10965
  var ch = tmp$ret$0;
10922
- var index = binarySearchRange(Letter_getInstance().wh_1, ch);
10923
- var rangeStart = Letter_getInstance().wh_1[index];
10924
- var rangeEnd = (rangeStart + Letter_getInstance().xh_1[index] | 0) - 1 | 0;
10925
- var code = Letter_getInstance().yh_1[index];
10966
+ var index = binarySearchRange(Letter_getInstance().th_1, ch);
10967
+ var rangeStart = Letter_getInstance().th_1[index];
10968
+ var rangeEnd = (rangeStart + Letter_getInstance().uh_1[index] | 0) - 1 | 0;
10969
+ var code = Letter_getInstance().vh_1[index];
10926
10970
  if (ch > rangeEnd) {
10927
10971
  return 0;
10928
10972
  }
@@ -10989,11 +11033,11 @@ if (typeof Math.imul === 'undefined') {
10989
11033
  }
10990
11034
  }
10991
11035
  while (inductionVariable_0 <= last_0);
10992
- this.wh_1 = start;
11036
+ this.th_1 = start;
10993
11037
  var rangeLength = 'aaMBXHYH5BRpBPPPPPPRMP5BPPlCPPzBDOOPPcPXPzBvBjB3BOhDmBBpB7DoDYxB+EiBP1DoExBkBQhBekBPmBgBhBctBiBMWOOXhCsBpBkBUV3Ba4BkB0DlCgBXgBtD4FSdBfPhBPpKP0BvBXjEQ2CGsT8DhBtCqDpFvD1D3E0IrD2EkBJrBDOBsB+BPiBlB1EIjDPPPPPPPPPPPGPPMNLsBNPNPKCvBvBPPCkDPBmBPhDXXgD4B6FzEgDguG9vUtkB9JcuBSckEP/BPPPPPPBPf4FrBjEhBpC3B5BKaWPrBOwCk/KsCuLqDHPbPxPsFtEaaqDL';
10994
- this.xh_1 = decodeVarLenBase64(rangeLength, fromBase64, 222);
11038
+ this.uh_1 = decodeVarLenBase64(rangeLength, fromBase64, 222);
10995
11039
  var rangeCategory = 'GFjgggUHGGFFZZZmzpz5qB6s6020B60ptltB6smt2sB60mz22B1+vv+8BZZ5s2850BW5q1ymtB506smzBF3q1q1qB1q1q1+Bgii4wDTm74g3KiggxqM60q1q1Bq1o1q1BF1qlrqrBZ2q5wprBGFZWWZGHFsjiooLowgmOowjkwCkgoiIk7ligGogiioBkwkiYkzj2oNoi+sbkwj04DghhkQ8wgiYkgoioDsgnkwC4gikQ//v+85BkwvoIsgoyI4yguI0whiwEowri4CoghsJowgqYowgm4DkwgsY/nwnzPowhmYkg6wI8yggZswikwHgxgmIoxgqYkwgk4DkxgmIkgoioBsgssoBgzgyI8g9gL8g9kI0wgwJoxgkoC0wgioFkw/wI0w53iF4gioYowjmgBHGq1qkgwBF1q1q8qBHwghuIwghyKk0goQkwgoQk3goQHGFHkyg0pBgxj6IoinkxDswno7Ikwhz9Bo0gioB8z48Rwli0xN0mpjoX8w78pDwltoqKHFGGwwgsIHFH3q1q16BFHWFZ1q10q1B2qlwq1B1q10q1B2q1yq1B6q1gq1Biq1qhxBir1qp1Bqt1q1qB1g1q1+B//3q16B///q1qBH/qlqq9Bholqq9B1i00a1q10qD1op1HkwmigEigiy6Cptogq1Bixo1kDq7/j00B2qgoBWGFm1lz50B6s5q1+BGWhggzhwBFFhgk4//Bo2jigE8wguI8wguI8wgugUog1qoB4qjmIwwi2KgkYHHH4lBgiFWkgIWoghssMmz5smrBZ3q1y50B5sm7gzBtz1smzB5smz50BqzqtmzB5sgzqzBF2/9//5BowgoIwmnkzPkwgk4C8ys65BkgoqI0wgy6FghquZo2giY0ghiIsgh24B4ghsQ8QF/v1q1OFs0O8iCHHF1qggz/B8wg6Iznv+//B08QgohsjK0QGFk7hsQ4gB';
10996
- this.yh_1 = decodeVarLenBase64(rangeCategory, fromBase64, 222);
11040
+ this.vh_1 = decodeVarLenBase64(rangeCategory, fromBase64, 222);
10997
11041
  }
10998
11042
  var Letter_instance;
10999
11043
  function Letter_getInstance() {
@@ -11002,8 +11046,8 @@ if (typeof Math.imul === 'undefined') {
11002
11046
  return Letter_instance;
11003
11047
  }
11004
11048
  function isOtherLowercase(_this__u8e3s4) {
11005
- var index = binarySearchRange(OtherLowercase_getInstance().zh_1, _this__u8e3s4);
11006
- return index >= 0 ? _this__u8e3s4 < (OtherLowercase_getInstance().zh_1[index] + OtherLowercase_getInstance().ai_1[index] | 0) : false;
11049
+ var index = binarySearchRange(OtherLowercase_getInstance().wh_1, _this__u8e3s4);
11050
+ return index >= 0 ? _this__u8e3s4 < (OtherLowercase_getInstance().wh_1[index] + OtherLowercase_getInstance().xh_1[index] | 0) : false;
11007
11051
  }
11008
11052
  function OtherLowercase() {
11009
11053
  OtherLowercase_instance = this;
@@ -11011,12 +11055,12 @@ if (typeof Math.imul === 'undefined') {
11011
11055
  var tmp$ret$0;
11012
11056
  // Inline function 'kotlin.intArrayOf' call
11013
11057
  tmp$ret$0 = new Int32Array([170, 186, 688, 704, 736, 837, 890, 7468, 7544, 7579, 8305, 8319, 8336, 8560, 9424, 11388, 42652, 42864, 43000, 43868]);
11014
- tmp.zh_1 = tmp$ret$0;
11058
+ tmp.wh_1 = tmp$ret$0;
11015
11059
  var tmp_0 = this;
11016
11060
  var tmp$ret$1;
11017
11061
  // Inline function 'kotlin.intArrayOf' call
11018
11062
  tmp$ret$1 = new Int32Array([1, 1, 9, 2, 5, 1, 1, 63, 1, 37, 1, 1, 13, 16, 26, 2, 2, 1, 2, 4]);
11019
- tmp_0.ai_1 = tmp$ret$1;
11063
+ tmp_0.xh_1 = tmp$ret$1;
11020
11064
  }
11021
11065
  var OtherLowercase_instance;
11022
11066
  function OtherLowercase_getInstance() {
@@ -11045,28 +11089,28 @@ if (typeof Math.imul === 'undefined') {
11045
11089
  return (((9 <= ch ? ch <= 13 : false) ? true : 28 <= ch ? ch <= 32 : false) ? true : ch === 160) ? true : ch > 4096 ? (((((ch === 5760 ? true : 8192 <= ch ? ch <= 8202 : false) ? true : ch === 8232) ? true : ch === 8233) ? true : ch === 8239) ? true : ch === 8287) ? true : ch === 12288 : false;
11046
11090
  }
11047
11091
  function releaseIntercepted($this) {
11048
- var intercepted = $this.ii_1;
11092
+ var intercepted = $this.fi_1;
11049
11093
  if (!(intercepted == null) ? !(intercepted === $this) : false) {
11050
11094
  ensureNotNull($this.j5().c8(Key_getInstance())).a8(intercepted);
11051
11095
  }
11052
- $this.ii_1 = CompletedContinuation_getInstance();
11096
+ $this.fi_1 = CompletedContinuation_getInstance();
11053
11097
  }
11054
11098
  function CoroutineImpl(resultContinuation) {
11055
- this.bi_1 = resultContinuation;
11056
- this.ci_1 = 0;
11057
- this.di_1 = 0;
11058
- this.ei_1 = null;
11059
- this.fi_1 = null;
11060
- this.gi_1 = null;
11099
+ this.yh_1 = resultContinuation;
11100
+ this.zh_1 = 0;
11101
+ this.ai_1 = 0;
11102
+ this.bi_1 = null;
11103
+ this.ci_1 = null;
11104
+ this.di_1 = null;
11061
11105
  var tmp = this;
11062
- var tmp0_safe_receiver = this.bi_1;
11063
- tmp.hi_1 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.j5();
11064
- this.ii_1 = null;
11106
+ var tmp0_safe_receiver = this.yh_1;
11107
+ tmp.ei_1 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.j5();
11108
+ this.fi_1 = null;
11065
11109
  }
11066
11110
  CoroutineImpl.prototype.j5 = function () {
11067
- return ensureNotNull(this.hi_1);
11111
+ return ensureNotNull(this.ei_1);
11068
11112
  };
11069
- CoroutineImpl.prototype.ji = function (result) {
11113
+ CoroutineImpl.prototype.gi = function (result) {
11070
11114
  var current = this;
11071
11115
  var tmp$ret$0;
11072
11116
  // Inline function 'kotlin.Result.getOrNull' call
@@ -11086,13 +11130,13 @@ if (typeof Math.imul === 'undefined') {
11086
11130
  var tmp0_with = current;
11087
11131
  // Inline function 'kotlin.contracts.contract' call
11088
11132
  if (currentException == null) {
11089
- tmp0_with.ei_1 = currentResult;
11133
+ tmp0_with.bi_1 = currentResult;
11090
11134
  } else {
11091
- tmp0_with.ci_1 = tmp0_with.di_1;
11092
- tmp0_with.fi_1 = currentException;
11135
+ tmp0_with.zh_1 = tmp0_with.ai_1;
11136
+ tmp0_with.ci_1 = currentException;
11093
11137
  }
11094
11138
  try {
11095
- var outcome = tmp0_with.ki();
11139
+ var outcome = tmp0_with.hi();
11096
11140
  if (outcome === get_COROUTINE_SUSPENDED())
11097
11141
  return Unit_getInstance();
11098
11142
  currentResult = outcome;
@@ -11105,7 +11149,7 @@ if (typeof Math.imul === 'undefined') {
11105
11149
  currentException = tmp$ret$1;
11106
11150
  }
11107
11151
  releaseIntercepted(tmp0_with);
11108
- var completion = ensureNotNull(tmp0_with.bi_1);
11152
+ var completion = ensureNotNull(tmp0_with.yh_1);
11109
11153
  var tmp_1;
11110
11154
  if (completion instanceof CoroutineImpl) {
11111
11155
  current = completion;
@@ -11138,7 +11182,7 @@ if (typeof Math.imul === 'undefined') {
11138
11182
  }
11139
11183
  };
11140
11184
  CoroutineImpl.prototype.h5 = function (result) {
11141
- return this.ji(result);
11185
+ return this.gi(result);
11142
11186
  };
11143
11187
  function CompletedContinuation() {
11144
11188
  CompletedContinuation_instance = this;
@@ -11146,12 +11190,12 @@ if (typeof Math.imul === 'undefined') {
11146
11190
  CompletedContinuation.prototype.j5 = function () {
11147
11191
  throw IllegalStateException_init_$Create$_0('This continuation is already complete');
11148
11192
  };
11149
- CompletedContinuation.prototype.ji = function (result) {
11193
+ CompletedContinuation.prototype.gi = function (result) {
11150
11194
  // Inline function 'kotlin.error' call
11151
11195
  throw IllegalStateException_init_$Create$_0('This continuation is already complete');
11152
11196
  };
11153
11197
  CompletedContinuation.prototype.h5 = function (result) {
11154
- return this.ji(result);
11198
+ return this.gi(result);
11155
11199
  };
11156
11200
  CompletedContinuation.prototype.toString = function () {
11157
11201
  return 'This continuation is already complete';
@@ -11172,54 +11216,23 @@ if (typeof Math.imul === 'undefined') {
11172
11216
  throw new NotImplementedError('It is intrinsic method');
11173
11217
  }
11174
11218
  function _no_name_provided__qut3iv_6($completion, $this_createCoroutineUnintercepted, $receiver) {
11175
- this.ti_1 = $completion;
11176
- this.ui_1 = $this_createCoroutineUnintercepted;
11177
- this.vi_1 = $receiver;
11219
+ this.qi_1 = $completion;
11220
+ this.ri_1 = $this_createCoroutineUnintercepted;
11221
+ this.si_1 = $receiver;
11178
11222
  CoroutineImpl.call(this, isInterface($completion, Continuation) ? $completion : THROW_CCE());
11179
11223
  }
11180
- _no_name_provided__qut3iv_6.prototype.ki = function () {
11181
- if (this.fi_1 != null)
11182
- throw this.fi_1;
11224
+ _no_name_provided__qut3iv_6.prototype.hi = function () {
11225
+ if (this.ci_1 != null)
11226
+ throw this.ci_1;
11183
11227
  var tmp$ret$1;
11184
11228
  // Inline function 'kotlin.coroutines.intrinsics.createCoroutineUnintercepted.<anonymous>' call
11185
11229
  var tmp$ret$0;
11186
11230
  // Inline function 'kotlin.js.asDynamic' call
11187
- tmp$ret$0 = this.ui_1;
11231
+ tmp$ret$0 = this.ri_1;
11188
11232
  var a = tmp$ret$0;
11189
- tmp$ret$1 = typeof a === 'function' ? a(this.vi_1, this.ti_1) : this.ui_1.wi(this.vi_1, this.ti_1);
11233
+ tmp$ret$1 = typeof a === 'function' ? a(this.si_1, this.qi_1) : this.ri_1.ti(this.si_1, this.qi_1);
11190
11234
  return tmp$ret$1;
11191
11235
  };
11192
- function Exception_init_$Init$($this) {
11193
- extendThrowable($this, void 1, void 1);
11194
- Exception.call($this);
11195
- return $this;
11196
- }
11197
- function Exception_init_$Init$_0(message, $this) {
11198
- extendThrowable($this, message, void 1);
11199
- Exception.call($this);
11200
- return $this;
11201
- }
11202
- function Exception_init_$Create$(message) {
11203
- var tmp = Exception_init_$Init$_0(message, Object.create(Exception.prototype));
11204
- captureStack(tmp, Exception_init_$Create$);
11205
- return tmp;
11206
- }
11207
- function Exception_init_$Init$_1(message, cause, $this) {
11208
- extendThrowable($this, message, cause);
11209
- Exception.call($this);
11210
- return $this;
11211
- }
11212
- function Exception() {
11213
- captureStack(this, Exception);
11214
- }
11215
- function Error_init_$Init$(message, $this) {
11216
- extendThrowable($this, message, void 1);
11217
- Error_0.call($this);
11218
- return $this;
11219
- }
11220
- function Error_0() {
11221
- captureStack(this, Error_0);
11222
- }
11223
11236
  function IllegalArgumentException_init_$Init$($this) {
11224
11237
  RuntimeException_init_$Init$($this);
11225
11238
  IllegalArgumentException.call($this);
@@ -11248,6 +11261,29 @@ if (typeof Math.imul === 'undefined') {
11248
11261
  function IllegalArgumentException() {
11249
11262
  captureStack(this, IllegalArgumentException);
11250
11263
  }
11264
+ function IndexOutOfBoundsException_init_$Init$($this) {
11265
+ RuntimeException_init_$Init$($this);
11266
+ IndexOutOfBoundsException.call($this);
11267
+ return $this;
11268
+ }
11269
+ function IndexOutOfBoundsException_init_$Create$() {
11270
+ var tmp = IndexOutOfBoundsException_init_$Init$(Object.create(IndexOutOfBoundsException.prototype));
11271
+ captureStack(tmp, IndexOutOfBoundsException_init_$Create$);
11272
+ return tmp;
11273
+ }
11274
+ function IndexOutOfBoundsException_init_$Init$_0(message, $this) {
11275
+ RuntimeException_init_$Init$_0(message, $this);
11276
+ IndexOutOfBoundsException.call($this);
11277
+ return $this;
11278
+ }
11279
+ function IndexOutOfBoundsException_init_$Create$_0(message) {
11280
+ var tmp = IndexOutOfBoundsException_init_$Init$_0(message, Object.create(IndexOutOfBoundsException.prototype));
11281
+ captureStack(tmp, IndexOutOfBoundsException_init_$Create$_0);
11282
+ return tmp;
11283
+ }
11284
+ function IndexOutOfBoundsException() {
11285
+ captureStack(this, IndexOutOfBoundsException);
11286
+ }
11251
11287
  function IllegalStateException_init_$Init$($this) {
11252
11288
  RuntimeException_init_$Init$($this);
11253
11289
  IllegalStateException.call($this);
@@ -11271,6 +11307,47 @@ if (typeof Math.imul === 'undefined') {
11271
11307
  function IllegalStateException() {
11272
11308
  captureStack(this, IllegalStateException);
11273
11309
  }
11310
+ function Exception_init_$Init$($this) {
11311
+ extendThrowable($this, void 1, void 1);
11312
+ Exception.call($this);
11313
+ return $this;
11314
+ }
11315
+ function Exception_init_$Init$_0(message, $this) {
11316
+ extendThrowable($this, message, void 1);
11317
+ Exception.call($this);
11318
+ return $this;
11319
+ }
11320
+ function Exception_init_$Create$(message) {
11321
+ var tmp = Exception_init_$Init$_0(message, Object.create(Exception.prototype));
11322
+ captureStack(tmp, Exception_init_$Create$);
11323
+ return tmp;
11324
+ }
11325
+ function Exception_init_$Init$_1(message, cause, $this) {
11326
+ extendThrowable($this, message, cause);
11327
+ Exception.call($this);
11328
+ return $this;
11329
+ }
11330
+ function Exception() {
11331
+ captureStack(this, Exception);
11332
+ }
11333
+ function RuntimeException_init_$Init$($this) {
11334
+ Exception_init_$Init$($this);
11335
+ RuntimeException.call($this);
11336
+ return $this;
11337
+ }
11338
+ function RuntimeException_init_$Init$_0(message, $this) {
11339
+ Exception_init_$Init$_0(message, $this);
11340
+ RuntimeException.call($this);
11341
+ return $this;
11342
+ }
11343
+ function RuntimeException_init_$Init$_1(message, cause, $this) {
11344
+ Exception_init_$Init$_1(message, cause, $this);
11345
+ RuntimeException.call($this);
11346
+ return $this;
11347
+ }
11348
+ function RuntimeException() {
11349
+ captureStack(this, RuntimeException);
11350
+ }
11274
11351
  function NoSuchElementException_init_$Init$($this) {
11275
11352
  RuntimeException_init_$Init$($this);
11276
11353
  NoSuchElementException.call($this);
@@ -11294,23 +11371,13 @@ if (typeof Math.imul === 'undefined') {
11294
11371
  function NoSuchElementException() {
11295
11372
  captureStack(this, NoSuchElementException);
11296
11373
  }
11297
- function RuntimeException_init_$Init$($this) {
11298
- Exception_init_$Init$($this);
11299
- RuntimeException.call($this);
11300
- return $this;
11301
- }
11302
- function RuntimeException_init_$Init$_0(message, $this) {
11303
- Exception_init_$Init$_0(message, $this);
11304
- RuntimeException.call($this);
11305
- return $this;
11306
- }
11307
- function RuntimeException_init_$Init$_1(message, cause, $this) {
11308
- Exception_init_$Init$_1(message, cause, $this);
11309
- RuntimeException.call($this);
11374
+ function Error_init_$Init$(message, $this) {
11375
+ extendThrowable($this, message, void 1);
11376
+ Error_0.call($this);
11310
11377
  return $this;
11311
11378
  }
11312
- function RuntimeException() {
11313
- captureStack(this, RuntimeException);
11379
+ function Error_0() {
11380
+ captureStack(this, Error_0);
11314
11381
  }
11315
11382
  function NumberFormatException_init_$Init$($this) {
11316
11383
  IllegalArgumentException_init_$Init$($this);
@@ -11335,29 +11402,6 @@ if (typeof Math.imul === 'undefined') {
11335
11402
  function NumberFormatException() {
11336
11403
  captureStack(this, NumberFormatException);
11337
11404
  }
11338
- function IndexOutOfBoundsException_init_$Init$($this) {
11339
- RuntimeException_init_$Init$($this);
11340
- IndexOutOfBoundsException.call($this);
11341
- return $this;
11342
- }
11343
- function IndexOutOfBoundsException_init_$Create$() {
11344
- var tmp = IndexOutOfBoundsException_init_$Init$(Object.create(IndexOutOfBoundsException.prototype));
11345
- captureStack(tmp, IndexOutOfBoundsException_init_$Create$);
11346
- return tmp;
11347
- }
11348
- function IndexOutOfBoundsException_init_$Init$_0(message, $this) {
11349
- RuntimeException_init_$Init$_0(message, $this);
11350
- IndexOutOfBoundsException.call($this);
11351
- return $this;
11352
- }
11353
- function IndexOutOfBoundsException_init_$Create$_0(message) {
11354
- var tmp = IndexOutOfBoundsException_init_$Init$_0(message, Object.create(IndexOutOfBoundsException.prototype));
11355
- captureStack(tmp, IndexOutOfBoundsException_init_$Create$_0);
11356
- return tmp;
11357
- }
11358
- function IndexOutOfBoundsException() {
11359
- captureStack(this, IndexOutOfBoundsException);
11360
- }
11361
11405
  function ArithmeticException_init_$Init$(message, $this) {
11362
11406
  RuntimeException_init_$Init$_0(message, $this);
11363
11407
  ArithmeticException.call($this);
@@ -11469,37 +11513,6 @@ if (typeof Math.imul === 'undefined') {
11469
11513
  function UninitializedPropertyAccessException() {
11470
11514
  captureStack(this, UninitializedPropertyAccessException);
11471
11515
  }
11472
- function jsIn(lhs_hack, rhs_hack) {
11473
- var tmp$ret$0;
11474
- // Inline function 'kotlin.js.unsafeCast' call
11475
- var tmp0_unsafeCast = lhs_hack in rhs_hack;
11476
- tmp$ret$0 = tmp0_unsafeCast;
11477
- return tmp$ret$0;
11478
- }
11479
- function jsBitwiseOr(lhs_hack, rhs_hack) {
11480
- var tmp$ret$0;
11481
- // Inline function 'kotlin.js.unsafeCast' call
11482
- var tmp0_unsafeCast = lhs_hack | rhs_hack;
11483
- tmp$ret$0 = tmp0_unsafeCast;
11484
- return tmp$ret$0;
11485
- }
11486
- function jsTypeOf(value_hack) {
11487
- var tmp$ret$0;
11488
- // Inline function 'kotlin.js.unsafeCast' call
11489
- var tmp0_unsafeCast = typeof value_hack;
11490
- tmp$ret$0 = tmp0_unsafeCast;
11491
- return tmp$ret$0;
11492
- }
11493
- function jsDeleteProperty(obj_hack, property_hack) {
11494
- delete obj_hack[property_hack];
11495
- }
11496
- function jsInstanceOf(obj_hack, jsClass_hack) {
11497
- var tmp$ret$0;
11498
- // Inline function 'kotlin.js.unsafeCast' call
11499
- var tmp0_unsafeCast = obj_hack instanceof jsClass_hack;
11500
- tmp$ret$0 = tmp0_unsafeCast;
11501
- return tmp$ret$0;
11502
- }
11503
11516
  function toBits(_this__u8e3s4) {
11504
11517
  var tmp;
11505
11518
  if (isNaN_0(_this__u8e3s4)) {