raspberry_games_server_game_logic 1.8.262 → 1.8.265

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.
@@ -513,9 +513,9 @@
513
513
  return single(this.c77());
514
514
  }
515
515
  initMetadataForInterface(PlayerTurnSceneSupport, 'PlayerTurnSceneSupport');
516
- initMetadataForClass(CombinationActData, 'CombinationActData', VOID, VOID, [ActData, PlayerTurnSceneSupport]);
517
516
  initMetadataForClass(CardDeckRequest, 'CardDeckRequest');
518
517
  initMetadataForClass(WaitingActData, 'WaitingActData', VOID, VOID, [ActData, PlayerTurnSceneSupport]);
518
+ initMetadataForClass(CombinationActData, 'CombinationActData', VOID, VOID, [ActData, PlayerTurnSceneSupport]);
519
519
  initMetadataForClass(PlayersTurnActData, 'PlayersTurnActData', VOID, VOID, [ActData, PlayerTurnSceneSupport]);
520
520
  initMetadataForClass(PlayersTurnClientActData, 'PlayersTurnClientActData', VOID, VOID, [ActData, PlayerTurnSceneSupport]);
521
521
  initMetadataForInterface(SceneData, 'SceneData');
@@ -692,21 +692,21 @@
692
692
  initMetadataForClass(ClientPlayerStateDto, 'ClientPlayerStateDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_52});
693
693
  initMetadataForCompanion(Companion_78);
694
694
  initMetadataForObject($serializer_51, '$serializer', VOID, VOID, [GeneratedSerializer]);
695
- initMetadataForClass(ActDataDto, 'ActDataDto', VOID, VOID, VOID, VOID, VOID, {0: Companion_getInstance_86});
695
+ initMetadataForClass(ActDataDto, 'ActDataDto', VOID, VOID, VOID, VOID, VOID, {0: Companion_getInstance_89});
696
696
  initMetadataForClass(ClientActDataDto, 'ClientActDataDto', VOID, ActDataDto, VOID, VOID, VOID, {0: Companion_getInstance_91});
697
697
  initMetadataForClass(CombinationActDataDto, 'CombinationActDataDto', VOID, ClientActDataDto, VOID, VOID, VOID, {0: $serializer_getInstance_53});
698
- initMetadataForCompanion(Companion_79, VOID, [SerializerFactory]);
699
- initMetadataForCompanion(Companion_80);
698
+ initMetadataForCompanion(Companion_79);
700
699
  initMetadataForObject($serializer_52, '$serializer', VOID, VOID, [GeneratedSerializer]);
701
- initMetadataForClass(PlayersTurnActDataDto, 'PlayersTurnActDataDto', VOID, ActDataDto, VOID, VOID, VOID, {0: $serializer_getInstance_54});
700
+ initMetadataForInterface(RequestPayloadDto, 'RequestPayloadDto', VOID, VOID, VOID, VOID, VOID, {0: Companion_getInstance_87});
701
+ initMetadataForClass(CardDeckRequestDto, 'CardDeckRequestDto', VOID, VOID, [RequestPayloadDto], VOID, VOID, {0: $serializer_getInstance_54});
702
+ initMetadataForCompanion(Companion_80, VOID, [SerializerFactory]);
702
703
  initMetadataForCompanion(Companion_81);
703
704
  initMetadataForObject($serializer_53, '$serializer', VOID, VOID, [GeneratedSerializer]);
704
- initMetadataForInterface(RequestPayloadDto, 'RequestPayloadDto', VOID, VOID, VOID, VOID, VOID, {0: Companion_getInstance_89});
705
- initMetadataForClass(CardDeckRequestDto, 'CardDeckRequestDto', VOID, VOID, [RequestPayloadDto], VOID, VOID, {0: $serializer_getInstance_55});
705
+ initMetadataForClass(WaitingActDataDto, 'WaitingActDataDto', VOID, ClientActDataDto, VOID, VOID, VOID, {0: $serializer_getInstance_55});
706
706
  initMetadataForCompanion(Companion_82, VOID, [SerializerFactory]);
707
707
  initMetadataForCompanion(Companion_83);
708
708
  initMetadataForObject($serializer_54, '$serializer', VOID, VOID, [GeneratedSerializer]);
709
- initMetadataForClass(WaitingActDataDto, 'WaitingActDataDto', VOID, ActDataDto, VOID, VOID, VOID, {0: $serializer_getInstance_56});
709
+ initMetadataForClass(PlayersTurnActDataDto, 'PlayersTurnActDataDto', VOID, ActDataDto, VOID, VOID, VOID, {0: $serializer_getInstance_56});
710
710
  initMetadataForCompanion(Companion_84, VOID, [SerializerFactory]);
711
711
  initMetadataForCompanion(Companion_85);
712
712
  initMetadataForObject($serializer_55, '$serializer', VOID, VOID, [GeneratedSerializer]);
@@ -8405,47 +8405,14 @@
8405
8405
  }
8406
8406
  function PlayerTurnSceneSupport() {
8407
8407
  }
8408
- function CombinationActData(playerTurnIds, combinations) {
8409
- this.e77_1 = playerTurnIds;
8410
- this.f77_1 = combinations;
8411
- }
8412
- protoOf(CombinationActData).c77 = function () {
8413
- return this.e77_1;
8414
- };
8415
- protoOf(CombinationActData).b77 = function () {
8416
- return 'COMBINATION';
8417
- };
8418
- protoOf(CombinationActData).g77 = function () {
8419
- return first(this.f77_1).i77_1;
8420
- };
8421
- protoOf(CombinationActData).toString = function () {
8422
- return 'CombinationActData(playerTurnIds=' + toString(this.e77_1) + ', combinations=' + toString(this.f77_1) + ')';
8423
- };
8424
- protoOf(CombinationActData).hashCode = function () {
8425
- var result = hashCode(this.e77_1);
8426
- result = imul(result, 31) + hashCode(this.f77_1) | 0;
8427
- return result;
8428
- };
8429
- protoOf(CombinationActData).equals = function (other) {
8430
- if (this === other)
8431
- return true;
8432
- if (!(other instanceof CombinationActData))
8433
- return false;
8434
- var tmp0_other_with_cast = other instanceof CombinationActData ? other : THROW_CCE();
8435
- if (!equals(this.e77_1, tmp0_other_with_cast.e77_1))
8436
- return false;
8437
- if (!equals(this.f77_1, tmp0_other_with_cast.f77_1))
8438
- return false;
8439
- return true;
8440
- };
8441
8408
  function CardDeckRequest(count) {
8442
- this.l77_1 = count;
8409
+ this.e77_1 = count;
8443
8410
  }
8444
8411
  protoOf(CardDeckRequest).toString = function () {
8445
- return 'CardDeckRequest(count=' + this.l77_1 + ')';
8412
+ return 'CardDeckRequest(count=' + this.e77_1 + ')';
8446
8413
  };
8447
8414
  protoOf(CardDeckRequest).hashCode = function () {
8448
- return this.l77_1;
8415
+ return this.e77_1;
8449
8416
  };
8450
8417
  protoOf(CardDeckRequest).equals = function (other) {
8451
8418
  if (this === other)
@@ -8453,26 +8420,26 @@
8453
8420
  if (!(other instanceof CardDeckRequest))
8454
8421
  return false;
8455
8422
  var tmp0_other_with_cast = other instanceof CardDeckRequest ? other : THROW_CCE();
8456
- if (!(this.l77_1 === tmp0_other_with_cast.l77_1))
8423
+ if (!(this.e77_1 === tmp0_other_with_cast.e77_1))
8457
8424
  return false;
8458
8425
  return true;
8459
8426
  };
8460
8427
  function WaitingActData(playerTurnIds, requestPayload) {
8461
- this.m77_1 = playerTurnIds;
8462
- this.n77_1 = requestPayload;
8428
+ this.f77_1 = playerTurnIds;
8429
+ this.g77_1 = requestPayload;
8463
8430
  }
8464
8431
  protoOf(WaitingActData).c77 = function () {
8465
- return this.m77_1;
8432
+ return this.f77_1;
8466
8433
  };
8467
8434
  protoOf(WaitingActData).b77 = function () {
8468
8435
  return 'WAITING_ACT';
8469
8436
  };
8470
8437
  protoOf(WaitingActData).toString = function () {
8471
- return 'WaitingActData(playerTurnIds=' + toString(this.m77_1) + ', requestPayload=' + toString_0(this.n77_1) + ')';
8438
+ return 'WaitingActData(playerTurnIds=' + toString(this.f77_1) + ', requestPayload=' + toString_0(this.g77_1) + ')';
8472
8439
  };
8473
8440
  protoOf(WaitingActData).hashCode = function () {
8474
- var result = hashCode(this.m77_1);
8475
- result = imul(result, 31) + (this.n77_1 == null ? 0 : hashCode(this.n77_1)) | 0;
8441
+ var result = hashCode(this.f77_1);
8442
+ result = imul(result, 31) + (this.g77_1 == null ? 0 : hashCode(this.g77_1)) | 0;
8476
8443
  return result;
8477
8444
  };
8478
8445
  protoOf(WaitingActData).equals = function (other) {
@@ -8481,9 +8448,42 @@
8481
8448
  if (!(other instanceof WaitingActData))
8482
8449
  return false;
8483
8450
  var tmp0_other_with_cast = other instanceof WaitingActData ? other : THROW_CCE();
8484
- if (!equals(this.m77_1, tmp0_other_with_cast.m77_1))
8451
+ if (!equals(this.f77_1, tmp0_other_with_cast.f77_1))
8485
8452
  return false;
8486
- if (!equals(this.n77_1, tmp0_other_with_cast.n77_1))
8453
+ if (!equals(this.g77_1, tmp0_other_with_cast.g77_1))
8454
+ return false;
8455
+ return true;
8456
+ };
8457
+ function CombinationActData(playerTurnIds, combinations) {
8458
+ this.h77_1 = playerTurnIds;
8459
+ this.i77_1 = combinations;
8460
+ }
8461
+ protoOf(CombinationActData).c77 = function () {
8462
+ return this.h77_1;
8463
+ };
8464
+ protoOf(CombinationActData).b77 = function () {
8465
+ return 'COMBINATION';
8466
+ };
8467
+ protoOf(CombinationActData).j77 = function () {
8468
+ return first(this.i77_1).l77_1;
8469
+ };
8470
+ protoOf(CombinationActData).toString = function () {
8471
+ return 'CombinationActData(playerTurnIds=' + toString(this.h77_1) + ', combinations=' + toString(this.i77_1) + ')';
8472
+ };
8473
+ protoOf(CombinationActData).hashCode = function () {
8474
+ var result = hashCode(this.h77_1);
8475
+ result = imul(result, 31) + hashCode(this.i77_1) | 0;
8476
+ return result;
8477
+ };
8478
+ protoOf(CombinationActData).equals = function (other) {
8479
+ if (this === other)
8480
+ return true;
8481
+ if (!(other instanceof CombinationActData))
8482
+ return false;
8483
+ var tmp0_other_with_cast = other instanceof CombinationActData ? other : THROW_CCE();
8484
+ if (!equals(this.h77_1, tmp0_other_with_cast.h77_1))
8485
+ return false;
8486
+ if (!equals(this.i77_1, tmp0_other_with_cast.i77_1))
8487
8487
  return false;
8488
8488
  return true;
8489
8489
  };
@@ -13831,8 +13831,8 @@
13831
13831
  }
13832
13832
  function mapToDto_5(_this__u8e3s4) {
13833
13833
  _init_properties_CombinationsDtoMappers_kt__fk981j();
13834
- var tmp = mapToDto_7(_this__u8e3s4.i77_1);
13835
- var tmp0_safe_receiver = _this__u8e3s4.j77_1;
13834
+ var tmp = mapToDto_7(_this__u8e3s4.l77_1);
13835
+ var tmp0_safe_receiver = _this__u8e3s4.m77_1;
13836
13836
  var tmp_0;
13837
13837
  if (tmp0_safe_receiver == null) {
13838
13838
  tmp_0 = null;
@@ -13851,7 +13851,7 @@
13851
13851
  }
13852
13852
  var tmp_1 = tmp_0;
13853
13853
  // Inline function 'kotlin.takeIf' call
13854
- var this_0 = _this__u8e3s4.k77_1;
13854
+ var this_0 = _this__u8e3s4.n77_1;
13855
13855
  // Inline function 'kotlin.contracts.contract' call
13856
13856
  var tmp_2;
13857
13857
  // Inline function 'games.jass.logic.data.models.serializable.mappers.mapToDto.<anonymous>' call
@@ -13878,7 +13878,7 @@
13878
13878
  }
13879
13879
  tmp_3 = destination_0;
13880
13880
  }
13881
- return new CombinationDto(_this__u8e3s4.h77_1, tmp, tmp_1, tmp_3);
13881
+ return new CombinationDto(_this__u8e3s4.k77_1, tmp, tmp_1, tmp_3);
13882
13882
  }
13883
13883
  function mapFromDto_6(_this__u8e3s4) {
13884
13884
  _init_properties_CombinationsDtoMappers_kt__fk981j();
@@ -16374,15 +16374,15 @@
16374
16374
  }
16375
16375
  function mapToDto_60(_this__u8e3s4) {
16376
16376
  var tmp0_safe_receiver = _this__u8e3s4.o7r_1;
16377
- var tmp = tmp0_safe_receiver == null ? null : mapToDto_96(tmp0_safe_receiver);
16377
+ var tmp = tmp0_safe_receiver == null ? null : mapToDto_98(tmp0_safe_receiver);
16378
16378
  var tmp1_safe_receiver = _this__u8e3s4.p7r_1;
16379
- return new ClientSceneInfoDto(_this__u8e3s4.m7r_1, _this__u8e3s4.n7r_1, tmp, tmp1_safe_receiver == null ? null : mapToDto_94(tmp1_safe_receiver));
16379
+ return new ClientSceneInfoDto(_this__u8e3s4.m7r_1, _this__u8e3s4.n7r_1, tmp, tmp1_safe_receiver == null ? null : mapToDto_96(tmp1_safe_receiver));
16380
16380
  }
16381
16381
  function mapFromDto_56(_this__u8e3s4) {
16382
16382
  var tmp0_safe_receiver = _this__u8e3s4.s7r_1;
16383
- var tmp = tmp0_safe_receiver == null ? null : mapFromDto_72(tmp0_safe_receiver);
16383
+ var tmp = tmp0_safe_receiver == null ? null : mapFromDto_74(tmp0_safe_receiver);
16384
16384
  var tmp1_safe_receiver = _this__u8e3s4.t7r_1;
16385
- return new ClientSceneInfo(_this__u8e3s4.q7r_1, _this__u8e3s4.r7r_1, tmp, tmp1_safe_receiver == null ? null : mapFromDto_70(tmp1_safe_receiver));
16385
+ return new ClientSceneInfo(_this__u8e3s4.q7r_1, _this__u8e3s4.r7r_1, tmp, tmp1_safe_receiver == null ? null : mapFromDto_72(tmp1_safe_receiver));
16386
16386
  }
16387
16387
  function mapFromDto_57(_this__u8e3s4) {
16388
16388
  var tmp = mapFromDto_9(_this__u8e3s4.v7r_1);
@@ -16711,9 +16711,9 @@
16711
16711
  var tmp3_sceneId = _this__u8e3s4.q7t_1;
16712
16712
  var tmp4_actId = _this__u8e3s4.r7t_1;
16713
16713
  var tmp0_safe_receiver = _this__u8e3s4.s7t_1;
16714
- var tmp5_clientScenePayload = tmp0_safe_receiver == null ? null : mapToDto_96(tmp0_safe_receiver);
16714
+ var tmp5_clientScenePayload = tmp0_safe_receiver == null ? null : mapToDto_98(tmp0_safe_receiver);
16715
16715
  var tmp1_safe_receiver = _this__u8e3s4.t7t_1;
16716
- var tmp6_clientActPayload = tmp1_safe_receiver == null ? null : mapToDto_94(tmp1_safe_receiver);
16716
+ var tmp6_clientActPayload = tmp1_safe_receiver == null ? null : mapToDto_96(tmp1_safe_receiver);
16717
16717
  return new SceneToClientActionDto(tmp3_sceneId, tmp4_actId, tmp5_clientScenePayload, tmp6_clientActPayload, tmp2_aid);
16718
16718
  }
16719
16719
  function mapToDto_70(_this__u8e3s4) {
@@ -16721,7 +16721,7 @@
16721
16721
  var tmp2_sceneId = _this__u8e3s4.v7t_1;
16722
16722
  var tmp3_actId = _this__u8e3s4.w7t_1;
16723
16723
  var tmp0_safe_receiver = _this__u8e3s4.x7t_1;
16724
- var tmp4_clientActPayload = tmp0_safe_receiver == null ? null : mapToDto_94(tmp0_safe_receiver);
16724
+ var tmp4_clientActPayload = tmp0_safe_receiver == null ? null : mapToDto_96(tmp0_safe_receiver);
16725
16725
  return new SceneActToClientActionDto(tmp2_sceneId, tmp3_actId, tmp4_clientActPayload, tmp1_aid);
16726
16726
  }
16727
16727
  function mapToDto_71(_this__u8e3s4) {
@@ -17332,8 +17332,12 @@
17332
17332
  }
17333
17333
  }
17334
17334
  function mapToDto_93(_this__u8e3s4) {
17335
+ var tmp0_safe_receiver = _this__u8e3s4.g77_1;
17336
+ return new WaitingActDataDto(_this__u8e3s4.f77_1, tmp0_safe_receiver == null ? null : mapToDto_95(tmp0_safe_receiver));
17337
+ }
17338
+ function mapToDto_94(_this__u8e3s4) {
17335
17339
  // Inline function 'kotlin.collections.map' call
17336
- var this_0 = _this__u8e3s4.f77_1;
17340
+ var this_0 = _this__u8e3s4.i77_1;
17337
17341
  // Inline function 'kotlin.collections.mapTo' call
17338
17342
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
17339
17343
  var tmp0_iterator = this_0.j();
@@ -17343,11 +17347,24 @@
17343
17347
  var tmp$ret$0 = mapToDto_5(item);
17344
17348
  destination.e(tmp$ret$0);
17345
17349
  }
17346
- return new CombinationActDataDto(_this__u8e3s4.e77_1, destination);
17350
+ return new CombinationActDataDto(_this__u8e3s4.h77_1, destination);
17351
+ }
17352
+ function mapToDto_95(_this__u8e3s4) {
17353
+ var tmp;
17354
+ if (_this__u8e3s4 instanceof CardDeckRequest) {
17355
+ tmp = new CardDeckRequestDto(_this__u8e3s4.e77_1);
17356
+ } else {
17357
+ noWhenBranchMatchedException();
17358
+ }
17359
+ return tmp;
17347
17360
  }
17348
17361
  function mapFromDto_69(_this__u8e3s4) {
17362
+ var tmp0_safe_receiver = _this__u8e3s4.h7x_1;
17363
+ return new WaitingActData(_this__u8e3s4.g7x_1, tmp0_safe_receiver == null ? null : mapFromDto_71(tmp0_safe_receiver));
17364
+ }
17365
+ function mapFromDto_70(_this__u8e3s4) {
17349
17366
  // Inline function 'kotlin.collections.map' call
17350
- var this_0 = _this__u8e3s4.h7x_1;
17367
+ var this_0 = _this__u8e3s4.j7x_1;
17351
17368
  // Inline function 'kotlin.collections.mapTo' call
17352
17369
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
17353
17370
  var tmp0_iterator = this_0.j();
@@ -17357,22 +17374,35 @@
17357
17374
  var tmp$ret$0 = mapFromDto_6(item);
17358
17375
  destination.e(tmp$ret$0);
17359
17376
  }
17360
- return new CombinationActData(_this__u8e3s4.g7x_1, destination);
17377
+ return new CombinationActData(_this__u8e3s4.i7x_1, destination);
17361
17378
  }
