{"version":3,"file":"static/chunks/46829-aa612b24bef89d64.js","sources":["webpack://_N_E/./server/config/access.config.js","webpack://_N_E/./src/LegacyApp/client/components/lastBets/LastBets.tsx","webpack://_N_E/./src/LegacyApp/client/selectors/activePackageSelector.selector.js","webpack://_N_E/./src/LegacyApp/hooks/app/useNoSleep.ts","webpack://_N_E/./src/modules/games/Game/methods/triggerGameLoadedEvent.ts","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameLoader/GameLoader.style.js","webpack://_N_E/./public/gif/gameLoading.svg","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameLoader/GameLoader.jsx","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameLoader/GameLoader.container.js","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/StyledGame/game-dice.global.styled.ts","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/StyledGame/game-hilo.global.styled.ts","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/StyledGame/game-limbo.global.styled.ts","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/ActiveGameGlobalStyles.tsx","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/GameWrapper.styled.ts","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/GameWrapperOrientationBox.tsx","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/GameWrapperBox.tsx","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/StyledGame/game.global.styled.ts","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/StyledGame/game-page.global.styled.ts","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/GameWrapper.jsx","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameWrapper/GameWrapper.container.js","webpack://_N_E/./src/common/components/games/GameWrapper/GameWrapper.tsx","webpack://_N_E/./src/common/components/seo/AnyJsonLd.tsx","webpack://_N_E/./src/common/components/seo/BreadcrumbDomainJsonLd.tsx","webpack://_N_E/./src/common/components/seo/GameJsonLd.tsx","webpack://_N_E/./src/common/hooks/useOnUnmount.ts","webpack://_N_E/./src/common/methods/getBreadcrumbs.ts","webpack://_N_E/./src/modules/games/Game/components/Game.components/GameStats/index.ts","webpack://_N_E/./src/modules/games/Game/components/GameLoaded.tsx","webpack://_N_E/./src/modules/games/Game/hooks/useGameLoaded.ts","webpack://_N_E/./src/modules/games/Game/constants/events.ts","webpack://_N_E/./src/modules/games/Game/context/GameContext.ts","webpack://_N_E/./src/modules/games/Game/store/gameValidation/gameValidation.selectors.ts","webpack://_N_E/./src/modules/games/PlinkoGame/components/playground/config/constants.ts","webpack://_N_E/./src/modules/games/PlinkoGame/components/playground/config/index.ts","webpack://_N_E/./src/modules/games/PlinkoGame/styles/PlinkoGameStyled.ts","webpack://_N_E/./src/modules/games/PlinkoGame/styles/plinkoResponsiveMixin.ts","webpack://_N_E/./src/modules/casino/layouts/Casino.layout.tsx","webpack://_N_E/./src/pages/casino/index.tsx","webpack://_N_E/./src/LegacyApp/client/components/lastBets/LastBets.module.scss"],"sourceRoot":"","sourcesContent":["const LicenceBlocked = {\n\tUnitedStates: 'US',\n\tAustralia: 'AU',\n\tAustria: 'AT',\n\tComoros: 'KM',\n\tGermany: 'DE',\n\tSpain: 'ES',\n\tUnitedKingdom: 'GB',\n\tNetherlands: 'NL',\n\tFrance: 'FR',\n};\n\nconst BlockedCountries = {\n\tPoland: 'PL',\n\tCuracao: 'CW',\n\tSyria: 'SY',\n\tIran: 'IR',\n\tNorthKorea: 'KP',\n\tCuba: 'CU',\n\tVenezuela: 'VE',\n\tYemen: 'YE',\n\tIraq: 'IQ',\n\tSudan: 'SD',\n\tMyanmar: 'MM',\n};\n\nconst accessConfig = {\n\tblockRegister: [\n\t\tLicenceBlocked.UnitedStates,\n\t\tLicenceBlocked.Australia,\n\t\tLicenceBlocked.Austria,\n\t\tLicenceBlocked.Comoros,\n\t\tLicenceBlocked.Germany,\n\t\tLicenceBlocked.Spain,\n\t\tLicenceBlocked.UnitedKingdom,\n\t\tLicenceBlocked.Netherlands,\n\t\tLicenceBlocked.France,\n\t],\n\tblockPage: [\n\t\t...Object.keys(BlockedCountries).map((el) => BlockedCountries[el]),\n\t],\n\tenableCloudflareRules: false,\n};\n\nmodule.exports = {\n\taccessConfig,\n};\n","import React, { FC, useCallback, useEffect, useRef, useState } from 'react';\nimport classnames from 'classnames';\nimport { TABLE_ID } from '@modules/transactions/constants/TableId';\nimport { GameType } from '@modules/games/Game/constants/availableGames';\nimport { useAppMobile } from '@common/selectors/app.selectors';\nimport { useOptionEnabled } from '@common/selectors/options.selectors';\nimport { isFunction } from '@common/methods/isFunction';\nimport { useOnUnmount } from '@common/hooks/useOnUnmount';\nimport { roundNumber } from '@common/methods/roundNumber/roundNumber';\nimport { OPTIONS } from '@legacyApp/client/store/options/options.constants';\nimport {\n\tuseTransactionsPerGame,\n\tuseTransactionsPerGameActive,\n} from '@legacyApp/client/store/transactions/transactions.selectors';\nimport transactionService from '@modules/transactions/transactionsService';\nimport { BetResult } from '@legacyApp/client/components/lastBets/types';\n\nimport styles from '@legacyApp/client/components/lastBets/LastBets.module.scss';\n\nexport interface LastBetsProps {\n\tgame: GameType;\n\tparse?: (bet: BetResult) => number;\n\tdelay?: number;\n\tnoAnimation?: boolean;\n}\n\nconst MAX_LIMIT = 6;\n\nconst LastBets_: FC = (props) => {\n\tconst timeoutRef = useRef(null);\n\tconst boxRef = useRef(null);\n\n\tconst { game, parse, delay, noAnimation } = props;\n\n\tconst lastBets = useTransactionsPerGame(\n\t\tTABLE_ID.gameResults,\n\t\tgame,\n\t);\n\tconst isMobile = useAppMobile();\n\tconst animation = useOptionEnabled(OPTIONS.ANIMATION);\n\n\tconst [limit_, setLimit_] = useState(null);\n\tconst [list_, setList_] = useState>([]);\n\n\tconst getLimit = useCallback(\n\t\t(box) => {\n\t\t\tconst elementWidth = isMobile ? 45 : 70;\n\t\t\tconst margin = isMobile ? 10 : 15;\n\t\t\tconst limit = roundNumber(\n\t\t\t\t(box.current.clientWidth + margin) / (elementWidth + margin),\n\t\t\t\t0,\n\t\t\t\t'floor',\n\t\t\t);\n\t\t\treturn limit > MAX_LIMIT ? MAX_LIMIT : limit;\n\t\t},\n\t\t[isMobile],\n\t);\n\n\tconst parse_ = useCallback(\n\t\t(value: BetResult): BetResult => {\n\t\t\tif (isFunction(parse)) {\n\t\t\t\treturn {\n\t\t\t\t\t...value,\n\t\t\t\t\tresult_value: parse(value),\n\t\t\t\t};\n\t\t\t}\n\t\t\treturn value;\n\t\t},\n\t\t[parse],\n\t);\n\n\tconst getList = useCallback(\n\t\t(list: Array): Array => {\n\t\t\tif (!list || !list.length) {\n\t\t\t\treturn [];\n\t\t\t}\n\t\t\treturn list\n\t\t\t\t.filter((el, index) => {\n\t\t\t\t\tif (!limit_) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t\treturn index < limit_;\n\t\t\t\t})\n\t\t\t\t.map((el) => parse_(el));\n\t\t},\n\t\t[limit_, parse_],\n\t);\n\n\tconst setList = useCallback(\n\t\t(list: Array) => {\n\t\t\t// console.log('setList', {\n\t\t\t// delay,\n\t\t\t// });\n\t\t\tif (!delay) {\n\t\t\t\treturn setList_(list);\n\t\t\t}\n\t\t\tif (timeoutRef.current) {\n\t\t\t\tclearTimeout(timeoutRef.current);\n\t\t\t}\n\t\t\ttimeoutRef.current = setTimeout(() => {\n\t\t\t\tsetList_(list);\n\t\t\t}, delay);\n\t\t},\n\t\t[delay],\n\t);\n\n\tconst setLimit = useCallback(() => {\n\t\tif (!boxRef.current) {\n\t\t\treturn;\n\t\t}\n\t\tconst limit = getLimit(boxRef);\n\t\tif (limit_ !== limit) {\n\t\t\tsetLimit_(limit);\n\t\t}\n\t}, [getLimit, limit_]);\n\n\tuseOnUnmount(() => {\n\t\tif (timeoutRef.current) {\n\t\t\tclearTimeout(timeoutRef.current);\n\t\t}\n\t});\n\n\tuseEffect(() => {\n\t\tsetLimit();\n\t}, [setLimit]);\n\n\tuseEffect(() => {\n\t\tconst newList = getList(lastBets);\n\t\tif (\n\t\t\ttransactionService.isListDifferent(\n\t\t\t\tnewList,\n\t\t\t\tlist_,\n\t\t\t\ttransactionService.getRowCompareKeys(TABLE_ID.gameResults, list_),\n\t\t\t)\n\t\t) {\n\t\t\tsetList(newList);\n\t\t}\n\t}, [getList, lastBets, list_, setList]);\n\n\treturn (\n\t\t
\n\t\t\t{list_.map((el) => (\n\t\t\t\t\n\t\t\t\t\t
{el.result_value}
\n\t\t\t\t
\n\t\t\t))}\n\t\t\n\t);\n};\n\nexport const LastBets: FC = (props) => {\n\tconst active = useTransactionsPerGameActive(TABLE_ID.gameResults, props.game);\n\treturn (\n\t\t
\n\t\t\t{active && }\n\t\t
\n\t);\n};\n\nexport const CSSClassNameLastBetsWrapper = 'lastBetsWrapper';\nexport const CSSClassNameLastBet = 'lastBet';\n","import { createSelector } from '@reduxjs/toolkit';\n\nexport const isPackageActive = (state, type) => {\n\tconst packageData = state.registry.packages[type] || {};\n\tconst packageDataModules = Object.keys(packageData);\n\tif (!packageDataModules.length) {\n\t\treturn false;\n\t}\n\treturn (\n\t\tpackageDataModules.filter((module) => packageData[module]).length ===\n\t\tpackageDataModules.length\n\t);\n};\n\nexport const packageStateSelector = (type) => (state) => {\n\treturn isPackageActive(state, type);\n};\n\nexport const activePackageSelector = (param) =>\n\tcreateSelector(packageStateSelector(param), (a) => a);\n","import NoSleep from 'nosleep.js';\nimport { useCallback, useEffect, useMemo } from 'react';\n\nexport const useNoSleep = (element) => {\n\tconst noSleep = useMemo(() => {\n\t\treturn process.browser ? new NoSleep() : null;\n\t}, []);\n\n\tconst toggle = useCallback(() => {\n\t\t// @ts-expect-error invalid name in package\n\t\tif (!noSleep?.enabled) {\n\t\t\tnoSleep.enable().catch(() => null);\n\t\t}\n\t}, [noSleep]);\n\n\tuseEffect(\n\t\tfunction () {\n\t\t\tif (!noSleep || !element) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\telement.addEventListener('click', toggle, false);\n\n\t\t\treturn () => {\n\t\t\t\telement.removeEventListener('click', toggle, false);\n\t\t\t\tnoSleep.disable();\n\t\t\t};\n\t\t},\n\t\t[element, noSleep, toggle],\n\t);\n};\n","import { triggerWindowEvent } from '@common/hooks/useEventListener';\nimport { GAME_LOADED_EVENT } from '../constants/events';\n\nexport const triggerGameLoadedEvent = () => {\n\ttriggerWindowEvent(GAME_LOADED_EVENT);\n};\n","import styled, { css } from 'styled-components';\nimport classnames from 'classnames';\nimport GameLoading from '../../../../../../../public/gif/gameLoading.svg';\n\nexport const GameLoaderStyle = styled.div.attrs((props) => ({\n\tclassName: classnames('text-style-md-medium', props.className),\n}))`\n\talign-items: center;\n\tbackground-color: inherit;\n\tborder-radius: inherit;\n\tdisplay: flex;\n\tflex-direction: column;\n\theight: 100%;\n\tjustify-content: center;\n\tleft: 0;\n\topacity: 1 !important;\n\tpointer-events: none;\n\tposition: absolute;\n\ttop: 0;\n\twidth: 100%;\n\n\t* {\n\t\topacity: 1 !important;\n\t}\n\n\tp {\n\t\twidth: auto;\n\t}\n\n\t&:before {\n\t\tanimation: rotationCentered 0.4s linear infinite;\n\t\tbackground-image: url(${GameLoading});\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: contain;\n\t\tcontent: '';\n\n\t\tdisplay: inline-block !important;\n\t\theight: 200px;\n\t\tleft: 50%;\n\t\tmargin: 0;\n\t\tposition: absolute;\n\t\ttop: 50%;\n\t\ttransform: translate(-50%, -50%);\n\t\twidth: 200px;\n\t}\n\n\t${(props) =>\n\t\tprops.isInfo\n\t\t\t? css`\n\t\t\t\t\t&:before {\n\t\t\t\t\t\topacity: 0.2;\n\t\t\t\t\t}\n\t\t\t `\n\t\t\t: ''}\n`;\n","export default \"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDBweCIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iOSAxMSA4MiA4MCIKCQkgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiPgoJPHBhdGgKCQlkPSJNMTAgNTBBNDAgNDAgMCAwIDAgOTAgNTBBNDAgNDIgMCAwIDEgMTAgNTAiCgkJZmlsbD0iIzFmODhmZSIKCQlzdHJva2U9Im5vbmUiCgkJdHJhbnNmb3JtPSJyb3RhdGUoMjY5Ljg2MyA1MCA1MSkiCgk+PC9wYXRoPgoJPCEtLSAgICA8cGF0aCBkPSJNMTAgNTBBNDAgNDAgMCAwIDAgOTAgNTBBNDAgNDIgMCAwIDEgMTAgNTAiIGZpbGw9ImJsdWUiIHN0cm9rZT0ibm9uZSIgdHJhbnNmb3JtPSJyb3RhdGUoNDQwIDUwIDUxKSI+LS0+Cgk8IS0tICAgIDwvcGF0aD4tLT4KCTwhLS0gICAgPHBhdGggZD0iTTEwIDUwQTQwIDQwIDAgMCAwIDkwIDUwQTQwIDQyIDAgMCAxIDEwIDUwIiBmaWxsPSJ5ZWxsb3ciIHN0cm9rZT0ibm9uZSIgdHJhbnNmb3JtPSJyb3RhdGUoMzQwIDUwIDUxKSI+LS0+Cgk8IS0tICAgIDwvcGF0aD4tLT4KCTwhLS0gICAgPHBhdGggZD0iTTEwIDUwQTQwIDQwIDAgMCAwIDkwIDUwQTQwIDQyIDAgMCAxIDEwIDUwIiBmaWxsPSJncmVlbiIgc3Ryb2tlPSJub25lIiB0cmFuc2Zvcm09InJvdGF0ZSgxNjAgNTAgNTEpIj4tLT4KCTwhLS0gICAgPC9wYXRoPi0tPgo8L3N2Zz4K\"","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { enhanceComponent } from '../../../../../../LegacyApp/client/wrappers/enhanceComponent';\nimport { capitalize } from '../../../../../../LegacyApp/client/modules/app/appService';\nimport { simpleTrans } from '../../../../../../LegacyApp/client/modules/translation/translationService';\nimport { trans } from '../../../../../../LegacyApp/client/modules/translation/translate';\nimport { Button } from '../../../../../../ui/components/button';\nimport { ButtonStyleType } from '../../../../../../ui/types/ButtonStyleType';\nimport { Size } from '../../../../../../ui/types/Size';\nimport { GameLoaderStyle } from './GameLoader.style';\n\nclass GameLoader extends React.PureComponent {\n\tstatic propTypes = {\n\t\tactive: PropTypes.any,\n\t\tdata: PropTypes.any,\n\t\tgamesActive: PropTypes.bool,\n\t};\n\n\tconstructor(props) {\n\t\tsuper(props);\n\t\tthis.state = {\n\t\t\tdata: false,\n\t\t};\n\t}\n\n\tcomponentDidMount() {\n\t\tthis.handleData();\n\t}\n\n\tcomponentDidUpdate(prevProps) {\n\t\tif (this.props.data !== prevProps.data) {\n\t\t\tthis.handleData(this.props.data);\n\t\t}\n\t}\n\n\thandleData = (data = this.props.data) => {\n\t\tif (!data) {\n\t\t\treturn this.setState({\n\t\t\t\tdata: false,\n\t\t\t});\n\t\t}\n\t\tconst keys = Object.keys(data);\n\t\tconst errorIndex = keys.findIndex((key) => data[key].error);\n\t\tif (errorIndex > -1) {\n\t\t\treturn this.setState({\n\t\t\t\tdata: data[keys[errorIndex]],\n\t\t\t});\n\t\t}\n\t\tconst timedOutIndex = keys.findIndex((key) => data[key].timedOut);\n\t\tif (timedOutIndex > -1) {\n\t\t\treturn this.setState({\n\t\t\t\tdata: data[keys[timedOutIndex]],\n\t\t\t});\n\t\t}\n\t\treturn this.setState({\n\t\t\tdata: false,\n\t\t});\n\t};\n\n\tgetLoading = () => {\n\t\treturn `${\n\t\t\tthis.props.active ? `${capitalize(this.props.active)} ` : ''\n\t\t}${capitalize(simpleTrans('loading'))}...`;\n\t};\n\n\trender() {\n\t\treturn (\n\t\t\t\n\t\t\t\t

\n\t\t\t\t\t{this.state.data\n\t\t\t\t\t\t? this.state.data.error\n\t\t\t\t\t\t\t? trans({ label: 'Error during loading game' })\n\t\t\t\t\t\t\t: this.state.data.timedOut\n\t\t\t\t\t\t\t? trans({ label: 'Taking a long time to load game...' })\n\t\t\t\t\t\t\t: this.getLoading()\n\t\t\t\t\t\t: this.getLoading()}\n\t\t\t\t

\n\t\t\t\t{this.state.data?.retry && (\n\t\t\t\t\t\n\t\t\t\t)}\n\t\t\t
\n\t\t);\n\t}\n}\n\nGameLoader = enhanceComponent({\n\tGameLoader,\n});\n\nexport default GameLoader;\n","import { connect } from 'react-redux';\nimport { compose } from 'redux';\nimport { activePackageSelector } from '../../../../../../LegacyApp/client/selectors/activePackageSelector.selector';\nimport { PackageType } from '../../../../../../LegacyApp/client/store/registry/registry.constants';\nimport GameLoader from './GameLoader';\n\nconst mapStateToProps = (state, props) => {\n\treturn {\n\t\tactive: state.game?.activeGame,\n\t\tdata: state.loader.groupsData.game,\n\t\tgamesActive: activePackageSelector(PackageType.GAME)(state, props),\n\t};\n};\n\nconst GameLoaderContainer = compose(connect(mapStateToProps, false))(\n\tGameLoader,\n);\n\nexport { GameLoaderContainer };\n","import { createGlobalStyle, css } from 'styled-components';\n\nimport { ThemeType } from '@legacyApp/client/modules/style/theme';\nimport { CSSClassNameGameStatsWrapper } from '@modules/games/Game/components/Game.components/GameStats/gameStats';\nimport { BetAmountInputWrapper } from '@legacyApp/client/components/betAmountInput/betAmountInput';\n\nexport const GameDiceGlobalStyles = createGlobalStyle<{\n\ttheme: ThemeType;\n\t$isSingleBetValue: boolean;\n}>`\n\t.game-page {\n\t\t&--dice {\n\t\t\t${(props) =>\n\t\t!props.$isSingleBetValue\n\t\t\t? css`\n\t\t\t\t\t\t\t@supports (-webkit-touch-callout: none) {\n\t\t\t\t\t\t\t\t@media (max-height: 560px) {\n\t\t\t\t\t\t\t\t\t.game {\n\t\t\t\t\t\t\t\t\t\t.${CSSClassNameGameStatsWrapper} {\n\t\t\t\t\t\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t@supports not (-webkit-touch-callout: none) {\n\t\t\t\t\t\t\t\t@media (max-height: 515px) {\n\t\t\t\t\t\t\t\t\t.game {\n\t\t\t\t\t\t\t\t\t\t.${CSSClassNameGameStatsWrapper} {\n\t\t\t\t\t\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t `\n\t\t\t: ''}\n\t\t}\n\n\t\t&--dice,\n\t\t&--limbo {\n\t\t\t@media (max-width: ${(props) => props.theme.media.maxWidthVerySmall}) {\n\t\t\t\t${BetAmountInputWrapper} {\n\t\t\t\t\t.buttons-box {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t\t@media (max-height: 515px) {\n\t\t\t\t.game {\n\t\t\t\t\tz-index: 100;\n\t\t\t\t}\n\n\t\t\t\t.wolf-theme {\n\t\t\t\t\theight: 100%;\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tz-index: 1;\n\t\t\t\t\t\tbackground-color: rgba(0, 0, 0, 0.56);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.game {\n\t\t\t\t\t&-metrics {\n\t\t\t\t\t\theight: 30px;\n\n\t\t\t\t\t\t.game-slider--box {\n\t\t\t\t\t\t\t> span {\n\t\t\t\t\t\t\t\t&:after,\n\t\t\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\t\t\ttop: calc(100% + 5px);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\t\t\theight: 25px;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\t\t\theight: 8px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n`;\n","import { createGlobalStyle, css } from 'styled-components';\n\nimport { borderRadius } from '@legacyApp/client/modules/style/defaults';\nimport { calcStyle } from '@legacyApp/client/modules/style/methods/calcStyle';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\nimport { ThemeType } from '@legacyApp/client/modules/style/theme';\nimport { BetAmountInputWrapper } from '@legacyApp/client/components/betAmountInput/betAmountInput';\n\nexport const GameHiloGlobalStyles = createGlobalStyle<{ theme: ThemeType }>`\n\t.page-game.hilo {\n\t\t${chatViewport(\n\t\t\t(padding) => css`\n\t\t\t\t&.content-tablet {\n\t\t\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\t\t\ta: props.theme.media_v2.max_tablet_medium,\n\t\t\t\t\t\t\t\tb: padding,\n\t\t\t\t\t\t\t})}) {\n\t\t\t\t\t\t${BetAmountInputWrapper} {\n\t\t\t\t\t\t\t.buttons-box {\n\t\t\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\t\ta: props.theme.media_v2.max_mobile_medium,\n\t\t\t\t\t\t\tb: padding,\n\t\t\t\t\t\t})}) {\n\t\t\t\t\t${BetAmountInputWrapper} {\n\t\t\t\t\t\t.buttons-box {\n\t\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t`,\n\t\t)}\n\t}\n\n\t.game--hilo {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\talign-items: center;\n\t\tjustify-content: flex-start;\n\t\tpadding-top: 40px;\n\n\t\t.game {\n\t\t\t&-session,\n\t\t\t&-board {\n\t\t\t\tbackground-color: rgba(34, 47, 66, 0.54);\n\t\t\t\tmargin-bottom: 40px;\n\t\t\t\tborder-radius: 10px;\n\t\t\t\tborder: 1px solid var(--color-dark-400);\n\t\t\t}\n\n\t\t\t&-board {\n\t\t\t\tposition: relative;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\theight: 210px;\n\t\t\t\tpadding: 0;\n\n\t\t\t\t&--max-value,\n\t\t\t\t&--min-value {\n\t\t\t\t\theight: 80%;\n\t\t\t\t\twidth: 30px;\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tflex-direction: column;\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t}\n\n\t\t\t\t&--max-value:before,\n\t\t\t\t&--min-value:after {\n\t\t\t\t\tcontent: attr(data-content);\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tline-height: 1;\n\t\t\t\t\theight: 15px;\n\t\t\t\t\tcolor: var(--color-dark-400);\n\t\t\t\t}\n\n\t\t\t\t&--max-value:after,\n\t\t\t\t&--min-value:before {\n\t\t\t\t\tcontent: '';\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\theight: 60%;\n\t\t\t\t\tmin-height: 100px;\n\t\t\t\t\twidth: 2px;\n\t\t\t\t\tbackground-color: var(--color-dark-400);\n\t\t\t\t}\n\n\t\t\t\t&--max-value,\n\t\t\t\t&--min-value {\n\t\t\t\t\tdiv {\n\t\t\t\t\t\twidth: 0;\n\t\t\t\t\t\theight: 0;\n\t\t\t\t\t\tborder-left: 6px solid transparent;\n\t\t\t\t\t\tborder-right: 6px solid transparent;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&--max-value {\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tpadding-bottom: 5px;\n\t\t\t\t\t}\n\n\t\t\t\t\tdiv {\n\t\t\t\t\t\tborder-bottom: 9px solid var(--color-dark-400);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&--min-value {\n\t\t\t\t\t&:after {\n\t\t\t\t\t\tpadding-top: 5px;\n\t\t\t\t\t}\n\n\t\t\t\t\tdiv {\n\t\t\t\t\t\tborder-top: 9px solid var(--color-dark-400);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&__slider {\n\t\t\t\t\twidth: 10px;\n\t\t\t\t\theight: 100%;\n\t\t\t\t\tborder-left: 1px solid var(--color-dark-400);\n\t\t\t\t\tborder-right: 1px solid var(--color-dark-400);\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\tposition: relative;\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: '';\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\theight: 30%;\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\ttop: 130%;\n\t\t\t\t\t\tbackground-color: var(--color-dark-200);\n\t\t\t\t\t}\n\n\t\t\t\t\t&--active {\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\tanimation: SwipeCardUp 1s linear 1;\n\t\t\t\t\t\t\tanimation-fill-mode: forwards;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&__buttons {\n\t\t\t\t\tfloat: left;\n\t\t\t\t\twidth: 300px;\n\t\t\t\t\tmargin: 0 40px;\n\t\t\t\t\tborder: 1px solid var(--color-dark-400);\n\t\t\t\t\t${borderRadius};\n\n\t\t\t\t\t.button {\n\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\twidth: calc(100% - 10px);\n\t\t\t\t\t\tmargin: 5px;\n\t\t\t\t\t}\n\n\t\t\t\t\t&--extended {\n\t\t\t\t\t\t.button {\n\t\t\t\t\t\t\twidth: calc(50% - 10px);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-panel {\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: center;\n\t\t\t\talign-items: center;\n\t\t\t\twidth: 80%;\n\n\t\t\t\t&__input {\n\t\t\t\t\twidth: calc((100% - 100px) / 2);\n\n\t\t\t\t\t.input {\n\t\t\t\t\t\topacity: 1 !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t${chatViewport(\n\t\t(viewportPadding) => css`\n\t\t\t.game--hilo {\n\t\t\t\t.game-panel__input {\n\t\t\t\t\t@media (min-width: ${(props) =>\n\t\t\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\t\t\ta: props.theme.media.minWidthDesktop,\n\t\t\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t\t\t})}) {\n\t\t\t\t\t\tmin-width: 310px;\n\t\t\t\t\t}\n\n\t\t\t\t\t@media (min-width: ${calcStyle({ a: '1049', b: viewportPadding })}) {\n\t\t\t\t\t\tmin-width: 330px;\n\t\t\t\t\t}\n\n\t\t\t\t\t@media (min-width: ${(props) =>\n\t\t\t\t\t\t\tprops.theme.media.minWidthBigDesktop}) {\n\t\t\t\t\t\tmin-width: 400px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media (max-width: ${calcStyle({ a: '1050', b: viewportPadding })}) {\n\t\t\t\t.game--hilo {\n\t\t\t\t\tpadding-top: 30px;\n\n\t\t\t\t\t.game {\n\t\t\t\t\t\t&-board {\n\t\t\t\t\t\t\theight: 190px;\n\t\t\t\t\t\t\tpadding: 0 5px;\n\t\t\t\t\t\t\tmargin-bottom: 40px;\n\n\t\t\t\t\t\t\t&__buttons {\n\t\t\t\t\t\t\t\twidth: 80%;\n\t\t\t\t\t\t\t\tmargin: 0 5px;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.card {\n\t\t\t\t\t\t\t\theight: ${(props) =>\n\t\t\t\t\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\t\t\t\t\ta: props.theme.layout.card.height,\n\t\t\t\t\t\t\t\t\t\tb: 0.9,\n\t\t\t\t\t\t\t\t\t\tmode: '*',\n\t\t\t\t\t\t\t\t\t})};\n\t\t\t\t\t\t\t\twidth: ${(props) =>\n\t\t\t\t\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\t\t\t\t\ta: props.theme.layout.card.width,\n\t\t\t\t\t\t\t\t\t\tb: 0.9,\n\t\t\t\t\t\t\t\t\t\tmode: '*',\n\t\t\t\t\t\t\t\t\t})};\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t&-panel {\n\t\t\t\t\t\t\t.game-controller {\n\t\t\t\t\t\t\t\twidth: auto;\n\t\t\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t`,\n\t)}\n\n\t.content-tablet,\n\t.content-tabletSmall,\n\t.content-mobile,\n\t.content-mobileSmall {\n\t\t.game--hilo {\n\t\t\tpadding-top: 0!important;\n\n\t\t\t.game {\n\t\t\t\t&-board {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\theight: 270px;\n\t\t\t\t\tpadding: 0 5px;\n\t\t\t\t\tmargin-bottom: 40px!important;\n\n\t\t\t\t\t@media (max-height: 800px) {\n\t\t\t\t\t\tmargin-bottom: 20px!important;\n\t\t\t\t\t}\n\n\t\t\t\t\t&__buttons {\n\t\t\t\t\t\twidth: calc((100vw - 50px - 20px - 6px - 35px - ${(props) =>\n\t\t\t\t\t\t\tprops.theme.layout.card.width}) / 2);\n\n\t\t\t\t\t\t.button {\n\t\t\t\t\t\t\twidth: calc(100% - 6px);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t&--extended {\n\t\t\t\t\t\t\t.button {\n\t\t\t\t\t\t\t\twidth: calc(50% - 6px);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.decision-button {\n\t\t\t\t\t\t\tfont-size: 12px!important;\n\t\t\t\t\t\t\tmargin: 3px;\n\n\t\t\t\t\t\t\t&__name {\n\t\t\t\t\t\t\t\twhite-space: normal;\n\t\t\t\t\t\t\t\tpadding-right: 0;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t&__slider {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\n\t\t\t\t\t.card {\n\t\t\t\t\t\theight: ${(props) => props.theme.layout.card.height};\n\t\t\t\t\t\twidth: ${(props) => props.theme.layout.card.width};\n\t\t\t\t\t}\n\n\t\t\t\t\t&--max-value,\n\t\t\t\t\t&--min-value {\n\t\t\t\t\t\twidth: 25px;\n\t\t\t\t\t\tmargin: 0 5px;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&-panel {\n\t\t\t\t\twidth: 100%;\n\n\t\t\t\t\t.game-controller {\n\t\t\t\t\t\twidth: auto;\n\t\t\t\t\t\tpadding: 0 20px 10px!important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.content-tablet,\n\t.content-tabletSmall,\n\t.content-mobile,\n\t.content-mobileSmall {\n\t\t.game--hilo {\n\t\t\t.game {\n\t\t\t\t&-board {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\theight: auto!important;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tpadding-left: 45px!important;\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tjustify-content: space-between;\n\t\t\t\t\tbackground-color: transparent;\n\t\t\t\t\tborder: none;\n\n\t\t\t\t\t.carousel-root {\n\t\t\t\t\t\twidth: calc(100% - ${(props) => props.theme.layout.card.width})!important;\n\t\t\t\t\t}\n\n\t\t\t\t\t&__buttons {\n\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\tmargin: 0!important;\n\t\t\t\t\t\twidth: 100%!important;\n\n\t\t\t\t\t\t&--extended {\n\t\t\t\t\t\t\t.button {\n\t\t\t\t\t\t\t\twidth: calc(100% - 6px)!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t&--basic {\n\t\t\t\t\t\t\ttransform: translateY(36%);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.cards-tile {\n\t\t\t\t\t\tmargin-right: 20px;\n\n\t\t\t\t\t\t@media (min-width: ${(props) => props.theme.media.minWidthTablet}) {\n\t\t\t\t\t\t\tmargin-left: 20px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t&--max-value,\n\t\t\t\t\t&--min-value {\n\t\t\t\t\t\ttransform: translateY(-50%);\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\tleft: 10px;\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\twidth: 15px;\n\t\t\t\t\t}\n\n\t\t\t\t\t&--max-value {\n\t\t\t\t\t\ttop: 45%;\n\t\t\t\t\t}\n\n\t\t\t\t\t&--min-value {\n\t\t\t\t\t\ttop: 55%;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&-panel {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tflex-wrap: nowrap;\n\n\t\t\t\t\t&__input {\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\tmargin-right: 15px;\n\t\t\t\t\t}\n\n\t\t\t\t\t.game-controller {\n\t\t\t\t\t\twidth: auto;\n\t\t\t\t\t\tpadding: 0!important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.content-tablet {\n\t\t\t.game--hilo {\n\t\t\t\t.game {\n\t\t\t\t\t&-panel {\n\t\t\t\t\t\t&__input {\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.game-controller {\n\t\t\t\t\t\t\twidth: auto;\n\t\t\t\t\t\t\tpadding: 0 20px 10px!important;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.device-tabletSmall,\n\t.device-mobile,\n\t.device-mobileSmall {\n\t\t.game--hilo {\n\t\t\t.game {\n\t\t\t\t&-board {\n\t\t\t\t\tmargin-bottom: 15px!important;\n\n\t\t\t\t\t&--max-value:after,\n\t\t\t\t\t&--min-value:before {\n\t\t\t\t\t\tmax-height: 100px;\n\t\t\t\t\t}\n\n\t\t\t\t\t.decision-button {\n\t\t\t\t\t\t&__name {\n\t\t\t\t\t\t\twhite-space: normal;\n\t\t\t\t\t\t\tpadding-right: 10px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.content-tablet,\n\t.content-tabletSmall,\n\t.content-mobile,\n\t.content-mobileSmall {\n\t\t&.device-desktop {\n\t\t\t.game--hilo {\n\t\t\t\t.game {\n\t\t\t\t\t&-board {\n\t\t\t\t\t\tmargin-top: 30px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.device-tablet,\n\t.device-tabletSmall,\n\t.device-mobile,\n\t.device-mobileSmall {\n\t\t.game--hilo {\n\t\t\t.game {\n\t\t\t\t&-board {\n\t\t\t\t\tpadding-left: 10px!important;\n\n\t\t\t\t\t.card {\n\t\t\t\t\t\twidth: 23vw!important;\n\t\t\t\t\t\theight: 28vh!important;\n\t\t\t\t\t}\n\n\t\t\t\t\t@media (min-height: 540px) {\n\t\t\t\t\t\t.card {\n\t\t\t\t\t\t\theight: ${(props) =>\n\t\t\t\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\t\t\t\ta: props.theme.layout.card.heightToWidthScale,\n\t\t\t\t\t\t\t\t\tb: 23,\n\t\t\t\t\t\t\t\t\tmode: '*',\n\t\t\t\t\t\t\t\t\tsuffix: 'vw',\n\t\t\t\t\t\t\t\t})}!important;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t@media (min-width: ${(props) =>\n\t\t\t\t\t\tprops.theme.media.minWidthTablet}) and (max-width: ${(props) =>\n\tprops.theme.media.maxWidthTablet}) and (max-height: 780px) {\n\t\t\t\t\t\t.card {\n\t\t\t\t\t\t\twidth: 20vw!important;\n\t\t\t\t\t\t\theight: 28vh!important;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.card__symbol {\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t}\n\n\t\t\t\t\t&--max-value {\n\t\t\t\t\t\ttop: 40%;\n\t\t\t\t\t}\n\n\t\t\t\t\t&--min-value {\n\t\t\t\t\t\ttop: 60%;\n\t\t\t\t\t}\n\n\t\t\t\t\t&__buttons {\n\t\t\t\t\t\t&--basic {\n\t\t\t\t\t\t\ttransform: unset;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t&--extended {\n\t\t\t\t\t\t\t.button {\n\t\t\t\t\t\t\t\twidth: calc(50% - 6px)!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t.carousel-root {\n\t\t\t\t\t\twidth: calc(100% - 23vw - 15px)!important;\n\t\t\t\t\t}\n\n\t\t\t\t\t&--min-value,\n\t\t\t\t\t&--max-value {\n\t\t\t\t\t\theight: 60%;\n\t\t\t\t\t\tleft: -10px;\n\t\t\t\t\t\topacity: 0.6;\n\n\t\t\t\t\t\tdiv {\n\t\t\t\t\t\t\tborder-left-width: 4px;\n\t\t\t\t\t\t\tborder-right-width: 4px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t&--min-value:before,\n\t\t\t\t\t&--max-value:after {\n\t\t\t\t\t\tmin-height: unset;\n\t\t\t\t\t\theight: 60%;\n\t\t\t\t\t}\n\n\t\t\t\t\t&--min-value:after,\n\t\t\t\t\t&--max-value:before {\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\theight: 10px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.device-mobileSmall {\n\t\t.game--hilo {\n\t\t\t.game {\n\t\t\t\t&-board {\n\t\t\t\t\t&__buttons {\n\t\t\t\t\t\t&--extended {\n\t\t\t\t\t\t\t.decision-button {\n\t\t\t\t\t\t\t\t&__name {\n\t\t\t\t\t\t\t\t\tpadding-right: 0!important;\n\t\t\t\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.button {\n\t\t\t\t\t\t\t\twidth: calc(50% - 6px)!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n`;\n","import { createGlobalStyle } from 'styled-components';\nimport { ThemeType } from '@legacyApp/client/modules/style/theme';\nimport { BetAmountInputWrapper } from '@legacyApp/client/components/betAmountInput/betAmountInput';\n\nexport const GameLimboGlobalStyles = createGlobalStyle<{ theme: ThemeType }>`\n\t.game--limbo {\n\t\t.game--limbo__result {\n\t\t\ttext-shadow: 0 0 10px #013672;\n\t\t}\n\n\t\t@media (max-width: ${(props) => props.theme.media.maxWidthVerySmall}) {\n\t\t\t${BetAmountInputWrapper} {\n\t\t\t\t.buttons-box {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n`;\n","import { FC, useCallback } from 'react';\n\nimport { useStateEffect } from '@common/hooks/useStateEffect';\nimport { GameType } from '@modules/games/Game/constants/availableGames';\nimport { checkIsSingleValue } from '@modules/games/Game/methods/checkIsSingleValue';\nimport { useDiceRollRuleSelector } from '@modules/games/Game/store/dice/selectors/useDiceRollRuleSelector';\nimport { useGameActiveGame } from '@modules/games/Game/store/game/game.selectors';\n\nimport { GameDiceGlobalStyles } from '@modules/games/Game/components/Game.components/GameWrapper/StyledGame/game-dice.global.styled';\nimport { GameHiloGlobalStyles } from '@modules/games/Game/components/Game.components/GameWrapper/StyledGame/game-hilo.global.styled';\nimport { GameLimboGlobalStyles } from '@modules/games/Game/components/Game.components/GameWrapper/StyledGame/game-limbo.global.styled';\n\nconst DiceGlobalStyled = () => {\n\tconst rule = useDiceRollRuleSelector();\n\n\tconst isSingleBetValue = useStateEffect(\n\t\tuseCallback(() => checkIsSingleValue(rule), [rule]),\n\t);\n\n\treturn ;\n};\n\nexport const ActiveGameGlobalStyles: FC = () => {\n\tconst activeGame = useGameActiveGame();\n\n\tif (activeGame === GameType.DICE) {\n\t\treturn ;\n\t}\n\n\tif (activeGame === GameType.HILO) {\n\t\treturn ;\n\t}\n\n\tif (activeGame === GameType.LIMBO) {\n\t\treturn ;\n\t}\n\n\tif (activeGame === GameType.PLINKO) {\n\t\treturn null;\n\t\t// return ;\n\t}\n\n\treturn null;\n};\n","import classnames from 'classnames';\nimport { rgba } from 'polished';\nimport styled, { css } from 'styled-components';\n\nimport {\n\tbox,\n\tboxNoHeight,\n\tclearfix,\n} from '@legacyApp/client/modules/style/defaults';\n\nimport { StyledGameSliderResultBox } from '@modules/games/DiceGame/components/GameSliderResult/GameSliderResult.styled';\nimport { PlinkoGameStyled } from '@modules/games/PlinkoGame/styles/PlinkoGameStyled';\n\ninterface GameWrapperStyledProps {\n\tgame?: string;\n\tisPro?: boolean;\n\tisFlash?: boolean;\n\tisLoading?: boolean;\n}\n\nexport const GameWrapperStyled = styled.div.attrs(\n\t(props) => ({\n\t\tclassName: classnames(`game-page game-page--${props.game}`, {\n\t\t\tautobet: props.isPro,\n\t\t}),\n\t}),\n)`\n\tposition: relative;\n\n\t*:not(.pin):not(.last-bet) {\n\t\ttransition: opacity ${(props) => props.theme.layout.transition};\n\t}\n\n\t@media (max-width: ${(props) => props.theme.media.maxWidthTablet}) {\n\t\t${box}\n\t}\n\n\t@media (min-width: ${(props) => props.theme.media.minWidthDesktop}) {\n\t\t${boxNoHeight};\n\n\t\t${clearfix};\n\n\t\t${StyledGameSliderResultBox} {\n\t\t\twidth: calc(100% - 19px);\n\t\t\tmargin-left: 4px;\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n\t@media (min-width: ${(props) => props.theme.media.minWidthBigDesktop}) {\n\t\t${StyledGameSliderResultBox} {\n\t\t\twidth: calc(100% - 25px);\n\t\t\tmargin-left: 3px;\n\t\t\tmargin-right: 3px;\n\t\t}\n\t}\n\n\t@media (max-height: 450px) and (max-width: ${(props) =>\n\t\t\tprops.theme.media\n\t\t\t\t.maxWidthTablet}) and (min-width: 640px) and (orientation: landscape) {\n\t\t.game,\n\t\t${PlinkoGameStyled} {\n\t\t\t* {\n\t\t\t\tdisplay: none !important;\n\t\t\t}\n\t\t}\n\n\t\t.wolf-theme {\n\t\t\theight: calc(100vh - 60px);\n\t\t}\n\n\t\t.game-panel {\n\t\t\t.bottom-menu {\n\t\t\t\tbackground-color: #000407;\n\t\t\t}\n\t\t}\n\t}\n\n\t.device-mobile &,\n\t.device-mobileSmall & {\n\t\tmargin-bottom: -10px;\n\t}\n\n\t${(props) =>\n\t\tprops.isFlash\n\t\t\t? css`\n\t\t\t\t\t.game {\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\tbackground: ${rgba('black', 0.73)};\n\t\t\t\t\t\t\tcontent: '';\n\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t\tleft: 0;\n\t\t\t\t\t\t\tposition: fixed;\n\t\t\t\t\t\t\ttop: 0;\n\t\t\t\t\t\t\twidth: 100vw;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t `\n\t\t\t: ''}\n\n\t${(props) =>\n\t\tprops.isLoading\n\t\t\t? css`\n\t\t\t\t\tposition: relative;\n\n\t\t\t\t\t@media (min-width: ${props.theme.media.minWidthDesktop}) {\n\t\t\t\t\t\tmax-height: 500px;\n\t\t\t\t\t}\n\n\t\t\t\t\t@media (min-width: ${props.theme.media.minWidthBigDesktop}) {\n\t\t\t\t\t\tmax-height: 800px;\n\t\t\t\t\t}\n\n\t\t\t\t\t* {\n\t\t\t\t\t\topacity: 0;\n\t\t\t\t\t}\n\t\t\t `\n\t\t\t: ''}\n`;\n","import { Trans } from 'src/LegacyApp/client/modules/translation/translate';\n\nexport const GameWrapperOrientationBox = () => {\n\treturn (\n\t\t
\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t
\n\t);\n};\n","import React, { useRef } from 'react';\nimport { useNoSleep } from 'src/LegacyApp/hooks/app/useNoSleep';\nimport { GameWrapperStyled } from 'src/modules/games/Game/components/Game.components/GameWrapper/GameWrapper.styled';\nimport { GameWrapperOrientationBox } from 'src/modules/games/Game/components/Game.components/GameWrapper/GameWrapperOrientationBox';\n\nexport const GameWrapperBox = ({\n\tisLoading,\n\tgame,\n\tautobetActive,\n\tchildren,\n}) => {\n\tconst buttonRef = useRef(null);\n\tuseNoSleep(buttonRef.current);\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\t{children}\n\t\t\n\t);\n};\n","import { createGlobalStyle } from 'styled-components';\nimport { clearfix } from '@legacyApp/client/modules/style/defaults';\nimport { ThemeType } from '@legacyApp/client/modules/style/theme';\nimport { parseImageSrc } from '@common/components/default/Image/Image';\nimport { fontSize } from '@legacyApp/client/modules/style/mixins/fontSize';\n\nexport const GameGlobalStyles = createGlobalStyle<{ theme: ThemeType }>`\n\t.game {\n\t\tfloat: left;\n\t\twidth: 100%;\n\n\t\t&-options {\n\t\t\talign-items: center;\n\t\t\tdisplay: flex;\n\t\t\tjustify-content: space-between;\n\t\t\twidth: 100%;\n\t\t}\n\n\t\t&-switch {\n\t\t\talign-items: center;\n\t\t\tdisplay: flex;\n\t\t\tfloat: left;\n\t\t\tjustify-content: flex-start;\n\t\t\tmargin: 10px 0;\n\t\t\twidth: auto;\n\n\t\t\tlabel {\n\t\t\t\theight: 25px;\n\t\t\t}\n\n\t\t\t&--title {\n\t\t\t\tcolor: ${(props) => props.theme.colors.secondText};\n\t\t\t\t${fontSize({ important: true })};\n\t\t\t\tmargin-left: 5px;\n\n\t\t\t\t&__active {\n\t\t\t\t\tcolor: ${(props) => props.theme.colors.text};\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.react-switch-handle {\n\t\t\t\t&:before {\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tcolor: #e8e8e8;\n\t\t\t\t\tcontent: ${parseImageSrc('/img/icons/grip-lines.svg')};\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\theight: 10px;\n\t\t\t\t\tfont-weight: 900;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\tleft: 50%;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 50%;\n\t\t\t\t\ttransform: translate(-50%, -50%) rotate(90deg) scale(0.9, 1.3);\n\t\t\t\t\twidth: 18px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media (min-width: ${(props) => props.theme.media.minWidthDesktop}) {\n\t\t\t\tmargin: 0 0 -15px;\n\t\t\t\tpadding: 0 15px;\n\t\t\t\tjustify-content: flex-end;\n\n\t\t\t\tlabel {\n\t\t\t\t\theight: unset;\n\t\t\t\t}\n\n\t\t\t\t&--title {\n\t\t\t\t\tmargin-left: 20px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t&-roll {\n\t\t\tfloat: left;\n\t\t\tmargin: 5px 0 0;\n\t\t\twidth: 100%;\n\n\t\t\t.button {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t@media (min-width: ${(props) => props.theme.media.minWidthDesktop}) {\n\t\t\t\tpadding: 0 15px;\n\t\t\t\tmargin-top: 35px;\n\t\t\t\tmargin-bottom: 40px;\n\t\t\t\tbutton {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tborder-radius: 2 * ${(props) => props.theme.layout.borderRadius};\n\t\t\t\t\tfont-size: 30px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t@media (min-width: ${(props) => props.theme.media.minWidthDesktop}) {\n\t\t\tfloat: none;\n\t\t\tmax-width: 900px;\n\t\t\tmargin: 0 auto 40px;\n\t\t\twidth: 100%;\n\t\t\t${clearfix};\n\t\t}\n\n\t\t@media (min-width: ${(props) => props.theme.media.minWidthBigDesktop}) {\n\t\t\tmax-width: 1080px;\n\t\t\tmargin: 0 auto 60px;\n\t\t}\n\t}\n\n\t@media (max-width: ${(props) => props.theme.media.maxWidthTablet}) {\n\t\t.game {\n\t\t\tposition: absolute;\n\t\t\tbottom: 0;\n\t\t\tmax-height: 100%;\n\n\t\t\t&-metrics {\n\n\t\t\t\t> span {\n\n\t\t\t\t\t&:before,\n\t\t\t\t\t&:after {\n\t\t\t\t\t\ttop: calc(100% + 5px);\n\t\t\t\t\t}\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\theight: 20px;\n\t\t\t\t\t}\n\n\t\t\t\t\t&:after {\n\t\t\t\t\t\theight: 8px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n`;\n","import { createGlobalStyle } from 'styled-components';\nimport { ThemeType } from '@legacyApp/client/modules/style/theme';\nimport { StyledContentWrapper } from '@common/components/text/Content/Content.styled';\nimport { StyledTextWrapper } from '@common/hoc/pageEnhancer';\nimport { FooterStyle } from '@common/components/footer/Footer';\nimport { StyledMainDashboardV2 } from '@legacyApp/client/modules/style/components/MainDashboard.styled';\nimport { parseImageSrc } from '@common/components/default/Image/Image';\nimport { AVAILABLE_OFFER } from '@common/components/layout/MainPageOfferButton/MainPageOfferButton';\n\nconst GameStyledPerGame = AVAILABLE_OFFER.map((game) => {\n\treturn `\n\t\t&.${game} {\n\t\t\t.main {\n\t\t\t\t&:before {\n\t\t\t\t\tbackground: url(${parseImageSrc(\n\t\t\t\t\t\t`/img/games/background/${game}.png`,\n\t\t\t\t\t)}) center top / 200% no-repeat;\n\t\t\t\t\tbackground-size: 110%;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t`;\n}).join(``);\n\nexport const GamePageGlobalStyles = createGlobalStyle<{ theme: ThemeType }>`\n\t.page-game {\n\t\t.main,\n\t\t.bottom-menu {\n\t\t\tbackground-color: #020810;\n\t\t}\n\n\t\t.main {\n\t\t\tbackground-color: var(--color-dark-900);\n\n\t\t\t&:before {\n\t\t\t\tbottom: 0px;\n\t\t\t\tcontent: \"\";\n\t\t\t\theight: 100%;\n\t\t\t\tleft: 0px;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\n\t\t${GameStyledPerGame};\n\n\t\t&.limbo {\n\t\t\t.main {\n\t\t\t\t&:before {\n\t\t\t\t\tbackground-size: 200%;\n\n\t\t\t\t\t@media (min-width: ${(props) => props.theme.media.minWidthDesktop}) {\n\t\t\t\t\t\tbackground-size: 110%;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t${StyledMainDashboardV2} {\n\t\t\t&:before {\n\t\t\t\tbackground: unset;\n\t\t\t}\n\t\t}\n\n\t\t@media (min-width: ${(props) => props.theme.media.minWidthDesktop}) {\n\t\t\t.main {\n\t\t\t\tpadding-bottom: 20px;\n\t\t\t\tz-index: 2;\n\n\t\t\t\t&:before, &:after {\n\t\t\t\t\tcontent: '';\n\t\t\t\t\tz-index: -1;\n\t\t\t\t}\n\n\t\t\t\t&:after {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\theight: calc(100% - 550px);\n\t\t\t\t}\n\n\t\t\t\t${StyledContentWrapper} {\n\t\t\t\t\t:after {\n\t\t\t\t\t\tbackground: linear-gradient(180deg,transparent, var(--color-dark-900) 90%)\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.tabs-table-wrapper {\n\t\t\t\t\tposition: relative;\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: '';\n\t\t\t\t\t\tz-index: -1;\n\t\t\t\t\t\tbackground: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #051b38 30%);\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\twidth: 100vw;\n\t\t\t\t\t\theight: calc(100% + 25px);\n\t\t\t\t\t\ttop: 0;\n\t\t\t\t\t\tleft: 50%;\n\t\t\t\t\t\ttransform: translateX(-50%);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.table__no-scroll {\n\t\t\t\t.table__tbody {\n\t\t\t\t\tmin-height: 350px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t@media (max-width: ${(props) => props.theme.media.maxWidthTablet}) {\n\t\t\t.main-dashboard {\n\t\t\t\theight: 100%;\n\t\t\t\tpadding-bottom: calc(${(props) => props.theme.layout.bottomMenuHeight} + 5px);\n\n\t\t\t\t> .tabs-table-wrapper {\n\t\t\t\t\theight: 100%;\n\t\t\t\t\toverflow: auto;\n\t\t\t\t\toverflow-x: hidden;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t${FooterStyle} {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.main {\n\t\t\t\theight: 100%;\n\t\t\t\tmin-height: 100%;\n\t\t\t\toverflow: hidden;\n\t\t\t}\n\n\t\t\t.table-wrapper {\n\t\t\t\theight: 100%;\n\t\t\t}\n\n\t\t\t${StyledTextWrapper} {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t\t@media (max-width: ${(props) => props.theme.media.maxWidthMobile}){\n\t\t\t.input,\n\t\t\t.input-children {\n\t\t\t\tfont-size: 11px;\n\t\t\t}\n\n\t\t\t.input {\n\t\t\t\tpadding: 8px 10px;\n\t\t\t}\n\n\t\t\t.input-wrapper {\n\t\t\t\t.button {\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\tmargin: 0 0 0 5px;\n\t\t\t\t}\n\n\t\t\t\tlabel {\n\t\t\t\t\tmargin-bottom: 3px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t[data-component*='Game.container'],\n\t[data-component*='GameWrapper.container'],\n\t[data-component*='game.page'],\n\t.game-page,\n\t.game {\n\t\t@media (min-width: ${(props) => props.theme.media.minWidthDesktop}) {\n\t\t\tmin-height: 500px;\n\t\t}\n\t}\n`;\n","import PropTypes from 'prop-types';\nimport React from 'react';\n\nimport { enhanceComponent } from '@legacyApp/client/wrappers/enhanceComponent';\nimport { capitalize } from '@legacyApp/client/modules/app/appService';\nimport { getGamesList } from '@modules/games/Game/methods/getGamesList';\nimport { triggerGameLoadedEvent } from '@modules/games/Game/methods/triggerGameLoadedEvent';\nimport transactionService from '@modules/transactions/transactionsService';\n\nimport { GameLoaderContainer } from '@modules/games/Game/components/Game.components/GameLoader';\nimport { ActiveGameGlobalStyles } from '@modules/games/Game/components/Game.components/GameWrapper/ActiveGameGlobalStyles';\nimport { GameWrapperBox } from '@modules/games/Game/components/Game.components/GameWrapper/GameWrapperBox';\nimport { GameGlobalStyles } from '@modules/games/Game/components/Game.components/GameWrapper/StyledGame/game.global.styled';\nimport { GamePageGlobalStyles } from '@modules/games/Game/components/Game.components/GameWrapper/StyledGame/game-page.global.styled';\nimport { GameContext } from '@modules/games/Game/context/GameContext';\n\nclass GameWrapper extends React.PureComponent {\n\tstatic propTypes = {\n\t\tautobetActive: PropTypes.any,\n\t\tisMobile: PropTypes.bool,\n\t\tactive: PropTypes.any,\n\t\tchildren: PropTypes.any,\n\t\tloading: PropTypes.any,\n\t\tactiveState: PropTypes.bool,\n\t};\n\n\tconstructor(props) {\n\t\tsuper(props);\n\n\t\tthis.state = {\n\t\t\tgameContainers: this.getGameContainers(),\n\t\t\tloading: this.getLoading(props.loading, false),\n\t\t\tloaded: false,\n\t\t};\n\t}\n\n\tcomponentDidMount() {\n\t\tthis.setLoading();\n\t}\n\n\tcomponentDidUpdate(prevProps, prevState) {\n\t\tif (\n\t\t\ttransactionService.isListDifferent(\n\t\t\t\tthis.props.loading,\n\t\t\t\tprevProps.loading,\n\t\t\t) ||\n\t\t\tthis.state.loaded !== prevState.loaded\n\t\t) {\n\t\t\tthis.setLoading();\n\t\t}\n\t}\n\n\tsetLoading = (loading = this.props.loading) => {\n\t\tconst loading_ = this.getLoading(loading);\n\n\t\tif (this.state.loading === loading_) {\n\t\t\treturn;\n\t\t}\n\n\t\tif (!loading_) {\n\t\t\ttriggerGameLoadedEvent();\n\t\t}\n\n\t\tthis.setState({\n\t\t\tloading: loading_,\n\t\t});\n\t};\n\n\tgetLoading = (loading = this.props.loading, loaded = this.state?.loaded) => {\n\t\treturn (\n\t\t\t(!!loading &&\n\t\t\t\t!(loading.length === 1 && this.isOnlyGameContainer(loading))) ||\n\t\t\t!loaded\n\t\t);\n\t};\n\n\tgetGameContainers = () => {\n\t\treturn getGamesList().map((el) => `${capitalize(el)}Game.container`);\n\t};\n\n\tisOnlyGameContainer = (array) => {\n\t\tconst gameContainers =\n\t\t\tthis.state && this.state.gameContainers\n\t\t\t\t? this.state.gameContainers\n\t\t\t\t: this.getGameContainers();\n\t\treturn array.some((el) => gameContainers.indexOf(el) > -1);\n\t};\n\n\trender() {\n\t\treturn (\n\t\t\t this.setState({ loaded }),\n\t\t\t\t}}\n\t\t\t>\n\t\t\t\t\n\t\t\t\t\t{this.props.active ?\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t{(this.state.loading || !this.props.activeState) && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t\t:\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t}\n\n\t\t\t\t\t{this.props.activeState && this.props.active ? this.props.children : null}\n\t\t\t\t\n\t\t\t\n\t\t);\n\t}\n}\n\nGameWrapper = enhanceComponent({\n\tGameWrapper,\n});\n\nexport default GameWrapper;\n","import { connect } from 'react-redux';\nimport { compose } from 'redux';\nimport { activePackageSelector } from '@legacyApp/client/selectors/activePackageSelector.selector';\nimport { PackageType } from '@legacyApp/client/store/registry/registry.constants';\nimport GameWrapper from './GameWrapper';\n\nconst mapStateToProps = (state, props) => {\n\treturn {\n\t\tisMobile: state.app.mobile,\n\t\tautobetActive: state.gameAutobet?.active[state.game?.activeGame],\n\t\tactive: state.game?.activeGame,\n\t\tloading: state.loader.groups?.game,\n\t\tactiveState: activePackageSelector(PackageType.GAME)(state, props),\n\t};\n};\n\nconst GameWrapperContainer = compose(connect(mapStateToProps, null))(\n\tGameWrapper,\n);\n\nexport { GameWrapperContainer };\n","import { FC, PropsWithChildren } from 'react';\nimport { NextSeoProps } from 'next-seo/lib/types';\n\nimport { EnhancedNextComponentPageProps } from '@common/hoc/pageEnhancer';\nimport { useAppMobile } from '@common/selectors/app.selectors';\n\nimport Seo from '@common/components/default/Seo/Seo';\nimport GamesStoreController from '@common/components/storeControllers/GamesStoreController';\nimport { MainLayout } from '@legacyApp/client/components/mainLayout';\nimport { GameWrapperContainer } from '@modules/games/Game/components/Game.components/GameWrapper/GameWrapper.container';\n\nconst GameLayout: FC<\n\tPropsWithChildren<{\n\t\ttitle: string;\n\t\tdisableTransactions?: boolean;\n\t\tseoProps: NextSeoProps;\n\t\tpageParams?: EnhancedNextComponentPageProps['params'];\n\t}>\n> = ({ children, disableTransactions, title, seoProps, pageParams }) => {\n\tconst isMobile = useAppMobile();\n\n\treturn (\n\t\t<>\n\t\t\t\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t{children}\n\t\t\t\n\t\t\n\t);\n};\n\nexport default GameLayout;\n","import { FC } from 'react';\nimport Head from 'next/head';\nimport { config } from '@legacyApp/client/config';\nimport { StructuredData } from '@legacyApp/types/default/StructuredData';\nimport { socialConfig } from '@server/config/social.config';\nimport { jsonToString } from '@common/methods/jsonToString';\n\ninterface Props extends StructuredData {\n\turl?: string;\n}\n\nexport interface AnyJsonLdProps {\n\tkeyOverride?: string;\n\tprops?: Props;\n}\n\nexport const parseUrlJsonLd = (uri?: string) =>\n\t`https://${config.domain}${uri ?? ''}`;\n\nexport const SAME_AS = Object.keys(socialConfig).map(\n\t(key) => socialConfig[key],\n);\n\nexport const AnyJsonLd: FC = ({ keyOverride, props }) => {\n\tconst url = parseUrlJsonLd(props.url);\n\tconst jslonld = {\n\t\t'@context': 'https://schema.org',\n\t\tname: config.appName,\n\t\turl,\n\t\tmainEntityOfPage: {\n\t\t\t'@type': 'WebPage',\n\t\t\t'@id': `${url}`,\n\t\t},\n\t\t...props,\n\t};\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\n\t);\n};\n","import { BreadcrumbJsonLd } from 'next-seo';\nimport { ItemListElements } from 'next-seo/lib/jsonld/breadcrumb';\nimport { FC } from 'react';\n\nimport { parseUrlJsonLd } from '@common/components/seo/AnyJsonLd';\nimport { simpleTrans } from '@legacyApp/client/modules/translation/translationService';\nimport { BreadcrumbData } from '@common/methods/getBreadcrumbs';\nimport { checkIsTransProps } from '@legacyApp/client/modules/translation/checkIsTransProps';\n\nconst mapBreadcrumbToJsonLd = (item: BreadcrumbData): BreadcrumbData => ({\n\t...item,\n\tname: checkIsTransProps(item.name)\n\t\t? simpleTrans(\n\t\t\t\titem.name.label as string,\n\t\t\t\titem.name?.options,\n\t\t\t\titem.name?.namespace,\n\t\t )\n\t\t: item.name,\n\titem: parseUrlJsonLd(item.item),\n});\n\nexport const BreadcrumbDomainJsonLd: FC<{\n\titemListElements: BreadcrumbData[];\n}> = ({ itemListElements }) => (\n\t\n);\n","import { FC } from 'react';\n\nimport { config } from '@legacyApp/client/config';\nimport { accessConfig } from '@server/config/access.config';\nimport { capitalize } from '@legacyApp/client/modules/app/appService';\nimport { parseImageSrc } from '@common/components/default/Image/Image';\nimport {\n\tAnyJsonLd,\n\tparseUrlJsonLd,\n\tSAME_AS,\n} from '@common/components/seo/AnyJsonLd';\nimport { BreadcrumbDomainJsonLd } from '@common/components/seo/BreadcrumbDomainJsonLd';\nimport { BreadcrumbData } from '@common/methods/getBreadcrumbs';\n\nexport const GameJsonLd: FC<{\n\tid?: string;\n\tname?: string;\n\titemListElements?: BreadcrumbData[];\n}> = ({ name, id, itemListElements }) => {\n\treturn (\n\t\t<>\n\t\t\t\n\t\t\t\t\t\tel.toLowerCase(),\n\t\t\t\t\t),\n\t\t\t\t\tpotentialAction: {\n\t\t\t\t\t\t'@type': 'Action',\n\t\t\t\t\t\tname: 'PlayAction',\n\t\t\t\t\t},\n\t\t\t\t\tpublisher: {\n\t\t\t\t\t\t'@type': 'Organization',\n\t\t\t\t\t\tname: config.appName,\n\t\t\t\t\t\tbrand: config.appName,\n\t\t\t\t\t\turl: parseUrlJsonLd(),\n\t\t\t\t\t\tlogo: parseImageSrc('/img/logo_black.png'),\n\t\t\t\t\t\tsameAs: SAME_AS,\n\t\t\t\t\t},\n\t\t\t\t}}\n\t\t\t/>\n\n\t\t\t\n\t\t\n\t);\n};\n","import { EffectCallback, useEffect } from 'react';\n\nexport const useOnUnmount = (callback: EffectCallback) => {\n\tuseEffect(() => {\n\t\treturn () => {\n\t\t\tcallback();\n\t\t};\n\t}, []);\n};\n","import { config } from '@legacyApp/client/config';\nimport { getPathLocalized } from '@common/methods/getPathLocalized/getPathLocalized';\nimport { TransProps } from '@legacyApp/client/modules/translation/translate';\n\nexport type BreadcrumbData = {\n\tlocale?: string;\n\tposition?: number;\n\tname?: string | TransProps;\n\tpathname?: string;\n\titem?: string;\n};\n\nexport const getBreadcrumb = ({\n\tlocale,\n\tposition = 1,\n\tname = config.appName,\n\tpathname = '/',\n}: BreadcrumbData) => ({\n\tposition,\n\tname,\n\titem: getPathLocalized({\n\t\tpathname,\n\t\tlocale,\n\t}),\n});\n\nexport const getBreadcrumbs = (locale: string, data: Array) => [\n\tgetBreadcrumb({ locale }),\n\t...data.map((el, index) =>\n\t\tgetBreadcrumb({\n\t\t\tlocale,\n\t\t\tposition: index + 2,\n\t\t\tname: el.name,\n\t\t\tpathname: el.pathname,\n\t\t}),\n\t),\n];\n","import dynamic from 'next/dynamic';\n\nconst GameStats = dynamic(() => import('./gameStatsLayout'), { ssr: false });\n\nexport { GameStats };\n","import { FC, PropsWithChildren } from 'react';\nimport { useGameLoaded } from '../hooks/useGameLoaded';\n\nexport const GameLoaded: FC> = ({\n\tloaded,\n\tchildren,\n}) => {\n\tuseGameLoaded(loaded);\n\treturn <>{children};\n};\n","import { useContext } from 'react';\nimport { useOnMount } from '@common/hooks/useOnMount';\nimport { GameContext } from '../context/GameContext';\n\nexport const useGameLoaded = (initIsLoaded: boolean) => {\n\tconst gameContext = useContext(GameContext);\n\n\tuseOnMount(() => {\n\t\tgameContext.setLoaded(initIsLoaded);\n\t});\n\n\treturn gameContext;\n};\n","export const GAME_LOADED_EVENT = 'gameLoadedEvent';\n","import { createContext } from 'react';\nimport { GameContextType } from '../types/GameContext.type';\n\nexport const GameContext = createContext({\n\tloaded: true,\n\tsetLoaded: () => null,\n} as GameContextType);\n","import { shallowEqual } from 'react-redux';\nimport { useAppSelector } from '@legacyApp/hooks/store/useAppSelector';\nimport { GameType } from '../../constants/availableGames';\n\nexport const useGameValidationFormError = (game: GameType) =>\n\tuseAppSelector(\n\t\t(state) => state.gameValidation?.formError?.[game],\n\t\tshallowEqual,\n\t);\nexport const useGameValidationProfitError = (game: GameType) =>\n\tuseAppSelector(\n\t\t(state) => state.gameValidation?.profitError?.[game],\n\t\tshallowEqual,\n\t);\n","export const EMPTY_PATH = '&';\n\nexport enum Mode {\n\tPIXI = 'PIXI',\n\tMATTER = 'MATTER',\n}\n","import { IRendererOptions } from 'matter-js';\nimport { Mode } from './constants';\n\nconst labels = {\n\tball: 'ball',\n\tfloor: 'floor',\n\tpin: 'pin',\n\twall: 'wall',\n} as const;\nexport const colors = {\n\tbackground: 'transparent',\n\tpin: '#ffffff',\n} as const;\nconst scale = 1;\nconst pins = {\n\tstartPins: 3,\n\tpinSize: 2 * scale,\n\tpinGap: 20 * scale,\n\tstartToPinsSpace: 50 * scale,\n};\nconst world = {\n\twidth: 450 * scale,\n\theight: 450 * scale,\n\telement: 450,\n};\nconst ball = {\n\tballSize: 4.5 * scale,\n\ty: 2,\n\tmaxX: world.width / 2 + pins.pinSize * (4 * scale) + pins.pinGap,\n\tminX: world.width / 2 - pins.pinSize * (4 * scale) - pins.pinGap,\n};\nconst engine = {\n\tengineGravity: 2,\n};\nconst renderer: {\n\tbounds: {\n\t\tmax: {\n\t\t\ty: number;\n\t\t\tx: number;\n\t\t};\n\t\tmin: {\n\t\t\ty: number;\n\t\t\tx: number;\n\t\t};\n\t};\n\toptions: IRendererOptions;\n} = {\n\tbounds: {\n\t\tmax: {\n\t\t\ty: world.height,\n\t\t\tx: world.width,\n\t\t},\n\t\tmin: {\n\t\t\ty: 0,\n\t\t\tx: 0,\n\t\t},\n\t},\n\toptions: {\n\t\tshowPositions: false,\n\t\tshowPerformance: false,\n\t\tpixelRatio: 1,\n\t\tbackground: colors.background,\n\t\thasBounds: true,\n\t\twidth: world.width,\n\t\theight: world.height,\n\t\twireframes: false,\n\t},\n};\n\nexport const config = {\n\tmode: Mode.PIXI,\n\tpins,\n\tball,\n\tengine,\n\tworld,\n\tcolors,\n\tscale,\n\trenderer,\n\tlabels,\n};\n","import styled, { css } from 'styled-components';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\nimport { calcStyle } from '@legacyApp/client/modules/style/methods/calcStyle';\nimport { LinesSwitchStyled } from '@modules/games/PlinkoGame/components/LinesSwitch/LinesSwitch';\nimport { RiskSwitchStyled } from '@modules/games/PlinkoGame/components/playground/components/RiskSwitch/RiskSwitch';\nimport { config } from '@modules/games/PlinkoGame/components/playground/config';\nimport { plinkoResponsiveMixin } from '@modules/games/PlinkoGame/styles/plinkoResponsiveMixin';\nimport { CSSClassNameLastBetsWrapper } from '@legacyApp/client/components/lastBets/LastBets';\n\nexport const PlinkoGameStyled = styled.div`\n\talign-items: center;\n\tdisplay: flex;\n\tflex-direction: column;\n\theight: 100%;\n\tjustify-content: start;\n\tposition: relative;\n\twidth: 100%;\n\n\t${plinkoResponsiveMixin(css`\n\t\t${LinesSwitchStyled},\n\t\t${RiskSwitchStyled} {\n\t\t\tdisplay: none;\n\t\t}\n\t`)};\n\n\t.${CSSClassNameLastBetsWrapper} {\n\t\tz-index: 2;\n\t}\n\n\t@media (max-width: ${(props) => props.theme.media.maxWidthTablet}) {\n\t\tjustify-content: flex-end;\n\n\t\t.${CSSClassNameLastBetsWrapper} {\n\t\t\ttop: 50px;\n\t\t}\n\t}\n\n\t@media (min-width: ${(props) => props.theme.media.minWidthDesktop}) {\n\t\t.${CSSClassNameLastBetsWrapper} {\n\t\t\tmargin-right: 0;\n\t\t\tmargin-bottom: -12px;\n\t\t\tmargin-left: calc((100% - ${config.world.element}px) / 2);\n\t\t\tmargin-top: 0;\n\t\t\tmax-width: ${config.world.element}px;\n\t\t\tposition: relative;\n\t\t}\n\t}\n`;\n\nexport const PlinkoAutobetSessionSwitchStyled = styled.div`\n\tmargin-right: calc((100% - 450px) / 2);\n\tmargin-top: 0;\n\tmax-width: 450px;\n\tposition: absolute;\n\twidth: 100%;\n\tz-index: 2;\n\n\t${chatViewport(\n\t\t(viewportPadding) => css`\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media.maxWidthTablet,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tposition: fixed;\n\t\t\t\ttop: 50px;\n\t\t\t\tz-index: 3;\n\t\t\t}\n\t\t`,\n\t)}\n`;\n","import { css } from 'styled-components';\n\nimport { calcStyle } from '@legacyApp/client/modules/style/methods/calcStyle';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\n\nexport const plinkoResponsiveMixin = (mobile: any, desktop?: any) => css`\n\t${chatViewport((viewportPadding) => {\n\treturn css`\n\t\t\t@media (max-width: ${(props) =>\n\t\t\tcalcStyle({\n\t\t\t\ta: props.theme.media.maxWidthTablet,\n\t\t\t\tb: viewportPadding,\n\t\t\t})}) {\n\t\t\t\t${mobile || ''};\n\t\t\t}\n\n\t\t\t@media (min-width: ${(props) =>\n\t\t\tcalcStyle({\n\t\t\t\ta: props.theme.media.minWidthDesktop,\n\t\t\t\tb: viewportPadding,\n\t\t\t})}) {\n\t\t\t\t${desktop};\n\t\t\t}\n\t\t`;\n})};\n`;\n","import { FC } from 'react';\nimport { SlotsBreadcrumbs } from '@modules/slots/components/SlotsBreadcrumbs';\nimport { SectionsTabNav } from '@common/components/home/SectionsTabNav/SectionsTabNav';\nimport { Inhouse } from '@common/components/home/SectionsTabNav/Inhouse';\nimport { Trans } from '@legacyApp/client/modules/translation/translate';\n\nexport const CasinoLayout: FC = () => {\n\treturn (\n\t\tdiv:first-child]:mt-[10px] [&>div:first-child>div:nth-child(2)]:-mb-10 [&>div:last-child]:mt-4`}\n\t\t>\n\t\t\t\n\n\t\t\t} />\n\n\t\t\t\n\t\t\n\t);\n};\n","import { pageEnhancer } from '@common/hoc/pageEnhancer';\nimport { handleGetStaticProps } from '@legacyApp/methods/router/handleGetStaticProps';\nimport { DEFAULT_NAMESPACE } from '@legacyApp/client/modules/translation/translate.constants';\nimport { CasinoLayout } from '@modules/casino/layouts/Casino.layout';\nimport { MainLayout } from '@legacyApp/client/components/mainLayout';\nimport { CASINO_PAGE_ID } from '@modules/casino/constants/casino.page.config';\nimport { getPageData } from '@modules/cmsHandler/methods/getPageData';\nimport routingService from '@legacyApp/client/modules/app/routingService';\nimport { GameJsonLd } from '@common/components/seo/GameJsonLd';\nimport { ROUTING_ID } from '@common/constants/routing/ids.routing.constants';\nimport { GameType } from '@modules/games/Game/constants/availableGames';\nimport { capitalize } from '@legacyApp/client/modules/app/appService';\nimport { getBreadcrumbs, getBreadcrumb } from '@common/methods/getBreadcrumbs';\n\nconst PAGE_ID = CASINO_PAGE_ID.INDEX;\nconst NO_INDEX = false;\n\nexport const getBreadcrumbsCasino = (locale: string) =>\n\tgetBreadcrumbs(locale, [\n\t\t{\n\t\t\tname: { label: 'In house' },\n\t\t\tpathname: `/${routingService.getUri(ROUTING_ID.CASINO)}`,\n\t\t},\n\t]);\n\nexport const getBreadcrumbsCasinoGame = (locale: string, GameType: GameType) =>\n\tgetBreadcrumb({\n\t\tlocale,\n\t\tposition: 3,\n\t\tname: capitalize(GameType),\n\t\tpathname: `/${routingService.getUri(ROUTING_ID.CASINO)}/${GameType}`,\n\t});\n\nexport async function getStaticProps(props) {\n\tconst { page_content } = await getPageData(PAGE_ID, props.locale);\n\n\treturn await handleGetStaticProps(\n\t\t{\n\t\t\tlocale: props.locale,\n\t\t\tparams: {\n\t\t\t\t...props.params,\n\t\t\t\tpage_content,\n\t\t\t},\n\t\t},\n\t\t[DEFAULT_NAMESPACE],\n\t);\n}\n\nconst CasinoPage = () => (\n\t\n\t\t\n\t\n);\n\nexport default pageEnhancer(CasinoPage, {\n\tid: PAGE_ID,\n\tseoProps: {\n\t\tnoindex: NO_INDEX,\n\t\tnofollow: NO_INDEX,\n\t},\n\tstructuredData: (locale) => (\n\t\t\n\t),\n});\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"lastBetsWrapper\":\"LastBets_lastBetsWrapper__HZ4qM\",\"lastBets\":\"LastBets_lastBets__wW9_s\",\"lastBet\":\"LastBets_lastBet__PK4MR\",\"lastBet--positive\":\"LastBets_lastBet--positive__o9On4\",\"lastBet--animate\":\"LastBets_lastBet--animate__lfAnP\",\"LastBet\":\"LastBets_LastBet__I2m3L\",\"LastBetGlow\":\"LastBets_LastBetGlow__yP_Q_\"};"],"names":["BlockedCountries","Poland","Curacao","Syria","Iran","NorthKorea","Cuba","Venezuela","Yemen","Iraq","Sudan","Myanmar","accessConfig","blockRegister","blockPage","Object","keys","map","el","enableCloudflareRules","module","exports","LastBets_","props","timeoutRef","useRef","boxRef","game","parse","delay","noAnimation","lastBets","useTransactionsPerGame","TABLE_ID","isMobile","useAppMobile","animation","useOptionEnabled","OPTIONS","useState","limit_","setLimit_","list_","setList_","getLimit","useCallback","box","elementWidth","margin","limit","roundNumber","current","clientWidth","parse_","value","isFunction","result_value","getList","list","length","filter","index","setList","clearTimeout","setTimeout","setLimit","useOnUnmount","useEffect","newList","transactionService","ref","className","styles","classnames","CSSClassNameLastBet","state","hash","LastBets","active","useTransactionsPerGameActive","CSSClassNameLastBetsWrapper","isPackageActive","type","packageData","registry","packages","packageDataModules","activePackageSelector","param","createSelector","a","useNoSleep","element","noSleep","useMemo","NoSleep","toggle","enabled","enable","addEventListener","removeEventListener","disable","triggerGameLoadedEvent","triggerWindowEvent","GAME_LOADED_EVENT","GameLoaderStyle","styled","isInfo","css","GameLoader","data","setState","errorIndex","findIndex","key","error","timedOutIndex","timedOut","capitalize","simpleTrans","this","handleData","prevProps","gamesActive","trans","label","getLoading","retry","name","onClick","styleType","ButtonStyleType","size","Size","React","enhanceComponent","GameLoaderContainer","compose","connect","activeGame","loader","groupsData","PackageType","GameDiceGlobalStyles","createGlobalStyle","$isSingleBetValue","CSSClassNameGameStatsWrapper","theme","media","maxWidthVerySmall","BetAmountInputWrapper","GameHiloGlobalStyles","chatViewport","padding","calcStyle","media_v2","max_tablet_medium","b","max_mobile_medium","borderRadius","viewportPadding","minWidthDesktop","minWidthBigDesktop","layout","card","height","mode","width","minWidthTablet","heightToWidthScale","suffix","maxWidthTablet","GameLimboGlobalStyles","DiceGlobalStyled","rule","useDiceRollRuleSelector","isSingleBetValue","useStateEffect","checkIsSingleValue","ActiveGameGlobalStyles","useGameActiveGame","GameType","GameWrapperStyled","autobet","isPro","transition","boxNoHeight","clearfix","StyledGameSliderResultBox","PlinkoGameStyled","isFlash","rgba","isLoading","GameWrapperOrientationBox","GameWrapperBox","autobetActive","children","buttonRef","GameGlobalStyles","colors","secondText","fontSize","important","text","parseImageSrc","GameStyledPerGame","AVAILABLE_OFFER","join","GamePageGlobalStyles","StyledMainDashboardV2","StyledContentWrapper","bottomMenuHeight","FooterStyle","StyledTextWrapper","maxWidthMobile","GameWrapper","loading","loading_","loaded","isOnlyGameContainer","getGamesList","array","gameContainers","getGameContainers","some","indexOf","setLoading","prevState","GameContext","G","setLoaded","activeState","GameWrapperContainer","app","mobile","gameAutobet","groups","disableTransactions","title","seoProps","pageParams","Seo","GamesStoreController","v2","lockView","parseUrlJsonLd","uri","config","SAME_AS","socialConfig","AnyJsonLd","keyOverride","url","jslonld","mainEntityOfPage","dangerouslySetInnerHTML","__html","jsonToString","mapBreadcrumbToJsonLd","item","checkIsTransProps","options","namespace","BreadcrumbDomainJsonLd","itemListElements","GameJsonLd","id","toLowerCase","applicationCategory","operatingSystem","browserRequirements","countriesNotSupported","potentialAction","publisher","brand","logo","sameAs","callback","getBreadcrumb","locale","position","pathname","getPathLocalized","getBreadcrumbs","GameStats","dynamic","ssr","GameLoaded","initIsLoaded","gameContext","useContext","useOnMount","useGameLoaded","createContext","useGameValidationFormError","useAppSelector","gameValidation","formError","shallowEqual","useGameValidationProfitError","profitError","Mode","background","pin","pins","startPins","pinSize","pinGap","startToPinsSpace","world","ball","ballSize","y","maxX","minX","renderer","bounds","max","x","min","showPositions","showPerformance","pixelRatio","hasBounds","wireframes","engine","engineGravity","scale","labels","floor","wall","plinkoResponsiveMixin","LinesSwitchStyled","RiskSwitchStyled","desktop","CasinoLayout","SectionsTabNav","activeTabId","SlotsBreadcrumbs","Inhouse","noName","PAGE_ID","CASINO_PAGE_ID","getBreadcrumbsCasino","routingService","ROUTING_ID","getBreadcrumbsCasinoGame","pageEnhancer","noindex","nofollow","structuredData"],"mappings":"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","debug_id":"77141453-263d-587b-8baf-b707063d1664"}