@mtgame/core 0.2.69 → 0.2.71

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.
@@ -373,6 +373,8 @@ var SportTypes;
373
373
  SportTypes[SportTypes["mini_waterpolo"] = 21] = "mini_waterpolo";
374
374
  SportTypes[SportTypes["media_basket"] = 22] = "media_basket";
375
375
  SportTypes[SportTypes["moneyball_basket"] = 23] = "moneyball_basket";
376
+ SportTypes[SportTypes["wrestball"] = 24] = "wrestball";
377
+ SportTypes[SportTypes["wrestball_classic"] = 25] = "wrestball_classic";
376
378
  })(SportTypes || (SportTypes = {}));
377
379
  let Sport = class Sport extends BaseModel {
378
380
  isBasketball() {
@@ -444,6 +446,9 @@ let Sport = class Sport extends BaseModel {
444
446
  isMiniWaterpolo() {
445
447
  return this.id === SportTypes.mini_waterpolo;
446
448
  }
449
+ isWrestball() {
450
+ return this.id === SportTypes.wrestball || this.parentId === SportTypes.wrestball;
451
+ }
447
452
  static toFront(data) {
448
453
  return null;
449
454
  }
@@ -774,6 +779,36 @@ WaterpoloProfile = __decorate([
774
779
  })
775
780
  ], WaterpoloProfile);
776
781
 
782
+ var WrestballWorkHand;
783
+ (function (WrestballWorkHand) {
784
+ WrestballWorkHand[WrestballWorkHand["left"] = 1] = "left";
785
+ WrestballWorkHand[WrestballWorkHand["right"] = 2] = "right";
786
+ })(WrestballWorkHand || (WrestballWorkHand = {}));
787
+ let WrestballProfile = class WrestballProfile extends BaseModel {
788
+ static toFront(value) {
789
+ }
790
+ static toBack(value) {
791
+ }
792
+ };
793
+ __decorate([
794
+ ToFrontHook
795
+ ], WrestballProfile, "toFront", null);
796
+ __decorate([
797
+ ToBackHook
798
+ ], WrestballProfile, "toBack", null);
799
+ WrestballProfile = __decorate([
800
+ ModelInstance({
801
+ mappingFields: {
802
+ id: 'id',
803
+ user_id: 'userId',
804
+ work_hand: 'workHand'
805
+ },
806
+ relation: {
807
+ workHand: enumField(WrestballWorkHand)
808
+ }
809
+ })
810
+ ], WrestballProfile);
811
+
777
812
  var UserGender;
778
813
  (function (UserGender) {
779
814
  UserGender[UserGender["male"] = 1] = "male";
@@ -828,6 +863,7 @@ User = __decorate([
828
863
  handball_profile: 'handballProfile',
829
864
  rugby_profile: 'rugbyProfile',
830
865
  waterpolo_profile: 'waterpoloProfile',
866
+ wrestball_profile: 'wrestballProfile',
831
867
  wizards: 'wizards',
832
868
  city: 'city',
833
869
  gender: 'gender',
@@ -846,6 +882,7 @@ User = __decorate([
846
882
  handballProfile: HandballProfile,
847
883
  rugbyProfile: RugbyProfile,
848
884
  waterpoloProfile: WaterpoloProfile,
885
+ wrestballProfile: WrestballProfile,
849
886
  city: City,
850
887
  gender: enumField(UserGender)
851
888
  }
@@ -876,6 +913,9 @@ let Team = class Team extends BaseModel {
876
913
  if (this.sport.isWaterpolo()) {
877
914
  classList.push('empty-logo-waterpolo');
878
915
  }
916
+ if (this.sport.isWrestball()) {
917
+ classList.push('empty-logo-basketball');
918
+ }
879
919
  return classList.join(' ');
880
920
  }
881
921
  static toFront(data) {
@@ -1119,6 +1159,7 @@ var OvertimeTypes;
1119
1159
  OvertimeTypes[OvertimeTypes["bullitts"] = 7] = "bullitts";
1120
1160
  OvertimeTypes[OvertimeTypes["penalties"] = 8] = "penalties";
1121
1161
  OvertimeTypes[OvertimeTypes["time_and_penalties"] = 9] = "time_and_penalties";
1162
+ OvertimeTypes[OvertimeTypes["time_and_first_goal"] = 10] = "time_and_first_goal";
1122
1163
  })(OvertimeTypes || (OvertimeTypes = {}));
1123
1164
  var TimerTypes;
1124
1165
  (function (TimerTypes) {
@@ -1187,6 +1228,7 @@ TournamentSettings = __decorate([
1187
1228
  volleyball_statistic_type: 'volleyballStatisticType',
1188
1229
  rugby_statistic_type: 'rugbyStatisticType',
1189
1230
  waterpolo_statistic_type: 'waterpoloStatisticType',
1231
+ wrestball_statistic_type: 'wrestballStatisticType',
1190
1232
  shot_clock_enabled: 'shotClockEnabled',
1191
1233
  game_time_type: 'gameTimeType',
1192
1234
  with_result_table: 'withResultTable',
@@ -1200,6 +1242,8 @@ TournamentSettings = __decorate([
1200
1242
  match_penalty_time: 'matchPenaltyTime',
1201
1243
  timer_type: 'timerType',
1202
1244
  hide_on_league_main_page: 'hideOnLeagueMainPage',
1245
+ wrestler_scrums_count: 'wrestlerScrumsCount',
1246
+ wrestlers_count: 'wrestlersCount',
1203
1247
  },
1204
1248
  relation: {
1205
1249
  type: enumField(TournamentTypes),
@@ -1208,6 +1252,7 @@ TournamentSettings = __decorate([
1208
1252
  volleyballStatisticType: enumField(VolleyballStatisticTypes),
1209
1253
  rugbyStatisticType: enumField(RugbyStatisticTypes),
1210
1254
  waterpoloStatisticType: enumField(WaterpoloStatisticTypes),
1255
+ wrestballStatisticType: enumField(WrestballStatisticTypes),
1211
1256
  gameTimeType: enumField(GameTimeTypes),
1212
1257
  overtimeType: enumField(OvertimeTypes),
1213
1258
  timerType: enumField(TimerTypes),
@@ -1787,6 +1832,45 @@ WaterpoloGameConfig = __decorate([
1787
1832
  })
1788
1833
  ], WaterpoloGameConfig);
1789
1834
 
1835
+ let WrestballGameConfig = class WrestballGameConfig extends BaseModel {
1836
+ static toFront(data) { }
1837
+ static toBack(data) { }
1838
+ };
1839
+ __decorate([
1840
+ ToFrontHook
1841
+ ], WrestballGameConfig, "toFront", null);
1842
+ __decorate([
1843
+ ToBackHook
1844
+ ], WrestballGameConfig, "toBack", null);
1845
+ WrestballGameConfig = __decorate([
1846
+ ModelInstance({
1847
+ mappingFields: {
1848
+ periods_count: 'periodsCount',
1849
+ period_time: 'periodTime',
1850
+ game_up_to_score: 'gameUpToScore',
1851
+ overtime_type: 'overtimeType',
1852
+ overtime_time: 'overtimeTime',
1853
+ overtime_score: 'overtimeScore',
1854
+ max_game_players: 'maxGamePlayers',
1855
+ timeout_count: 'timeoutCount',
1856
+ overtime_timeout_count: 'overtimeTimeoutCount',
1857
+ timeout_time: 'timeoutTime',
1858
+ statistic_type: 'statisticType',
1859
+ shot_clock_enabled: 'shotClockEnabled',
1860
+ game_time_type: 'gameTimeType',
1861
+ timer_type: 'timerType',
1862
+ wrestler_scrums_count: 'wrestlerScrumsCount',
1863
+ wrestlers_count: 'wrestlersCount',
1864
+ },
1865
+ relation: {
1866
+ overtimeType: enumField(OvertimeTypes),
1867
+ statisticType: enumField(WrestballStatisticTypes),
1868
+ gameTimeType: enumField(GameTimeTypes),
1869
+ timerType: enumField(TimerTypes),
1870
+ }
1871
+ })
1872
+ ], WrestballGameConfig);
1873
+
1790
1874
  var GameStatuses;
1791
1875
  (function (GameStatuses) {
1792
1876
  GameStatuses[GameStatuses["open"] = 1] = "open";
@@ -1930,6 +2014,18 @@ let Game = class Game extends BaseModel {
1930
2014
  set waterpoloGameConfig(value) {
1931
2015
  this._waterpoloGameConfig = value;
1932
2016
  }
2017
+ get wrestballGameConfig() {
2018
+ if (this._wrestballGameConfig && this._wrestballGameConfig.periodsCount) {
2019
+ return this._wrestballGameConfig;
2020
+ }
2021
+ if (this.gameConfig) {
2022
+ this._wrestballGameConfig = WrestballGameConfig.toFront(this.gameConfig);
2023
+ }
2024
+ return this._wrestballGameConfig;
2025
+ }
2026
+ set wrestballGameConfig(value) {
2027
+ this._wrestballGameConfig = value;
2028
+ }
1933
2029
  get scoreByPeriodList() {
1934
2030
  if (!this.scoreByPeriod) {
1935
2031
  return [];
@@ -2024,6 +2120,7 @@ Game = __decorate([
2024
2120
  handball_game_config: 'handballGameConfig',
2025
2121
  rugby_game_config: 'rugbyGameConfig',
2026
2122
  waterpolo_game_config: 'waterpoloGameConfig',
2123
+ wrestball_game_config: 'wrestballGameConfig',
2027
2124
  score_by_period: 'scoreByPeriod',
2028
2125
  playoff_stage: 'playoffStage',
2029
2126
  playoff_round: 'playoffRound',
@@ -2052,6 +2149,7 @@ Game = __decorate([
2052
2149
  handballGameConfig: HandballGameConfig,
2053
2150
  rugbyGameConfig: RugbyGameConfig,
2054
2151
  waterpoloGameConfig: WaterpoloGameConfig,
2152
+ wrestballGameConfig: WrestballGameConfig,
2055
2153
  tournamentPlayoff: Playoff,
2056
2154
  tournamentCourt: LeagueCourt,
2057
2155
  media: listField(MediaItem),
@@ -11305,5 +11403,5 @@ HttpCookieInterceptor.ctorParameters = () => [
11305
11403
  * Generated bundle index. Do not edit.
11306
11404
  */
11307
11405
 
11308
- export { Achievement, AchievementTypes, BannerLocation, BaseModel, BaseService, BasketballCourtSides, BasketballCourtZones, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameSubLogTypesLocalization, BasketballGameTeamStatistic, BasketballPenaltyTypes, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, BasketballSubLogTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, DateField, DateTimeField, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, FootballGameApi, FootballGameConfig, FootballGameLog, FootballGameLogTypeLocalization, FootballGameLogTypes, FootballGameStatistic, FootballGameTeamStatistic, FootballProfile, FootballStatistic, FootballWorkFoot, FootballWorkFootLocalization, Game, GameBaseApi, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameBill, GameBillStatusLocalization, GameBillStatuses, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameRugbyPosition, GameRugbyPositionLocalization, GameStatuses, GameTeamAdditionalData, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameUserDisqualification, GameUserLimitationTypes, GameUserLimitations, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, GameWaterpoloPosition, GameWaterpoloPositionLocalization, GameWaterpoloPositionShortRuLocalization, HandballGameApi, HandballGameConfig, HandballGameLog, HandballGameLogTypeLocalization, HandballGameLogTypes, HandballGameStatistic, HandballGameTeamStatistic, HandballProfile, HandballStatistic, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HockeyWorkHandLocalization, HttpCookieInterceptor, League, LeagueApi, LeagueBanner, LeagueCourt, LeagueDocument, LeagueFieldBase, LeagueFieldBaseValue, LeagueFieldTypes, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlayerApi, LeaguePlayerField, LeaguePlayerFieldValue, LeaguePlaylist, LeagueTeamField, LocalStorageEngine, MODEL_MAPPING_FIELDS_KEY, MODEL_RELATION_KEY, MODEL_TO_BACK_KEY, MODEL_TO_FRONT_KEY, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OrgNotificationApi, Organization, OrganizationBill, OrganizationBillStatusLocalization, OrganizationBillStatuses, OrganizationStatistic, OrganizationStatuses, OrganizationStatusesLocalization, OrganizationTariff, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, PublicTeamApi, PublicUserApi, Qualification, QualificationLocalization, RUGBY_GAME_LOG_TYPE_POINTS, RUGBY_TEAM_LOG_TYPES, ReferenceApi, RoundTeamGame, RugbyFoulGameStage, RugbyFoulGameStageLocalization, RugbyFoulSanctionLocalization, RugbyFoulSanctions, RugbyFoulType, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, RugbyStatisticTypes, SCORE_LOG_TYPES, Sport, SportTypes, StageTeamGame, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamAchievement, TeamAdditionalData, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, TeamsAndUsers, TimerTypes, ToBackHook, ToFrontHook, Tournament, TournamentApi, TournamentDisqualification, TournamentDivision, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoin1x1Data, TournamentJoin1x1Status, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentRound, TournamentRoundApi, TournamentRoundSettings, TournamentRoundTeam, TournamentRoundTypes, TournamentSeason, TournamentSeasonApi, TournamentSeasonStatuses, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamFieldValue, TournamentTeamShort, TournamentTeamUser, TournamentTeamUserInvite, TournamentTeamWinner, TournamentTypes, UntilDestroy, User, UserAccess, UserApi, UserGender, UserPermission, UserPermissionTypes, UserProfile, VolleyballGameApi, VolleyballGameConfig, VolleyballGameLog, VolleyballGameLogType, VolleyballGameLogTypeLocalization, VolleyballGameStatistic, VolleyballGameTeamStatistic, VolleyballGameTypes, VolleyballProfile, VolleyballStatistic, VolleyballStatisticTypes, VolleyballWorkHand, VolleyballWorkHandLocalization, WaterpoloAdvantageTypes, WaterpoloGameApi, WaterpoloGameConfig, WaterpoloGameLog, WaterpoloGameLogTypeLocalization, WaterpoloGameLogTypes, WaterpoloGameStatistic, WaterpoloGameTeamStatistic, WaterpoloProfile, WaterpoloStatistic, WaterpoloStatisticTypes, WaterpoloWorkHand, WaterpoloWorkHandLocalization, WorkHand, WorkHandLocalization, WrestballStatisticTypes, addItemInArray, addItemsInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, parseDate, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl };
11406
+ export { Achievement, AchievementTypes, BannerLocation, BaseModel, BaseService, BasketballCourtSides, BasketballCourtZones, BasketballGameApi, BasketballGameConfig, BasketballGameLog, BasketballGameLogTypeLocalization, BasketballGameLogTypes, BasketballGameStatistic, BasketballGameSubLogTypesLocalization, BasketballGameTeamStatistic, BasketballPenaltyTypes, BasketballProfile, BasketballStatistic, BasketballStatisticTypes, BasketballSubLogTypes, CONFIG_DATA, CentrifugoService, City, ConfigService, DateField, DateTimeField, FAULT_LOG_TYPES, Feedback, FeedbackApi, File, FileApi, FileEngine, FootballGameApi, FootballGameConfig, FootballGameLog, FootballGameLogTypeLocalization, FootballGameLogTypes, FootballGameStatistic, FootballGameTeamStatistic, FootballProfile, FootballStatistic, FootballWorkFoot, FootballWorkFootLocalization, Game, GameBaseApi, GameBasketballPosition, GameBasketballPositionLocalization, GameBasketballPositionShortLocalization, GameBill, GameBillStatusLocalization, GameBillStatuses, GameFootballPosition, GameFootballPositionLocalization, GameHandballPosition, GameHandballPositionLocalization, GameHockeyPosition, GameHockeyPositionLocalization, GameInvite, GameInviteStatus, GameResultTypes, GameRugbyPosition, GameRugbyPositionLocalization, GameStatuses, GameTeamAdditionalData, GameTimeTypes, GameTimelineStageItem, GameTimelineStages, GameUser, GameUserDisqualification, GameUserLimitationTypes, GameUserLimitations, GameVolleyballPosition, GameVolleyballPositionLocalization, GameVolleyballPositionShortLocalization, GameVolleyballPositionShortRuLocalization, GameWaterpoloPosition, GameWaterpoloPositionLocalization, GameWaterpoloPositionShortRuLocalization, HandballGameApi, HandballGameConfig, HandballGameLog, HandballGameLogTypeLocalization, HandballGameLogTypes, HandballGameStatistic, HandballGameTeamStatistic, HandballProfile, HandballStatistic, HockeyAdvantageTypes, HockeyGameApi, HockeyGameConfig, HockeyGameLog, HockeyGameLogTypeLocalization, HockeyGameLogTypes, HockeyGameStatistic, HockeyGameTeamStatistic, HockeyPenaltyTypes, HockeyProfile, HockeyStatistic, HockeyWorkHand, HockeyWorkHandLocalization, HttpCookieInterceptor, League, LeagueApi, LeagueBanner, LeagueCourt, LeagueDocument, LeagueFieldBase, LeagueFieldBaseValue, LeagueFieldTypes, LeagueNews, LeagueNewsApi, LeagueNewsType, LeaguePartner, LeaguePlayer, LeaguePlayerApi, LeaguePlayerField, LeaguePlayerFieldValue, LeaguePlaylist, LeagueTeamField, LocalStorageEngine, MODEL_MAPPING_FIELDS_KEY, MODEL_RELATION_KEY, MODEL_TO_BACK_KEY, MODEL_TO_FRONT_KEY, MediaApi, MediaItem, ModelInstance, Notification, NotificationAllowTypes, NotificationApi, NotificationBaseApi, NotificationServiceEnum, NotificationSettings, NotificationType, OrgNotificationApi, Organization, OrganizationBill, OrganizationBillStatusLocalization, OrganizationBillStatuses, OrganizationStatistic, OrganizationStatuses, OrganizationStatusesLocalization, OrganizationTariff, OvertimeTypeLocalization, OvertimeTypes, Playoff, PlayoffSettings, PlayoffTypes, Poll, PollAnswer, PollStatuses, PollVariant, PublicTeamApi, PublicUserApi, Qualification, QualificationLocalization, RUGBY_GAME_LOG_TYPE_POINTS, RUGBY_TEAM_LOG_TYPES, ReferenceApi, RoundTeamGame, RugbyFoulGameStage, RugbyFoulGameStageLocalization, RugbyFoulSanctionLocalization, RugbyFoulSanctions, RugbyFoulType, RugbyGameApi, RugbyGameConfig, RugbyGameLog, RugbyGameLogTypeLocalization, RugbyGameLogTypes, RugbyGameStatistic, RugbyGameTeamStatistic, RugbyProfile, RugbyStatistic, RugbyStatisticTypes, SCORE_LOG_TYPES, Sport, SportTypes, StageTeamGame, StorageEngine, StorageEngineField, Store, Team, TeamAccess, TeamAchievement, TeamAdditionalData, TeamApi, TeamEvent, TeamEventApi, TeamEventInvite, TeamEventInviteStatuses, TeamEventTypeLocalization, TeamEventTypes, TeamInvite, TeamInviteExternal, TeamPermission, TeamPermissionTypes, TeamUser, TeamUserRole, TeamUserRoleLocalization, TeamsAndUsers, TimerTypes, ToBackHook, ToFrontHook, Tournament, TournamentApi, TournamentDisqualification, TournamentDivision, TournamentEvent, TournamentEventTypes, TournamentGender, TournamentGroup, TournamentInvite, TournamentJoin1x1Data, TournamentJoin1x1Status, TournamentJoinApi, TournamentJoinData, TournamentJoinTeam, TournamentNews, TournamentRound, TournamentRoundApi, TournamentRoundSettings, TournamentRoundTeam, TournamentRoundTypes, TournamentSeason, TournamentSeasonApi, TournamentSeasonStatuses, TournamentSettings, TournamentStage, TournamentStageApi, TournamentStageStatuses, TournamentStageTeam, TournamentStatuses, TournamentTeam, TournamentTeamFieldValue, TournamentTeamShort, TournamentTeamUser, TournamentTeamUserInvite, TournamentTeamWinner, TournamentTypes, UntilDestroy, User, UserAccess, UserApi, UserGender, UserPermission, UserPermissionTypes, UserProfile, VolleyballGameApi, VolleyballGameConfig, VolleyballGameLog, VolleyballGameLogType, VolleyballGameLogTypeLocalization, VolleyballGameStatistic, VolleyballGameTeamStatistic, VolleyballGameTypes, VolleyballProfile, VolleyballStatistic, VolleyballStatisticTypes, VolleyballWorkHand, VolleyballWorkHandLocalization, WaterpoloAdvantageTypes, WaterpoloGameApi, WaterpoloGameConfig, WaterpoloGameLog, WaterpoloGameLogTypeLocalization, WaterpoloGameLogTypes, WaterpoloGameStatistic, WaterpoloGameTeamStatistic, WaterpoloProfile, WaterpoloStatistic, WaterpoloStatisticTypes, WaterpoloWorkHand, WaterpoloWorkHandLocalization, WorkHand, WorkHandLocalization, WrestballStatisticTypes, addItemInArray, addItemsInArray, applyGameMediaFilters, applyGamesFilters, applyStatisticFilters, applyStatisticLeadersFilters, changeFavicons, componentDestroyed, deleteItemFromArray, enumField, fileSizeValidator, generateArray, getArrayChunks, getCookie, getEnumOptions, getIconsData, handleError, isTouchDevice, listField, markFormGroupTouched, minLengthArrayValidator, parseDate, patchItemInArray, penaltyTypeField, updateItemInArray, updateItemsInArray, validateDate, validateEmail, validatePhone, validateUrl, WrestballWorkHand as ɵa, WrestballProfile as ɵb, WrestballGameConfig as ɵc };
11309
11407
  //# sourceMappingURL=mtgame-core.js.map