17362
- function mapToDto_94(_this__u8e3s4) {
17379
+ function mapFromDto_71(_this__u8e3s4) {
17363
17380
  var tmp;
17364
- if (_this__u8e3s4 instanceof CombinationActData) {
17381
+ if (_this__u8e3s4 instanceof CardDeckRequestDto) {
17382
+ tmp = new CardDeckRequest(_this__u8e3s4.k7x_1);
17383
+ } else {
17384
+ noWhenBranchMatchedException();
17385
+ }
17386
+ return tmp;
17387
+ }
17388
+ function mapToDto_96(_this__u8e3s4) {
17389
+ var tmp;
17390
+ if (_this__u8e3s4 instanceof WaitingActData) {
17365
17391
  tmp = mapToDto_93(_this__u8e3s4);
17366
17392
  } else {
17367
- if (_this__u8e3s4 instanceof PlayersTurnClientActData) {
17368
- tmp = mapToDto_95(_this__u8e3s4);
17393
+ if (_this__u8e3s4 instanceof CombinationActData) {
17394
+ tmp = mapToDto_94(_this__u8e3s4);
17369
17395
  } else {
17370
- throw new MechanicException("Can't support this act " + toString(_this__u8e3s4));
17396
+ if (_this__u8e3s4 instanceof PlayersTurnClientActData) {
17397
+ tmp = mapToDto_97(_this__u8e3s4);
17398
+ } else {
17399
+ throw new MechanicException("ClientActData: Can't support this act " + toString(_this__u8e3s4));
17400
+ }
17371
17401
  }
17372
17402
  }
17373
17403
  return tmp;
17374
17404
  }
17375
- function mapToDto_95(_this__u8e3s4) {
17405
+ function mapToDto_97(_this__u8e3s4) {
17376
17406
  var tmp0_safe_receiver = _this__u8e3s4.r77_1;
17377
17407
  var tmp;
17378
17408
  if (tmp0_safe_receiver == null) {
@@ -17392,21 +17422,25 @@
17392
17422
  }
17393
17423
  return new PlayersTurnClientActDataDto(_this__u8e3s4.q77_1, tmp);
17394
17424
  }
17395
- function mapFromDto_70(_this__u8e3s4) {
17425
+ function mapFromDto_72(_this__u8e3s4) {
17396
17426
  var tmp;
17397
- if (_this__u8e3s4 instanceof CombinationActDataDto) {
17427
+ if (_this__u8e3s4 instanceof WaitingActDataDto) {
17398
17428
  tmp = mapFromDto_69(_this__u8e3s4);
17399
17429
  } else {
17400
- if (_this__u8e3s4 instanceof PlayersTurnClientActDataDto) {
17401
- tmp = mapFromDto_71(_this__u8e3s4);
17430
+ if (_this__u8e3s4 instanceof CombinationActDataDto) {
17431
+ tmp = mapFromDto_70(_this__u8e3s4);
17402
17432
  } else {
17403
- throw new MechanicException("Can't support this act " + toString(_this__u8e3s4));
17433
+ if (_this__u8e3s4 instanceof PlayersTurnClientActDataDto) {
17434
+ tmp = mapFromDto_73(_this__u8e3s4);
17435
+ } else {
17436
+ throw new MechanicException("ClientActDataDto: Can't support this act " + toString(_this__u8e3s4));
17437
+ }
17404
17438
  }
17405
17439
  }
17406
17440
  return tmp;
17407
17441
  }
17408
- function mapFromDto_71(_this__u8e3s4) {
17409
- var tmp0_safe_receiver = _this__u8e3s4.j7x_1;
17442
+ function mapFromDto_73(_this__u8e3s4) {
17443
+ var tmp0_safe_receiver = _this__u8e3s4.m7x_1;
17410
17444
  var tmp;
17411
17445
  if (tmp0_safe_receiver == null) {
17412
17446
  tmp = null;
@@ -17423,24 +17457,24 @@
17423
17457
  }
17424
17458
  tmp = destination;
17425
17459
  }
17426
- return new PlayersTurnClientActData(_this__u8e3s4.i7x_1, tmp);
17460
+ return new PlayersTurnClientActData(_this__u8e3s4.l7x_1, tmp);
17427
17461
  }
17428
- function mapToDto_96(_this__u8e3s4) {
17462
+ function mapToDto_98(_this__u8e3s4) {
17429
17463
  var tmp;
17430
17464
  if (_this__u8e3s4 instanceof WaitingSceneData) {
17431
- tmp = mapToDto_99(_this__u8e3s4);
17465
+ tmp = mapToDto_101(_this__u8e3s4);
17432
17466
  } else {
17433
17467
  if (_this__u8e3s4 instanceof ChoosePartnerSceneData) {
17434
- tmp = mapToDto_100(_this__u8e3s4);
17468
+ tmp = mapToDto_102(_this__u8e3s4);
17435
17469
  } else {
17436
17470
  if (_this__u8e3s4 instanceof TradeClientSceneData) {
17437
- tmp = mapToDto_97(_this__u8e3s4);
17471
+ tmp = mapToDto_99(_this__u8e3s4);
17438
17472
  } else {
17439
17473
  if (_this__u8e3s4 instanceof EarnPointsClientSceneData) {
17440
- tmp = mapToDto_98(_this__u8e3s4);
17474
+ tmp = mapToDto_100(_this__u8e3s4);
17441
17475
  } else {
17442
17476
  if (_this__u8e3s4 instanceof CalcPointsSceneData) {
17443
- tmp = mapToDto_101(_this__u8e3s4);
17477
+ tmp = mapToDto_103(_this__u8e3s4);
17444
17478
  } else {
17445
17479
  throw new MechanicException("Can't map this scene " + toString(_this__u8e3s4) + ' in ClientSceneData.mapToDto');
17446
17480
  }
@@ -17450,7 +17484,7 @@
17450
17484
  }
17451
17485
  return tmp;
17452
17486
  }
17453
- function mapToDto_97(_this__u8e3s4) {
17487
+ function mapToDto_99(_this__u8e3s4) {
17454
17488
  // Inline function 'kotlin.collections.map' call
17455
17489
  var this_0 = _this__u8e3s4.s77_1;
17456
17490
  // Inline function 'kotlin.collections.mapTo' call
@@ -17470,7 +17504,7 @@
17470
17504
  var tmp6_whoShuffleCardsPlayerId = _this__u8e3s4.x77_1;
17471
17505
  return new TradeClientSceneDataDto(destination, tmp2_otherPlayersCardsCount, tmp3_trumpCard, tmp4_otherCardsCount, tmp6_whoShuffleCardsPlayerId, tmp5_randomData);
17472
17506
  }
17473
- function mapToDto_98(_this__u8e3s4) {
17507
+ function mapToDto_100(_this__u8e3s4) {
17474
17508
  // Inline function 'kotlin.collections.map' call
17475
17509
  var this_0 = _this__u8e3s4.b78_1;
17476
17510
  // Inline function 'kotlin.collections.mapTo' call
@@ -17504,22 +17538,22 @@
17504
17538
  var tmp1_safe_receiver = _this__u8e3s4.e78_1;
17505
17539
  return new EarnPointsClientSceneDataDto(tmp, _this__u8e3s4.c78_1, tmp_1, tmp1_safe_receiver == null ? null : mapToDto(tmp1_safe_receiver), _this__u8e3s4.f78_1);
17506
17540
  }
17507
- function mapFromDto_72(_this__u8e3s4) {
17541
+ function mapFromDto_74(_this__u8e3s4) {
17508
17542
  var tmp;
17509
17543
  if (_this__u8e3s4 instanceof WaitingSceneDataDto) {
17510
- tmp = mapFromDto_75(_this__u8e3s4);
17544
+ tmp = mapFromDto_77(_this__u8e3s4);
17511
17545
  } else {
17512
17546
  if (_this__u8e3s4 instanceof ChoosePartnerSceneDataDto) {
17513
- tmp = mapFromDto_76(_this__u8e3s4);
17547
+ tmp = mapFromDto_78(_this__u8e3s4);
17514
17548
  } else {
17515
17549
  if (_this__u8e3s4 instanceof TradeClientSceneDataDto) {
17516
- tmp = mapFromDto_73(_this__u8e3s4);
17550
+ tmp = mapFromDto_75(_this__u8e3s4);
17517
17551
  } else {
17518
17552
  if (_this__u8e3s4 instanceof EarnPointsClientSceneDataDto) {
17519
- tmp = mapFromDto_74(_this__u8e3s4);
17553
+ tmp = mapFromDto_76(_this__u8e3s4);
17520
17554
  } else {
17521
17555
  if (_this__u8e3s4 instanceof CalcPointsSceneDataDto) {
17522
- tmp = mapFromDto_77(_this__u8e3s4);
17556
+ tmp = mapFromDto_79(_this__u8e3s4);
17523
17557
  } else {
17524
17558
  throw new MechanicException("Can't map this scene " + toString(_this__u8e3s4) + ' in ClientSceneDataDto.mapFromDto');
17525
17559
  }
@@ -17529,9 +17563,9 @@
17529
17563
  }
17530
17564
  return tmp;
17531
17565
  }
17532
- function mapFromDto_73(_this__u8e3s4) {
17566
+ function mapFromDto_75(_this__u8e3s4) {
17533
17567
  // Inline function 'kotlin.collections.map' call
17534
- var this_0 = _this__u8e3s4.k7x_1;
17568
+ var this_0 = _this__u8e3s4.n7x_1;
17535
17569
  // Inline function 'kotlin.collections.mapTo' call
17536
17570
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
17537
17571
  var tmp0_iterator = this_0.j();
@@ -17542,13 +17576,13 @@
17542
17576
  destination.e(tmp$ret$0);
17543
17577
  }
17544
17578
  var tmp = destination;
17545
- var tmp_0 = mapFromDto(_this__u8e3s4.m7x_1);
17546
- var tmp0_safe_receiver = _this__u8e3s4.p7x_1;
17547
- return new TradeClientSceneData(tmp, _this__u8e3s4.l7x_1, tmp_0, _this__u8e3s4.n7x_1, tmp0_safe_receiver == null ? null : mapFromDto_12(tmp0_safe_receiver), _this__u8e3s4.o7x_1);
17579
+ var tmp_0 = mapFromDto(_this__u8e3s4.p7x_1);
17580
+ var tmp0_safe_receiver = _this__u8e3s4.s7x_1;
17581
+ return new TradeClientSceneData(tmp, _this__u8e3s4.o7x_1, tmp_0, _this__u8e3s4.q7x_1, tmp0_safe_receiver == null ? null : mapFromDto_12(tmp0_safe_receiver), _this__u8e3s4.r7x_1);
17548
17582
  }
17549
- function mapFromDto_74(_this__u8e3s4) {
17583
+ function mapFromDto_76(_this__u8e3s4) {
17550
17584
  // Inline function 'kotlin.collections.map' call
17551
- var this_0 = _this__u8e3s4.q7x_1;
17585
+ var this_0 = _this__u8e3s4.t7x_1;
17552
17586
  // Inline function 'kotlin.collections.mapTo' call
17553
17587
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
17554
17588
  var tmp0_iterator = this_0.j();
@@ -17559,7 +17593,7 @@
17559
17593
  destination.e(tmp$ret$0);
17560
17594
  }
17561
17595
  var tmp = destination;
17562
- var tmp0_safe_receiver = _this__u8e3s4.s7x_1;
17596
+ var tmp0_safe_receiver = _this__u8e3s4.v7x_1;
17563
17597
  var tmp_0;
17564
17598
  if (tmp0_safe_receiver == null) {
17565
17599
  tmp_0 = null;
@@ -17577,16 +17611,16 @@
17577
17611
  tmp_0 = destination_0;
17578
17612
  }
17579
17613
  var tmp_1 = tmp_0;
17580
- var tmp1_safe_receiver = _this__u8e3s4.t7x_1;
17581
- return new EarnPointsClientSceneData(tmp, _this__u8e3s4.r7x_1, tmp_1, tmp1_safe_receiver == null ? null : mapFromDto(tmp1_safe_receiver), _this__u8e3s4.u7x_1);
17614
+ var tmp1_safe_receiver = _this__u8e3s4.w7x_1;
17615
+ return new EarnPointsClientSceneData(tmp, _this__u8e3s4.u7x_1, tmp_1, tmp1_safe_receiver == null ? null : mapFromDto(tmp1_safe_receiver), _this__u8e3s4.x7x_1);
17582
17616
  }
17583
- function mapToDto_99(_this__u8e3s4) {
17617
+ function mapToDto_101(_this__u8e3s4) {
17584
17618
  return WaitingSceneDataDto_getInstance();
17585
17619
  }
17586
- function mapToDto_100(_this__u8e3s4) {
17620
+ function mapToDto_102(_this__u8e3s4) {
17587
17621
  return new ChoosePartnerSceneDataDto(_this__u8e3s4.q78_1);
17588
17622
  }
17589
- function mapToDto_101(_this__u8e3s4) {
17623
+ function mapToDto_103(_this__u8e3s4) {
17590
17624
  var tmp0_safe_receiver = _this__u8e3s4.j78_1;
17591
17625
  var tmp;
17592
17626
  if (tmp0_safe_receiver == null) {
@@ -17641,15 +17675,15 @@
17641
17675
  }
17642
17676
  return new CalcPointsSceneDataDto(_this__u8e3s4.g78_1, _this__u8e3s4.h78_1, _this__u8e3s4.i78_1, tmp_1, _this__u8e3s4.k78_1, tmp_2, tmp_3);
17643
17677
  }
17644
- function mapFromDto_75(_this__u8e3s4) {
17678
+ function mapFromDto_77(_this__u8e3s4) {
17645
17679
  return WaitingSceneData_getInstance();
17646
17680
  }
17647
- function mapFromDto_76(_this__u8e3s4) {
17648
- return new ChoosePartnerSceneData(_this__u8e3s4.v7x_1);
17681
+ function mapFromDto_78(_this__u8e3s4) {
17682
+ return new ChoosePartnerSceneData(_this__u8e3s4.y7x_1);
17649
17683
  }
17650
- function mapFromDto_77(_this__u8e3s4) {
17684
+ function mapFromDto_79(_this__u8e3s4) {
17651
17685
  // Inline function 'kotlin.collections.map' call
17652
- var this_0 = _this__u8e3s4.b7y_1;
17686
+ var this_0 = _this__u8e3s4.e7y_1;
17653
17687
  // Inline function 'kotlin.collections.mapTo' call
17654
17688
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
17655
17689
  var tmp0_iterator = this_0.j();
@@ -17660,7 +17694,7 @@
17660
17694
  destination.e(tmp$ret$0);
17661
17695
  }
17662
17696
  var tmp = destination;
17663
- var tmp0_safe_receiver = _this__u8e3s4.c7y_1;
17697
+ var tmp0_safe_receiver = _this__u8e3s4.f7y_1;
17664
17698
  var tmp_0;
17665
17699
  if (tmp0_safe_receiver == null) {
17666
17700
  tmp_0 = null;
@@ -17682,7 +17716,7 @@
17682
17716
  }
17683
17717
  tmp_0 = destination_0;
17684
17718
  }
17685
- return new CalcPointsSceneData(_this__u8e3s4.w7x_1, _this__u8e3s4.x7x_1, _this__u8e3s4.y7x_1, _this__u8e3s4.z7x_1, _this__u8e3s4.a7y_1, tmp, tmp_0);
17719
+ return new CalcPointsSceneData(_this__u8e3s4.z7x_1, _this__u8e3s4.a7y_1, _this__u8e3s4.b7y_1, _this__u8e3s4.c7y_1, _this__u8e3s4.d7y_1, tmp, tmp_0);
17686
17720
  }
17687
17721
  function _get_$cachedSerializer__te6jhj_7($this) {
17688
17722
  return $this.h7d_1.u();
@@ -17735,7 +17769,7 @@
17735
17769
  Companion_getInstance_63();
17736
17770
  }
17737
17771
  function _get_$cachedSerializer__te6jhj_8($this) {
17738
- return $this.d7y_1.u();
17772
+ return $this.g7y_1.u();
17739
17773
  }
17740
17774
  function FallbackMessageDto$_anonymous__bgtvr7() {
17741
17775
  var tmp = FallbackMessageDto_getInstance();
@@ -17750,7 +17784,7 @@
17750
17784
  MessageDto.call(this);
17751
17785
  var tmp = this;
17752
17786
  var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
17753
- tmp.d7y_1 = lazy_0(tmp_0, FallbackMessageDto$_anonymous__bgtvr7);
17787
+ tmp.g7y_1 = lazy_0(tmp_0, FallbackMessageDto$_anonymous__bgtvr7);
17754
17788
  }
17755
17789
  protoOf(FallbackMessageDto).j4t = function () {
17756
17790
  return _get_$cachedSerializer__te6jhj_8(this);
@@ -17784,7 +17818,7 @@
17784
17818
  // Inline function 'kotlin.arrayOf' call
17785
17819
  // Inline function 'kotlin.js.unsafeCast' call
17786
17820
  // Inline function 'kotlin.js.asDynamic' call
17787
- tmp.e7y_1 = [null, null, new ArrayListSerializer(StringSerializer_getInstance()), null];
17821
+ tmp.h7y_1 = [null, null, new ArrayListSerializer(StringSerializer_getInstance()), null];
17788
17822
  }
17789
17823
  var Companion_instance_62;
17790
17824
  function Companion_getInstance_64() {
@@ -17799,12 +17833,12 @@
17799
17833
  tmp0_serialDesc.g4c('createdAt', false);
17800
17834
  tmp0_serialDesc.g4c('combinationTypes', false);
17801
17835
  tmp0_serialDesc.g4c('userInfo', false);
17802
- this.f7y_1 = tmp0_serialDesc;
17836
+ this.i7y_1 = tmp0_serialDesc;
17803
17837
  }
17804
- protoOf($serializer_29).g7y = function (encoder, value) {
17805
- var tmp0_desc = this.f7y_1;
17838
+ protoOf($serializer_29).j7y = function (encoder, value) {
17839
+ var tmp0_desc = this.i7y_1;
17806
17840
  var tmp1_output = encoder.s44(tmp0_desc);
17807
- var tmp2_cached = Companion_getInstance_64().e7y_1;
17841
+ var tmp2_cached = Companion_getInstance_64().h7y_1;
17808
17842
  tmp1_output.g46(tmp0_desc, 0, value.k7p_1);
17809
17843
  tmp1_output.g46(tmp0_desc, 1, value.l7p_1);
17810
17844
  tmp1_output.i46(tmp0_desc, 2, tmp2_cached[2], value.m7p_1);
@@ -17812,10 +17846,10 @@
17812
17846
  tmp1_output.t44(tmp0_desc);
17813
17847
  };
17814
17848
  protoOf($serializer_29).f41 = function (encoder, value) {
17815
- return this.g7y(encoder, value instanceof CombinationMessageDto ? value : THROW_CCE());
17849
+ return this.j7y(encoder, value instanceof CombinationMessageDto ? value : THROW_CCE());
17816
17850
  };
17817
17851
  protoOf($serializer_29).g41 = function (decoder) {
17818
- var tmp0_desc = this.f7y_1;
17852
+ var tmp0_desc = this.i7y_1;
17819
17853
  var tmp1_flag = true;
17820
17854
  var tmp2_index = 0;
17821
17855
  var tmp3_bitMask0 = 0;
@@ -17824,7 +17858,7 @@
17824
17858
  var tmp6_local2 = null;
17825
17859
  var tmp7_local3 = null;
17826
17860
  var tmp8_input = decoder.s44(tmp0_desc);
17827
- var tmp9_cached = Companion_getInstance_64().e7y_1;
17861
+ var tmp9_cached = Companion_getInstance_64().h7y_1;
17828
17862
  if (tmp8_input.h45()) {
17829
17863
  tmp4_local0 = tmp8_input.c45(tmp0_desc, 0);
17830
17864
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -17865,10 +17899,10 @@
17865
17899
  return CombinationMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
17866
17900
  };
17867
17901
  protoOf($serializer_29).e41 = function () {
17868
- return this.f7y_1;
17902
+ return this.i7y_1;
17869
17903
  };
17870
17904
  protoOf($serializer_29).v4c = function () {
17871
- var tmp0_cached = Companion_getInstance_64().e7y_1;
17905
+ var tmp0_cached = Companion_getInstance_64().h7y_1;
17872
17906
  // Inline function 'kotlin.arrayOf' call
17873
17907
  // Inline function 'kotlin.js.unsafeCast' call
17874
17908
  // Inline function 'kotlin.js.asDynamic' call
@@ -17882,7 +17916,7 @@
17882
17916
  }
17883
17917
  function CombinationMessageDto_init_$Init$(seen0, id, createdAt, combinationTypes, userInfo, serializationConstructorMarker, $this) {
17884
17918
  if (!(15 === (15 & seen0))) {
17885
- throwMissingFieldException(seen0, 15, $serializer_getInstance_31().f7y_1);
17919
+ throwMissingFieldException(seen0, 15, $serializer_getInstance_31().i7y_1);
17886
17920
  }
17887
17921
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
17888
17922
  $this.k7p_1 = id;
@@ -17940,10 +17974,10 @@
17940
17974
  tmp0_serialDesc.g4c('id', false);
17941
17975
  tmp0_serialDesc.g4c('createdAt', false);
17942
17976
  tmp0_serialDesc.g4c('eventId', false);
17943
- this.h7y_1 = tmp0_serialDesc;
17977
+ this.k7y_1 = tmp0_serialDesc;
17944
17978
  }
17945
- protoOf($serializer_30).i7y = function (encoder, value) {
17946
- var tmp0_desc = this.h7y_1;
17979
+ protoOf($serializer_30).l7y = function (encoder, value) {
17980
+ var tmp0_desc = this.k7y_1;
17947
17981
  var tmp1_output = encoder.s44(tmp0_desc);
17948
17982
  tmp1_output.g46(tmp0_desc, 0, value.f7q_1);
17949
17983
  tmp1_output.g46(tmp0_desc, 1, value.g7q_1);
@@ -17951,10 +17985,10 @@
17951
17985
  tmp1_output.t44(tmp0_desc);
17952
17986
  };
17953
17987
  protoOf($serializer_30).f41 = function (encoder, value) {
17954
- return this.i7y(encoder, value instanceof EventMessageDto ? value : THROW_CCE());
17988
+ return this.l7y(encoder, value instanceof EventMessageDto ? value : THROW_CCE());
17955
17989
  };
17956
17990
  protoOf($serializer_30).g41 = function (decoder) {
17957
- var tmp0_desc = this.h7y_1;
17991
+ var tmp0_desc = this.k7y_1;
17958
17992
  var tmp1_flag = true;
17959
17993
  var tmp2_index = 0;
17960
17994
  var tmp3_bitMask0 = 0;
@@ -17996,7 +18030,7 @@
17996
18030
  return EventMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
17997
18031
  };
17998
18032
  protoOf($serializer_30).e41 = function () {
17999
- return this.h7y_1;
18033
+ return this.k7y_1;
18000
18034
  };
18001
18035
  protoOf($serializer_30).v4c = function () {
18002
18036
  // Inline function 'kotlin.arrayOf' call
@@ -18012,7 +18046,7 @@
18012
18046
  }
18013
18047
  function EventMessageDto_init_$Init$(seen0, id, createdAt, eventId, serializationConstructorMarker, $this) {
18014
18048
  if (!(7 === (7 & seen0))) {
18015
- throwMissingFieldException(seen0, 7, $serializer_getInstance_32().h7y_1);
18049
+ throwMissingFieldException(seen0, 7, $serializer_getInstance_32().k7y_1);
18016
18050
  }
18017
18051
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
18018
18052
  $this.f7q_1 = id;
@@ -18066,10 +18100,10 @@
18066
18100
  tmp0_serialDesc.g4c('id', false);
18067
18101
  tmp0_serialDesc.g4c('userInfo', false);
18068
18102
  tmp0_serialDesc.g4c('createdAt', false);
18069
- this.j7y_1 = tmp0_serialDesc;
18103
+ this.m7y_1 = tmp0_serialDesc;
18070
18104
  }
18071
- protoOf($serializer_31).k7y = function (encoder, value) {
18072
- var tmp0_desc = this.j7y_1;
18105
+ protoOf($serializer_31).n7y = function (encoder, value) {
18106
+ var tmp0_desc = this.m7y_1;
18073
18107
  var tmp1_output = encoder.s44(tmp0_desc);
18074
18108
  if (tmp1_output.o46(tmp0_desc, 0) ? true : !(value.b7p_1 == null)) {
18075
18109
  tmp1_output.k46(tmp0_desc, 0, IntSerializer_getInstance(), value.b7p_1);
@@ -18083,10 +18117,10 @@
18083
18117
  tmp1_output.t44(tmp0_desc);
18084
18118
  };
18085
18119
  protoOf($serializer_31).f41 = function (encoder, value) {
18086
- return this.k7y(encoder, value instanceof PhraseMessageDto ? value : THROW_CCE());
18120
+ return this.n7y(encoder, value instanceof PhraseMessageDto ? value : THROW_CCE());
18087
18121
  };
18088
18122
  protoOf($serializer_31).g41 = function (decoder) {
18089
- var tmp0_desc = this.j7y_1;
18123
+ var tmp0_desc = this.m7y_1;
18090
18124
  var tmp1_flag = true;
18091
18125
  var tmp2_index = 0;
18092
18126
  var tmp3_bitMask0 = 0;
@@ -18142,7 +18176,7 @@
18142
18176
  return PhraseMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
18143
18177
  };
18144
18178
  protoOf($serializer_31).e41 = function () {
18145
- return this.j7y_1;
18179
+ return this.m7y_1;
18146
18180
  };
18147
18181
  protoOf($serializer_31).v4c = function () {
18148
18182
  // Inline function 'kotlin.arrayOf' call
@@ -18158,7 +18192,7 @@
18158
18192
  }
18159
18193
  function PhraseMessageDto_init_$Init$(seen0, phraseType, key, id, userInfo, createdAt, serializationConstructorMarker, $this) {
18160
18194
  if (!(28 === (28 & seen0))) {
18161
- throwMissingFieldException(seen0, 28, $serializer_getInstance_33().j7y_1);
18195
+ throwMissingFieldException(seen0, 28, $serializer_getInstance_33().m7y_1);
18162
18196
  }
18163
18197
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
18164
18198
  if (0 === (seen0 & 1))
@@ -18222,7 +18256,7 @@
18222
18256
  // Inline function 'kotlin.arrayOf' call
18223
18257
  // Inline function 'kotlin.js.unsafeCast' call
18224
18258
  // Inline function 'kotlin.js.asDynamic' call
18225
- tmp.l7y_1 = [null, null, null, null, new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer($serializer_getInstance_42())];
18259
+ tmp.o7y_1 = [null, null, null, null, new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer($serializer_getInstance_42())];
18226
18260
  }
18227
18261
  var Companion_instance_65;
18228
18262
  function Companion_getInstance_67() {
@@ -18240,12 +18274,12 @@
18240
18274
  tmp0_serialDesc.g4c('roundCommitted', true);
18241
18275
  tmp0_serialDesc.g4c('roundWinners', true);
18242
18276
  tmp0_serialDesc.g4c('points', false);
18243
- this.m7y_1 = tmp0_serialDesc;
18277
+ this.p7y_1 = tmp0_serialDesc;
18244
18278
  }
18245
- protoOf($serializer_32).n7y = function (encoder, value) {
18246
- var tmp0_desc = this.m7y_1;
18279
+ protoOf($serializer_32).q7y = function (encoder, value) {
18280
+ var tmp0_desc = this.p7y_1;
18247
18281
  var tmp1_output = encoder.s44(tmp0_desc);
18248
- var tmp2_cached = Companion_getInstance_67().l7y_1;
18282
+ var tmp2_cached = Companion_getInstance_67().o7y_1;
18249
18283
  tmp1_output.g46(tmp0_desc, 0, value.o7p_1);
18250
18284
  tmp1_output.g46(tmp0_desc, 1, value.p7p_1);
18251
18285
  tmp1_output.b46(tmp0_desc, 2, value.q7p_1);
@@ -18260,10 +18294,10 @@
18260
18294
  tmp1_output.t44(tmp0_desc);
18261
18295
  };
18262
18296
  protoOf($serializer_32).f41 = function (encoder, value) {
18263
- return this.n7y(encoder, value instanceof PreviousRoundPointsMessageDto ? value : THROW_CCE());
18297
+ return this.q7y(encoder, value instanceof PreviousRoundPointsMessageDto ? value : THROW_CCE());
18264
18298
  };
18265
18299
  protoOf($serializer_32).g41 = function (decoder) {
18266
- var tmp0_desc = this.m7y_1;
18300
+ var tmp0_desc = this.p7y_1;
18267
18301
  var tmp1_flag = true;
18268
18302
  var tmp2_index = 0;
18269
18303
  var tmp3_bitMask0 = 0;
@@ -18275,7 +18309,7 @@
18275
18309
  var tmp9_local5 = null;
18276
18310
  var tmp10_local6 = null;
18277
18311
  var tmp11_input = decoder.s44(tmp0_desc);
18278
- var tmp12_cached = Companion_getInstance_67().l7y_1;
18312
+ var tmp12_cached = Companion_getInstance_67().o7y_1;
18279
18313
  if (tmp11_input.h45()) {
18280
18314
  tmp4_local0 = tmp11_input.c45(tmp0_desc, 0);
18281
18315
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -18334,10 +18368,10 @@
18334
18368
  return PreviousRoundPointsMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, null);
18335
18369
  };
18336
18370
  protoOf($serializer_32).e41 = function () {
18337
- return this.m7y_1;
18371
+ return this.p7y_1;
18338
18372
  };
18339
18373
  protoOf($serializer_32).v4c = function () {
18340
- var tmp0_cached = Companion_getInstance_67().l7y_1;
18374
+ var tmp0_cached = Companion_getInstance_67().o7y_1;
18341
18375
  // Inline function 'kotlin.arrayOf' call
18342
18376
  // Inline function 'kotlin.js.unsafeCast' call
18343
18377
  // Inline function 'kotlin.js.asDynamic' call
@@ -18351,7 +18385,7 @@
18351
18385
  }
18352
18386
  function PreviousRoundPointsMessageDto_init_$Init$(seen0, id, createdAt, roundNumber, roundContractState, roundCommitted, roundWinners, points, serializationConstructorMarker, $this) {
18353
18387
  if (!(79 === (79 & seen0))) {
18354
- throwMissingFieldException(seen0, 79, $serializer_getInstance_34().m7y_1);
18388
+ throwMissingFieldException(seen0, 79, $serializer_getInstance_34().p7y_1);
18355
18389
  }
18356
18390
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
18357
18391
  $this.o7p_1 = id;
@@ -18432,10 +18466,10 @@
18432
18466
  tmp0_serialDesc.g4c('id', false);
18433
18467
  tmp0_serialDesc.g4c('createdAt', false);
18434
18468
  tmp0_serialDesc.g4c('randomData', false);
18435
- this.o7y_1 = tmp0_serialDesc;
18469
+ this.r7y_1 = tmp0_serialDesc;
18436
18470
  }
18437
- protoOf($serializer_33).p7y = function (encoder, value) {
18438
- var tmp0_desc = this.o7y_1;
18471
+ protoOf($serializer_33).s7y = function (encoder, value) {
18472
+ var tmp0_desc = this.r7y_1;
18439
18473
  var tmp1_output = encoder.s44(tmp0_desc);
18440
18474
  tmp1_output.g46(tmp0_desc, 0, value.i7q_1);
18441
18475
  tmp1_output.g46(tmp0_desc, 1, value.j7q_1);
@@ -18443,10 +18477,10 @@
18443
18477
  tmp1_output.t44(tmp0_desc);
18444
18478
  };
18445
18479
  protoOf($serializer_33).f41 = function (encoder, value) {
18446
- return this.p7y(encoder, value instanceof RandomSignatureMessageDto ? value : THROW_CCE());
18480
+ return this.s7y(encoder, value instanceof RandomSignatureMessageDto ? value : THROW_CCE());
18447
18481
  };
18448
18482
  protoOf($serializer_33).g41 = function (decoder) {
18449
- var tmp0_desc = this.o7y_1;
18483
+ var tmp0_desc = this.r7y_1;
18450
18484
  var tmp1_flag = true;
18451
18485
  var tmp2_index = 0;
18452
18486
  var tmp3_bitMask0 = 0;
@@ -18488,7 +18522,7 @@
18488
18522
  return RandomSignatureMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
18489
18523
  };
18490
18524
  protoOf($serializer_33).e41 = function () {
18491
- return this.o7y_1;
18525
+ return this.r7y_1;
18492
18526
  };
18493
18527
  protoOf($serializer_33).v4c = function () {
18494
18528
  // Inline function 'kotlin.arrayOf' call
@@ -18504,7 +18538,7 @@
18504
18538
  }
18505
18539
  function RandomSignatureMessageDto_init_$Init$(seen0, id, createdAt, randomData, serializationConstructorMarker, $this) {
18506
18540
  if (!(7 === (7 & seen0))) {
18507
- throwMissingFieldException(seen0, 7, $serializer_getInstance_35().o7y_1);
18541
+ throwMissingFieldException(seen0, 7, $serializer_getInstance_35().r7y_1);
18508
18542
  }
18509
18543
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
18510
18544
  $this.i7q_1 = id;
@@ -18557,10 +18591,10 @@
18557
18591
  tmp0_serialDesc.g4c('id', false);
18558
18592
  tmp0_serialDesc.g4c('userInfo', false);
18559
18593
  tmp0_serialDesc.g4c('createdAt', false);
18560
- this.q7y_1 = tmp0_serialDesc;
18594
+ this.t7y_1 = tmp0_serialDesc;
18561
18595
  }
18562
- protoOf($serializer_34).r7y = function (encoder, value) {
18563
- var tmp0_desc = this.q7y_1;
18596
+ protoOf($serializer_34).u7y = function (encoder, value) {
18597
+ var tmp0_desc = this.t7y_1;
18564
18598
  var tmp1_output = encoder.s44(tmp0_desc);
18565
18599
  tmp1_output.g46(tmp0_desc, 0, value.g7p_1);
18566
18600
  tmp1_output.g46(tmp0_desc, 1, value.h7p_1);
@@ -18569,10 +18603,10 @@
18569
18603
  tmp1_output.t44(tmp0_desc);
18570
18604
  };
18571
18605
  protoOf($serializer_34).f41 = function (encoder, value) {
18572
- return this.r7y(encoder, value instanceof StickerMessageDto ? value : THROW_CCE());
18606
+ return this.u7y(encoder, value instanceof StickerMessageDto ? value : THROW_CCE());
18573
18607
  };
18574
18608
  protoOf($serializer_34).g41 = function (decoder) {
18575
- var tmp0_desc = this.q7y_1;
18609
+ var tmp0_desc = this.t7y_1;
18576
18610
  var tmp1_flag = true;
18577
18611
  var tmp2_index = 0;
18578
18612
  var tmp3_bitMask0 = 0;
@@ -18621,7 +18655,7 @@
18621
18655
  return StickerMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
18622
18656
  };
18623
18657
  protoOf($serializer_34).e41 = function () {
18624
- return this.q7y_1;
18658
+ return this.t7y_1;
18625
18659
  };
18626
18660
  protoOf($serializer_34).v4c = function () {
18627
18661
  // Inline function 'kotlin.arrayOf' call
@@ -18637,7 +18671,7 @@
18637
18671
  }
18638
18672
  function StickerMessageDto_init_$Init$(seen0, url, id, userInfo, createdAt, serializationConstructorMarker, $this) {
18639
18673
  if (!(15 === (15 & seen0))) {
18640
- throwMissingFieldException(seen0, 15, $serializer_getInstance_36().q7y_1);
18674
+ throwMissingFieldException(seen0, 15, $serializer_getInstance_36().t7y_1);
18641
18675
  }
18642
18676
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
18643
18677
  $this.g7p_1 = url;
@@ -18695,10 +18729,10 @@
18695
18729
  tmp0_serialDesc.g4c('createdAt', false);
18696
18730
  tmp0_serialDesc.g4c('message', false);
18697
18731
  tmp0_serialDesc.g4c('userInfo', false);
18698
- this.s7y_1 = tmp0_serialDesc;
18732
+ this.v7y_1 = tmp0_serialDesc;
18699
18733
  }
18700
- protoOf($serializer_35).t7y = function (encoder, value) {
18701
- var tmp0_desc = this.s7y_1;
18734
+ protoOf($serializer_35).w7y = function (encoder, value) {
18735
+ var tmp0_desc = this.v7y_1;
18702
18736
  var tmp1_output = encoder.s44(tmp0_desc);
18703
18737
  tmp1_output.g46(tmp0_desc, 0, value.v7p_1);
18704
18738
  tmp1_output.g46(tmp0_desc, 1, value.w7p_1);
@@ -18707,10 +18741,10 @@
18707
18741
  tmp1_output.t44(tmp0_desc);
18708
18742
  };
18709
18743
  protoOf($serializer_35).f41 = function (encoder, value) {
18710
- return this.t7y(encoder, value instanceof TextMessageDto ? value : THROW_CCE());
18744
+ return this.w7y(encoder, value instanceof TextMessageDto ? value : THROW_CCE());
18711
18745
  };
18712
18746
  protoOf($serializer_35).g41 = function (decoder) {
18713
- var tmp0_desc = this.s7y_1;
18747
+ var tmp0_desc = this.v7y_1;
18714
18748
  var tmp1_flag = true;
18715
18749
  var tmp2_index = 0;
18716
18750
  var tmp3_bitMask0 = 0;
@@ -18759,7 +18793,7 @@
18759
18793
  return TextMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
18760
18794
  };
18761
18795
  protoOf($serializer_35).e41 = function () {
18762
- return this.s7y_1;
18796
+ return this.v7y_1;
18763
18797
  };
18764
18798
  protoOf($serializer_35).v4c = function () {
18765
18799
  // Inline function 'kotlin.arrayOf' call
@@ -18775,7 +18809,7 @@
18775
18809
  }
18776
18810
  function TextMessageDto_init_$Init$(seen0, id, createdAt, message, userInfo, serializationConstructorMarker, $this) {
18777
18811
  if (!(15 === (15 & seen0))) {
18778
- throwMissingFieldException(seen0, 15, $serializer_getInstance_37().s7y_1);
18812
+ throwMissingFieldException(seen0, 15, $serializer_getInstance_37().v7y_1);
18779
18813
  }
18780
18814
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
18781
18815
  $this.v7p_1 = id;
@@ -18826,7 +18860,7 @@
18826
18860
  // Inline function 'kotlin.arrayOf' call
18827
18861
  // Inline function 'kotlin.js.unsafeCast' call
18828
18862
  // Inline function 'kotlin.js.asDynamic' call
18829
- tmp.u7y_1 = [null, null, Companion_getInstance_15().j4t()];
18863
+ tmp.x7y_1 = [null, null, Companion_getInstance_15().j4t()];
18830
18864
  }
18831
18865
  var Companion_instance_69;
18832
18866
  function Companion_getInstance_71() {
@@ -18840,22 +18874,22 @@
18840
18874
  tmp0_serialDesc.g4c('id', false);
18841
18875
  tmp0_serialDesc.g4c('createdAt', false);
18842
18876
  tmp0_serialDesc.g4c('validationCode', false);
18843
- this.v7y_1 = tmp0_serialDesc;
18877
+ this.y7y_1 = tmp0_serialDesc;
18844
18878
  }
18845
- protoOf($serializer_36).w7y = function (encoder, value) {
18846
- var tmp0_desc = this.v7y_1;
18879
+ protoOf($serializer_36).z7y = function (encoder, value) {
18880
+ var tmp0_desc = this.y7y_1;
18847
18881
  var tmp1_output = encoder.s44(tmp0_desc);
18848
- var tmp2_cached = Companion_getInstance_71().u7y_1;
18882
+ var tmp2_cached = Companion_getInstance_71().x7y_1;
18849
18883
  tmp1_output.g46(tmp0_desc, 0, value.c7q_1);
18850
18884
  tmp1_output.g46(tmp0_desc, 1, value.d7q_1);
18851
18885
  tmp1_output.i46(tmp0_desc, 2, tmp2_cached[2], value.e7q_1);
18852
18886
  tmp1_output.t44(tmp0_desc);
18853
18887
  };
18854
18888
  protoOf($serializer_36).f41 = function (encoder, value) {
18855
- return this.w7y(encoder, value instanceof ValidationMessageDto ? value : THROW_CCE());
18889
+ return this.z7y(encoder, value instanceof ValidationMessageDto ? value : THROW_CCE());
18856
18890
  };
18857
18891
  protoOf($serializer_36).g41 = function (decoder) {
18858
- var tmp0_desc = this.v7y_1;
18892
+ var tmp0_desc = this.y7y_1;
18859
18893
  var tmp1_flag = true;
18860
18894
  var tmp2_index = 0;
18861
18895
  var tmp3_bitMask0 = 0;
@@ -18863,7 +18897,7 @@
18863
18897
  var tmp5_local1 = null;
18864
18898
  var tmp6_local2 = null;
18865
18899
  var tmp7_input = decoder.s44(tmp0_desc);
18866
- var tmp8_cached = Companion_getInstance_71().u7y_1;
18900
+ var tmp8_cached = Companion_getInstance_71().x7y_1;
18867
18901
  if (tmp7_input.h45()) {
18868
18902
  tmp4_local0 = tmp7_input.c45(tmp0_desc, 0);
18869
18903
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -18898,10 +18932,10 @@
18898
18932
  return ValidationMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
18899
18933
  };
18900
18934
  protoOf($serializer_36).e41 = function () {
18901
- return this.v7y_1;
18935
+ return this.y7y_1;
18902
18936
  };
18903
18937
  protoOf($serializer_36).v4c = function () {
18904
- var tmp0_cached = Companion_getInstance_71().u7y_1;
18938
+ var tmp0_cached = Companion_getInstance_71().x7y_1;
18905
18939
  // Inline function 'kotlin.arrayOf' call
18906
18940
  // Inline function 'kotlin.js.unsafeCast' call
18907
18941
  // Inline function 'kotlin.js.asDynamic' call
@@ -18915,7 +18949,7 @@
18915
18949
  }
18916
18950
  function ValidationMessageDto_init_$Init$(seen0, id, createdAt, validationCode, serializationConstructorMarker, $this) {
18917
18951
  if (!(7 === (7 & seen0))) {
18918
- throwMissingFieldException(seen0, 7, $serializer_getInstance_38().v7y_1);
18952
+ throwMissingFieldException(seen0, 7, $serializer_getInstance_38().y7y_1);
18919
18953
  }
18920
18954
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
18921
18955
  $this.c7q_1 = id;
@@ -18969,10 +19003,10 @@
18969
19003
  tmp0_serialDesc.g4c('id', false);
18970
19004
  tmp0_serialDesc.g4c('userInfo', false);
18971
19005
  tmp0_serialDesc.g4c('createdAt', false);
18972
- this.x7y_1 = tmp0_serialDesc;
19006
+ this.a7z_1 = tmp0_serialDesc;
18973
19007
  }
18974
- protoOf($serializer_37).y7y = function (encoder, value) {
18975
- var tmp0_desc = this.x7y_1;
19008
+ protoOf($serializer_37).b7z = function (encoder, value) {
19009
+ var tmp0_desc = this.a7z_1;
18976
19010
  var tmp1_output = encoder.s44(tmp0_desc);
18977
19011
  if (tmp1_output.o46(tmp0_desc, 0) ? true : !(value.x7o_1 == null)) {
18978
19012
  tmp1_output.k46(tmp0_desc, 0, IntSerializer_getInstance(), value.x7o_1);
@@ -18983,10 +19017,10 @@
18983
19017
  tmp1_output.t44(tmp0_desc);
18984
19018
  };
18985
19019
  protoOf($serializer_37).f41 = function (encoder, value) {
18986
- return this.y7y(encoder, value instanceof WhoShuffleCardsMessageDto ? value : THROW_CCE());
19020
+ return this.b7z(encoder, value instanceof WhoShuffleCardsMessageDto ? value : THROW_CCE());
18987
19021
  };
18988
19022
  protoOf($serializer_37).g41 = function (decoder) {
18989
- var tmp0_desc = this.x7y_1;
19023
+ var tmp0_desc = this.a7z_1;
18990
19024
  var tmp1_flag = true;
18991
19025
  var tmp2_index = 0;
18992
19026
  var tmp3_bitMask0 = 0;
@@ -19035,7 +19069,7 @@
19035
19069
  return WhoShuffleCardsMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
19036
19070
  };
19037
19071
  protoOf($serializer_37).e41 = function () {
19038
- return this.x7y_1;
19072
+ return this.a7z_1;
19039
19073
  };
19040
19074
  protoOf($serializer_37).v4c = function () {
19041
19075
  // Inline function 'kotlin.arrayOf' call
@@ -19051,7 +19085,7 @@
19051
19085
  }
19052
19086
  function WhoShuffleCardsMessageDto_init_$Init$(seen0, trumpCard, id, userInfo, createdAt, serializationConstructorMarker, $this) {
19053
19087
  if (!(14 === (14 & seen0))) {
19054
- throwMissingFieldException(seen0, 14, $serializer_getInstance_39().x7y_1);
19088
+ throwMissingFieldException(seen0, 14, $serializer_getInstance_39().a7z_1);
19055
19089
  }
19056
19090
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
19057
19091
  if (0 === (seen0 & 1))
@@ -19106,7 +19140,7 @@
19106
19140
  // Inline function 'kotlin.arrayOf' call
19107
19141
  // Inline function 'kotlin.js.unsafeCast' call
19108
19142
  // Inline function 'kotlin.js.asDynamic' call
19109
- tmp.z7y_1 = [null, null, new ArrayListSerializer($serializer_getInstance_41())];
19143
+ tmp.c7z_1 = [null, null, new ArrayListSerializer($serializer_getInstance_41())];
19110
19144
  }
19111
19145
  var Companion_instance_71;
19112
19146
  function Companion_getInstance_73() {
@@ -19120,22 +19154,22 @@
19120
19154
  tmp0_serialDesc.g4c('id', false);
19121
19155
  tmp0_serialDesc.g4c('createdAt', false);
19122
19156
  tmp0_serialDesc.g4c('combinations', false);
19123
- this.a7z_1 = tmp0_serialDesc;
19157
+ this.d7z_1 = tmp0_serialDesc;
19124
19158
  }
19125
- protoOf($serializer_38).b7z = function (encoder, value) {
19126
- var tmp0_desc = this.a7z_1;
19159
+ protoOf($serializer_38).e7z = function (encoder, value) {
19160
+ var tmp0_desc = this.d7z_1;
19127
19161
  var tmp1_output = encoder.s44(tmp0_desc);
19128
- var tmp2_cached = Companion_getInstance_73().z7y_1;
19162
+ var tmp2_cached = Companion_getInstance_73().c7z_1;
19129
19163
  tmp1_output.g46(tmp0_desc, 0, value.z7p_1);
19130
19164
  tmp1_output.g46(tmp0_desc, 1, value.a7q_1);
19131
19165
  tmp1_output.i46(tmp0_desc, 2, tmp2_cached[2], value.b7q_1);
19132
19166
  tmp1_output.t44(tmp0_desc);
19133
19167
  };
19134
19168
  protoOf($serializer_38).f41 = function (encoder, value) {
19135
- return this.b7z(encoder, value instanceof WinnerCombinationsMessageDto ? value : THROW_CCE());
19169
+ return this.e7z(encoder, value instanceof WinnerCombinationsMessageDto ? value : THROW_CCE());
19136
19170
  };
19137
19171
  protoOf($serializer_38).g41 = function (decoder) {
19138
- var tmp0_desc = this.a7z_1;
19172
+ var tmp0_desc = this.d7z_1;
19139
19173
  var tmp1_flag = true;
19140
19174
  var tmp2_index = 0;
19141
19175
  var tmp3_bitMask0 = 0;
@@ -19143,7 +19177,7 @@
19143
19177
  var tmp5_local1 = null;
19144
19178
  var tmp6_local2 = null;
19145
19179
  var tmp7_input = decoder.s44(tmp0_desc);
19146
- var tmp8_cached = Companion_getInstance_73().z7y_1;
19180
+ var tmp8_cached = Companion_getInstance_73().c7z_1;
19147
19181
  if (tmp7_input.h45()) {
19148
19182
  tmp4_local0 = tmp7_input.c45(tmp0_desc, 0);
19149
19183
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -19178,10 +19212,10 @@
19178
19212
  return WinnerCombinationsMessageDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
19179
19213
  };
19180
19214
  protoOf($serializer_38).e41 = function () {
19181
- return this.a7z_1;
19215
+ return this.d7z_1;
19182
19216
  };
19183
19217
  protoOf($serializer_38).v4c = function () {
19184
- var tmp0_cached = Companion_getInstance_73().z7y_1;
19218
+ var tmp0_cached = Companion_getInstance_73().c7z_1;
19185
19219
  // Inline function 'kotlin.arrayOf' call
19186
19220
  // Inline function 'kotlin.js.unsafeCast' call
19187
19221
  // Inline function 'kotlin.js.asDynamic' call
@@ -19195,7 +19229,7 @@
19195
19229
  }
19196
19230
  function WinnerCombinationsMessageDto_init_$Init$(seen0, id, createdAt, combinations, serializationConstructorMarker, $this) {
19197
19231
  if (!(7 === (7 & seen0))) {
19198
- throwMissingFieldException(seen0, 7, $serializer_getInstance_40().a7z_1);
19232
+ throwMissingFieldException(seen0, 7, $serializer_getInstance_40().d7z_1);
19199
19233
  }
19200
19234
  MessageDto_init_$Init$(seen0, serializationConstructorMarker, $this);
19201
19235
  $this.z7p_1 = id;
@@ -19242,7 +19276,7 @@
19242
19276
  // Inline function 'kotlin.arrayOf' call
19243
19277
  // Inline function 'kotlin.js.unsafeCast' call
19244
19278
  // Inline function 'kotlin.js.asDynamic' call
19245
- tmp.c7z_1 = [null, new ArrayListSerializer($serializer_getInstance_73()), null];
19279
+ tmp.f7z_1 = [null, new ArrayListSerializer($serializer_getInstance_73()), null];
19246
19280
  }
19247
19281
  var Companion_instance_72;
19248
19282
  function Companion_getInstance_74() {
@@ -19256,22 +19290,22 @@
19256
19290
  tmp0_serialDesc.g4c('reason', false);
19257
19291
  tmp0_serialDesc.g4c('combinations', false);
19258
19292
  tmp0_serialDesc.g4c('userInfo', false);
19259
- this.d7z_1 = tmp0_serialDesc;
19293
+ this.g7z_1 = tmp0_serialDesc;
19260
19294
  }
19261
- protoOf($serializer_39).e7z = function (encoder, value) {
19262
- var tmp0_desc = this.d7z_1;
19295
+ protoOf($serializer_39).h7z = function (encoder, value) {
19296
+ var tmp0_desc = this.g7z_1;
19263
19297
  var tmp1_output = encoder.s44(tmp0_desc);
19264
- var tmp2_cached = Companion_getInstance_74().c7z_1;
19298
+ var tmp2_cached = Companion_getInstance_74().f7z_1;
19265
19299
  tmp1_output.g46(tmp0_desc, 0, value.n7q_1);
19266
19300
  tmp1_output.i46(tmp0_desc, 1, tmp2_cached[1], value.o7q_1);
19267
19301
  tmp1_output.i46(tmp0_desc, 2, $serializer_getInstance(), value.p7q_1);
19268
19302
  tmp1_output.t44(tmp0_desc);
19269
19303
  };
19270
19304
  protoOf($serializer_39).f41 = function (encoder, value) {
19271
- return this.e7z(encoder, value instanceof WinnerCombinationViewModelDto ? value : THROW_CCE());
19305
+ return this.h7z(encoder, value instanceof WinnerCombinationViewModelDto ? value : THROW_CCE());
19272
19306
  };
19273
19307
  protoOf($serializer_39).g41 = function (decoder) {
19274
- var tmp0_desc = this.d7z_1;
19308
+ var tmp0_desc = this.g7z_1;
19275
19309
  var tmp1_flag = true;
19276
19310
  var tmp2_index = 0;
19277
19311
  var tmp3_bitMask0 = 0;
@@ -19279,7 +19313,7 @@
19279
19313
  var tmp5_local1 = null;
19280
19314
  var tmp6_local2 = null;
19281
19315
  var tmp7_input = decoder.s44(tmp0_desc);
19282
- var tmp8_cached = Companion_getInstance_74().c7z_1;
19316
+ var tmp8_cached = Companion_getInstance_74().f7z_1;
19283
19317
  if (tmp7_input.h45()) {
19284
19318
  tmp4_local0 = tmp7_input.c45(tmp0_desc, 0);
19285
19319
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -19314,10 +19348,10 @@
19314
19348
  return WinnerCombinationViewModelDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
19315
19349
  };
19316
19350
  protoOf($serializer_39).e41 = function () {
19317
- return this.d7z_1;
19351
+ return this.g7z_1;
19318
19352
  };
19319
19353
  protoOf($serializer_39).v4c = function () {
19320
- var tmp0_cached = Companion_getInstance_74().c7z_1;
19354
+ var tmp0_cached = Companion_getInstance_74().f7z_1;
19321
19355
  // Inline function 'kotlin.arrayOf' call
19322
19356
  // Inline function 'kotlin.js.unsafeCast' call
19323
19357
  // Inline function 'kotlin.js.asDynamic' call
@@ -19331,7 +19365,7 @@
19331
19365
  }
19332
19366
  function WinnerCombinationViewModelDto_init_$Init$(seen0, reason, combinations, userInfo, serializationConstructorMarker, $this) {
19333
19367
  if (!(7 === (7 & seen0))) {
19334
- throwMissingFieldException(seen0, 7, $serializer_getInstance_41().d7z_1);
19368
+ throwMissingFieldException(seen0, 7, $serializer_getInstance_41().g7z_1);
19335
19369
  }
19336
19370
  $this.n7q_1 = reason;
19337
19371
  $this.o7q_1 = combinations;
@@ -19376,7 +19410,7 @@
19376
19410
  // Inline function 'kotlin.arrayOf' call
19377
19411
  // Inline function 'kotlin.js.unsafeCast' call
19378
19412
  // Inline function 'kotlin.js.asDynamic' call
19379
- tmp.f7z_1 = [new ArrayListSerializer($serializer_getInstance()), null];
19413
+ tmp.i7z_1 = [new ArrayListSerializer($serializer_getInstance()), null];
19380
19414
  }
19381
19415
  var Companion_instance_73;
19382
19416
  function Companion_getInstance_75() {
@@ -19389,28 +19423,28 @@
19389
19423
  var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('games.jass.logic.data.models.serializable.messages.PointItemViewModelDto', this, 2);
19390
19424
  tmp0_serialDesc.g4c('users', false);
19391
19425
  tmp0_serialDesc.g4c('points', false);
19392
- this.g7z_1 = tmp0_serialDesc;
19426
+ this.j7z_1 = tmp0_serialDesc;
19393
19427
  }
19394
- protoOf($serializer_40).h7z = function (encoder, value) {
19395
- var tmp0_desc = this.g7z_1;
19428
+ protoOf($serializer_40).k7z = function (encoder, value) {
19429
+ var tmp0_desc = this.j7z_1;
19396
19430
  var tmp1_output = encoder.s44(tmp0_desc);
19397
- var tmp2_cached = Companion_getInstance_75().f7z_1;
19431
+ var tmp2_cached = Companion_getInstance_75().i7z_1;
19398
19432
  tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.l7q_1);
19399
19433
  tmp1_output.b46(tmp0_desc, 1, value.m7q_1);
19400
19434
  tmp1_output.t44(tmp0_desc);
19401
19435
  };
19402
19436
  protoOf($serializer_40).f41 = function (encoder, value) {
19403
- return this.h7z(encoder, value instanceof PointItemViewModelDto ? value : THROW_CCE());
19437
+ return this.k7z(encoder, value instanceof PointItemViewModelDto ? value : THROW_CCE());
19404
19438
  };
19405
19439
  protoOf($serializer_40).g41 = function (decoder) {
19406
- var tmp0_desc = this.g7z_1;
19440
+ var tmp0_desc = this.j7z_1;
19407
19441
  var tmp1_flag = true;
19408
19442
  var tmp2_index = 0;
19409
19443
  var tmp3_bitMask0 = 0;
19410
19444
  var tmp4_local0 = null;
19411
19445
  var tmp5_local1 = 0;
19412
19446
  var tmp6_input = decoder.s44(tmp0_desc);
19413
- var tmp7_cached = Companion_getInstance_75().f7z_1;
19447
+ var tmp7_cached = Companion_getInstance_75().i7z_1;
19414
19448
  if (tmp6_input.h45()) {
19415
19449
  tmp4_local0 = tmp6_input.e45(tmp0_desc, 0, tmp7_cached[0], tmp4_local0);
19416
19450
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -19439,13 +19473,13 @@
19439
19473
  return PointItemViewModelDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
19440
19474
  };
19441
19475
  protoOf($serializer_40).e41 = function () {
19442
- return this.g7z_1;
19476
+ return this.j7z_1;
19443
19477
  };
19444
19478
  protoOf($serializer_40).v4c = function () {
19445
19479
  // Inline function 'kotlin.arrayOf' call
19446
19480
  // Inline function 'kotlin.js.unsafeCast' call
19447
19481
  // Inline function 'kotlin.js.asDynamic' call
19448
- return [Companion_getInstance_75().f7z_1[0], IntSerializer_getInstance()];
19482
+ return [Companion_getInstance_75().i7z_1[0], IntSerializer_getInstance()];
19449
19483
  };
19450
19484
  var $serializer_instance_40;
19451
19485
  function $serializer_getInstance_42() {
@@ -19455,7 +19489,7 @@
19455
19489
  }
19456
19490
  function PointItemViewModelDto_init_$Init$(seen0, users, points, serializationConstructorMarker, $this) {
19457
19491
  if (!(3 === (3 & seen0))) {
19458
- throwMissingFieldException(seen0, 3, $serializer_getInstance_42().g7z_1);
19492
+ throwMissingFieldException(seen0, 3, $serializer_getInstance_42().j7z_1);
19459
19493
  }
19460
19494
  $this.l7q_1 = users;
19461
19495
  $this.m7q_1 = points;
@@ -19495,7 +19529,7 @@
19495
19529
  // Inline function 'kotlin.arrayOf' call
19496
19530
  // Inline function 'kotlin.js.unsafeCast' call
19497
19531
  // Inline function 'kotlin.js.asDynamic' call
19498
- tmp.i7z_1 = [null, null, null, null, new ArrayListSerializer(IntSerializer_getInstance()), null];
19532
+ tmp.l7z_1 = [null, null, null, null, new ArrayListSerializer(IntSerializer_getInstance()), null];
19499
19533
  }
19500
19534
  var Companion_instance_74;
19501
19535
  function Companion_getInstance_76() {
@@ -19512,12 +19546,12 @@
19512
19546
  tmp0_serialDesc.g4c('points', false);
19513
19547
  tmp0_serialDesc.g4c('cards', true);
19514
19548
  tmp0_serialDesc.g4c('amountOfCards', true);
19515
- this.j7z_1 = tmp0_serialDesc;
19549
+ this.m7z_1 = tmp0_serialDesc;
19516
19550
  }
19517
- protoOf($serializer_41).k7z = function (encoder, value) {
19518
- var tmp0_desc = this.j7z_1;
19551
+ protoOf($serializer_41).n7z = function (encoder, value) {
19552
+ var tmp0_desc = this.m7z_1;
19519
19553
  var tmp1_output = encoder.s44(tmp0_desc);
19520
- var tmp2_cached = Companion_getInstance_76().i7z_1;
19554
+ var tmp2_cached = Companion_getInstance_76().l7z_1;
19521
19555
  tmp1_output.i46(tmp0_desc, 0, $serializer_getInstance(), value.f7w_1);
19522
19556
  tmp1_output.i46(tmp0_desc, 1, $serializer_getInstance_52(), value.g7w_1);
19523
19557
  tmp1_output.i46(tmp0_desc, 2, $serializer_getInstance_48(), value.h7w_1);
@@ -19531,10 +19565,10 @@
19531
19565
  tmp1_output.t44(tmp0_desc);
19532
19566
  };
19533
19567
  protoOf($serializer_41).f41 = function (encoder, value) {
19534
- return this.k7z(encoder, value instanceof ClientJassPlayerDto ? value : THROW_CCE());
19568
+ return this.n7z(encoder, value instanceof ClientJassPlayerDto ? value : THROW_CCE());
19535
19569
  };
19536
19570
  protoOf($serializer_41).g41 = function (decoder) {
19537
- var tmp0_desc = this.j7z_1;
19571
+ var tmp0_desc = this.m7z_1;
19538
19572
  var tmp1_flag = true;
19539
19573
  var tmp2_index = 0;
19540
19574
  var tmp3_bitMask0 = 0;
@@ -19545,7 +19579,7 @@
19545
19579
  var tmp8_local4 = null;
19546
19580
  var tmp9_local5 = null;
19547
19581
  var tmp10_input = decoder.s44(tmp0_desc);
19548
- var tmp11_cached = Companion_getInstance_76().i7z_1;
19582
+ var tmp11_cached = Companion_getInstance_76().l7z_1;
19549
19583
  if (tmp10_input.h45()) {
19550
19584
  tmp4_local0 = tmp10_input.e45(tmp0_desc, 0, $serializer_getInstance(), tmp4_local0);
19551
19585
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -19598,10 +19632,10 @@
19598
19632
  return ClientJassPlayerDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, null);
19599
19633
  };
19600
19634
  protoOf($serializer_41).e41 = function () {
19601
- return this.j7z_1;
19635
+ return this.m7z_1;
19602
19636
  };
19603
19637
  protoOf($serializer_41).v4c = function () {
19604
- var tmp0_cached = Companion_getInstance_76().i7z_1;
19638
+ var tmp0_cached = Companion_getInstance_76().l7z_1;
19605
19639
  // Inline function 'kotlin.arrayOf' call
19606
19640
  // Inline function 'kotlin.js.unsafeCast' call
19607
19641
  // Inline function 'kotlin.js.asDynamic' call
@@ -19615,7 +19649,7 @@
19615
19649
  }
19616
19650
  function ClientJassPlayerDto_init_$Init$(seen0, userInfo, state, options, points, cards, amountOfCards, serializationConstructorMarker, $this) {
19617
19651
  if (!(15 === (15 & seen0))) {
19618
- throwMissingFieldException(seen0, 15, $serializer_getInstance_43().j7z_1);
19652
+ throwMissingFieldException(seen0, 15, $serializer_getInstance_43().m7z_1);
19619
19653
  }
19620
19654
  $this.f7w_1 = userInfo;
19621
19655
  $this.g7w_1 = state;
@@ -19683,10 +19717,10 @@
19683
19717
  tmp0_serialDesc.g4c('userInfo', false);
19684
19718
  tmp0_serialDesc.g4c('options', false);
19685
19719
  tmp0_serialDesc.g4c('points', false);
19686
- this.l7z_1 = tmp0_serialDesc;
19720
+ this.o7z_1 = tmp0_serialDesc;
19687
19721
  }
19688
- protoOf($serializer_42).m7z = function (encoder, value) {
19689
- var tmp0_desc = this.l7z_1;
19722
+ protoOf($serializer_42).p7z = function (encoder, value) {
19723
+ var tmp0_desc = this.o7z_1;
19690
19724
  var tmp1_output = encoder.s44(tmp0_desc);
19691
19725
  tmp1_output.i46(tmp0_desc, 0, $serializer_getInstance(), value.m7v_1);
19692
19726
  tmp1_output.i46(tmp0_desc, 1, $serializer_getInstance_48(), value.n7v_1);
@@ -19694,10 +19728,10 @@
19694
19728
  tmp1_output.t44(tmp0_desc);
19695
19729
  };
19696
19730
  protoOf($serializer_42).f41 = function (encoder, value) {
19697
- return this.m7z(encoder, value instanceof JassPlayerLiteDto ? value : THROW_CCE());
19731
+ return this.p7z(encoder, value instanceof JassPlayerLiteDto ? value : THROW_CCE());
19698
19732
  };
19699
19733
  protoOf($serializer_42).g41 = function (decoder) {
19700
- var tmp0_desc = this.l7z_1;
19734
+ var tmp0_desc = this.o7z_1;
19701
19735
  var tmp1_flag = true;
19702
19736
  var tmp2_index = 0;
19703
19737
  var tmp3_bitMask0 = 0;
@@ -19739,7 +19773,7 @@
19739
19773
  return JassPlayerLiteDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
19740
19774
  };
19741
19775
  protoOf($serializer_42).e41 = function () {
19742
- return this.l7z_1;
19776
+ return this.o7z_1;
19743
19777
  };
19744
19778
  protoOf($serializer_42).v4c = function () {
19745
19779
  // Inline function 'kotlin.arrayOf' call
@@ -19755,7 +19789,7 @@
19755
19789
  }
19756
19790
  function JassPlayerLiteDto_init_$Init$(seen0, userInfo, options, points, serializationConstructorMarker, $this) {
19757
19791
  if (!(7 === (7 & seen0))) {
19758
- throwMissingFieldException(seen0, 7, $serializer_getInstance_44().l7z_1);
19792
+ throwMissingFieldException(seen0, 7, $serializer_getInstance_44().o7z_1);
19759
19793
  }
19760
19794
  $this.m7v_1 = userInfo;
19761
19795
  $this.n7v_1 = options;
@@ -19801,20 +19835,20 @@
19801
19835
  var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('games.jass.logic.data.models.serializable.player.achievements.AchievementsDto', this, 2);
19802
19836
  tmp0_serialDesc.g4c('oldRating', false);
19803
19837
  tmp0_serialDesc.g4c('newRating', false);
19804
- this.n7z_1 = tmp0_serialDesc;
19838
+ this.q7z_1 = tmp0_serialDesc;
19805
19839
  }
19806
- protoOf($serializer_43).o7z = function (encoder, value) {
19807
- var tmp0_desc = this.n7z_1;
19840
+ protoOf($serializer_43).r7z = function (encoder, value) {
19841
+ var tmp0_desc = this.q7z_1;
19808
19842
  var tmp1_output = encoder.s44(tmp0_desc);
19809
19843
  tmp1_output.e46(tmp0_desc, 0, value.k7v_1);
19810
19844
  tmp1_output.e46(tmp0_desc, 1, value.l7v_1);
19811
19845
  tmp1_output.t44(tmp0_desc);
19812
19846
  };
19813
19847
  protoOf($serializer_43).f41 = function (encoder, value) {
19814
- return this.o7z(encoder, value instanceof AchievementsDto ? value : THROW_CCE());
19848
+ return this.r7z(encoder, value instanceof AchievementsDto ? value : THROW_CCE());
19815
19849
  };
19816
19850
  protoOf($serializer_43).g41 = function (decoder) {
19817
- var tmp0_desc = this.n7z_1;
19851
+ var tmp0_desc = this.q7z_1;
19818
19852
  var tmp1_flag = true;
19819
19853
  var tmp2_index = 0;
19820
19854
  var tmp3_bitMask0 = 0;
@@ -19849,7 +19883,7 @@
19849
19883
  return AchievementsDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
19850
19884
  };
19851
19885
  protoOf($serializer_43).e41 = function () {
19852
- return this.n7z_1;
19886
+ return this.q7z_1;
19853
19887
  };
19854
19888
  protoOf($serializer_43).v4c = function () {
19855
19889
  // Inline function 'kotlin.arrayOf' call
@@ -19865,7 +19899,7 @@
19865
19899
  }
19866
19900
  function AchievementsDto_init_$Init$(seen0, oldRating, newRating, serializationConstructorMarker, $this) {
19867
19901
  if (!(3 === (3 & seen0))) {
19868
- throwMissingFieldException(seen0, 3, $serializer_getInstance_45().n7z_1);
19902
+ throwMissingFieldException(seen0, 3, $serializer_getInstance_45().q7z_1);
19869
19903
  }
19870
19904
  $this.k7v_1 = oldRating;
19871
19905
  $this.l7v_1 = newRating;
@@ -19910,10 +19944,10 @@
19910
19944
  tmp0_serialDesc.g4c('type', false);
19911
19945
  tmp0_serialDesc.g4c('count', false);
19912
19946
  tmp0_serialDesc.g4c('acceptedCounts', false);
19913
- this.p7z_1 = tmp0_serialDesc;
19947
+ this.s7z_1 = tmp0_serialDesc;
19914
19948
  }
19915
- protoOf($serializer_44).q7z = function (encoder, value) {
19916
- var tmp0_desc = this.p7z_1;
19949
+ protoOf($serializer_44).t7z = function (encoder, value) {
19950
+ var tmp0_desc = this.s7z_1;
19917
19951
  var tmp1_output = encoder.s44(tmp0_desc);
19918
19952
  tmp1_output.g46(tmp0_desc, 0, value.s7w_1);
19919
19953
  tmp1_output.b46(tmp0_desc, 1, value.t7w_1);
@@ -19921,10 +19955,10 @@
19921
19955
  tmp1_output.t44(tmp0_desc);
19922
19956
  };
19923
19957
  protoOf($serializer_44).f41 = function (encoder, value) {
19924
- return this.q7z(encoder, value instanceof CombinationAnalyticsDto ? value : THROW_CCE());
19958
+ return this.t7z(encoder, value instanceof CombinationAnalyticsDto ? value : THROW_CCE());
19925
19959
  };
19926
19960
  protoOf($serializer_44).g41 = function (decoder) {
19927
- var tmp0_desc = this.p7z_1;
19961
+ var tmp0_desc = this.s7z_1;
19928
19962
  var tmp1_flag = true;
19929
19963
  var tmp2_index = 0;
19930
19964
  var tmp3_bitMask0 = 0;
@@ -19966,7 +20000,7 @@
19966
20000
  return CombinationAnalyticsDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
19967
20001
  };
19968
20002
  protoOf($serializer_44).e41 = function () {
19969
- return this.p7z_1;
20003
+ return this.s7z_1;
19970
20004
  };
19971
20005
  protoOf($serializer_44).v4c = function () {
19972
20006
  // Inline function 'kotlin.arrayOf' call
@@ -19982,7 +20016,7 @@
19982
20016
  }
19983
20017
  function CombinationAnalyticsDto_init_$Init$(seen0, type, count, acceptedCounts, serializationConstructorMarker, $this) {
19984
20018
  if (!(7 === (7 & seen0))) {
19985
- throwMissingFieldException(seen0, 7, $serializer_getInstance_46().p7z_1);
20019
+ throwMissingFieldException(seen0, 7, $serializer_getInstance_46().s7z_1);
19986
20020
  }
19987
20021
  $this.s7w_1 = type;
19988
20022
  $this.t7w_1 = count;
@@ -20026,7 +20060,7 @@
20026
20060
  // Inline function 'kotlin.arrayOf' call
20027
20061
  // Inline function 'kotlin.js.unsafeCast' call
20028
20062
  // Inline function 'kotlin.js.asDynamic' call
20029
- tmp.r7z_1 = [null, null, new ArrayListSerializer($serializer_getInstance_46()), null];
20063
+ tmp.u7z_1 = [null, null, new ArrayListSerializer($serializer_getInstance_46()), null];
20030
20064
  }
20031
20065
  var Companion_instance_77;
20032
20066
  function Companion_getInstance_79() {
@@ -20041,12 +20075,12 @@
20041
20075
  tmp0_serialDesc.g4c('liveDurationPercentage', true);
20042
20076
  tmp0_serialDesc.g4c('combinations', true);
20043
20077
  tmp0_serialDesc.g4c('achievements', true);
20044
- this.s7z_1 = tmp0_serialDesc;
20078
+ this.v7z_1 = tmp0_serialDesc;
20045
20079
  }
20046
- protoOf($serializer_45).t7z = function (encoder, value) {
20047
- var tmp0_desc = this.s7z_1;
20080
+ protoOf($serializer_45).w7z = function (encoder, value) {
20081
+ var tmp0_desc = this.v7z_1;
20048
20082
  var tmp1_output = encoder.s44(tmp0_desc);
20049
- var tmp2_cached = Companion_getInstance_79().r7z_1;
20083
+ var tmp2_cached = Companion_getInstance_79().u7z_1;
20050
20084
  tmp1_output.g46(tmp0_desc, 0, value.r7n_1);
20051
20085
  if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.s7n_1 == null)) {
20052
20086
  tmp1_output.k46(tmp0_desc, 1, IntSerializer_getInstance(), value.s7n_1);
@@ -20060,10 +20094,10 @@
20060
20094
  tmp1_output.t44(tmp0_desc);
20061
20095
  };
20062
20096
  protoOf($serializer_45).f41 = function (encoder, value) {
20063
- return this.t7z(encoder, value instanceof PlayerHistoryAnalyticsDto ? value : THROW_CCE());
20097
+ return this.w7z(encoder, value instanceof PlayerHistoryAnalyticsDto ? value : THROW_CCE());
20064
20098
  };
20065
20099
  protoOf($serializer_45).g41 = function (decoder) {
20066
- var tmp0_desc = this.s7z_1;
20100
+ var tmp0_desc = this.v7z_1;
20067
20101
  var tmp1_flag = true;
20068
20102
  var tmp2_index = 0;
20069
20103
  var tmp3_bitMask0 = 0;
@@ -20072,7 +20106,7 @@
20072
20106
  var tmp6_local2 = null;
20073
20107
  var tmp7_local3 = null;
20074
20108
  var tmp8_input = decoder.s44(tmp0_desc);
20075
- var tmp9_cached = Companion_getInstance_79().r7z_1;
20109
+ var tmp9_cached = Companion_getInstance_79().u7z_1;
20076
20110
  if (tmp8_input.h45()) {
20077
20111
  tmp4_local0 = tmp8_input.c45(tmp0_desc, 0);
20078
20112
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -20113,10 +20147,10 @@
20113
20147
  return PlayerHistoryAnalyticsDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
20114
20148
  };
20115
20149
  protoOf($serializer_45).e41 = function () {
20116
- return this.s7z_1;
20150
+ return this.v7z_1;
20117
20151
  };
20118
20152
  protoOf($serializer_45).v4c = function () {
20119
- var tmp0_cached = Companion_getInstance_79().r7z_1;
20153
+ var tmp0_cached = Companion_getInstance_79().u7z_1;
20120
20154
  // Inline function 'kotlin.arrayOf' call
20121
20155
  // Inline function 'kotlin.js.unsafeCast' call
20122
20156
  // Inline function 'kotlin.js.asDynamic' call
@@ -20130,7 +20164,7 @@
20130
20164
  }
20131
20165
  function PlayerHistoryAnalyticsDto_init_$Init$(seen0, playerId, liveDurationPercentage, combinations, achievements, serializationConstructorMarker, $this) {
20132
20166
  if (!(1 === (1 & seen0))) {
20133
- throwMissingFieldException(seen0, 1, $serializer_getInstance_47().s7z_1);
20167
+ throwMissingFieldException(seen0, 1, $serializer_getInstance_47().v7z_1);
20134
20168
  }
20135
20169
  $this.r7n_1 = playerId;
20136
20170
  if (0 === (seen0 & 2))
@@ -20195,7 +20229,7 @@
20195
20229
  // Inline function 'kotlin.arrayOf' call
20196
20230
  // Inline function 'kotlin.js.unsafeCast' call
20197
20231
  // Inline function 'kotlin.js.asDynamic' call
20198
- tmp.u7z_1 = [Companion_getInstance_20().j4t(), null, null, null, null, null, null, null, null, null, null, null, null];
20232
+ tmp.x7z_1 = [Companion_getInstance_20().j4t(), null, null, null, null, null, null, null, null, null, null, null, null];
20199
20233
  }
20200
20234
  var Companion_instance_78;
20201
20235
  function Companion_getInstance_80() {
@@ -20219,12 +20253,12 @@
20219
20253
  tmp0_serialDesc.g4c('isGotBribe', false);
20220
20254
  tmp0_serialDesc.g4c('isChoseSuit', false);
20221
20255
  tmp0_serialDesc.g4c('isChoseSuitInLastGame', false);
20222
- this.v7z_1 = tmp0_serialDesc;
20256
+ this.y7z_1 = tmp0_serialDesc;
20223
20257
  }
20224
- protoOf($serializer_46).w7z = function (encoder, value) {
20225
- var tmp0_desc = this.v7z_1;
20258
+ protoOf($serializer_46).z7z = function (encoder, value) {
20259
+ var tmp0_desc = this.y7z_1;
20226
20260
  var tmp1_output = encoder.s44(tmp0_desc);
20227
- var tmp2_cached = Companion_getInstance_80().u7z_1;
20261
+ var tmp2_cached = Companion_getInstance_80().x7z_1;
20228
20262
  tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.p7v_1);
20229
20263
  tmp1_output.k46(tmp0_desc, 1, BooleanSerializer_getInstance(), value.q7v_1);
20230
20264
  tmp1_output.b46(tmp0_desc, 2, value.r7v_1);
@@ -20241,10 +20275,10 @@
20241
20275
  tmp1_output.t44(tmp0_desc);
20242
20276
  };
20243
20277
  protoOf($serializer_46).f41 = function (encoder, value) {
20244
- return this.w7z(encoder, value instanceof PlayerOptionsDto ? value : THROW_CCE());
20278
+ return this.z7z(encoder, value instanceof PlayerOptionsDto ? value : THROW_CCE());
20245
20279
  };
20246
20280
  protoOf($serializer_46).g41 = function (decoder) {
20247
- var tmp0_desc = this.v7z_1;
20281
+ var tmp0_desc = this.y7z_1;
20248
20282
  var tmp1_flag = true;
20249
20283
  var tmp2_index = 0;
20250
20284
  var tmp3_bitMask0 = 0;
@@ -20262,7 +20296,7 @@
20262
20296
  var tmp15_local11 = null;
20263
20297
  var tmp16_local12 = null;
20264
20298
  var tmp17_input = decoder.s44(tmp0_desc);
20265
- var tmp18_cached = Companion_getInstance_80().u7z_1;
20299
+ var tmp18_cached = Companion_getInstance_80().x7z_1;
20266
20300
  if (tmp17_input.h45()) {
20267
20301
  tmp4_local0 = tmp17_input.e45(tmp0_desc, 0, tmp18_cached[0], tmp4_local0);
20268
20302
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -20357,13 +20391,13 @@
20357
20391
  return PlayerOptionsDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, tmp14_local10, tmp15_local11, tmp16_local12, null);
20358
20392
  };
20359
20393
  protoOf($serializer_46).e41 = function () {
20360
- return this.v7z_1;
20394
+ return this.y7z_1;
20361
20395
  };
20362
20396
  protoOf($serializer_46).v4c = function () {
20363
20397
  // Inline function 'kotlin.arrayOf' call
20364
20398
  // Inline function 'kotlin.js.unsafeCast' call
20365
20399
  // Inline function 'kotlin.js.asDynamic' call
20366
- return [Companion_getInstance_80().u7z_1[0], get_nullable(BooleanSerializer_getInstance()), IntSerializer_getInstance(), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(IntSerializer_getInstance()), get_nullable(IntSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance())];
20400
+ return [Companion_getInstance_80().x7z_1[0], get_nullable(BooleanSerializer_getInstance()), IntSerializer_getInstance(), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(IntSerializer_getInstance()), get_nullable(IntSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance())];
20367
20401
  };
20368
20402
  var $serializer_instance_46;
20369
20403
  function $serializer_getInstance_48() {
@@ -20373,7 +20407,7 @@
20373
20407
  }
20374
20408
  function PlayerOptionsDto_init_$Init$(seen0, numberOfCircle, isGameCreator, playerNumber, isGameWinner, isShuffleCards, isRoundWinner, isWonCardLot, isEarnedBiggestPointInLastGame, failedContractsCount, sentVoicesCount, isGotLastBribe, isChoseSuit, isChoseSuitInLastGame, serializationConstructorMarker, $this) {
20375
20409
  if (!(8191 === (8191 & seen0))) {
20376
- throwMissingFieldException(seen0, 8191, $serializer_getInstance_48().v7z_1);
20410
+ throwMissingFieldException(seen0, 8191, $serializer_getInstance_48().y7z_1);
20377
20411
  }
20378
20412
  $this.p7v_1 = numberOfCircle;
20379
20413
  $this.q7v_1 = isGameCreator;
@@ -20468,7 +20502,7 @@
20468
20502
  // Inline function 'kotlin.arrayOf' call
20469
20503
  // Inline function 'kotlin.js.unsafeCast' call
20470
20504
  // Inline function 'kotlin.js.asDynamic' call
20471
- tmp.x7z_1 = [null, new ArrayListSerializer($serializer_getInstance_72()), new ArrayListSerializer(IntSerializer_getInstance())];
20505
+ tmp.a80_1 = [null, new ArrayListSerializer($serializer_getInstance_72()), new ArrayListSerializer(IntSerializer_getInstance())];
20472
20506
  }
20473
20507
  var Companion_instance_79;
20474
20508
  function Companion_getInstance_81() {
@@ -20482,12 +20516,12 @@
20482
20516
  tmp0_serialDesc.g4c('earnedPoints', false);
20483
20517
  tmp0_serialDesc.g4c('combinations', true);
20484
20518
  tmp0_serialDesc.g4c('earnedCards', true);
20485
- this.y7z_1 = tmp0_serialDesc;
20519
+ this.b80_1 = tmp0_serialDesc;
20486
20520
  }
20487
- protoOf($serializer_47).z7z = function (encoder, value) {
20488
- var tmp0_desc = this.y7z_1;
20521
+ protoOf($serializer_47).c80 = function (encoder, value) {
20522
+ var tmp0_desc = this.b80_1;
20489
20523
  var tmp1_output = encoder.s44(tmp0_desc);
20490
- var tmp2_cached = Companion_getInstance_81().x7z_1;
20524
+ var tmp2_cached = Companion_getInstance_81().a80_1;
20491
20525
  tmp1_output.b46(tmp0_desc, 0, value.c7w_1);
20492
20526
  if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.d7w_1 == null)) {
20493
20527
  tmp1_output.k46(tmp0_desc, 1, tmp2_cached[1], value.d7w_1);
@@ -20498,10 +20532,10 @@
20498
20532
  tmp1_output.t44(tmp0_desc);
20499
20533
  };
20500
20534
  protoOf($serializer_47).f41 = function (encoder, value) {
20501
- return this.z7z(encoder, value instanceof PlayerPointsDto ? value : THROW_CCE());
20535
+ return this.c80(encoder, value instanceof PlayerPointsDto ? value : THROW_CCE());
20502
20536
  };
20503
20537
  protoOf($serializer_47).g41 = function (decoder) {
20504
- var tmp0_desc = this.y7z_1;
20538
+ var tmp0_desc = this.b80_1;
20505
20539
  var tmp1_flag = true;
20506
20540
  var tmp2_index = 0;
20507
20541
  var tmp3_bitMask0 = 0;
@@ -20509,7 +20543,7 @@
20509
20543
  var tmp5_local1 = null;
20510
20544
  var tmp6_local2 = null;
20511
20545
  var tmp7_input = decoder.s44(tmp0_desc);
20512
- var tmp8_cached = Companion_getInstance_81().x7z_1;
20546
+ var tmp8_cached = Companion_getInstance_81().a80_1;
20513
20547
  if (tmp7_input.h45()) {
20514
20548
  tmp4_local0 = tmp7_input.x44(tmp0_desc, 0);
20515
20549
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -20544,10 +20578,10 @@
20544
20578
  return PlayerPointsDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
20545
20579
  };
20546
20580
  protoOf($serializer_47).e41 = function () {
20547
- return this.y7z_1;
20581
+ return this.b80_1;
20548
20582
  };
20549
20583
  protoOf($serializer_47).v4c = function () {
20550
- var tmp0_cached = Companion_getInstance_81().x7z_1;
20584
+ var tmp0_cached = Companion_getInstance_81().a80_1;
20551
20585
  // Inline function 'kotlin.arrayOf' call
20552
20586
  // Inline function 'kotlin.js.unsafeCast' call
20553
20587
  // Inline function 'kotlin.js.asDynamic' call
@@ -20561,7 +20595,7 @@
20561
20595
  }
20562
20596
  function PlayerPointsDto_init_$Init$(seen0, earnedPoints, combinations, earnedCards, serializationConstructorMarker, $this) {
20563
20597
  if (!(1 === (1 & seen0))) {
20564
- throwMissingFieldException(seen0, 1, $serializer_getInstance_49().y7z_1);
20598
+ throwMissingFieldException(seen0, 1, $serializer_getInstance_49().b80_1);
20565
20599
  }
20566
20600
  $this.c7w_1 = earnedPoints;
20567
20601
  if (0 === (seen0 & 2))
@@ -20614,7 +20648,7 @@
20614
20648
  // Inline function 'kotlin.arrayOf' call
20615
20649
  // Inline function 'kotlin.js.unsafeCast' call
20616
20650
  // Inline function 'kotlin.js.asDynamic' call
20617
- tmp.a80_1 = [new ArrayListSerializer($serializer_getInstance_51()), null];
20651
+ tmp.d80_1 = [new ArrayListSerializer($serializer_getInstance_51()), null];
20618
20652
  }
20619
20653
  var Companion_instance_80;
20620
20654
  function Companion_getInstance_82() {
@@ -20627,28 +20661,28 @@
20627
20661
  var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('games.jass.logic.data.models.serializable.player.points.PointsCellDto', this, 2);
20628
20662
  tmp0_serialDesc.g4c('playersPoints', false);
20629
20663
  tmp0_serialDesc.g4c('byteState', false);
20630
- this.b80_1 = tmp0_serialDesc;
20664
+ this.e80_1 = tmp0_serialDesc;
20631
20665
  }
20632
- protoOf($serializer_48).c80 = function (encoder, value) {
20633
- var tmp0_desc = this.b80_1;
20666
+ protoOf($serializer_48).f80 = function (encoder, value) {
20667
+ var tmp0_desc = this.e80_1;
20634
20668
  var tmp1_output = encoder.s44(tmp0_desc);
20635
- var tmp2_cached = Companion_getInstance_82().a80_1;
20669
+ var tmp2_cached = Companion_getInstance_82().d80_1;
20636
20670
  tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.v7w_1);
20637
20671
  tmp1_output.g46(tmp0_desc, 1, value.w7w_1);
20638
20672
  tmp1_output.t44(tmp0_desc);
20639
20673
  };
20640
20674
  protoOf($serializer_48).f41 = function (encoder, value) {
20641
- return this.c80(encoder, value instanceof PointsCellDto ? value : THROW_CCE());
20675
+ return this.f80(encoder, value instanceof PointsCellDto ? value : THROW_CCE());
20642
20676
  };
20643
20677
  protoOf($serializer_48).g41 = function (decoder) {
20644
- var tmp0_desc = this.b80_1;
20678
+ var tmp0_desc = this.e80_1;
20645
20679
  var tmp1_flag = true;
20646
20680
  var tmp2_index = 0;
20647
20681
  var tmp3_bitMask0 = 0;
20648
20682
  var tmp4_local0 = null;
20649
20683
  var tmp5_local1 = null;
20650
20684
  var tmp6_input = decoder.s44(tmp0_desc);
20651
- var tmp7_cached = Companion_getInstance_82().a80_1;
20685
+ var tmp7_cached = Companion_getInstance_82().d80_1;
20652
20686
  if (tmp6_input.h45()) {
20653
20687
  tmp4_local0 = tmp6_input.e45(tmp0_desc, 0, tmp7_cached[0], tmp4_local0);
20654
20688
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -20677,13 +20711,13 @@
20677
20711
  return PointsCellDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
20678
20712
  };
20679
20713
  protoOf($serializer_48).e41 = function () {
20680
- return this.b80_1;
20714
+ return this.e80_1;
20681
20715
  };
20682
20716
  protoOf($serializer_48).v4c = function () {
20683
20717
  // Inline function 'kotlin.arrayOf' call
20684
20718
  // Inline function 'kotlin.js.unsafeCast' call
20685
20719
  // Inline function 'kotlin.js.asDynamic' call
20686
- return [Companion_getInstance_82().a80_1[0], StringSerializer_getInstance()];
20720
+ return [Companion_getInstance_82().d80_1[0], StringSerializer_getInstance()];
20687
20721
  };
20688
20722
  var $serializer_instance_48;
20689
20723
  function $serializer_getInstance_50() {
@@ -20693,7 +20727,7 @@
20693
20727
  }
20694
20728
  function PointsCellDto_init_$Init$(seen0, playersPoints, roundContractState, serializationConstructorMarker, $this) {
20695
20729
  if (!(3 === (3 & seen0))) {
20696
- throwMissingFieldException(seen0, 3, $serializer_getInstance_50().b80_1);
20730
+ throwMissingFieldException(seen0, 3, $serializer_getInstance_50().e80_1);
20697
20731
  }
20698
20732
  $this.v7w_1 = playersPoints;
20699
20733
  $this.w7w_1 = roundContractState;
@@ -20733,7 +20767,7 @@
20733
20767
  // Inline function 'kotlin.arrayOf' call
20734
20768
  // Inline function 'kotlin.js.unsafeCast' call
20735
20769
  // Inline function 'kotlin.js.asDynamic' call
20736
- tmp.d80_1 = [null, null, null, null, null, null, null, null, new ArrayListSerializer($serializer_getInstance_72())];
20770
+ tmp.g80_1 = [null, null, null, null, null, null, null, null, new ArrayListSerializer($serializer_getInstance_72())];
20737
20771
  }
20738
20772
  var Companion_instance_81;
20739
20773
  function Companion_getInstance_83() {
@@ -20753,12 +20787,12 @@
20753
20787
  tmp0_serialDesc.g4c('oldRating', true);
20754
20788
  tmp0_serialDesc.g4c('newRating', true);
20755
20789
  tmp0_serialDesc.g4c('combinations', true);
20756
- this.e80_1 = tmp0_serialDesc;
20790
+ this.h80_1 = tmp0_serialDesc;
20757
20791
  }
20758
- protoOf($serializer_49).f80 = function (encoder, value) {
20759
- var tmp0_desc = this.e80_1;
20792
+ protoOf($serializer_49).i80 = function (encoder, value) {
20793
+ var tmp0_desc = this.h80_1;
20760
20794
  var tmp1_output = encoder.s44(tmp0_desc);
20761
- var tmp2_cached = Companion_getInstance_83().d80_1;
20795
+ var tmp2_cached = Companion_getInstance_83().g80_1;
20762
20796
  tmp1_output.g46(tmp0_desc, 0, value.x7w_1);
20763
20797
  tmp1_output.b46(tmp0_desc, 1, value.y7w_1);
20764
20798
  tmp1_output.b46(tmp0_desc, 2, value.z7w_1);
@@ -20777,10 +20811,10 @@
20777
20811
  tmp1_output.t44(tmp0_desc);
20778
20812
  };
20779
20813
  protoOf($serializer_49).f41 = function (encoder, value) {
20780
- return this.f80(encoder, value instanceof PlayerPointsCellDto ? value : THROW_CCE());
20814
+ return this.i80(encoder, value instanceof PlayerPointsCellDto ? value : THROW_CCE());
20781
20815
  };
20782
20816
  protoOf($serializer_49).g41 = function (decoder) {
20783
- var tmp0_desc = this.e80_1;
20817
+ var tmp0_desc = this.h80_1;
20784
20818
  var tmp1_flag = true;
20785
20819
  var tmp2_index = 0;
20786
20820
  var tmp3_bitMask0 = 0;
@@ -20794,7 +20828,7 @@
20794
20828
  var tmp11_local7 = null;
20795
20829
  var tmp12_local8 = null;
20796
20830
  var tmp13_input = decoder.s44(tmp0_desc);
20797
- var tmp14_cached = Companion_getInstance_83().d80_1;
20831
+ var tmp14_cached = Companion_getInstance_83().g80_1;
20798
20832
  if (tmp13_input.h45()) {
20799
20833
  tmp4_local0 = tmp13_input.c45(tmp0_desc, 0);
20800
20834
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -20865,10 +20899,10 @@
20865
20899
  return PlayerPointsCellDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, null);
20866
20900
  };
20867
20901
  protoOf($serializer_49).e41 = function () {
20868
- return this.e80_1;
20902
+ return this.h80_1;
20869
20903
  };
20870
20904
  protoOf($serializer_49).v4c = function () {
20871
- var tmp0_cached = Companion_getInstance_83().d80_1;
20905
+ var tmp0_cached = Companion_getInstance_83().g80_1;
20872
20906
  // Inline function 'kotlin.arrayOf' call
20873
20907
  // Inline function 'kotlin.js.unsafeCast' call
20874
20908
  // Inline function 'kotlin.js.asDynamic' call
@@ -20882,7 +20916,7 @@
20882
20916
  }
20883
20917
  function PlayerPointsCellDto_init_$Init$(seen0, playerId, beforeEarnedPoints, earnedCardsPoints, roundEarnedPoints, finalRoundPoints, finalGamePoints, oldRating, newRating, combinations, serializationConstructorMarker, $this) {
20884
20918
  if (!(63 === (63 & seen0))) {
20885
- throwMissingFieldException(seen0, 63, $serializer_getInstance_51().e80_1);
20919
+ throwMissingFieldException(seen0, 63, $serializer_getInstance_51().h80_1);
20886
20920
  }
20887
20921
  $this.x7w_1 = playerId;
20888
20922
  $this.y7w_1 = beforeEarnedPoints;
@@ -20969,7 +21003,7 @@
20969
21003
  // Inline function 'kotlin.arrayOf' call
20970
21004
  // Inline function 'kotlin.js.unsafeCast' call
20971
21005
  // Inline function 'kotlin.js.asDynamic' call
20972
- tmp.g80_1 = [null, null, null, null, Companion_getInstance_5().j4t(), null, null];
21006
+ tmp.j80_1 = [null, null, null, null, Companion_getInstance_5().j4t(), null, null];
20973
21007
  }
20974
21008
  var Companion_instance_82;
20975
21009
  function Companion_getInstance_84() {
@@ -20987,12 +21021,12 @@
20987
21021
  tmp0_serialDesc.g4c('state', false);
20988
21022
  tmp0_serialDesc.g4c('ready', false);
20989
21023
  tmp0_serialDesc.g4c('tag', true);
20990
- this.h80_1 = tmp0_serialDesc;
21024
+ this.k80_1 = tmp0_serialDesc;
20991
21025
  }
20992
- protoOf($serializer_50).i80 = function (encoder, value) {
20993
- var tmp0_desc = this.h80_1;
21026
+ protoOf($serializer_50).l80 = function (encoder, value) {
21027
+ var tmp0_desc = this.k80_1;
20994
21028
  var tmp1_output = encoder.s44(tmp0_desc);
20995
- var tmp2_cached = Companion_getInstance_84().g80_1;
21029
+ var tmp2_cached = Companion_getInstance_84().j80_1;
20996
21030
  if (tmp1_output.o46(tmp0_desc, 0) ? true : !(value.l7w_1 == null)) {
20997
21031
  tmp1_output.k46(tmp0_desc, 0, LongSerializer_getInstance(), value.l7w_1);
20998
21032
  }
@@ -21013,10 +21047,10 @@
21013
21047
  tmp1_output.t44(tmp0_desc);
21014
21048
  };
21015
21049
  protoOf($serializer_50).f41 = function (encoder, value) {
21016
- return this.i80(encoder, value instanceof ClientPlayerStateDto ? value : THROW_CCE());
21050
+ return this.l80(encoder, value instanceof ClientPlayerStateDto ? value : THROW_CCE());
21017
21051
  };
21018
21052
  protoOf($serializer_50).g41 = function (decoder) {
21019
- var tmp0_desc = this.h80_1;
21053
+ var tmp0_desc = this.k80_1;
21020
21054
  var tmp1_flag = true;
21021
21055
  var tmp2_index = 0;
21022
21056
  var tmp3_bitMask0 = 0;
@@ -21028,7 +21062,7 @@
21028
21062
  var tmp9_local5 = false;
21029
21063
  var tmp10_local6 = null;
21030
21064
  var tmp11_input = decoder.s44(tmp0_desc);
21031
- var tmp12_cached = Companion_getInstance_84().g80_1;
21065
+ var tmp12_cached = Companion_getInstance_84().j80_1;
21032
21066
  if (tmp11_input.h45()) {
21033
21067
  tmp4_local0 = tmp11_input.g45(tmp0_desc, 0, LongSerializer_getInstance(), tmp4_local0);
21034
21068
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -21087,10 +21121,10 @@
21087
21121
  return ClientPlayerStateDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, null);
21088
21122
  };
21089
21123
  protoOf($serializer_50).e41 = function () {
21090
- return this.h80_1;
21124
+ return this.k80_1;
21091
21125
  };
21092
21126
  protoOf($serializer_50).v4c = function () {
21093
- var tmp0_cached = Companion_getInstance_84().g80_1;
21127
+ var tmp0_cached = Companion_getInstance_84().j80_1;
21094
21128
  // Inline function 'kotlin.arrayOf' call
21095
21129
  // Inline function 'kotlin.js.unsafeCast' call
21096
21130
  // Inline function 'kotlin.js.asDynamic' call
@@ -21104,7 +21138,7 @@
21104
21138
  }
21105
21139
  function ClientPlayerStateDto_init_$Init$(seen0, startFromTime, startFrom, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, serializationConstructorMarker, $this) {
21106
21140
  if (!(48 === (48 & seen0))) {
21107
- throwMissingFieldException(seen0, 48, $serializer_getInstance_52().h80_1);
21141
+ throwMissingFieldException(seen0, 48, $serializer_getInstance_52().k80_1);
21108
21142
  }
21109
21143
  if (0 === (seen0 & 1))
21110
21144
  $this.l7w_1 = null;
@@ -21189,7 +21223,7 @@
21189
21223
  // Inline function 'kotlin.arrayOf' call
21190
21224
  // Inline function 'kotlin.js.unsafeCast' call
21191
21225
  // Inline function 'kotlin.js.asDynamic' call
21192
- tmp.j80_1 = [new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer($serializer_getInstance_73())];
21226
+ tmp.m80_1 = [new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer($serializer_getInstance_73())];
21193
21227
  }
21194
21228
  var Companion_instance_83;
21195
21229
  function Companion_getInstance_85() {
@@ -21202,28 +21236,28 @@
21202
21236
  var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('COMBINATION', this, 2);
21203
21237
  tmp0_serialDesc.g4c('playerTurnIds', false);
21204
21238
  tmp0_serialDesc.g4c('combinations', false);
21205
- this.k80_1 = tmp0_serialDesc;
21239
+ this.n80_1 = tmp0_serialDesc;
21206
21240
  }
21207
- protoOf($serializer_51).l80 = function (encoder, value) {
21208
- var tmp0_desc = this.k80_1;
21241
+ protoOf($serializer_51).o80 = function (encoder, value) {
21242
+ var tmp0_desc = this.n80_1;
21209
21243
  var tmp1_output = encoder.s44(tmp0_desc);
21210
- var tmp2_cached = Companion_getInstance_85().j80_1;
21211
- tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.g7x_1);
21212
- tmp1_output.i46(tmp0_desc, 1, tmp2_cached[1], value.h7x_1);
21244
+ var tmp2_cached = Companion_getInstance_85().m80_1;
21245
+ tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.i7x_1);
21246
+ tmp1_output.i46(tmp0_desc, 1, tmp2_cached[1], value.j7x_1);
21213
21247
  tmp1_output.t44(tmp0_desc);
21214
21248
  };
21215
21249
  protoOf($serializer_51).f41 = function (encoder, value) {
21216
- return this.l80(encoder, value instanceof CombinationActDataDto ? value : THROW_CCE());
21250
+ return this.o80(encoder, value instanceof CombinationActDataDto ? value : THROW_CCE());
21217
21251
  };
21218
21252
  protoOf($serializer_51).g41 = function (decoder) {
21219
- var tmp0_desc = this.k80_1;
21253
+ var tmp0_desc = this.n80_1;
21220
21254
  var tmp1_flag = true;
21221
21255
  var tmp2_index = 0;
21222
21256
  var tmp3_bitMask0 = 0;
21223
21257
  var tmp4_local0 = null;
21224
21258
  var tmp5_local1 = null;
21225
21259
  var tmp6_input = decoder.s44(tmp0_desc);
21226
- var tmp7_cached = Companion_getInstance_85().j80_1;
21260
+ var tmp7_cached = Companion_getInstance_85().m80_1;
21227
21261
  if (tmp6_input.h45()) {
21228
21262
  tmp4_local0 = tmp6_input.e45(tmp0_desc, 0, tmp7_cached[0], tmp4_local0);
21229
21263
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -21252,10 +21286,10 @@
21252
21286
  return CombinationActDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
21253
21287
  };
21254
21288
  protoOf($serializer_51).e41 = function () {
21255
- return this.k80_1;
21289
+ return this.n80_1;
21256
21290
  };
21257
21291
  protoOf($serializer_51).v4c = function () {
21258
- var tmp0_cached = Companion_getInstance_85().j80_1;
21292
+ var tmp0_cached = Companion_getInstance_85().m80_1;
21259
21293
  // Inline function 'kotlin.arrayOf' call
21260
21294
  // Inline function 'kotlin.js.unsafeCast' call
21261
21295
  // Inline function 'kotlin.js.asDynamic' call
@@ -21269,11 +21303,11 @@
21269
21303
  }
21270
21304
  function CombinationActDataDto_init_$Init$(seen0, playerTurnIds, combinations, serializationConstructorMarker, $this) {
21271
21305
  if (!(3 === (3 & seen0))) {
21272
- throwMissingFieldException(seen0, 3, $serializer_getInstance_53().k80_1);
21306
+ throwMissingFieldException(seen0, 3, $serializer_getInstance_53().n80_1);
21273
21307
  }
21274
21308
  ClientActDataDto_init_$Init$(seen0, serializationConstructorMarker, $this);
21275
- $this.g7x_1 = playerTurnIds;
21276
- $this.h7x_1 = combinations;
21309
+ $this.i7x_1 = playerTurnIds;
21310
+ $this.j7x_1 = combinations;
21277
21311
  return $this;
21278
21312
  }
21279
21313
  function CombinationActDataDto_init_$Create$(seen0, playerTurnIds, combinations, serializationConstructorMarker) {
@@ -21282,15 +21316,15 @@
21282
21316
  function CombinationActDataDto(playerTurnIds, combinations) {
21283
21317
  Companion_getInstance_85();
21284
21318
  ClientActDataDto.call(this);
21285
- this.g7x_1 = playerTurnIds;
21286
- this.h7x_1 = combinations;
21319
+ this.i7x_1 = playerTurnIds;
21320
+ this.j7x_1 = combinations;
21287
21321
  }
21288
21322
  protoOf(CombinationActDataDto).toString = function () {
21289
- return 'CombinationActDataDto(playerTurnIds=' + toString(this.g7x_1) + ', combinations=' + toString(this.h7x_1) + ')';
21323
+ return 'CombinationActDataDto(playerTurnIds=' + toString(this.i7x_1) + ', combinations=' + toString(this.j7x_1) + ')';
21290
21324
  };
21291
21325
  protoOf(CombinationActDataDto).hashCode = function () {
21292
- var result = hashCode(this.g7x_1);
21293
- result = imul(result, 31) + hashCode(this.h7x_1) | 0;
21326
+ var result = hashCode(this.i7x_1);
21327
+ result = imul(result, 31) + hashCode(this.j7x_1) | 0;
21294
21328
  return result;
21295
21329
  };
21296
21330
  protoOf(CombinationActDataDto).equals = function (other) {
@@ -21299,126 +21333,69 @@
21299
21333
  if (!(other instanceof CombinationActDataDto))
21300
21334
  return false;
21301
21335
  var tmp0_other_with_cast = other instanceof CombinationActDataDto ? other : THROW_CCE();
21302
- if (!equals(this.g7x_1, tmp0_other_with_cast.g7x_1))
21336
+ if (!equals(this.i7x_1, tmp0_other_with_cast.i7x_1))
21303
21337
  return false;
21304
- if (!equals(this.h7x_1, tmp0_other_with_cast.h7x_1))
21338
+ if (!equals(this.j7x_1, tmp0_other_with_cast.j7x_1))
21305
21339
  return false;
21306
21340
  return true;
21307
21341
  };
21308
- function _get_$cachedSerializer__te6jhj_9($this) {
21309
- return $this.m80_1.u();
21310
- }
21311
- function ActDataDto$Companion$_anonymous__bxhc0k() {
21312
- var tmp = getKClass(ActDataDto);
21313
- // Inline function 'kotlin.arrayOf' call
21314
- // Inline function 'kotlin.js.unsafeCast' call
21315
- // Inline function 'kotlin.js.asDynamic' call
21316
- var tmp$ret$2 = [];
21317
- return PolymorphicSerializer_init_$Create$(tmp, tmp$ret$2);
21318
- }
21319
21342
  function Companion_79() {
21320
- Companion_instance_84 = this;
21321
- var tmp = this;
21322
- var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
21323
- tmp.m80_1 = lazy_0(tmp_0, ActDataDto$Companion$_anonymous__bxhc0k);
21324
21343
  }
21325
- protoOf(Companion_79).j4t = function () {
21326
- return _get_$cachedSerializer__te6jhj_9(this);
21327
- };
21328
- protoOf(Companion_79).g4d = function (typeParamsSerializers) {
21329
- return this.j4t();
21330
- };
21331
21344
  var Companion_instance_84;
21332
21345
  function Companion_getInstance_86() {
21333
- if (Companion_instance_84 == null)
21334
- new Companion_79();
21335
21346
  return Companion_instance_84;
21336
21347
  }
21337
- function ActDataDto_init_$Init$(seen0, serializationConstructorMarker, $this) {
21338
- return $this;
21339
- }
21340
- function ActDataDto() {
21341
- Companion_getInstance_86();
21342
- }
21343
- function Companion_80() {
21344
- Companion_instance_85 = this;
21345
- var tmp = this;
21346
- // Inline function 'kotlin.arrayOf' call
21347
- // Inline function 'kotlin.js.unsafeCast' call
21348
- // Inline function 'kotlin.js.asDynamic' call
21349
- tmp.n80_1 = [new ArrayListSerializer(StringSerializer_getInstance()), new LinkedHashMapSerializer(StringSerializer_getInstance(), new ArrayListSerializer($serializer_getInstance_73()))];
21350
- }
21351
- var Companion_instance_85;
21352
- function Companion_getInstance_87() {
21353
- if (Companion_instance_85 == null)
21354
- new Companion_80();
21355
- return Companion_instance_85;
21356
- }
21357
21348
  function $serializer_52() {
21358
21349
  $serializer_instance_52 = this;
21359
- var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_TURN', this, 2);
21360
- tmp0_serialDesc.g4c('playerTurnIds', false);
21361
- tmp0_serialDesc.g4c('updatedCombinations', true);
21362
- this.o80_1 = tmp0_serialDesc;
21350
+ var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('CARDDECK_REQUEST', this, 1);
21351
+ tmp0_serialDesc.g4c('count', false);
21352
+ this.p80_1 = tmp0_serialDesc;
21363
21353
  }
21364
- protoOf($serializer_52).p80 = function (encoder, value) {
21365
- var tmp0_desc = this.o80_1;
21354
+ protoOf($serializer_52).q80 = function (encoder, value) {
21355
+ var tmp0_desc = this.p80_1;
21366
21356
  var tmp1_output = encoder.s44(tmp0_desc);
21367
- var tmp2_cached = Companion_getInstance_87().n80_1;
21368
- tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.q80_1);
21369
- if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.r80_1 == null)) {
21370
- tmp1_output.k46(tmp0_desc, 1, tmp2_cached[1], value.r80_1);
21371
- }
21357
+ tmp1_output.b46(tmp0_desc, 0, value.k7x_1);
21372
21358
  tmp1_output.t44(tmp0_desc);
21373
21359
  };
21374
21360
  protoOf($serializer_52).f41 = function (encoder, value) {
21375
- return this.p80(encoder, value instanceof PlayersTurnActDataDto ? value : THROW_CCE());
21361
+ return this.q80(encoder, value instanceof CardDeckRequestDto ? value : THROW_CCE());
21376
21362
  };
21377
21363
  protoOf($serializer_52).g41 = function (decoder) {
21378
- var tmp0_desc = this.o80_1;
21364
+ var tmp0_desc = this.p80_1;
21379
21365
  var tmp1_flag = true;
21380
21366
  var tmp2_index = 0;
21381
21367
  var tmp3_bitMask0 = 0;
21382
- var tmp4_local0 = null;
21383
- var tmp5_local1 = null;
21384
- var tmp6_input = decoder.s44(tmp0_desc);
21385
- var tmp7_cached = Companion_getInstance_87().n80_1;
21386
- if (tmp6_input.h45()) {
21387
- tmp4_local0 = tmp6_input.e45(tmp0_desc, 0, tmp7_cached[0], tmp4_local0);
21368
+ var tmp4_local0 = 0;
21369
+ var tmp5_input = decoder.s44(tmp0_desc);
21370
+ if (tmp5_input.h45()) {
21371
+ tmp4_local0 = tmp5_input.x44(tmp0_desc, 0);
21388
21372
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
21389
- tmp5_local1 = tmp6_input.g45(tmp0_desc, 1, tmp7_cached[1], tmp5_local1);
21390
- tmp3_bitMask0 = tmp3_bitMask0 | 2;
21391
21373
  } else
21392
21374
  while (tmp1_flag) {
21393
- tmp2_index = tmp6_input.i45(tmp0_desc);
21375
+ tmp2_index = tmp5_input.i45(tmp0_desc);
21394
21376
  switch (tmp2_index) {
21395
21377
  case -1:
21396
21378
  tmp1_flag = false;
21397
21379
  break;
21398
21380
  case 0:
21399
- tmp4_local0 = tmp6_input.e45(tmp0_desc, 0, tmp7_cached[0], tmp4_local0);
21381
+ tmp4_local0 = tmp5_input.x44(tmp0_desc, 0);
21400
21382
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
21401
21383
  break;
21402
- case 1:
21403
- tmp5_local1 = tmp6_input.g45(tmp0_desc, 1, tmp7_cached[1], tmp5_local1);
21404
- tmp3_bitMask0 = tmp3_bitMask0 | 2;
21405
- break;
21406
21384
  default:
21407
21385
  throw UnknownFieldException_init_$Create$(tmp2_index);
21408
21386
  }
21409
21387
  }
21410
- tmp6_input.t44(tmp0_desc);
21411
- return PlayersTurnActDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
21388
+ tmp5_input.t44(tmp0_desc);
21389
+ return CardDeckRequestDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
21412
21390
  };
21413
21391
  protoOf($serializer_52).e41 = function () {
21414
- return this.o80_1;
21392
+ return this.p80_1;
21415
21393
  };
21416
21394
  protoOf($serializer_52).v4c = function () {
21417
- var tmp0_cached = Companion_getInstance_87().n80_1;
21418
21395
  // Inline function 'kotlin.arrayOf' call
21419
21396
  // Inline function 'kotlin.js.unsafeCast' call
21420
21397
  // Inline function 'kotlin.js.asDynamic' call
21421
- return [tmp0_cached[0], get_nullable(tmp0_cached[1])];
21398
+ return [IntSerializer_getInstance()];
21422
21399
  };
21423
21400
  var $serializer_instance_52;
21424
21401
  function $serializer_getInstance_54() {
@@ -21426,105 +21403,153 @@
21426
21403
  new $serializer_52();
21427
21404
  return $serializer_instance_52;
21428
21405
  }
21429
- function PlayersTurnActDataDto_init_$Init$(seen0, playerTurnIds, updatedCombinations, serializationConstructorMarker, $this) {
21406
+ function CardDeckRequestDto_init_$Init$(seen0, count, serializationConstructorMarker, $this) {
21430
21407
  if (!(1 === (1 & seen0))) {
21431
- throwMissingFieldException(seen0, 1, $serializer_getInstance_54().o80_1);
21408
+ throwMissingFieldException(seen0, 1, $serializer_getInstance_54().p80_1);
21432
21409
  }
21433
- ActDataDto_init_$Init$(seen0, serializationConstructorMarker, $this);
21434
- $this.q80_1 = playerTurnIds;
21435
- if (0 === (seen0 & 2))
21436
- $this.r80_1 = null;
21437
- else
21438
- $this.r80_1 = updatedCombinations;
21410
+ $this.k7x_1 = count;
21439
21411
  return $this;
21440
21412
  }
21441
- function PlayersTurnActDataDto_init_$Create$(seen0, playerTurnIds, updatedCombinations, serializationConstructorMarker) {
21442
- return PlayersTurnActDataDto_init_$Init$(seen0, playerTurnIds, updatedCombinations, serializationConstructorMarker, objectCreate(protoOf(PlayersTurnActDataDto)));
21413
+ function CardDeckRequestDto_init_$Create$(seen0, count, serializationConstructorMarker) {
21414
+ return CardDeckRequestDto_init_$Init$(seen0, count, serializationConstructorMarker, objectCreate(protoOf(CardDeckRequestDto)));
21443
21415
  }
21444
- function PlayersTurnActDataDto(playerTurnIds, updatedCombinations) {
21445
- Companion_getInstance_87();
21446
- updatedCombinations = updatedCombinations === VOID ? null : updatedCombinations;
21447
- ActDataDto.call(this);
21448
- this.q80_1 = playerTurnIds;
21449
- this.r80_1 = updatedCombinations;
21416
+ function CardDeckRequestDto(count) {
21417
+ this.k7x_1 = count;
21450
21418
  }
21451
- protoOf(PlayersTurnActDataDto).toString = function () {
21452
- return 'PlayersTurnActDataDto(playerTurnIds=' + toString(this.q80_1) + ', updatedCombinations=' + toString_0(this.r80_1) + ')';
21419
+ protoOf(CardDeckRequestDto).toString = function () {
21420
+ return 'CardDeckRequestDto(count=' + this.k7x_1 + ')';
21453
21421
  };
21454
- protoOf(PlayersTurnActDataDto).hashCode = function () {
21455
- var result = hashCode(this.q80_1);
21456
- result = imul(result, 31) + (this.r80_1 == null ? 0 : hashCode(this.r80_1)) | 0;
21457
- return result;
21422
+ protoOf(CardDeckRequestDto).hashCode = function () {
21423
+ return this.k7x_1;
21458
21424
  };
21459
- protoOf(PlayersTurnActDataDto).equals = function (other) {
21425
+ protoOf(CardDeckRequestDto).equals = function (other) {
21460
21426
  if (this === other)
21461
21427
  return true;
21462
- if (!(other instanceof PlayersTurnActDataDto))
21463
- return false;
21464
- var tmp0_other_with_cast = other instanceof PlayersTurnActDataDto ? other : THROW_CCE();
21465
- if (!equals(this.q80_1, tmp0_other_with_cast.q80_1))
21428
+ if (!(other instanceof CardDeckRequestDto))
21466
21429
  return false;
21467
- if (!equals(this.r80_1, tmp0_other_with_cast.r80_1))
21430
+ var tmp0_other_with_cast = other instanceof CardDeckRequestDto ? other : THROW_CCE();
21431
+ if (!(this.k7x_1 === tmp0_other_with_cast.k7x_1))
21468
21432
  return false;
21469
21433
  return true;
21470
21434
  };
21435
+ function Companion_80() {
21436
+ }
21437
+ protoOf(Companion_80).j4t = function () {
21438
+ var tmp = getKClass(RequestPayloadDto);
21439
+ // Inline function 'kotlin.arrayOf' call
21440
+ // Inline function 'kotlin.js.unsafeCast' call
21441
+ // Inline function 'kotlin.js.asDynamic' call
21442
+ var tmp_0 = [getKClass(CardDeckRequestDto)];
21443
+ // Inline function 'kotlin.arrayOf' call
21444
+ // Inline function 'kotlin.js.unsafeCast' call
21445
+ // Inline function 'kotlin.js.asDynamic' call
21446
+ var tmp_1 = [$serializer_getInstance_54()];
21447
+ // Inline function 'kotlin.arrayOf' call
21448
+ // Inline function 'kotlin.js.unsafeCast' call
21449
+ // Inline function 'kotlin.js.asDynamic' call
21450
+ var tmp$ret$8 = [];
21451
+ return SealedClassSerializer_init_$Create$('games.jass.logic.data.models.serializable.scenes.WaitingActDataDto.RequestPayloadDto', tmp, tmp_0, tmp_1, tmp$ret$8);
21452
+ };
21453
+ protoOf(Companion_80).g4d = function (typeParamsSerializers) {
21454
+ return this.j4t();
21455
+ };
21456
+ var Companion_instance_85;
21457
+ function Companion_getInstance_87() {
21458
+ return Companion_instance_85;
21459
+ }
21460
+ function RequestPayloadDto() {
21461
+ }
21471
21462
  function Companion_81() {
21463
+ Companion_instance_86 = this;
21464
+ var tmp = this;
21465
+ // Inline function 'kotlin.arrayOf' call
21466
+ var tmp_0 = new ArrayListSerializer(StringSerializer_getInstance());
21467
+ var tmp_1 = getKClass(RequestPayloadDto);
21468
+ // Inline function 'kotlin.arrayOf' call
21469
+ // Inline function 'kotlin.js.unsafeCast' call
21470
+ // Inline function 'kotlin.js.asDynamic' call
21471
+ var tmp_2 = [getKClass(CardDeckRequestDto)];
21472
+ // Inline function 'kotlin.arrayOf' call
21473
+ // Inline function 'kotlin.js.unsafeCast' call
21474
+ // Inline function 'kotlin.js.asDynamic' call
21475
+ var tmp_3 = [$serializer_getInstance_54()];
21476
+ // Inline function 'kotlin.arrayOf' call
21477
+ // Inline function 'kotlin.js.unsafeCast' call
21478
+ // Inline function 'kotlin.js.asDynamic' call
21479
+ var tmp$ret$8 = [];
21480
+ // Inline function 'kotlin.js.unsafeCast' call
21481
+ // Inline function 'kotlin.js.asDynamic' call
21482
+ tmp.r80_1 = [tmp_0, SealedClassSerializer_init_$Create$('games.jass.logic.data.models.serializable.scenes.WaitingActDataDto.RequestPayloadDto', tmp_1, tmp_2, tmp_3, tmp$ret$8)];
21472
21483
  }
21473
21484
  var Companion_instance_86;
21474
21485
  function Companion_getInstance_88() {
21486
+ if (Companion_instance_86 == null)
21487
+ new Companion_81();
21475
21488
  return Companion_instance_86;
21476
21489
  }
21477
21490
  function $serializer_53() {
21478
21491
  $serializer_instance_53 = this;
21479
- var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('games.jass.logic.data.models.serializable.scenes.WaitingActDataDto.RequestPayloadDto.CardDeckRequestDto', this, 1);
21480
- tmp0_serialDesc.g4c('count', false);
21492
+ var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('WAITING_ACT', this, 2);
21493
+ tmp0_serialDesc.g4c('playerTurnIds', false);
21494
+ tmp0_serialDesc.g4c('requestPayload', false);
21481
21495
  this.s80_1 = tmp0_serialDesc;
21482
21496
  }
21483
21497
  protoOf($serializer_53).t80 = function (encoder, value) {
21484
21498
  var tmp0_desc = this.s80_1;
21485
21499
  var tmp1_output = encoder.s44(tmp0_desc);
21486
- tmp1_output.b46(tmp0_desc, 0, value.u80_1);
21500
+ var tmp2_cached = Companion_getInstance_88().r80_1;
21501
+ tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.g7x_1);
21502
+ tmp1_output.k46(tmp0_desc, 1, tmp2_cached[1], value.h7x_1);
21487
21503
  tmp1_output.t44(tmp0_desc);
21488
21504
  };
21489
21505
  protoOf($serializer_53).f41 = function (encoder, value) {
21490
- return this.t80(encoder, value instanceof CardDeckRequestDto ? value : THROW_CCE());
21506
+ return this.t80(encoder, value instanceof WaitingActDataDto ? value : THROW_CCE());
21491
21507
  };
21492
21508
  protoOf($serializer_53).g41 = function (decoder) {
21493
21509
  var tmp0_desc = this.s80_1;
21494
21510
  var tmp1_flag = true;
21495
21511
  var tmp2_index = 0;
21496
21512
  var tmp3_bitMask0 = 0;
21497
- var tmp4_local0 = 0;
21498
- var tmp5_input = decoder.s44(tmp0_desc);
21499
- if (tmp5_input.h45()) {
21500
- tmp4_local0 = tmp5_input.x44(tmp0_desc, 0);
21513
+ var tmp4_local0 = null;
21514
+ var tmp5_local1 = null;
21515
+ var tmp6_input = decoder.s44(tmp0_desc);
21516
+ var tmp7_cached = Companion_getInstance_88().r80_1;
21517
+ if (tmp6_input.h45()) {
21518
+ tmp4_local0 = tmp6_input.e45(tmp0_desc, 0, tmp7_cached[0], tmp4_local0);
21501
21519
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
21520
+ tmp5_local1 = tmp6_input.g45(tmp0_desc, 1, tmp7_cached[1], tmp5_local1);
21521
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
21502
21522
  } else
21503
21523
  while (tmp1_flag) {
21504
- tmp2_index = tmp5_input.i45(tmp0_desc);
21524
+ tmp2_index = tmp6_input.i45(tmp0_desc);
21505
21525
  switch (tmp2_index) {
21506
21526
  case -1:
21507
21527
  tmp1_flag = false;
21508
21528
  break;
21509
21529
  case 0:
21510
- tmp4_local0 = tmp5_input.x44(tmp0_desc, 0);
21530
+ tmp4_local0 = tmp6_input.e45(tmp0_desc, 0, tmp7_cached[0], tmp4_local0);
21511
21531
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
21512
21532
  break;
21533
+ case 1:
21534
+ tmp5_local1 = tmp6_input.g45(tmp0_desc, 1, tmp7_cached[1], tmp5_local1);
21535
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
21536
+ break;
21513
21537
  default:
21514
21538
  throw UnknownFieldException_init_$Create$(tmp2_index);
21515
21539
  }
21516
21540
  }
21517
- tmp5_input.t44(tmp0_desc);
21518
- return CardDeckRequestDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
21541
+ tmp6_input.t44(tmp0_desc);
21542
+ return WaitingActDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
21519
21543
  };
21520
21544
  protoOf($serializer_53).e41 = function () {
21521
21545
  return this.s80_1;
21522
21546
  };
21523
21547
  protoOf($serializer_53).v4c = function () {
21548
+ var tmp0_cached = Companion_getInstance_88().r80_1;
21524
21549
  // Inline function 'kotlin.arrayOf' call
21525
21550
  // Inline function 'kotlin.js.unsafeCast' call
21526
21551
  // Inline function 'kotlin.js.asDynamic' call
21527
- return [IntSerializer_getInstance()];
21552
+ return [tmp0_cached[0], get_nullable(tmp0_cached[1])];
21528
21553
  };
21529
21554
  var $serializer_instance_53;
21530
21555
  function $serializer_getInstance_55() {
@@ -21532,83 +21557,86 @@
21532
21557
  new $serializer_53();
21533
21558
  return $serializer_instance_53;
21534
21559
  }
21535
- function CardDeckRequestDto_init_$Init$(seen0, count, serializationConstructorMarker, $this) {
21536
- if (!(1 === (1 & seen0))) {
21537
- throwMissingFieldException(seen0, 1, $serializer_getInstance_55().s80_1);
21560
+ function WaitingActDataDto_init_$Init$(seen0, playerTurnIds, requestPayload, serializationConstructorMarker, $this) {
21561
+ if (!(3 === (3 & seen0))) {
21562
+ throwMissingFieldException(seen0, 3, $serializer_getInstance_55().s80_1);
21538
21563
  }
21539
- $this.u80_1 = count;
21564
+ ClientActDataDto_init_$Init$(seen0, serializationConstructorMarker, $this);
21565
+ $this.g7x_1 = playerTurnIds;
21566
+ $this.h7x_1 = requestPayload;
21540
21567
  return $this;
21541
21568
  }
21542
- function CardDeckRequestDto_init_$Create$(seen0, count, serializationConstructorMarker) {
21543
- return CardDeckRequestDto_init_$Init$(seen0, count, serializationConstructorMarker, objectCreate(protoOf(CardDeckRequestDto)));
21569
+ function WaitingActDataDto_init_$Create$(seen0, playerTurnIds, requestPayload, serializationConstructorMarker) {
21570
+ return WaitingActDataDto_init_$Init$(seen0, playerTurnIds, requestPayload, serializationConstructorMarker, objectCreate(protoOf(WaitingActDataDto)));
21544
21571
  }
21545
- function CardDeckRequestDto(count) {
21546
- this.u80_1 = count;
21572
+ function WaitingActDataDto(playerTurnIds, requestPayload) {
21573
+ Companion_getInstance_88();
21574
+ ClientActDataDto.call(this);
21575
+ this.g7x_1 = playerTurnIds;
21576
+ this.h7x_1 = requestPayload;
21547
21577
  }
21548
- protoOf(CardDeckRequestDto).toString = function () {
21549
- return 'CardDeckRequestDto(count=' + this.u80_1 + ')';
21578
+ protoOf(WaitingActDataDto).toString = function () {
21579
+ return 'WaitingActDataDto(playerTurnIds=' + toString(this.g7x_1) + ', requestPayload=' + toString_0(this.h7x_1) + ')';
21550
21580
  };
21551
- protoOf(CardDeckRequestDto).hashCode = function () {
21552
- return this.u80_1;
21581
+ protoOf(WaitingActDataDto).hashCode = function () {
21582
+ var result = hashCode(this.g7x_1);
21583
+ result = imul(result, 31) + (this.h7x_1 == null ? 0 : hashCode(this.h7x_1)) | 0;
21584
+ return result;
21553
21585
  };
21554
- protoOf(CardDeckRequestDto).equals = function (other) {
21586
+ protoOf(WaitingActDataDto).equals = function (other) {
21555
21587
  if (this === other)
21556
21588
  return true;
21557
- if (!(other instanceof CardDeckRequestDto))
21589
+ if (!(other instanceof WaitingActDataDto))
21558
21590
  return false;
21559
- var tmp0_other_with_cast = other instanceof CardDeckRequestDto ? other : THROW_CCE();
21560
- if (!(this.u80_1 === tmp0_other_with_cast.u80_1))
21591
+ var tmp0_other_with_cast = other instanceof WaitingActDataDto ? other : THROW_CCE();
21592
+ if (!equals(this.g7x_1, tmp0_other_with_cast.g7x_1))
21593
+ return false;
21594
+ if (!equals(this.h7x_1, tmp0_other_with_cast.h7x_1))
21561
21595
  return false;
21562
21596
  return true;
21563
21597
  };
21564
- function Companion_82() {
21598
+ function _get_$cachedSerializer__te6jhj_9($this) {
21599
+ return $this.u80_1.u();
21565
21600
  }
21566
- protoOf(Companion_82).j4t = function () {
21567
- var tmp = getKClass(RequestPayloadDto);
21568
- // Inline function 'kotlin.arrayOf' call
21569
- // Inline function 'kotlin.js.unsafeCast' call
21570
- // Inline function 'kotlin.js.asDynamic' call
21571
- var tmp_0 = [getKClass(CardDeckRequestDto)];
21572
- // Inline function 'kotlin.arrayOf' call
21573
- // Inline function 'kotlin.js.unsafeCast' call
21574
- // Inline function 'kotlin.js.asDynamic' call
21575
- var tmp_1 = [$serializer_getInstance_55()];
21601
+ function ActDataDto$Companion$_anonymous__bxhc0k() {
21602
+ var tmp = getKClass(ActDataDto);
21576
21603
  // Inline function 'kotlin.arrayOf' call
21577
21604
  // Inline function 'kotlin.js.unsafeCast' call
21578
21605
  // Inline function 'kotlin.js.asDynamic' call
21579
- var tmp$ret$8 = [];
21580
- return SealedClassSerializer_init_$Create$('games.jass.logic.data.models.serializable.scenes.WaitingActDataDto.RequestPayloadDto', tmp, tmp_0, tmp_1, tmp$ret$8);
21606
+ var tmp$ret$2 = [];
21607
+ return PolymorphicSerializer_init_$Create$(tmp, tmp$ret$2);
21608
+ }
21609
+ function Companion_82() {
21610
+ Companion_instance_87 = this;
21611
+ var tmp = this;
21612
+ var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
21613
+ tmp.u80_1 = lazy_0(tmp_0, ActDataDto$Companion$_anonymous__bxhc0k);
21614
+ }
21615
+ protoOf(Companion_82).j4t = function () {
21616
+ return _get_$cachedSerializer__te6jhj_9(this);
21581
21617
  };
21582
21618
  protoOf(Companion_82).g4d = function (typeParamsSerializers) {
21583
21619
  return this.j4t();
21584
21620
  };
21585
21621
  var Companion_instance_87;
21586
21622
  function Companion_getInstance_89() {
21623
+ if (Companion_instance_87 == null)
21624
+ new Companion_82();
21587
21625
  return Companion_instance_87;
21588
21626
  }
21589
- function RequestPayloadDto() {
21627
+ function ActDataDto_init_$Init$(seen0, serializationConstructorMarker, $this) {
21628
+ return $this;
21629
+ }
21630
+ function ActDataDto() {
21631
+ Companion_getInstance_89();
21590
21632
  }
21591
21633
  function Companion_83() {
21592
21634
  Companion_instance_88 = this;
21593
21635
  var tmp = this;
21594
21636
  // Inline function 'kotlin.arrayOf' call
21595
- var tmp_0 = new ArrayListSerializer(StringSerializer_getInstance());
21596
- var tmp_1 = getKClass(RequestPayloadDto);
21597
- // Inline function 'kotlin.arrayOf' call
21598
21637
  // Inline function 'kotlin.js.unsafeCast' call
21599
21638
  // Inline function 'kotlin.js.asDynamic' call
21600
- var tmp_2 = [getKClass(CardDeckRequestDto)];
21601
- // Inline function 'kotlin.arrayOf' call
21602
- // Inline function 'kotlin.js.unsafeCast' call
21603
- // Inline function 'kotlin.js.asDynamic' call
21604
- var tmp_3 = [$serializer_getInstance_55()];
21605
- // Inline function 'kotlin.arrayOf' call
21606
- // Inline function 'kotlin.js.unsafeCast' call
21607
- // Inline function 'kotlin.js.asDynamic' call
21608
- var tmp$ret$8 = [];
21609
- // Inline function 'kotlin.js.unsafeCast' call
21610
- // Inline function 'kotlin.js.asDynamic' call
21611
- tmp.v80_1 = [tmp_0, SealedClassSerializer_init_$Create$('games.jass.logic.data.models.serializable.scenes.WaitingActDataDto.RequestPayloadDto', tmp_1, tmp_2, tmp_3, tmp$ret$8)];
21639
+ tmp.v80_1 = [new ArrayListSerializer(StringSerializer_getInstance()), new LinkedHashMapSerializer(StringSerializer_getInstance(), new ArrayListSerializer($serializer_getInstance_73()))];
21612
21640
  }
21613
21641
  var Companion_instance_88;
21614
21642
  function Companion_getInstance_90() {
@@ -21618,9 +21646,9 @@
21618
21646
  }
21619
21647
  function $serializer_54() {
21620
21648
  $serializer_instance_54 = this;
21621
- var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('WAITING_ACT', this, 2);
21649
+ var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_TURN', this, 2);
21622
21650
  tmp0_serialDesc.g4c('playerTurnIds', false);
21623
- tmp0_serialDesc.g4c('requestPayload', false);
21651
+ tmp0_serialDesc.g4c('updatedCombinations', true);
21624
21652
  this.w80_1 = tmp0_serialDesc;
21625
21653
  }
21626
21654
  protoOf($serializer_54).x80 = function (encoder, value) {
@@ -21628,11 +21656,13 @@
21628
21656
  var tmp1_output = encoder.s44(tmp0_desc);
21629
21657
  var tmp2_cached = Companion_getInstance_90().v80_1;
21630
21658
  tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.y80_1);
21631
- tmp1_output.k46(tmp0_desc, 1, tmp2_cached[1], value.z80_1);
21659
+ if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.z80_1 == null)) {
21660
+ tmp1_output.k46(tmp0_desc, 1, tmp2_cached[1], value.z80_1);
21661
+ }
21632
21662
  tmp1_output.t44(tmp0_desc);
21633
21663
  };
21634
21664
  protoOf($serializer_54).f41 = function (encoder, value) {
21635
- return this.x80(encoder, value instanceof WaitingActDataDto ? value : THROW_CCE());
21665
+ return this.x80(encoder, value instanceof PlayersTurnActDataDto ? value : THROW_CCE());
21636
21666
  };
21637
21667
  protoOf($serializer_54).g41 = function (decoder) {
21638
21668
  var tmp0_desc = this.w80_1;
@@ -21668,7 +21698,7 @@
21668
21698
  }
21669
21699
  }
21670
21700
  tmp6_input.t44(tmp0_desc);
21671
- return WaitingActDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
21701
+ return PlayersTurnActDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
21672
21702
  };
21673
21703
  protoOf($serializer_54).e41 = function () {
21674
21704
  return this.w80_1;
@@ -21686,38 +21716,42 @@
21686
21716
  new $serializer_54();
21687
21717
  return $serializer_instance_54;
21688
21718
  }
21689
- function WaitingActDataDto_init_$Init$(seen0, playerTurnIds, requestPayload, serializationConstructorMarker, $this) {
21690
- if (!(3 === (3 & seen0))) {
21691
- throwMissingFieldException(seen0, 3, $serializer_getInstance_56().w80_1);
21719
+ function PlayersTurnActDataDto_init_$Init$(seen0, playerTurnIds, updatedCombinations, serializationConstructorMarker, $this) {
21720
+ if (!(1 === (1 & seen0))) {
21721
+ throwMissingFieldException(seen0, 1, $serializer_getInstance_56().w80_1);
21692
21722
  }
21693
21723
  ActDataDto_init_$Init$(seen0, serializationConstructorMarker, $this);
21694
21724
  $this.y80_1 = playerTurnIds;
21695
- $this.z80_1 = requestPayload;
21725
+ if (0 === (seen0 & 2))
21726
+ $this.z80_1 = null;
21727
+ else
21728
+ $this.z80_1 = updatedCombinations;
21696
21729
  return $this;
21697
21730
  }
21698
- function WaitingActDataDto_init_$Create$(seen0, playerTurnIds, requestPayload, serializationConstructorMarker) {
21699
- return WaitingActDataDto_init_$Init$(seen0, playerTurnIds, requestPayload, serializationConstructorMarker, objectCreate(protoOf(WaitingActDataDto)));
21731
+ function PlayersTurnActDataDto_init_$Create$(seen0, playerTurnIds, updatedCombinations, serializationConstructorMarker) {
21732
+ return PlayersTurnActDataDto_init_$Init$(seen0, playerTurnIds, updatedCombinations, serializationConstructorMarker, objectCreate(protoOf(PlayersTurnActDataDto)));
21700
21733
  }
21701
- function WaitingActDataDto(playerTurnIds, requestPayload) {
21734
+ function PlayersTurnActDataDto(playerTurnIds, updatedCombinations) {
21702
21735
  Companion_getInstance_90();
21736
+ updatedCombinations = updatedCombinations === VOID ? null : updatedCombinations;
21703
21737
  ActDataDto.call(this);
21704
21738
  this.y80_1 = playerTurnIds;
21705
- this.z80_1 = requestPayload;
21739
+ this.z80_1 = updatedCombinations;
21706
21740
  }
21707
- protoOf(WaitingActDataDto).toString = function () {
21708
- return 'WaitingActDataDto(playerTurnIds=' + toString(this.y80_1) + ', requestPayload=' + toString_0(this.z80_1) + ')';
21741
+ protoOf(PlayersTurnActDataDto).toString = function () {
21742
+ return 'PlayersTurnActDataDto(playerTurnIds=' + toString(this.y80_1) + ', updatedCombinations=' + toString_0(this.z80_1) + ')';
21709
21743
  };
21710
- protoOf(WaitingActDataDto).hashCode = function () {
21744
+ protoOf(PlayersTurnActDataDto).hashCode = function () {
21711
21745
  var result = hashCode(this.y80_1);
21712
21746
  result = imul(result, 31) + (this.z80_1 == null ? 0 : hashCode(this.z80_1)) | 0;
21713
21747
  return result;
21714
21748
  };
21715
- protoOf(WaitingActDataDto).equals = function (other) {
21749
+ protoOf(PlayersTurnActDataDto).equals = function (other) {
21716
21750
  if (this === other)
21717
21751
  return true;
21718
- if (!(other instanceof WaitingActDataDto))
21752
+ if (!(other instanceof PlayersTurnActDataDto))
21719
21753
  return false;
21720
- var tmp0_other_with_cast = other instanceof WaitingActDataDto ? other : THROW_CCE();
21754
+ var tmp0_other_with_cast = other instanceof PlayersTurnActDataDto ? other : THROW_CCE();
21721
21755
  if (!equals(this.y80_1, tmp0_other_with_cast.y80_1))
21722
21756
  return false;
21723
21757
  if (!equals(this.z80_1, tmp0_other_with_cast.z80_1))
@@ -21786,9 +21820,9 @@
21786
21820
  var tmp0_desc = this.b81_1;
21787
21821
  var tmp1_output = encoder.s44(tmp0_desc);
21788
21822
  var tmp2_cached = Companion_getInstance_92().a81_1;
21789
- tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.i7x_1);
21790
- if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.j7x_1 == null)) {
21791
- tmp1_output.k46(tmp0_desc, 1, tmp2_cached[1], value.j7x_1);
21823
+ tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.l7x_1);
21824
+ if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.m7x_1 == null)) {
21825
+ tmp1_output.k46(tmp0_desc, 1, tmp2_cached[1], value.m7x_1);
21792
21826
  }
21793
21827
  tmp1_output.t44(tmp0_desc);
21794
21828
  };
@@ -21852,11 +21886,11 @@
21852
21886
  throwMissingFieldException(seen0, 1, $serializer_getInstance_57().b81_1);
21853
21887
  }
21854
21888
  ClientActDataDto_init_$Init$(seen0, serializationConstructorMarker, $this);
21855
- $this.i7x_1 = playerTurnIds;
21889
+ $this.l7x_1 = playerTurnIds;
21856
21890
  if (0 === (seen0 & 2))
21857
- $this.j7x_1 = null;
21891
+ $this.m7x_1 = null;
21858
21892
  else
21859
- $this.j7x_1 = updatedCombinations;
21893
+ $this.m7x_1 = updatedCombinations;
21860
21894
  return $this;
21861
21895
  }
21862
21896
  function PlayersTurnClientActDataDto_init_$Create$(seen0, playerTurnIds, updatedCombinations, serializationConstructorMarker) {
@@ -21866,15 +21900,15 @@
21866
21900
  Companion_getInstance_92();
21867
21901
  updatedCombinations = updatedCombinations === VOID ? null : updatedCombinations;
21868
21902
  ClientActDataDto.call(this);
21869
- this.i7x_1 = playerTurnIds;
21870
- this.j7x_1 = updatedCombinations;
21903
+ this.l7x_1 = playerTurnIds;
21904
+ this.m7x_1 = updatedCombinations;
21871
21905
  }
21872
21906
  protoOf(PlayersTurnClientActDataDto).toString = function () {
21873
- return 'PlayersTurnClientActDataDto(playerTurnIds=' + toString(this.i7x_1) + ', updatedCombinations=' + toString_0(this.j7x_1) + ')';
21907
+ return 'PlayersTurnClientActDataDto(playerTurnIds=' + toString(this.l7x_1) + ', updatedCombinations=' + toString_0(this.m7x_1) + ')';
21874
21908
  };
21875
21909
  protoOf(PlayersTurnClientActDataDto).hashCode = function () {
21876
- var result = hashCode(this.i7x_1);
21877
- result = imul(result, 31) + (this.j7x_1 == null ? 0 : hashCode(this.j7x_1)) | 0;
21910
+ var result = hashCode(this.l7x_1);
21911
+ result = imul(result, 31) + (this.m7x_1 == null ? 0 : hashCode(this.m7x_1)) | 0;
21878
21912
  return result;
21879
21913
  };
21880
21914
  protoOf(PlayersTurnClientActDataDto).equals = function (other) {
@@ -21883,9 +21917,9 @@
21883
21917
  if (!(other instanceof PlayersTurnClientActDataDto))
21884
21918
  return false;
21885
21919
  var tmp0_other_with_cast = other instanceof PlayersTurnClientActDataDto ? other : THROW_CCE();
21886
- if (!equals(this.i7x_1, tmp0_other_with_cast.i7x_1))
21920
+ if (!equals(this.l7x_1, tmp0_other_with_cast.l7x_1))
21887
21921
  return false;
21888
- if (!equals(this.j7x_1, tmp0_other_with_cast.j7x_1))
21922
+ if (!equals(this.m7x_1, tmp0_other_with_cast.m7x_1))
21889
21923
  return false;
21890
21924
  return true;
21891
21925
  };
@@ -21955,13 +21989,13 @@
21955
21989
  var tmp0_desc = this.e81_1;
21956
21990
  var tmp1_output = encoder.s44(tmp0_desc);
21957
21991
  var tmp2_cached = Companion_getInstance_94().d81_1;
21958
- tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.k7x_1);
21959
- tmp1_output.i46(tmp0_desc, 1, tmp2_cached[1], value.l7x_1);
21960
- tmp1_output.b46(tmp0_desc, 2, value.m7x_1);
21961
- tmp1_output.b46(tmp0_desc, 3, value.n7x_1);
21962
- tmp1_output.g46(tmp0_desc, 4, value.o7x_1);
21963
- if (tmp1_output.o46(tmp0_desc, 5) ? true : !(value.p7x_1 == null)) {
21964
- tmp1_output.k46(tmp0_desc, 5, $serializer_getInstance_30(), value.p7x_1);
21992
+ tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.n7x_1);
21993
+ tmp1_output.i46(tmp0_desc, 1, tmp2_cached[1], value.o7x_1);
21994
+ tmp1_output.b46(tmp0_desc, 2, value.p7x_1);
21995
+ tmp1_output.b46(tmp0_desc, 3, value.q7x_1);
21996
+ tmp1_output.g46(tmp0_desc, 4, value.r7x_1);
21997
+ if (tmp1_output.o46(tmp0_desc, 5) ? true : !(value.s7x_1 == null)) {
21998
+ tmp1_output.k46(tmp0_desc, 5, $serializer_getInstance_30(), value.s7x_1);
21965
21999
  }
21966
22000
  tmp1_output.t44(tmp0_desc);
21967
22001
  };
@@ -22053,15 +22087,15 @@
22053
22087
  throwMissingFieldException(seen0, 31, $serializer_getInstance_58().e81_1);
22054
22088
  }
22055
22089
  ClientSceneDataDto_init_$Init$(seen0, serializationConstructorMarker, $this);
22056
- $this.k7x_1 = playerCards;
22057
- $this.l7x_1 = otherPlayersCardsCount;
22058
- $this.m7x_1 = trumpCard;
22059
- $this.n7x_1 = otherCardsCount;
22060
- $this.o7x_1 = whoShuffleCardsPlayerId;
22090
+ $this.n7x_1 = playerCards;
22091
+ $this.o7x_1 = otherPlayersCardsCount;
22092
+ $this.p7x_1 = trumpCard;
22093
+ $this.q7x_1 = otherCardsCount;
22094
+ $this.r7x_1 = whoShuffleCardsPlayerId;
22061
22095
  if (0 === (seen0 & 32))
22062
- $this.p7x_1 = null;
22096
+ $this.s7x_1 = null;
22063
22097
  else
22064
- $this.p7x_1 = randomData;
22098
+ $this.s7x_1 = randomData;
22065
22099
  return $this;
22066
22100
  }
22067
22101
  function TradeClientSceneDataDto_init_$Create$(seen0, playerCards, otherPlayersCardsCount, trumpCard, otherCardsCount, whoShuffleCardsPlayerId, randomData, serializationConstructorMarker) {
@@ -22071,23 +22105,23 @@
22071
22105
  Companion_getInstance_94();
22072
22106
  randomData = randomData === VOID ? null : randomData;
22073
22107
  ClientSceneDataDto.call(this);
22074
- this.k7x_1 = playerCards;
22075
- this.l7x_1 = otherPlayersCardsCount;
22076
- this.m7x_1 = trumpCard;
22077
- this.n7x_1 = otherCardsCount;
22078
- this.o7x_1 = whoShuffleCardsPlayerId;
22079
- this.p7x_1 = randomData;
22108
+ this.n7x_1 = playerCards;
22109
+ this.o7x_1 = otherPlayersCardsCount;
22110
+ this.p7x_1 = trumpCard;
22111
+ this.q7x_1 = otherCardsCount;
22112
+ this.r7x_1 = whoShuffleCardsPlayerId;
22113
+ this.s7x_1 = randomData;
22080
22114
  }
22081
22115
  protoOf(TradeClientSceneDataDto).toString = function () {
22082
- return 'TradeClientSceneDataDto(playerCards=' + toString(this.k7x_1) + ', otherPlayersCardsCount=' + toString(this.l7x_1) + ', trumpCard=' + this.m7x_1 + ', otherCardsCount=' + this.n7x_1 + ', whoShuffleCardsPlayerId=' + this.o7x_1 + ', randomData=' + toString_0(this.p7x_1) + ')';
22116
+ return 'TradeClientSceneDataDto(playerCards=' + toString(this.n7x_1) + ', otherPlayersCardsCount=' + toString(this.o7x_1) + ', trumpCard=' + this.p7x_1 + ', otherCardsCount=' + this.q7x_1 + ', whoShuffleCardsPlayerId=' + this.r7x_1 + ', randomData=' + toString_0(this.s7x_1) + ')';
22083
22117
  };
22084
22118
  protoOf(TradeClientSceneDataDto).hashCode = function () {
22085
- var result = hashCode(this.k7x_1);
22086
- result = imul(result, 31) + hashCode(this.l7x_1) | 0;
22087
- result = imul(result, 31) + this.m7x_1 | 0;
22088
- result = imul(result, 31) + this.n7x_1 | 0;
22089
- result = imul(result, 31) + getStringHashCode(this.o7x_1) | 0;
22090
- result = imul(result, 31) + (this.p7x_1 == null ? 0 : this.p7x_1.hashCode()) | 0;
22119
+ var result = hashCode(this.n7x_1);
22120
+ result = imul(result, 31) + hashCode(this.o7x_1) | 0;
22121
+ result = imul(result, 31) + this.p7x_1 | 0;
22122
+ result = imul(result, 31) + this.q7x_1 | 0;
22123
+ result = imul(result, 31) + getStringHashCode(this.r7x_1) | 0;
22124
+ result = imul(result, 31) + (this.s7x_1 == null ? 0 : this.s7x_1.hashCode()) | 0;
22091
22125
  return result;
22092
22126
  };
22093
22127
  protoOf(TradeClientSceneDataDto).equals = function (other) {
@@ -22096,17 +22130,17 @@
22096
22130
  if (!(other instanceof TradeClientSceneDataDto))
22097
22131
  return false;
22098
22132
  var tmp0_other_with_cast = other instanceof TradeClientSceneDataDto ? other : THROW_CCE();
22099
- if (!equals(this.k7x_1, tmp0_other_with_cast.k7x_1))
22133
+ if (!equals(this.n7x_1, tmp0_other_with_cast.n7x_1))
22100
22134
  return false;
22101
- if (!equals(this.l7x_1, tmp0_other_with_cast.l7x_1))
22135
+ if (!equals(this.o7x_1, tmp0_other_with_cast.o7x_1))
22102
22136
  return false;
22103
- if (!(this.m7x_1 === tmp0_other_with_cast.m7x_1))
22137
+ if (!(this.p7x_1 === tmp0_other_with_cast.p7x_1))
22104
22138
  return false;
22105
- if (!(this.n7x_1 === tmp0_other_with_cast.n7x_1))
22139
+ if (!(this.q7x_1 === tmp0_other_with_cast.q7x_1))
22106
22140
  return false;
22107
- if (!(this.o7x_1 === tmp0_other_with_cast.o7x_1))
22141
+ if (!(this.r7x_1 === tmp0_other_with_cast.r7x_1))
22108
22142
  return false;
22109
- if (!equals(this.p7x_1, tmp0_other_with_cast.p7x_1))
22143
+ if (!equals(this.s7x_1, tmp0_other_with_cast.s7x_1))
22110
22144
  return false;
22111
22145
  return true;
22112
22146
  };
@@ -22138,15 +22172,15 @@
22138
22172
  var tmp0_desc = this.h81_1;
22139
22173
  var tmp1_output = encoder.s44(tmp0_desc);
22140
22174
  var tmp2_cached = Companion_getInstance_95().g81_1;
22141
- tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.q7x_1);
22142
- tmp1_output.i46(tmp0_desc, 1, tmp2_cached[1], value.r7x_1);
22143
- if (tmp1_output.o46(tmp0_desc, 2) ? true : !(value.s7x_1 == null)) {
22144
- tmp1_output.k46(tmp0_desc, 2, tmp2_cached[2], value.s7x_1);
22175
+ tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.t7x_1);
22176
+ tmp1_output.i46(tmp0_desc, 1, tmp2_cached[1], value.u7x_1);
22177
+ if (tmp1_output.o46(tmp0_desc, 2) ? true : !(value.v7x_1 == null)) {
22178
+ tmp1_output.k46(tmp0_desc, 2, tmp2_cached[2], value.v7x_1);
22145
22179
  }
22146
- if (tmp1_output.o46(tmp0_desc, 3) ? true : !(value.t7x_1 == null)) {
22147
- tmp1_output.k46(tmp0_desc, 3, IntSerializer_getInstance(), value.t7x_1);
22180
+ if (tmp1_output.o46(tmp0_desc, 3) ? true : !(value.w7x_1 == null)) {
22181
+ tmp1_output.k46(tmp0_desc, 3, IntSerializer_getInstance(), value.w7x_1);
22148
22182
  }
22149
- tmp1_output.g46(tmp0_desc, 4, value.u7x_1);
22183
+ tmp1_output.g46(tmp0_desc, 4, value.x7x_1);
22150
22184
  tmp1_output.t44(tmp0_desc);
22151
22185
  };
22152
22186
  protoOf($serializer_57).f41 = function (encoder, value) {
@@ -22230,17 +22264,17 @@
22230
22264
  throwMissingFieldException(seen0, 19, $serializer_getInstance_59().h81_1);
22231
22265
  }
22232
22266
  ClientSceneDataDto_init_$Init$(seen0, serializationConstructorMarker, $this);
22233
- $this.q7x_1 = playerCards;
22234
- $this.r7x_1 = otherPlayersCardsCount;
22267
+ $this.t7x_1 = playerCards;
22268
+ $this.u7x_1 = otherPlayersCardsCount;
22235
22269
  if (0 === (seen0 & 4))
22236
- $this.s7x_1 = null;
22270
+ $this.v7x_1 = null;
22237
22271
  else
22238
- $this.s7x_1 = combinations;
22272
+ $this.v7x_1 = combinations;
22239
22273
  if (0 === (seen0 & 8))
22240
- $this.t7x_1 = null;
22274
+ $this.w7x_1 = null;
22241
22275
  else
22242
- $this.t7x_1 = frezaCard;
22243
- $this.u7x_1 = whoPutCardFirstPlayerId;
22276
+ $this.w7x_1 = frezaCard;
22277
+ $this.x7x_1 = whoPutCardFirstPlayerId;
22244
22278
  return $this;
22245
22279
  }
22246
22280
  function EarnPointsClientSceneDataDto_init_$Create$(seen0, playerCards, otherPlayersCardsCount, combinations, frezaCard, whoPutCardFirstPlayerId, serializationConstructorMarker) {
@@ -22251,21 +22285,21 @@
22251
22285
  combinations = combinations === VOID ? null : combinations;
22252
22286
  frezaCard = frezaCard === VOID ? null : frezaCard;
22253
22287
  ClientSceneDataDto.call(this);
22254
- this.q7x_1 = playerCards;
22255
- this.r7x_1 = otherPlayersCardsCount;
22256
- this.s7x_1 = combinations;
22257
- this.t7x_1 = frezaCard;
22258
- this.u7x_1 = whoPutCardFirstPlayerId;
22288
+ this.t7x_1 = playerCards;
22289
+ this.u7x_1 = otherPlayersCardsCount;
22290
+ this.v7x_1 = combinations;
22291
+ this.w7x_1 = frezaCard;
22292
+ this.x7x_1 = whoPutCardFirstPlayerId;
22259
22293
  }
22260
22294
  protoOf(EarnPointsClientSceneDataDto).toString = function () {
22261
- return 'EarnPointsClientSceneDataDto(playerCards=' + toString(this.q7x_1) + ', otherPlayersCardsCount=' + toString(this.r7x_1) + ', combinations=' + toString_0(this.s7x_1) + ', frezaCard=' + this.t7x_1 + ', whoPutCardFirstPlayerId=' + this.u7x_1 + ')';
22295
+ return 'EarnPointsClientSceneDataDto(playerCards=' + toString(this.t7x_1) + ', otherPlayersCardsCount=' + toString(this.u7x_1) + ', combinations=' + toString_0(this.v7x_1) + ', frezaCard=' + this.w7x_1 + ', whoPutCardFirstPlayerId=' + this.x7x_1 + ')';
22262
22296
  };
22263
22297
  protoOf(EarnPointsClientSceneDataDto).hashCode = function () {
22264
- var result = hashCode(this.q7x_1);
22265
- result = imul(result, 31) + hashCode(this.r7x_1) | 0;
22266
- result = imul(result, 31) + (this.s7x_1 == null ? 0 : hashCode(this.s7x_1)) | 0;
22267
- result = imul(result, 31) + (this.t7x_1 == null ? 0 : this.t7x_1) | 0;
22268
- result = imul(result, 31) + getStringHashCode(this.u7x_1) | 0;
22298
+ var result = hashCode(this.t7x_1);
22299
+ result = imul(result, 31) + hashCode(this.u7x_1) | 0;
22300
+ result = imul(result, 31) + (this.v7x_1 == null ? 0 : hashCode(this.v7x_1)) | 0;
22301
+ result = imul(result, 31) + (this.w7x_1 == null ? 0 : this.w7x_1) | 0;
22302
+ result = imul(result, 31) + getStringHashCode(this.x7x_1) | 0;
22269
22303
  return result;
22270
22304
  };
22271
22305
  protoOf(EarnPointsClientSceneDataDto).equals = function (other) {
@@ -22274,15 +22308,15 @@
22274
22308
  if (!(other instanceof EarnPointsClientSceneDataDto))
22275
22309
  return false;
22276
22310
  var tmp0_other_with_cast = other instanceof EarnPointsClientSceneDataDto ? other : THROW_CCE();
22277
- if (!equals(this.q7x_1, tmp0_other_with_cast.q7x_1))
22311
+ if (!equals(this.t7x_1, tmp0_other_with_cast.t7x_1))
22278
22312
  return false;
22279
- if (!equals(this.r7x_1, tmp0_other_with_cast.r7x_1))
22313
+ if (!equals(this.u7x_1, tmp0_other_with_cast.u7x_1))
22280
22314
  return false;
22281
- if (!equals(this.s7x_1, tmp0_other_with_cast.s7x_1))
22315
+ if (!equals(this.v7x_1, tmp0_other_with_cast.v7x_1))
22282
22316
  return false;
22283
- if (!(this.t7x_1 == tmp0_other_with_cast.t7x_1))
22317
+ if (!(this.w7x_1 == tmp0_other_with_cast.w7x_1))
22284
22318
  return false;
22285
- if (!(this.u7x_1 === tmp0_other_with_cast.u7x_1))
22319
+ if (!(this.x7x_1 === tmp0_other_with_cast.x7x_1))
22286
22320
  return false;
22287
22321
  return true;
22288
22322
  };
@@ -22340,7 +22374,7 @@
22340
22374
  var tmp0_desc = this.l81_1;
22341
22375
  var tmp1_output = encoder.s44(tmp0_desc);
22342
22376
  var tmp2_cached = Companion_getInstance_96().k81_1;
22343
- tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.v7x_1);
22377
+ tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.y7x_1);
22344
22378
  tmp1_output.t44(tmp0_desc);
22345
22379
  };
22346
22380
  protoOf($serializer_58).f41 = function (encoder, value) {
@@ -22395,7 +22429,7 @@
22395
22429
  throwMissingFieldException(seen0, 1, $serializer_getInstance_60().l81_1);
22396
22430
  }
22397
22431
  ClientSceneDataDto_init_$Init$(seen0, serializationConstructorMarker, $this);
22398
- $this.v7x_1 = playerTurnIds;
22432
+ $this.y7x_1 = playerTurnIds;
22399
22433
  return $this;
22400
22434
  }
22401
22435
  function ChoosePartnerSceneDataDto_init_$Create$(seen0, playerTurnIds, serializationConstructorMarker) {
@@ -22404,16 +22438,16 @@
22404
22438
  function ChoosePartnerSceneDataDto(playerTurnIds) {
22405
22439
  Companion_getInstance_96();
22406
22440
  ClientSceneDataDto.call(this);
22407
- this.v7x_1 = playerTurnIds;
22441
+ this.y7x_1 = playerTurnIds;
22408
22442
  }
22409
22443
  protoOf(ChoosePartnerSceneDataDto).c77 = function () {
22410
- return this.v7x_1;
22444
+ return this.y7x_1;
22411
22445
  };
22412
22446
  protoOf(ChoosePartnerSceneDataDto).toString = function () {
22413
- return 'ChoosePartnerSceneDataDto(playerTurnIds=' + toString(this.v7x_1) + ')';
22447
+ return 'ChoosePartnerSceneDataDto(playerTurnIds=' + toString(this.y7x_1) + ')';
22414
22448
  };
22415
22449
  protoOf(ChoosePartnerSceneDataDto).hashCode = function () {
22416
- return hashCode(this.v7x_1);
22450
+ return hashCode(this.y7x_1);
22417
22451
  };
22418
22452
  protoOf(ChoosePartnerSceneDataDto).equals = function (other) {
22419
22453
  if (this === other)
@@ -22421,7 +22455,7 @@
22421
22455
  if (!(other instanceof ChoosePartnerSceneDataDto))
22422
22456
  return false;
22423
22457
  var tmp0_other_with_cast = other instanceof ChoosePartnerSceneDataDto ? other : THROW_CCE();
22424
- if (!equals(this.v7x_1, tmp0_other_with_cast.v7x_1))
22458
+ if (!equals(this.y7x_1, tmp0_other_with_cast.y7x_1))
22425
22459
  return false;
22426
22460
  return true;
22427
22461
  };
@@ -22455,16 +22489,16 @@
22455
22489
  var tmp0_desc = this.o81_1;
22456
22490
  var tmp1_output = encoder.s44(tmp0_desc);
22457
22491
  var tmp2_cached = Companion_getInstance_97().n81_1;
22458
- tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.w7x_1);
22459
- tmp1_output.g46(tmp0_desc, 1, value.x7x_1);
22460
- tmp1_output.i46(tmp0_desc, 2, tmp2_cached[2], value.y7x_1);
22461
- if (tmp1_output.o46(tmp0_desc, 3) ? true : !(value.z7x_1 == null)) {
22462
- tmp1_output.k46(tmp0_desc, 3, tmp2_cached[3], value.z7x_1);
22492
+ tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.z7x_1);
22493
+ tmp1_output.g46(tmp0_desc, 1, value.a7y_1);
22494
+ tmp1_output.i46(tmp0_desc, 2, tmp2_cached[2], value.b7y_1);
22495
+ if (tmp1_output.o46(tmp0_desc, 3) ? true : !(value.c7y_1 == null)) {
22496
+ tmp1_output.k46(tmp0_desc, 3, tmp2_cached[3], value.c7y_1);
22463
22497
  }
22464
- tmp1_output.b46(tmp0_desc, 4, value.a7y_1);
22465
- tmp1_output.i46(tmp0_desc, 5, tmp2_cached[5], value.b7y_1);
22466
- if (tmp1_output.o46(tmp0_desc, 6) ? true : !(value.c7y_1 == null)) {
22467
- tmp1_output.k46(tmp0_desc, 6, tmp2_cached[6], value.c7y_1);
22498
+ tmp1_output.b46(tmp0_desc, 4, value.d7y_1);
22499
+ tmp1_output.i46(tmp0_desc, 5, tmp2_cached[5], value.e7y_1);
22500
+ if (tmp1_output.o46(tmp0_desc, 6) ? true : !(value.f7y_1 == null)) {
22501
+ tmp1_output.k46(tmp0_desc, 6, tmp2_cached[6], value.f7y_1);
22468
22502
  }
22469
22503
  tmp1_output.t44(tmp0_desc);
22470
22504
  };
@@ -22563,19 +22597,19 @@
22563
22597
  throwMissingFieldException(seen0, 55, $serializer_getInstance_61().o81_1);
22564
22598
  }
22565
22599
  ClientSceneDataDto_init_$Init$(seen0, serializationConstructorMarker, $this);
22566
- $this.w7x_1 = playerTurnIds;
22567
- $this.x7x_1 = earnedBiggestPointPlayerId;
22568
- $this.y7x_1 = roundWinners;
22600
+ $this.z7x_1 = playerTurnIds;
22601
+ $this.a7y_1 = earnedBiggestPointPlayerId;
22602
+ $this.b7y_1 = roundWinners;
22569
22603
  if (0 === (seen0 & 8))
22570
- $this.z7x_1 = null;
22604
+ $this.c7y_1 = null;
22571
22605
  else
22572
- $this.z7x_1 = gameWinners;
22573
- $this.a7y_1 = roundMaxPoint;
22574
- $this.b7y_1 = points;
22606
+ $this.c7y_1 = gameWinners;
22607
+ $this.d7y_1 = roundMaxPoint;
22608
+ $this.e7y_1 = points;
22575
22609
  if (0 === (seen0 & 64))
22576
- $this.c7y_1 = null;
22610
+ $this.f7y_1 = null;
22577
22611
  else
22578
- $this.c7y_1 = achievements;
22612
+ $this.f7y_1 = achievements;
22579
22613
  return $this;
22580
22614
  }
22581
22615
  function CalcPointsSceneDataDto_init_$Create$(seen0, playerTurnIds, earnedBiggestPointPlayerId, roundWinners, gameWinners, roundMaxPoint, points, achievements, serializationConstructorMarker) {
@@ -22586,28 +22620,28 @@
22586
22620
  gameWinners = gameWinners === VOID ? null : gameWinners;
22587
22621
  achievements = achievements === VOID ? null : achievements;
22588
22622
  ClientSceneDataDto.call(this);
22589
- this.w7x_1 = playerTurnIds;
22590
- this.x7x_1 = earnedBiggestPointPlayerId;
22591
- this.y7x_1 = roundWinners;
22592
- this.z7x_1 = gameWinners;
22593
- this.a7y_1 = roundMaxPoint;
22594
- this.b7y_1 = points;
22595
- this.c7y_1 = achievements;
22623
+ this.z7x_1 = playerTurnIds;
22624
+ this.a7y_1 = earnedBiggestPointPlayerId;
22625
+ this.b7y_1 = roundWinners;
22626
+ this.c7y_1 = gameWinners;
22627
+ this.d7y_1 = roundMaxPoint;
22628
+ this.e7y_1 = points;
22629
+ this.f7y_1 = achievements;
22596
22630
  }
22597
22631
  protoOf(CalcPointsSceneDataDto).c77 = function () {
22598
- return this.w7x_1;
22632
+ return this.z7x_1;
22599
22633
  };
22600
22634
  protoOf(CalcPointsSceneDataDto).toString = function () {
22601
- return 'CalcPointsSceneDataDto(playerTurnIds=' + toString(this.w7x_1) + ', earnedBiggestPointPlayerId=' + this.x7x_1 + ', roundWinners=' + toString(this.y7x_1) + ', gameWinners=' + toString_0(this.z7x_1) + ', roundMaxPoint=' + this.a7y_1 + ', points=' + toString(this.b7y_1) + ', achievements=' + toString_0(this.c7y_1) + ')';
22635
+ return 'CalcPointsSceneDataDto(playerTurnIds=' + toString(this.z7x_1) + ', earnedBiggestPointPlayerId=' + this.a7y_1 + ', roundWinners=' + toString(this.b7y_1) + ', gameWinners=' + toString_0(this.c7y_1) + ', roundMaxPoint=' + this.d7y_1 + ', points=' + toString(this.e7y_1) + ', achievements=' + toString_0(this.f7y_1) + ')';
22602
22636
  };
22603
22637
  protoOf(CalcPointsSceneDataDto).hashCode = function () {
22604
- var result = hashCode(this.w7x_1);
22605
- result = imul(result, 31) + getStringHashCode(this.x7x_1) | 0;
22606
- result = imul(result, 31) + hashCode(this.y7x_1) | 0;
22607
- result = imul(result, 31) + (this.z7x_1 == null ? 0 : hashCode(this.z7x_1)) | 0;
22608
- result = imul(result, 31) + this.a7y_1 | 0;
22638
+ var result = hashCode(this.z7x_1);
22639
+ result = imul(result, 31) + getStringHashCode(this.a7y_1) | 0;
22609
22640
  result = imul(result, 31) + hashCode(this.b7y_1) | 0;
22610
22641
  result = imul(result, 31) + (this.c7y_1 == null ? 0 : hashCode(this.c7y_1)) | 0;
22642
+ result = imul(result, 31) + this.d7y_1 | 0;
22643
+ result = imul(result, 31) + hashCode(this.e7y_1) | 0;
22644
+ result = imul(result, 31) + (this.f7y_1 == null ? 0 : hashCode(this.f7y_1)) | 0;
22611
22645
  return result;
22612
22646
  };
22613
22647
  protoOf(CalcPointsSceneDataDto).equals = function (other) {
@@ -22616,12 +22650,6 @@
22616
22650
  if (!(other instanceof CalcPointsSceneDataDto))
22617
22651
  return false;
22618
22652
  var tmp0_other_with_cast = other instanceof CalcPointsSceneDataDto ? other : THROW_CCE();
22619
- if (!equals(this.w7x_1, tmp0_other_with_cast.w7x_1))
22620
- return false;
22621
- if (!(this.x7x_1 === tmp0_other_with_cast.x7x_1))
22622
- return false;
22623
- if (!equals(this.y7x_1, tmp0_other_with_cast.y7x_1))
22624
- return false;
22625
22653
  if (!equals(this.z7x_1, tmp0_other_with_cast.z7x_1))
22626
22654
  return false;
22627
22655
  if (!(this.a7y_1 === tmp0_other_with_cast.a7y_1))
@@ -22630,6 +22658,12 @@
22630
22658
  return false;
22631
22659
  if (!equals(this.c7y_1, tmp0_other_with_cast.c7y_1))
22632
22660
  return false;
22661
+ if (!(this.d7y_1 === tmp0_other_with_cast.d7y_1))
22662
+ return false;
22663
+ if (!equals(this.e7y_1, tmp0_other_with_cast.e7y_1))
22664
+ return false;
22665
+ if (!equals(this.f7y_1, tmp0_other_with_cast.f7y_1))
22666
+ return false;
22633
22667
  return true;
22634
22668
  };
22635
22669
  function _get_$cachedSerializer__te6jhj_13($this) {
@@ -29102,27 +29136,27 @@
29102
29136
  }
29103
29137
  var priorityCombinationComparator;
29104
29138
  function Combination(id, type, cards, reasons) {
29105
- this.h77_1 = id;
29106
- this.i77_1 = type;
29107
- this.j77_1 = cards;
29108
- this.k77_1 = reasons;
29139
+ this.k77_1 = id;
29140
+ this.l77_1 = type;
29141
+ this.m77_1 = cards;
29142
+ this.n77_1 = reasons;
29109
29143
  }
29110
29144
  protoOf(Combination).o5h = function () {
29111
- return this.h77_1;
29145
+ return this.k77_1;
29112
29146
  };
29113
29147
  protoOf(Combination).z5u = function () {
29114
- return this.i77_1;
29148
+ return this.l77_1;
29115
29149
  };
29116
29150
  protoOf(Combination).m5j = function () {
29117
- return this.j77_1;
29151
+ return this.m77_1;
29118
29152
  };
29119
29153
  protoOf(Combination).h87 = function () {
29120
- return this.k77_1;
29154
+ return this.n77_1;
29121
29155
  };
29122
29156
  protoOf(Combination).toString = function () {
29123
- var tmp = 'type=' + this.i77_1.toString();
29157
+ var tmp = 'type=' + this.l77_1.toString();
29124
29158
  // Inline function 'kotlin.takeIf' call
29125
- var tmp0_safe_receiver = this.j77_1;
29159
+ var tmp0_safe_receiver = this.m77_1;
29126
29160
  var tmp_0;
29127
29161
  if (tmp0_safe_receiver == null) {
29128
29162
  tmp_0 = null;
@@ -29143,19 +29177,19 @@
29143
29177
  // Inline function 'kotlin.contracts.contract' call
29144
29178
  var tmp_1;
29145
29179
  // Inline function 'games.jass.logic.data.models.table.combinations.Combination.toString.<anonymous>' call
29146
- if (!(this.j77_1 == null)) {
29180
+ if (!(this.m77_1 == null)) {
29147
29181
  tmp_1 = this_0;
29148
29182
  } else {
29149
29183
  tmp_1 = null;
29150
29184
  }
29151
29185
  var tmp_2 = tmp_1;
29152
29186
  // Inline function 'kotlin.takeIf' call
29153
- var this_1 = 'reasons=' + toString(this.k77_1);
29187
+ var this_1 = 'reasons=' + toString(this.n77_1);
29154
29188
  // Inline function 'kotlin.contracts.contract' call
29155
29189
  var tmp_3;
29156
29190
  // Inline function 'games.jass.logic.data.models.table.combinations.Combination.toString.<anonymous>' call
29157
29191
  // Inline function 'kotlin.collections.isNotEmpty' call
29158
- if (!this.k77_1.p()) {
29192
+ if (!this.n77_1.p()) {
29159
29193
  tmp_3 = this_1;
29160
29194
  } else {
29161
29195
  tmp_3 = null;
@@ -29164,32 +29198,32 @@
29164
29198
  return 'Combination(' + joinToString(listOfNotNull([tmp, tmp_2, tmp$ret$7])) + ')';
29165
29199
  };
29166
29200
  protoOf(Combination).pe = function () {
29167
- return this.h77_1;
29201
+ return this.k77_1;
29168
29202
  };
29169
29203
  protoOf(Combination).qe = function () {
29170
- return this.i77_1;
29204
+ return this.l77_1;
29171
29205
  };
29172
29206
  protoOf(Combination).hk = function () {
29173
- return this.j77_1;
29207
+ return this.m77_1;
29174
29208
  };
29175
29209
  protoOf(Combination).j5j = function () {
29176
- return this.k77_1;
29210
+ return this.n77_1;
29177
29211
  };
29178
29212
  protoOf(Combination).i87 = function (id, type, cards, reasons) {
29179
29213
  return new Combination(id, type, cards, reasons);
29180
29214
  };
29181
29215
  protoOf(Combination).copy = function (id, type, cards, reasons, $super) {
29182
- id = id === VOID ? this.h77_1 : id;
29183
- type = type === VOID ? this.i77_1 : type;
29184
- cards = cards === VOID ? this.j77_1 : cards;
29185
- reasons = reasons === VOID ? this.k77_1 : reasons;
29216
+ id = id === VOID ? this.k77_1 : id;
29217
+ type = type === VOID ? this.l77_1 : type;
29218
+ cards = cards === VOID ? this.m77_1 : cards;
29219
+ reasons = reasons === VOID ? this.n77_1 : reasons;
29186
29220
  return this.i87(id, type, cards, reasons);
29187
29221
  };
29188
29222
  protoOf(Combination).hashCode = function () {
29189
- var result = getStringHashCode(this.h77_1);
29190
- result = imul(result, 31) + this.i77_1.hashCode() | 0;
29191
- result = imul(result, 31) + (this.j77_1 == null ? 0 : hashCode(this.j77_1)) | 0;
29192
- result = imul(result, 31) + hashCode(this.k77_1) | 0;
29223
+ var result = getStringHashCode(this.k77_1);
29224
+ result = imul(result, 31) + this.l77_1.hashCode() | 0;
29225
+ result = imul(result, 31) + (this.m77_1 == null ? 0 : hashCode(this.m77_1)) | 0;
29226
+ result = imul(result, 31) + hashCode(this.n77_1) | 0;
29193
29227
  return result;
29194
29228
  };
29195
29229
  protoOf(Combination).equals = function (other) {
@@ -29198,13 +29232,13 @@
29198
29232
  if (!(other instanceof Combination))
29199
29233
  return false;
29200
29234
  var tmp0_other_with_cast = other instanceof Combination ? other : THROW_CCE();
29201
- if (!(this.h77_1 === tmp0_other_with_cast.h77_1))
29235
+ if (!(this.k77_1 === tmp0_other_with_cast.k77_1))
29202
29236
  return false;
29203
- if (!this.i77_1.equals(tmp0_other_with_cast.i77_1))
29237
+ if (!this.l77_1.equals(tmp0_other_with_cast.l77_1))
29204
29238
  return false;
29205
- if (!equals(this.j77_1, tmp0_other_with_cast.j77_1))
29239
+ if (!equals(this.m77_1, tmp0_other_with_cast.m77_1))
29206
29240
  return false;
29207
- if (!equals(this.k77_1, tmp0_other_with_cast.k77_1))
29241
+ if (!equals(this.n77_1, tmp0_other_with_cast.n77_1))
29208
29242
  return false;
29209
29243
  return true;
29210
29244
  };
@@ -30108,14 +30142,14 @@
30108
30142
  }
30109
30143
  function mapToDetailedFull(_this__u8e3s4, player, config, players, newState, newReason) {
30110
30144
  newReason = newReason === VOID ? null : newReason;
30111
- var previousCombination = firstOrNull(filterCombination(player.w6s_1.h6u_1, _this__u8e3s4.h77_1));
30112
- var points = Companion_instance_134.k87(_this__u8e3s4.i77_1, config);
30145
+ var previousCombination = firstOrNull(filterCombination(player.w6s_1.h6u_1, _this__u8e3s4.k77_1));
30146
+ var points = Companion_instance_134.k87(_this__u8e3s4.l77_1, config);
30113
30147
  var numberOfPlayer = Companion_instance_135.t87(player.playerId, players);
30114
30148
  var tmp1_elvis_lhs = previousCombination == null ? null : previousCombination.e6y_1;
30115
- var reasons = plus(tmp1_elvis_lhs == null ? emptyList() : tmp1_elvis_lhs, _this__u8e3s4.k77_1);
30116
- var tmp2_id = _this__u8e3s4.h77_1;
30117
- var tmp3_type = _this__u8e3s4.i77_1;
30118
- var tmp4_cards = _this__u8e3s4.j77_1;
30149
+ var reasons = plus(tmp1_elvis_lhs == null ? emptyList() : tmp1_elvis_lhs, _this__u8e3s4.n77_1);
30150
+ var tmp2_id = _this__u8e3s4.k77_1;
30151
+ var tmp3_type = _this__u8e3s4.l77_1;
30152
+ var tmp4_cards = _this__u8e3s4.m77_1;
30119
30153
  var tmp5_reasons = toSet(sorted(reasons));
30120
30154
  return new CombinationDetails(tmp2_id, tmp3_type, newState, tmp5_reasons, tmp4_cards, points, numberOfPlayer, newReason);
30121
30155
  }
@@ -33999,19 +34033,19 @@
33999
34033
  var this_2 = serializer_0(createKType(getKClass(PlayersTurnActDataDto), arrayOf([]), false));
34000
34034
  var tmp$ret$7 = isInterface(this_2, KSerializer) ? this_2 : THROW_CCE();
34001
34035
  builder_2.e4l(clazz_1, tmp$ret$7);
34002
- // Inline function 'kotlinx.serialization.modules.subclass' call
34003
- var clazz_2 = getKClass(WaitingActDataDto);
34004
- // Inline function 'kotlinx.serialization.serializer' call
34005
- // Inline function 'kotlinx.serialization.internal.cast' call
34006
- var this_3 = serializer_0(createKType(getKClass(WaitingActDataDto), arrayOf([]), false));
34007
- var tmp$ret$10 = isInterface(this_3, KSerializer) ? this_3 : THROW_CCE();
34008
- builder_2.e4l(clazz_2, tmp$ret$10);
34009
34036
  builder_2.f4l(builder);
34010
34037
  // Inline function 'kotlinx.serialization.modules.polymorphic' call
34011
34038
  var baseClass_2 = getKClass(ClientActDataDto);
34012
34039
  var builder_3 = new PolymorphicModuleBuilder(baseClass_2, null);
34013
34040
  // Inline function 'games.jass.logic.data.providers.json.engineSerializersModule.<anonymous>.<anonymous>' call
34014
34041
  engineSerializersModule$_anonymous_$registerClientActDataDtoClasses_atqxtx(builder_3);
34042
+ // Inline function 'kotlinx.serialization.modules.subclass' call
34043
+ var clazz_2 = getKClass(PlayersTurnClientActDataDto);
34044
+ // Inline function 'kotlinx.serialization.serializer' call
34045
+ // Inline function 'kotlinx.serialization.internal.cast' call
34046
+ var this_3 = serializer_0(createKType(getKClass(PlayersTurnClientActDataDto), arrayOf([]), false));
34047
+ var tmp$ret$10 = isInterface(this_3, KSerializer) ? this_3 : THROW_CCE();
34048
+ builder_3.e4l(clazz_2, tmp$ret$10);
34015
34049
  builder_3.f4l(builder);
34016
34050
  var tmp = getKClass(RoundHistoryItemDto);
34017
34051
  builder.d4m(tmp, engineSerializersModule$lambda);
@@ -34067,10 +34101,10 @@
34067
34101
  var tmp$ret$1 = isInterface(this_0, KSerializer) ? this_0 : THROW_CCE();
34068
34102
  _this__u8e3s4.e4l(clazz, tmp$ret$1);
34069
34103
  // Inline function 'kotlinx.serialization.modules.subclass' call
34070
- var clazz_0 = getKClass(PlayersTurnClientActDataDto);
34104
+ var clazz_0 = getKClass(WaitingActDataDto);
34071
34105
  // Inline function 'kotlinx.serialization.serializer' call
34072
34106
  // Inline function 'kotlinx.serialization.internal.cast' call
34073
- var this_1 = serializer_0(createKType(getKClass(PlayersTurnClientActDataDto), arrayOf([]), false));
34107
+ var this_1 = serializer_0(createKType(getKClass(WaitingActDataDto), arrayOf([]), false));
34074
34108
  var tmp$ret$4 = isInterface(this_1, KSerializer) ? this_1 : THROW_CCE();
34075
34109
  _this__u8e3s4.e4l(clazz_0, tmp$ret$4);
34076
34110
  }
@@ -36277,7 +36311,7 @@
36277
36311
  }
36278
36312
  function handleAdditionalCombinations($this, playerId, actData, table, teamsLogicProvider) {
36279
36313
  var tmp;
36280
- switch (actData.g77().n2_1) {
36314
+ switch (actData.j77().n2_1) {
36281
36315
  case 5:
36282
36316
  tmp = true;
36283
36317
  break;
@@ -36293,7 +36327,7 @@
36293
36327
  tmp = tmp_0;
36294
36328
  break;
36295
36329
  default:
36296
- throw new MechanicException("Can't support this type " + actData.g77().toString());
36330
+ throw new MechanicException("Can't support this type " + actData.j77().toString());
36297
36331
  }
36298
36332
  return tmp;
36299
36333
  }
@@ -38288,7 +38322,7 @@
38288
38322
  var combinationActData = tmp$ret$0;
38289
38323
  var tmp0_currentTurnPlayerId = action.x7j_1;
38290
38324
  var tmp1_isAnnounced = action.a7k_1;
38291
- var tmp2_combinations = combinationActData.f77_1;
38325
+ var tmp2_combinations = combinationActData.i77_1;
38292
38326
  return new CombinationChoiceMechanicAction(tmp1_isAnnounced, tmp2_combinations, tmp0_currentTurnPlayerId);
38293
38327
  };
38294
38328
  protoOf(GameMechanicLogicInteractorImpl).t8j = function (action, cardsOnTheTable, players, config) {
@@ -39660,7 +39694,7 @@
39660
39694
  var data = tmp$ret$0;
39661
39695
  var tmp_1;
39662
39696
  // Inline function 'kotlin.collections.isNotEmpty' call
39663
- if (!data.m77_1.p()) {
39697
+ if (!data.f77_1.p()) {
39664
39698
  tmp_1 = PlayerTurnModel_init_$Create$($this.q8l_1.s8l(action.m8l_1, table.gameInfo.round), data.d77());
39665
39699
  } else {
39666
39700
  tmp_1 = null;
@@ -39691,8 +39725,8 @@
39691
39725
  var tmp_3;
39692
39726
  // Inline function 'kotlin.collections.isNotEmpty' call
39693
39727
 
39694
- if (!data_0.e77_1.p()) {
39695
- tmp_3 = PlayerTurnModel_init_$Create$($this.q8l_1.t8l('TRADE', table.gameInfo.round, data_0.g77()), data_0.d77());
39728
+ if (!data_0.h77_1.p()) {
39729
+ tmp_3 = PlayerTurnModel_init_$Create$($this.q8l_1.t8l('TRADE', table.gameInfo.round, data_0.j77()), data_0.d77());
39696
39730
  } else {
39697
39731
  tmp_3 = null;
39698
39732
  }
@@ -39740,8 +39774,8 @@
39740
39774
  var tmp_5;
39741
39775
  // Inline function 'kotlin.collections.isNotEmpty' call
39742
39776
 
39743
- if (!data_2.e77_1.p()) {
39744
- tmp_5 = PlayerTurnModel_init_$Create$($this.q8l_1.t8l('EARN_POINTS', table.gameInfo.round, data_2.g77()), data_2.d77());
39777
+ if (!data_2.h77_1.p()) {
39778
+ tmp_5 = PlayerTurnModel_init_$Create$($this.q8l_1.t8l('EARN_POINTS', table.gameInfo.round, data_2.j77()), data_2.d77());
39745
39779
  } else {
39746
39780
  tmp_5 = null;
39747
39781
  }
@@ -40029,7 +40063,7 @@
40029
40063
  tmp = tmp$ret$0;
40030
40064
  }
40031
40065
  var tmp1_safe_receiver = tmp;
40032
- var combinationType = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.g77();
40066
+ var combinationType = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.j77();
40033
40067
  if (combinationType == null) {
40034
40068
  this.n8f_1.w(VOID, "Can't find tag for COMBINATION_ACT " + sceneInfo.toString());
40035
40069
  return null;
@@ -40537,7 +40571,7 @@
40537
40571
  }
40538
40572
 
40539
40573
  if (tmp_2) {
40540
- tmp_1 = previousActData.g77().equals(CombinationType_SEVEN_TRUMP_getInstance());
40574
+ tmp_1 = previousActData.j77().equals(CombinationType_SEVEN_TRUMP_getInstance());
40541
40575
  } else {
40542
40576
  tmp_1 = false;
40543
40577
  }
@@ -40703,7 +40737,7 @@
40703
40737
 
40704
40738
  var combinationActData = tmp$ret$0;
40705
40739
  var tmp_0;
40706
- switch (combinationActData.g77().n2_1) {
40740
+ switch (combinationActData.j77().n2_1) {
40707
40741
  case 12:
40708
40742
  tmp_0 = new MoveActNext('PLAYER_TURN');
40709
40743
  break;
@@ -40711,7 +40745,7 @@
40711
40745
  tmp_0 = FinishActNext_getInstance();
40712
40746
  break;
40713
40747
  default:
40714
- throw new MechanicException("Can't support this combination " + combinationActData.toString());
40748
+ throw new MechanicException("moveNextActTradeScene: Can't support this combination " + combinationActData.toString());
40715
40749
  }
40716
40750
 
40717
40751
  return tmp_0;
@@ -40736,7 +40770,7 @@
40736
40770
  tmp = tmp2_elvis_lhs == null ? FinishActNext_getInstance() : tmp2_elvis_lhs;
40737
40771
  break;
40738
40772
  default:
40739
- throw new MechanicException("Can't support this act " + table.sceneInfo.n85_1);
40773
+ throw new MechanicException("moveNextActTradeScene: Can't support this act " + table.sceneInfo.n85_1);
40740
40774
  }
40741
40775
  return tmp;
40742
40776
  }
@@ -40757,7 +40791,7 @@
40757
40791
 
40758
40792
  var combinationActData = tmp$ret$0;
40759
40793
  var tmp_0;
40760
- switch (combinationActData.g77().n2_1) {
40794
+ switch (combinationActData.j77().n2_1) {
40761
40795
  case 12:
40762
40796
  // Inline function 'kotlin.collections.associate' call
40763
40797
 
@@ -40782,7 +40816,7 @@
40782
40816
  tmp_0 = new MoveActNext('PLAYER_TURN');
40783
40817
  break;
40784
40818
  default:
40785
- throw new MechanicException("Can't support this combination " + combinationActData.toString());
40819
+ throw new MechanicException("moveNextActEarnPointsScene: Can't support this combination " + combinationActData.toString());
40786
40820
  }
40787
40821
 
40788
40822
  return tmp_0;
@@ -40790,7 +40824,7 @@
40790
40824
  tmp = FinishActNext_getInstance();
40791
40825
  break;
40792
40826
  default:
40793
- throw new MechanicException("Can't support this act " + table.sceneInfo.n85_1);
40827
+ throw new MechanicException("moveNextActEarnPointsScene: Can't support this act " + table.sceneInfo.n85_1);
40794
40828
  }
40795
40829
  return tmp;
40796
40830
  }
@@ -42001,18 +42035,18 @@
42001
42035
  function mapFromClientDto_6(_this__u8e3s4, payload) {
42002
42036
  var tmp4_sceneId = _this__u8e3s4.d7f_1;
42003
42037
  var tmp0_safe_receiver = _this__u8e3s4.f7f_1;
42004
- var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : mapFromDto_72(tmp0_safe_receiver);
42038
+ var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : mapFromDto_74(tmp0_safe_receiver);
42005
42039
  var tmp5_sceneData = tmp1_safe_receiver == null ? null : mapFromClientData_1(tmp1_safe_receiver, payload);
42006
42040
  var tmp6_actId = _this__u8e3s4.e7f_1;
42007
42041
  var tmp2_safe_receiver = _this__u8e3s4.g7f_1;
42008
- var tmp3_safe_receiver = tmp2_safe_receiver == null ? null : mapFromDto_70(tmp2_safe_receiver);
42042
+ var tmp3_safe_receiver = tmp2_safe_receiver == null ? null : mapFromDto_72(tmp2_safe_receiver);
42009
42043
  var tmp7_actData = tmp3_safe_receiver == null ? null : mapFromClientData(tmp3_safe_receiver, payload);
42010
42044
  var tmp8_aid = _this__u8e3s4.h7f_1;
42011
42045
  return new SceneMechanicAction(tmp4_sceneId, tmp6_actId, tmp5_sceneData, tmp7_actData, tmp8_aid);
42012
42046
  }
42013
42047
  function mapFromClientDto_7(_this__u8e3s4, payload) {
42014
42048
  var tmp0_safe_receiver = _this__u8e3s4.x7e_1;
42015
- var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : mapFromDto_70(tmp0_safe_receiver);
42049
+ var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : mapFromDto_72(tmp0_safe_receiver);
42016
42050
  return new SceneActMechanicAction(_this__u8e3s4.v7e_1, _this__u8e3s4.w7e_1, tmp1_safe_receiver == null ? null : mapFromClientData(tmp1_safe_receiver, payload), _this__u8e3s4.y7e_1);
42017
42051
  }
42018
42052
  function mapFromClientDto_8(_this__u8e3s4) {
@@ -46954,7 +46988,7 @@
46954
46988
  var table_0 = state.a6n();
46955
46989
  var combination = first(action_0.h8r_1);
46956
46990
  var tmp_5;
46957
- switch (combination.i77_1.n2_1) {
46991
+ switch (combination.l77_1.n2_1) {
46958
46992
  case 5:
46959
46993
  // Inline function 'kotlin.requireNotNull' call
46960
46994
 
@@ -48088,7 +48122,7 @@
48088
48122
  var item_4 = tmp0_iterator_7.l();
48089
48123
  // Inline function 'games.jass.logic.redux.middlewares.validation.checkCardDuplicatesForScenesMiddleware.<anonymous>.<anonymous>' call
48090
48124
  // Inline function 'kotlin.collections.orEmpty' call
48091
- var tmp0_elvis_lhs = item_4.j77_1;
48125
+ var tmp0_elvis_lhs = item_4.m77_1;
48092
48126
  var tmp$ret$36 = tmp0_elvis_lhs == null ? emptyList() : tmp0_elvis_lhs;
48093
48127
  destination_7.e(tmp$ret$36);
48094
48128
  }
@@ -49336,7 +49370,7 @@
49336
49370
  var combinationActData = tmp$ret$0;
49337
49371
  var player = getPlayer(table.players, combinationActData.d77());
49338
49372
  // Inline function 'kotlin.collections.map' call
49339
- var this_1 = combinationActData.f77_1;
49373
+ var this_1 = combinationActData.i77_1;
49340
49374
  // Inline function 'kotlin.collections.mapTo' call
49341
49375
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
49342
49376
  var tmp0_iterator = this_1.j();
@@ -49368,7 +49402,7 @@
49368
49402
  if (action.actId === 'WAITING_ACT') {
49369
49403
  tmp_0 = table.copy(VOID, VOID, VOID, VOID, VOID, VOID, table.sceneInfo.v8a(VOID, VOID, action.actId, VOID, action.actData));
49370
49404
  } else {
49371
- throw new MechanicException("Can't support this act " + toString(action));
49405
+ throw new MechanicException("onSceneAct: Can't support this act " + toString(action));
49372
49406
  }
49373
49407
 
49374
49408
  tmp = tmp_0;
@@ -50354,7 +50388,7 @@
50354
50388
  while (tmp0_iterator_0.k()) {
50355
50389
  var element = tmp0_iterator_0.l();
50356
50390
  // Inline function 'games.jass.logic.redux.reducers.sclices.scenes.logic.CombinationsMechanicReducer.onCombinationChoice.<anonymous>.<anonymous>' call
50357
- if (item.b6y_1 === element.h77_1) {
50391
+ if (item.b6y_1 === element.k77_1) {
50358
50392
  tmp$ret$0 = true;
50359
50393
  break $l$block_0;
50360
50394
  }
@@ -50371,7 +50405,7 @@
50371
50405
  }
50372
50406
  var updatedCombinations = destination;
50373
50407
  var updatedPoints = player.w6s_1.i6x(VOID, updatedCombinations);
50374
- var announcedCombination = getCombination(updatedPoints.h6u_1, single(action.h8r_1).h77_1);
50408
+ var announcedCombination = getCombination(updatedPoints.h6u_1, single(action.h8r_1).k77_1);
50375
50409
  if (announcedCombination.d6y_1.equals(CombinationState_ACCEPTED_getInstance())) {
50376
50410
  switch (announcedCombination.c6y_1.n2_1) {
50377
50411
  case 5:
@@ -50631,7 +50665,7 @@
50631
50665
  while (tmp0_iterator.k()) {
50632
50666
  var item = tmp0_iterator.l();
50633
50667
  // Inline function 'games.jass.logic.redux.reducers.sclices.scenes.logic.EarnPointsMechanicReducer.onPutCard.<anonymous>.<anonymous>' call
50634
- var tmp$ret$0 = item.i77_1;
50668
+ var tmp$ret$0 = item.l77_1;
50635
50669
  destination.e(tmp$ret$0);
50636
50670
  }
50637
50671
  tmp = this.u92_1.o94(tmp_0, destination, VOID, table.gameHistory);
@@ -53174,14 +53208,14 @@
53174
53208
  protoOf(PartnerExistsRule).c75 = AND;
53175
53209
  protoOf(PlayerShuffleCardsRule).c75 = AND;
53176
53210
  protoOf(NecessaryCardTypeRule).c75 = AND;
53177
- protoOf(CombinationActData).d77 = get_playerTurnId;
53178
- defineProp(protoOf(CombinationActData), 'actId', function () {
53179
- return this.b77();
53180
- });
53181
53211
  protoOf(WaitingActData).d77 = get_playerTurnId;
53182
53212
  defineProp(protoOf(WaitingActData), 'actId', function () {
53183
53213
  return this.b77();
53184
53214
  });
53215
+ protoOf(CombinationActData).d77 = get_playerTurnId;
53216
+ defineProp(protoOf(CombinationActData), 'actId', function () {
53217
+ return this.b77();
53218
+ });
53185
53219
  protoOf(PlayersTurnActData).d77 = get_playerTurnId;
53186
53220
  defineProp(protoOf(PlayersTurnActData), 'actId', function () {
53187
53221
  return this.b77();
@@ -53659,8 +53693,8 @@
53659
53693
  Companion_instance_70 = new Companion_65();
53660
53694
  Companion_instance_75 = new Companion_70();
53661
53695
  Companion_instance_76 = new Companion_71();
53662
- Companion_instance_86 = new Companion_81();
53663
- Companion_instance_87 = new Companion_82();
53696
+ Companion_instance_84 = new Companion_79();
53697
+ Companion_instance_85 = new Companion_80();
53664
53698
  Companion_instance_99 = new Companion_94();
53665
53699
  Companion_instance_102 = new Companion_97();
53666
53700
  Companion_instance_105 = new Companion_100();