├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── src ├── .gitignore ├── App.vue ├── api │ ├── KYC.js │ ├── TradingView │ │ ├── historyProvider.js │ │ ├── index.js │ │ └── stream.js │ ├── affiliatebonuses.js │ ├── affiliatestatus.js │ ├── balance.js │ ├── coin.js │ ├── countries.js │ ├── exchanges.js │ ├── notifications.js │ ├── order_info.js │ ├── order_list.js │ ├── orders.js │ ├── otcprices.js │ ├── pairs.js │ ├── payment_info.js │ ├── payment_list.js │ ├── profile.js │ ├── recenttrades.js │ ├── robot.js │ ├── stack.js │ ├── store_info.js │ ├── store_list.js │ ├── transactions.js │ ├── user_notifications.js │ └── wallethistory.js ├── app-config.js ├── assets │ ├── TradingView │ │ └── charting_library │ │ │ └── charting_library.esm.js │ ├── css │ │ ├── main.css │ │ ├── modules │ │ │ ├── _index.scss │ │ │ └── _tooltip.scss │ │ ├── tailwind.css │ │ ├── theme.scss │ │ └── variables.scss │ ├── fonts │ │ ├── basic-sans │ │ │ ├── italic-300.otf │ │ │ ├── italic-300.woff │ │ │ ├── italic-300.woff2 │ │ │ ├── italic-400.otf │ │ │ ├── italic-400.woff │ │ │ ├── italic-400.woff2 │ │ │ ├── italic-600.otf │ │ │ ├── italic-600.woff │ │ │ ├── italic-600.woff2 │ │ │ ├── italic-700.otf │ │ │ ├── italic-700.woff │ │ │ ├── italic-700.woff2 │ │ │ ├── normal-300.otf │ │ │ ├── normal-300.woff │ │ │ ├── normal-300.woff2 │ │ │ ├── normal-400.otf │ │ │ ├── normal-400.woff │ │ │ ├── normal-400.woff2 │ │ │ ├── normal-600.otf │ │ │ ├── normal-600.woff │ │ │ ├── normal-600.woff2 │ │ │ ├── normal-700.otf │ │ │ ├── normal-700.woff │ │ │ └── normal-700.woff2 │ │ └── roboto │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto.woff │ │ │ ├── Roboto.woff2 │ │ │ ├── Robotoblack.ttf │ │ │ ├── Robotoblack.woff │ │ │ ├── Robotoblack.woff2 │ │ │ ├── Robotoblackitalic.ttf │ │ │ ├── Robotoblackitalic.woff │ │ │ ├── Robotoblackitalic.woff2 │ │ │ ├── Robotobold.ttf │ │ │ ├── Robotobold.woff │ │ │ ├── Robotobold.woff2 │ │ │ ├── Robotobolditalic.ttf │ │ │ ├── Robotobolditalic.woff │ │ │ ├── Robotobolditalic.woff2 │ │ │ ├── Robotoitalic.ttf │ │ │ ├── Robotoitalic.woff │ │ │ ├── Robotoitalic.woff2 │ │ │ ├── Robotolight.ttf │ │ │ ├── Robotolight.woff │ │ │ ├── Robotolight.woff2 │ │ │ ├── Robotolightitalic.ttf │ │ │ ├── Robotolightitalic.woff │ │ │ ├── Robotolightitalic.woff2 │ │ │ ├── Robotomedium.ttf │ │ │ ├── Robotomedium.woff │ │ │ ├── Robotomedium.woff2 │ │ │ ├── Robotomediumitalic.ttf │ │ │ ├── Robotomediumitalic.woff │ │ │ ├── Robotomediumitalic.woff2 │ │ │ ├── Robotothin.ttf │ │ │ ├── Robotothin.woff │ │ │ ├── Robotothin.woff2 │ │ │ ├── Robotothinitalic.ttf │ │ │ ├── Robotothinitalic.woff │ │ │ └── Robotothinitalic.woff2 │ └── js │ │ └── support.js ├── components │ ├── AddressTextField.vue │ ├── PhoneVerify.vue │ ├── layout │ │ ├── Base.vue │ │ ├── Footer.vue │ │ ├── Header.vue │ │ ├── Loading.vue │ │ ├── ModalPagesHeader.vue │ │ ├── Timeout.vue │ │ └── parts │ │ │ ├── LanguageSelector.vue │ │ │ ├── MainLogo.vue │ │ │ └── Menu.vue │ ├── main │ │ └── userOrders │ │ │ ├── orderRow.vue │ │ │ ├── ordersTable.vue │ │ │ └── userOrders.vue │ ├── modal │ │ ├── ModalRoot.vue │ │ └── modal.js │ ├── modals │ │ ├── ConfirmMessage.vue │ │ ├── InfoModal.vue │ │ ├── RobotDepositModal.vue │ │ ├── RobotWithdrawModal.vue │ │ └── UpdateOrderModal.vue │ ├── notifications │ │ ├── NotificationRoot.vue │ │ └── index.js │ ├── profileSettings │ │ └── KycFrame.vue │ ├── shared │ │ ├── BaseButton.vue │ │ ├── BaseCopyInput.vue │ │ ├── BaseModal.vue │ │ ├── BaseSelect.vue │ │ ├── BaseTable.vue │ │ ├── BaseTextField.vue │ │ └── p2p │ │ │ ├── BaseCheckbox.vue │ │ │ ├── BaseCounter.vue │ │ │ ├── BaseRadios.vue │ │ │ ├── BaseSelect.vue │ │ │ ├── BaseSteps.vue │ │ │ ├── BaseSwitch.vue │ │ │ ├── BaseTabs.vue │ │ │ ├── BaseTextField.vue │ │ │ ├── BaseTextarea.vue │ │ │ ├── BaseTimer.vue │ │ │ └── BaseVerticalSteps.vue │ └── ui │ │ ├── BaseList.vue │ │ ├── Button.vue │ │ ├── CountrySelect.vue │ │ ├── Select2.vue │ │ ├── Select3.vue │ │ ├── SelectAdvanced.vue │ │ ├── TabBlock.vue │ │ ├── Tabs.vue │ │ ├── VCard.vue │ │ ├── VIcon.vue │ │ └── form │ │ ├── Checkbox.vue │ │ ├── TextArea.vue │ │ ├── TextField.vue │ │ ├── VSelect.vue │ │ ├── mixins │ │ └── baseFormMixin.js │ │ └── setup │ │ ├── emittedUseField.js │ │ └── useFocusClass.js ├── directives │ ├── numeric.js │ ├── pattern.js │ ├── restrictNumberInput.js │ └── tooltip.js ├── env.d.ts ├── example.local_config.js ├── helpers │ ├── errorHundle.js │ ├── globalWSSubscriptions.js │ └── widget.js ├── locales │ ├── dictionary.js │ ├── index.js │ └── lang │ │ ├── common.js │ │ └── pages.js ├── main.ts ├── mixins │ ├── copyToBuffer.js │ ├── delay.js │ ├── getCoolBalance.js │ ├── getCoolBalanceFIAT.js │ ├── getCoolTrade.js │ ├── getDecimalWLength.js │ ├── getFixedDecimal.js │ ├── getFormattedDate.js │ ├── getPair.js │ ├── getPairs24h.js │ ├── getRegularNumber.js │ ├── getWizardComputedAmount.js │ ├── handleLogout.js │ ├── helpers.js │ ├── isFiat.js │ ├── login.js │ ├── mainPageDataInitMocks.js │ ├── menuHelper.js │ ├── themes.js │ └── wallet.js ├── modules │ ├── about │ │ ├── locales │ │ │ └── index.js │ │ ├── pages │ │ │ └── Support.vue │ │ └── router.js │ ├── account │ │ ├── components │ │ │ ├── PasswordChangeSection.vue │ │ │ ├── PasswordStrength.vue │ │ │ ├── PersonalInfoSettings.vue │ │ │ ├── SettingSection.vue │ │ │ └── mixin.js │ │ ├── pages │ │ │ ├── ConfirmRegister.vue │ │ │ ├── ConfirmWithdrawalUrl.vue │ │ │ ├── EmailVerify.vue │ │ │ ├── Forgot.vue │ │ │ ├── InterfaceSelect.vue │ │ │ ├── Login.vue │ │ │ ├── ProfileSettings.vue │ │ │ ├── Register.vue │ │ │ ├── UserResendConfirmEmail.vue │ │ │ └── UserResetUrl.vue │ │ └── router.js │ ├── exchange │ │ ├── components │ │ │ ├── FastBuySellHistoryList.vue │ │ │ └── FastBuySellWalletList.vue │ │ ├── locales │ │ │ └── index.js │ │ ├── pages │ │ │ └── FastBuySell.vue │ │ └── router.js │ ├── fees │ │ ├── locales │ │ │ └── index.js │ │ ├── pages │ │ │ └── Fees.vue │ │ └── router.js │ ├── trade │ │ ├── components │ │ │ ├── CurrencyList.vue │ │ │ ├── LimitsList.vue │ │ │ ├── OTC.vue │ │ │ ├── Overbook.vue │ │ │ ├── Recent.vue │ │ │ ├── StopLimit.vue │ │ │ ├── TradeGraphic.vue │ │ │ ├── TradeInput.vue │ │ │ ├── TradeMenus.vue │ │ │ └── orders │ │ │ │ ├── Orders-header.vue │ │ │ │ ├── Orders-sell-buy.vue │ │ │ │ ├── Orders-table-row.vue │ │ │ │ ├── Orders-table.vue │ │ │ │ └── Orders.vue │ │ ├── pages │ │ │ └── Trade.vue │ │ └── router.js │ └── wallet │ │ ├── components │ │ ├── WalletHistory.vue │ │ ├── WalletList.vue │ │ ├── WalletListEdit.vue │ │ └── modals │ │ │ ├── DepositNoticeModal.vue │ │ │ ├── InfoModal.vue │ │ │ ├── SecurityNoticeModal.vue │ │ │ ├── SepaDetails.vue │ │ │ ├── WalletActivateCancelCodeModals.vue │ │ │ ├── WalletDepositAddress.vue │ │ │ ├── WalletDepositAdvCashModal.vue │ │ │ ├── WalletDepositFiatModal.vue │ │ │ ├── WalletDepositFiatP2PCode.vue │ │ │ ├── WalletDepositPayeerModal.vue │ │ │ ├── WalletDepositSepaFialModal.vue │ │ │ ├── WalletWithdrawAdvCashModal.vue │ │ │ ├── WalletWithdrawFiatModal.vue │ │ │ ├── WalletWithdrawP2PModal.vue │ │ │ ├── WalletWithdrawPayeerModal.vue │ │ │ └── WalletWithdrawalCryptoAddress.vue │ │ ├── locales │ │ └── index.js │ │ ├── pages │ │ ├── Deposit.vue │ │ ├── History.vue │ │ ├── Index.vue │ │ └── Withdrawal.vue │ │ └── router.js ├── pages │ ├── 404.vue │ └── KYC.vue ├── plugins │ ├── global-components.js │ ├── http.js │ └── index.js ├── router │ └── index.js ├── static │ └── public │ │ ├── TV │ │ ├── charting_library │ │ │ ├── ar-tv-chart.132c7060.html │ │ │ ├── bundles │ │ │ │ ├── 0.d46f0b5e9380d7893de5.js │ │ │ │ ├── 0579d40b812fa2c3ffe72e5803a6e14c.cur │ │ │ │ ├── 1.92647ec0a7beb8b2898d.css │ │ │ │ ├── 1.92647ec0a7beb8b2898d.rtl.css │ │ │ │ ├── 1.f02c87d35fbc8ffcaedb.js │ │ │ │ ├── 10.21e665b7935d5bc4ba64.js │ │ │ │ ├── 11.8b65dc2e0d8b6e5041c4.css │ │ │ │ ├── 11.8b65dc2e0d8b6e5041c4.rtl.css │ │ │ │ ├── 11.df012db70159a159d927.js │ │ │ │ ├── 12.37750b21f6d8d35c6e6e.js │ │ │ │ ├── 12.ef8057448f3a7ae1c3d8.css │ │ │ │ ├── 12.ef8057448f3a7ae1c3d8.rtl.css │ │ │ │ ├── 13.699469c73d09b7add56d.js │ │ │ │ ├── 13.9240f13280154f2593b7.css │ │ │ │ ├── 13.9240f13280154f2593b7.rtl.css │ │ │ │ ├── 14.8095b40dd1e7deedf401.css │ │ │ │ ├── 14.8095b40dd1e7deedf401.rtl.css │ │ │ │ ├── 14.d1148b38d59df9ca5061.js │ │ │ │ ├── 15.44f2acca80348a1da1a6.js │ │ │ │ ├── 16.680572949c1125757d35.js │ │ │ │ ├── 16.d567c9db608f3d98d8de.css │ │ │ │ ├── 16.d567c9db608f3d98d8de.rtl.css │ │ │ │ ├── 17.404a01f527881dfff424.js │ │ │ │ ├── 17.ec35a19db935279c5b42.css │ │ │ │ ├── 17.ec35a19db935279c5b42.rtl.css │ │ │ │ ├── 18.78de69cfba051874e071.js │ │ │ │ ├── 19.048f7f5d36fef428ca8d.js │ │ │ │ ├── 19.75c30426f9d3ad5ca0c5.css │ │ │ │ ├── 19.75c30426f9d3ad5ca0c5.rtl.css │ │ │ │ ├── 1df47f578aeef40dd1f2328338a133be.png │ │ │ │ ├── 2.60931787a6734697ac13.js │ │ │ │ ├── 20.bc09ed47c5a62e1bc5c2.js │ │ │ │ ├── 21.4c7b5cccb67a95e7e782.js │ │ │ │ ├── 21.8153544955cdc47262e3.css │ │ │ │ ├── 21.8153544955cdc47262e3.rtl.css │ │ │ │ ├── 22.ca4300bcf614d8d5f4ab.js │ │ │ │ ├── 22.da9773799a06c6066d1e.css │ │ │ │ ├── 22.da9773799a06c6066d1e.rtl.css │ │ │ │ ├── 23.256ba98e6a03200bdeba.js │ │ │ │ ├── 23.ee754f50171546186397.css │ │ │ │ ├── 23.ee754f50171546186397.rtl.css │ │ │ │ ├── 24.bc4fafedb1730259aa10.js │ │ │ │ ├── 24.e70c1623e0c74477ef2e.css │ │ │ │ ├── 24.e70c1623e0c74477ef2e.rtl.css │ │ │ │ ├── 25.7416db26ed3dcc87c05a.js │ │ │ │ ├── 26.3aeec391d4e6e19989ee.js │ │ │ │ ├── 26.69139a843bc1c84f790b.css │ │ │ │ ├── 26.69139a843bc1c84f790b.rtl.css │ │ │ │ ├── 27.e3ec08b1fb9df5f36ada.js │ │ │ │ ├── 28.3140e8cb507ad2593c76.css │ │ │ │ ├── 28.3140e8cb507ad2593c76.rtl.css │ │ │ │ ├── 28.9f103042c27ea2df422f.js │ │ │ │ ├── 29.07af6dca962ea27209f0.css │ │ │ │ ├── 29.07af6dca962ea27209f0.rtl.css │ │ │ │ ├── 29.3df8712b85d45a626aa0.js │ │ │ │ ├── 3.76c398b01b707e5b251c.js │ │ │ │ ├── 3.eeb90413029441681f91.css │ │ │ │ ├── 3.eeb90413029441681f91.rtl.css │ │ │ │ ├── 30.0b732ccb122d160480b6.js │ │ │ │ ├── 31.8d2b7a538755fd1bb760.js │ │ │ │ ├── 32.13ce02217cf8f9dd6d90.js │ │ │ │ ├── 3293616ec0c605c7c2db25829a0a509e.woff │ │ │ │ ├── 33.02ed7df481ae8243d2f2.css │ │ │ │ ├── 33.02ed7df481ae8243d2f2.rtl.css │ │ │ │ ├── 33.4d0dd1f7001fc02099bb.js │ │ │ │ ├── 34.4b6099931f57311efc1a.css │ │ │ │ ├── 34.4b6099931f57311efc1a.rtl.css │ │ │ │ ├── 34.c9baa59add71a1e48fd2.js │ │ │ │ ├── 35.999f0e072062b7369a1a.css │ │ │ │ ├── 35.999f0e072062b7369a1a.rtl.css │ │ │ │ ├── 35.ed9e360f9686ad3a9497.js │ │ │ │ ├── 36.1882d1a8d312a0e193e9.js │ │ │ │ ├── 36.f315a19c17d5636af8f7.css │ │ │ │ ├── 36.f315a19c17d5636af8f7.rtl.css │ │ │ │ ├── 37.90129e4904155350d6a1.js │ │ │ │ ├── 38.41f3d509b61c8af47de3.js │ │ │ │ ├── 39.74a7bc3b464cd284827f.css │ │ │ │ ├── 39.74a7bc3b464cd284827f.rtl.css │ │ │ │ ├── 39.bc1e9ce938fd5152831f.js │ │ │ │ ├── 4.92647ec0a7beb8b2898d.css │ │ │ │ ├── 4.92647ec0a7beb8b2898d.rtl.css │ │ │ │ ├── 4.c7430b8d89cddcf51345.js │ │ │ │ ├── 40.b59f41ba4cacbfb8acc3.js │ │ │ │ ├── 40566afd832a155e5e370a8bd423de4b.svg │ │ │ │ ├── 40f9a03d174178efb12303caa9bc7cd8.woff2 │ │ │ │ ├── 41.8fa0fb0bd4ad0241ef2f.css │ │ │ │ ├── 41.8fa0fb0bd4ad0241ef2f.rtl.css │ │ │ │ ├── 41.a19b0ae5d68f855d2753.js │ │ │ │ ├── 42.494986b0981f6d116fef.js │ │ │ │ ├── 42.9078fb8f1629e3eee9bd.css │ │ │ │ ├── 42.9078fb8f1629e3eee9bd.rtl.css │ │ │ │ ├── 43.619c5ed4a592cc2965a4.js │ │ │ │ ├── 43.8bf90585004742c338c5.css │ │ │ │ ├── 43.8bf90585004742c338c5.rtl.css │ │ │ │ ├── 44.0a7df307e4f397763ce8.js │ │ │ │ ├── 45.12a19785e3864bd62a76.css │ │ │ │ ├── 45.12a19785e3864bd62a76.rtl.css │ │ │ │ ├── 45.db9dbd3e9bfeca5333da.js │ │ │ │ ├── 46.f1d4cfe6d6f830b4a011.js │ │ │ │ ├── 47.a3da3f774c90bd22798e.js │ │ │ │ ├── 48.a3fdb9dd54af71b3bda6.css │ │ │ │ ├── 48.a3fdb9dd54af71b3bda6.rtl.css │ │ │ │ ├── 48.a93f9cb8b1bcc0e0f21e.js │ │ │ │ ├── 49.bacd609f7eb77a4a4b68.js │ │ │ │ ├── 49.d723843c9192493b8c13.css │ │ │ │ ├── 49.d723843c9192493b8c13.rtl.css │ │ │ │ ├── 4a9abefd31dab7c8239e02e925aacd78.png │ │ │ │ ├── 4fafff07d8914dc11f6d335f606ff47c.png │ │ │ │ ├── 5.5e97b270ab80d99e9085.js │ │ │ │ ├── 50.8d5cba5b90176d3d2e3d.css │ │ │ │ ├── 50.8d5cba5b90176d3d2e3d.rtl.css │ │ │ │ ├── 50.b282667dddcb7fe1569a.js │ │ │ │ ├── 51.11871c50951db825ace3.js │ │ │ │ ├── 51.300c3df03ca063ec03a0.css │ │ │ │ ├── 51.300c3df03ca063ec03a0.rtl.css │ │ │ │ ├── 52.0379a85baae3ab43b15c.js │ │ │ │ ├── 52.29cec22b3525b47af67e.css │ │ │ │ ├── 52.29cec22b3525b47af67e.rtl.css │ │ │ │ ├── 53.1d3ec98cfb8e19affb1c.js │ │ │ │ ├── 54.bb5888ae55ea0a253a5b.js │ │ │ │ ├── 55.3c35a629db21ab961f11.js │ │ │ │ ├── 56.b3e69145c0fee614443d.js │ │ │ │ ├── 57.236996ec416da4c1f683.js │ │ │ │ ├── 58.7ffac4ba908b95705e63.js │ │ │ │ ├── 59.397cb6699b74d64072a8.js │ │ │ │ ├── 59.418f1db161eefae63284.css │ │ │ │ ├── 59.418f1db161eefae63284.rtl.css │ │ │ │ ├── 6.2221bb6a5d920bbb4bb2.css │ │ │ │ ├── 6.2221bb6a5d920bbb4bb2.rtl.css │ │ │ │ ├── 6.2d67b0ae77825dbd455d.js │ │ │ │ ├── 60.6b5eced2ef8fa856be88.js │ │ │ │ ├── 60.d4583c71cca790a25900.css │ │ │ │ ├── 60.d4583c71cca790a25900.rtl.css │ │ │ │ ├── 61.38a3040c925fadff7b64.js │ │ │ │ ├── 62.63b309f5f8da9ca013b8.js │ │ │ │ ├── 63.8255c7f5191bcafcee7c.js │ │ │ │ ├── 63.898a61bf08239711dc74.css │ │ │ │ ├── 63.898a61bf08239711dc74.rtl.css │ │ │ │ ├── 64.6f232bdb0fb4cdcc2d7d.css │ │ │ │ ├── 64.6f232bdb0fb4cdcc2d7d.rtl.css │ │ │ │ ├── 64.ec4b4d03b28c77658dde.js │ │ │ │ ├── 65.556980fc277562af83c8.css │ │ │ │ ├── 65.556980fc277562af83c8.rtl.css │ │ │ │ ├── 65.f895a78b4e04257983ff.js │ │ │ │ ├── 66.2979e9b7c35e7bf03a37.js │ │ │ │ ├── 66.84b4001b5c622a569dde.css │ │ │ │ ├── 66.84b4001b5c622a569dde.rtl.css │ │ │ │ ├── 67.19c83a0c303c290216d2.css │ │ │ │ ├── 67.19c83a0c303c290216d2.rtl.css │ │ │ │ ├── 67.25fd4b78c8c514988aeb.js │ │ │ │ ├── 68.8b4124c875484d11fd94.js │ │ │ │ ├── 68.fa7424ae9c5fe5483aac.css │ │ │ │ ├── 68.fa7424ae9c5fe5483aac.rtl.css │ │ │ │ ├── 69.094b4a764d3dc17820cf.css │ │ │ │ ├── 69.094b4a764d3dc17820cf.rtl.css │ │ │ │ ├── 69.43756a5c7477730eb0c4.js │ │ │ │ ├── 7.2c7c4f8a49c6380227de.js │ │ │ │ ├── 70.c27146ec029eda556108.css │ │ │ │ ├── 70.c27146ec029eda556108.rtl.css │ │ │ │ ├── 70.cb9d1bb5a00896c1bb97.js │ │ │ │ ├── 71.15e639d294c4209f256e.css │ │ │ │ ├── 71.15e639d294c4209f256e.rtl.css │ │ │ │ ├── 71.6a9d0842f5e48f68399c.js │ │ │ │ ├── 72.07441fd67b864b86147b.css │ │ │ │ ├── 72.07441fd67b864b86147b.rtl.css │ │ │ │ ├── 72.e3925aaf38d2c8997638.js │ │ │ │ ├── 73.6b8b9e5e2c8e2b753cb8.css │ │ │ │ ├── 73.6b8b9e5e2c8e2b753cb8.rtl.css │ │ │ │ ├── 73.8ca1a096c5bdc2e5fb8a.js │ │ │ │ ├── 7393f661fc7d4389ea6d4dabd2a5aeea.png │ │ │ │ ├── 74.34dcc0d3cd1bbfa5e951.js │ │ │ │ ├── 74.8c591c252b2e7ad8f744.css │ │ │ │ ├── 74.8c591c252b2e7ad8f744.rtl.css │ │ │ │ ├── 75.1c9a3a6524248ddf88bf.js │ │ │ │ ├── 75.fefbc386c59bf7d4f9f7.css │ │ │ │ ├── 75.fefbc386c59bf7d4f9f7.rtl.css │ │ │ │ ├── 76.5d20bed213399f326603.js │ │ │ │ ├── 76.f14d71a31295d8cd8d8b.css │ │ │ │ ├── 76.f14d71a31295d8cd8d8b.rtl.css │ │ │ │ ├── 77.3e4ccccc7d3eb03c488f.js │ │ │ │ ├── 77.9c35f7046b848fbfd7f5.css │ │ │ │ ├── 77.9c35f7046b848fbfd7f5.rtl.css │ │ │ │ ├── 78.0d502ab4d94441708606.css │ │ │ │ ├── 78.0d502ab4d94441708606.rtl.css │ │ │ │ ├── 78.1d1d47a915b06f1496fb.js │ │ │ │ ├── 79.86e92b77f8cf32e6bc37.js │ │ │ │ ├── 79.b990749a4839f9123f26.css │ │ │ │ ├── 79.b990749a4839f9123f26.rtl.css │ │ │ │ ├── 7e0cc5f7d7f5151500dd60b8d6ca60a1.png │ │ │ │ ├── 8.e66ab8f27911a033604f.css │ │ │ │ ├── 8.e66ab8f27911a033604f.rtl.css │ │ │ │ ├── 8.ffab20b86db484062268.js │ │ │ │ ├── 80.5bdd53d5fc42d40eee28.css │ │ │ │ ├── 80.5bdd53d5fc42d40eee28.rtl.css │ │ │ │ ├── 80.b5bc6acec3b531a510a9.js │ │ │ │ ├── 81.552e046aa828739c508b.css │ │ │ │ ├── 81.552e046aa828739c508b.rtl.css │ │ │ │ ├── 81.e6a1f76017a44b03480b.js │ │ │ │ ├── 82.8c2919e6c8f54e36e9e6.js │ │ │ │ ├── 82.e06fe84c8cdead4bd52e.css │ │ │ │ ├── 82.e06fe84c8cdead4bd52e.rtl.css │ │ │ │ ├── 83.e238aa056c5d4827cbdd.css │ │ │ │ ├── 83.e238aa056c5d4827cbdd.rtl.css │ │ │ │ ├── 83.f3e53bb5a5940e084955.js │ │ │ │ ├── 84.8acc496b4deeeeefb5af.js │ │ │ │ ├── 84.bb4fc57627c8626019fd.css │ │ │ │ ├── 84.bb4fc57627c8626019fd.rtl.css │ │ │ │ ├── 85.39c78fbeaabae306f343.js │ │ │ │ ├── 85.e0ba32bafcab02208901.css │ │ │ │ ├── 85.e0ba32bafcab02208901.rtl.css │ │ │ │ ├── 86.4bbbb9e6262243419986.js │ │ │ │ ├── 86.9244fc2bcc2370425a15.css │ │ │ │ ├── 86.9244fc2bcc2370425a15.rtl.css │ │ │ │ ├── 87.605cbc508223ec27341c.css │ │ │ │ ├── 87.605cbc508223ec27341c.rtl.css │ │ │ │ ├── 87.cf03fa0a76bfcadd157d.js │ │ │ │ ├── 88.158dd8a18e176936a343.css │ │ │ │ ├── 88.158dd8a18e176936a343.rtl.css │ │ │ │ ├── 88.d1e3aec63ece25f6b8a9.js │ │ │ │ ├── 89.5f142643917701de773b.css │ │ │ │ ├── 89.5f142643917701de773b.rtl.css │ │ │ │ ├── 89.d8aa43b4b9378722d572.js │ │ │ │ ├── 898929f1acdb622689e0fc0c95c8fcd0.png │ │ │ │ ├── 9.84ecbc930e51cb26d06a.js │ │ │ │ ├── 9.8ab09f93a5113a634119.css │ │ │ │ ├── 9.8ab09f93a5113a634119.rtl.css │ │ │ │ ├── 90.877114560c4828a97702.css │ │ │ │ ├── 90.877114560c4828a97702.rtl.css │ │ │ │ ├── 90.ce47bb68fc3fc88b5590.js │ │ │ │ ├── 91.2142b248a2bb29549a99.css │ │ │ │ ├── 91.2142b248a2bb29549a99.rtl.css │ │ │ │ ├── 91.a9b79ef7ba0a62311a53.js │ │ │ │ ├── 92.76d5ca7ebec10a1a7a12.js │ │ │ │ ├── 92.e46f0aa06bcdbddf3831.css │ │ │ │ ├── 92.e46f0aa06bcdbddf3831.rtl.css │ │ │ │ ├── 93.17d34ca77a7fc85a24d9.css │ │ │ │ ├── 93.17d34ca77a7fc85a24d9.rtl.css │ │ │ │ ├── 93.6de56ef1975f4a31e542.js │ │ │ │ ├── 94.231bea5fb12b806ef287.js │ │ │ │ ├── 94.b204218cb73b576333a1.css │ │ │ │ ├── 94.b204218cb73b576333a1.rtl.css │ │ │ │ ├── 95.51244d1c4baf49d08807.css │ │ │ │ ├── 95.51244d1c4baf49d08807.rtl.css │ │ │ │ ├── 95.6f7da80aac5cf2bf77d6.js │ │ │ │ ├── 96.43bb935eee30715afff7.js │ │ │ │ ├── 96.be9ad3d6a7c91501bb55.css │ │ │ │ ├── 96.be9ad3d6a7c91501bb55.rtl.css │ │ │ │ ├── a6506134daec7169f68f563f084a9d41.svg │ │ │ │ ├── add-compare-dialog.f980c19f222ff9cb8fe6.js │ │ │ │ ├── b1a63a011fd92dfb93db6db243bb036c.woff2 │ │ │ │ ├── change-interval-dialog.e928f8dec65c9244cafe.js │ │ │ │ ├── chart-bottom-toolbar.b2e895a5fd3f204fb6b6.js │ │ │ │ ├── chart-event-hint.94e94e93f9fdee936b66.js │ │ │ │ ├── chart-screenshot-hint.14bfec43c52bc3d28f82.js │ │ │ │ ├── chart-widget-gui.226991e9f53aba124fc2.js │ │ │ │ ├── compare-model.0e6bbdc5f5942c9a716e.js │ │ │ │ ├── context-menu-renderer.7f6f59270ef0f3afa2ed.js │ │ │ │ ├── currency-label-menu.a7a0c0e44d64b092f2cc.js │ │ │ │ ├── custom-intervals-add-dialog.bb64431fb1c6d852f9f1.js │ │ │ │ ├── drawing-toolbar.8cc497633535648562e7.js │ │ │ │ ├── ed68e83c16f77203e73dbc4c3a7c7fa1.cur │ │ │ │ ├── export-data.c819cfa996e2815ff11d.js │ │ │ │ ├── f55394b616ed1ae9462c37daab941d93.png │ │ │ │ ├── floating-toolbars.d78a058b82ab09013aac.js │ │ │ │ ├── full-tooltips-popup.96fc751e06523b742440.js │ │ │ │ ├── general-chart-properties-dialog.b08948e0c90aebf07ebd.js │ │ │ │ ├── general-property-page.32bdfdbafbd81d9e83c6.js │ │ │ │ ├── go-to-date-dialog-impl.3481c4fcfde2f4d46426.js │ │ │ │ ├── hammerjs.e5489031ed611f47bf09.js │ │ │ │ ├── header-toolbar.4bff61e047f9b8379494.js │ │ │ │ ├── library.237999374a0f9a719893.js │ │ │ │ ├── library.579e6e3fd95b660ad833.css │ │ │ │ ├── library.579e6e3fd95b660ad833.rtl.css │ │ │ │ ├── line-tools-icons.090f39d92664af3915a5.js │ │ │ │ ├── load-chart-dialog.6cc1a47b17698c0108cb.js │ │ │ │ ├── lollipop-tooltip-renderer.6705b971a2e73c26ecad.js │ │ │ │ ├── lt-pane-views.4d2ee6c5330cd3760eb0.js │ │ │ │ ├── lt-property-pages-with-definitions.a5e8283e77afa66b5636.js │ │ │ │ ├── manage-drawings-dialog.1c0c3737002fa63fe6a6.js │ │ │ │ ├── moment.78e587a83a009ca48cda.js │ │ │ │ ├── new-confirm-inputs-dialog.00d79c2263e005170345.js │ │ │ │ ├── new-edit-object-dialog.0ed1c3834cfc0e834aed.js │ │ │ │ ├── object-tree-dialog.5b98d078925b3addfb0a.js │ │ │ │ ├── react.9f2899b40ad0e104f6c9.js │ │ │ │ ├── redux.43c3f6d214bcf2d1fbd1.js │ │ │ │ ├── restricted-toolset.08fefbae2bc0877b0ef2.js │ │ │ │ ├── runtime.c6da8e1e9c16eccdffac.js │ │ │ │ ├── series-icons-map.ec8043f64d8b06dbce29.js │ │ │ │ ├── series-pane-views.eefe35e1c508ac16c102.js │ │ │ │ ├── share-chart-to-social-utils.c225af2051efd23269e0.js │ │ │ │ ├── show-theme-save-dialog.f81ebf1b2ce08f4399fd.js │ │ │ │ ├── simple-dialog.bd79f02afd512f0f36dd.js │ │ │ │ ├── source-properties-editor.e858d44541ebb6f974a2.js │ │ │ │ ├── study-market.3efd7bf7bc6e6fc7db2d.js │ │ │ │ ├── study-pane-views.9a873dcf74adedf7600b.js │ │ │ │ ├── study-property-pages-with-definitions.ca4fc2ef5a4deff8c0bb.js │ │ │ │ ├── study-template-dialog.fe56a9893a3695e93531.js │ │ │ │ ├── symbol-info-dialog-impl.17daedab6f893acdeae4.js │ │ │ │ ├── symbol-search-dialog.fd3311eee8604f807c80.js │ │ │ │ ├── take-chart-image-impl.c0e6073dcac3041eecf2.js │ │ │ │ └── vendors.6f5e0d8d267cb3e63ee0.js │ │ │ ├── charting_library.cjs.js │ │ │ ├── charting_library.d.ts │ │ │ ├── charting_library.esm.js │ │ │ ├── charting_library.js │ │ │ ├── charting_library.standalone.js │ │ │ ├── cs-tv-chart.132c7060.html │ │ │ ├── da_DK-tv-chart.132c7060.html │ │ │ ├── datafeed-api.d.ts │ │ │ ├── de-tv-chart.132c7060.html │ │ │ ├── el-tv-chart.132c7060.html │ │ │ ├── en-tv-chart.132c7060.html │ │ │ ├── es-tv-chart.132c7060.html │ │ │ ├── et_EE-tv-chart.132c7060.html │ │ │ ├── fa-tv-chart.132c7060.html │ │ │ ├── fr-tv-chart.132c7060.html │ │ │ ├── he_IL-tv-chart.132c7060.html │ │ │ ├── hu_HU-tv-chart.132c7060.html │ │ │ ├── id_ID-tv-chart.132c7060.html │ │ │ ├── it-tv-chart.132c7060.html │ │ │ ├── ja-tv-chart.132c7060.html │ │ │ ├── ko-tv-chart.132c7060.html │ │ │ ├── ms_MY-tv-chart.132c7060.html │ │ │ ├── nl_NL-tv-chart.132c7060.html │ │ │ ├── no-tv-chart.132c7060.html │ │ │ ├── package.json │ │ │ ├── pl-tv-chart.132c7060.html │ │ │ ├── pt-tv-chart.132c7060.html │ │ │ ├── ro-tv-chart.132c7060.html │ │ │ ├── ru-tv-chart.132c7060.html │ │ │ ├── sk_SK-tv-chart.132c7060.html │ │ │ ├── sv-tv-chart.132c7060.html │ │ │ ├── th-tv-chart.132c7060.html │ │ │ ├── tr-tv-chart.132c7060.html │ │ │ ├── vi-tv-chart.132c7060.html │ │ │ ├── zh-tv-chart.132c7060.html │ │ │ └── zh_TW-tv-chart.132c7060.html │ │ └── datafeeds │ │ │ ├── README.md │ │ │ └── udf │ │ │ ├── .npmrc │ │ │ ├── README.md │ │ │ ├── dist │ │ │ └── bundle.js │ │ │ ├── lib │ │ │ ├── data-pulse-provider.js │ │ │ ├── helpers.js │ │ │ ├── history-provider.js │ │ │ ├── iquotes-provider.js │ │ │ ├── quotes-provider.js │ │ │ ├── quotes-pulse-provider.js │ │ │ ├── requester.js │ │ │ ├── symbols-storage.js │ │ │ ├── udf-compatible-datafeed-base.js │ │ │ └── udf-compatible-datafeed.js │ │ │ ├── package.json │ │ │ ├── rollup.config.js │ │ │ ├── src │ │ │ ├── data-pulse-provider.ts │ │ │ ├── helpers.ts │ │ │ ├── history-provider.ts │ │ │ ├── iquotes-provider.ts │ │ │ ├── quotes-provider.ts │ │ │ ├── quotes-pulse-provider.ts │ │ │ ├── requester.ts │ │ │ ├── symbols-storage.ts │ │ │ ├── udf-compatible-datafeed-base.ts │ │ │ └── udf-compatible-datafeed.ts │ │ │ └── tsconfig.json │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── browserconfig.xml │ │ ├── dump.html │ │ ├── favicon.ico │ │ ├── favicon │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ │ ├── img │ │ ├── Support.svg │ │ ├── User.svg │ │ ├── User_b.svg │ │ ├── android-img.png │ │ ├── angle-down.svg │ │ ├── angle-up.svg │ │ ├── apple.svg │ │ ├── arrow-top-blue-sel.png │ │ ├── arrow-top-blue.png │ │ ├── arrow-top.png │ │ ├── arrow-top_b.png │ │ ├── author.png │ │ ├── author.svg │ │ ├── balans.png │ │ ├── balans_b.png │ │ ├── bg-profits.png │ │ ├── bit.jpg │ │ ├── btc-icon.png │ │ ├── burger.png │ │ ├── caret-white.svg │ │ ├── check-circle.svg │ │ ├── checked.png │ │ ├── coin │ │ │ ├── and.svg │ │ │ ├── bcash.png │ │ │ ├── bcash.svg │ │ │ ├── bcc.svg │ │ │ ├── bch.png │ │ │ ├── bch.svg │ │ │ ├── binance.png │ │ │ ├── bitcoin.png │ │ │ ├── bnb.svg │ │ │ ├── btc.png │ │ │ ├── btc.svg │ │ │ ├── cashberrycoin.png │ │ │ ├── cbc.png │ │ │ ├── cbc.svg │ │ │ ├── dash.svg │ │ │ ├── defi.svg │ │ │ ├── dollar.png │ │ │ ├── eos.svg │ │ │ ├── eth.png │ │ │ ├── eth.svg │ │ │ ├── ethereum.png │ │ │ ├── ethereumCircle.png │ │ │ ├── eur.png │ │ │ ├── eur.svg │ │ │ ├── euro.png │ │ │ ├── iota.png │ │ │ ├── lfc.svg │ │ │ ├── litecoin.svg │ │ │ ├── lrg.svg │ │ │ ├── ltc.png │ │ │ ├── ltc.svg │ │ │ ├── matic.svg │ │ │ ├── mmeta.svg │ │ │ ├── namecoin.png │ │ │ ├── navcoin.png │ │ │ ├── plx.svg │ │ │ ├── r.png │ │ │ ├── rep.png │ │ │ ├── rep.svg │ │ │ ├── rouble.png │ │ │ ├── rub.png │ │ │ ├── rub.svg │ │ │ ├── spiner.png │ │ │ ├── t.png │ │ │ ├── trx.svg │ │ │ ├── try.png │ │ │ ├── try.svg │ │ │ ├── usd.png │ │ │ ├── usd.svg │ │ │ ├── usdc.svg │ │ │ ├── usdt.png │ │ │ ├── usdt.svg │ │ │ ├── wear.svg │ │ │ ├── xrp.png │ │ │ └── xrp.svg │ │ ├── common │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── calendar.svg │ │ │ ├── close.svg │ │ │ ├── flags │ │ │ │ ├── __.gif │ │ │ │ ├── ae.gif │ │ │ │ ├── af.gif │ │ │ │ ├── ag.gif │ │ │ │ ├── ai.gif │ │ │ │ ├── al.gif │ │ │ │ ├── am.gif │ │ │ │ ├── andora.gif │ │ │ │ ├── ao.gif │ │ │ │ ├── aq.gif │ │ │ │ ├── ar.gif │ │ │ │ ├── as.gif │ │ │ │ ├── at.gif │ │ │ │ ├── au.gif │ │ │ │ ├── aw.gif │ │ │ │ ├── ax.gif │ │ │ │ ├── az.gif │ │ │ │ ├── ba.gif │ │ │ │ ├── bb.gif │ │ │ │ ├── bd.gif │ │ │ │ ├── be.gif │ │ │ │ ├── bf.gif │ │ │ │ ├── bg.gif │ │ │ │ ├── bh.gif │ │ │ │ ├── bi.gif │ │ │ │ ├── bj.gif │ │ │ │ ├── bl.gif │ │ │ │ ├── bm.gif │ │ │ │ ├── bn.gif │ │ │ │ ├── bo.gif │ │ │ │ ├── bq.gif │ │ │ │ ├── br.gif │ │ │ │ ├── bs.gif │ │ │ │ ├── bt.gif │ │ │ │ ├── bv.gif │ │ │ │ ├── bw.gif │ │ │ │ ├── by.gif │ │ │ │ ├── bz.gif │ │ │ │ ├── ca.gif │ │ │ │ ├── cc.gif │ │ │ │ ├── cd.gif │ │ │ │ ├── cf.gif │ │ │ │ ├── cg.gif │ │ │ │ ├── ch.gif │ │ │ │ ├── ci.gif │ │ │ │ ├── ck.gif │ │ │ │ ├── cl.gif │ │ │ │ ├── cm.gif │ │ │ │ ├── cn.gif │ │ │ │ ├── co.gif │ │ │ │ ├── cr.gif │ │ │ │ ├── cu.gif │ │ │ │ ├── cv.gif │ │ │ │ ├── cw.gif │ │ │ │ ├── cx.gif │ │ │ │ ├── cy.gif │ │ │ │ ├── cz.gif │ │ │ │ ├── de.gif │ │ │ │ ├── dj.gif │ │ │ │ ├── dk.gif │ │ │ │ ├── dm.gif │ │ │ │ ├── do.gif │ │ │ │ ├── dz.gif │ │ │ │ ├── ec.gif │ │ │ │ ├── ee.gif │ │ │ │ ├── eg.gif │ │ │ │ ├── eh.gif │ │ │ │ ├── er.gif │ │ │ │ ├── es.gif │ │ │ │ ├── et.gif │ │ │ │ ├── eu.gif │ │ │ │ ├── fi.gif │ │ │ │ ├── fj.gif │ │ │ │ ├── fk.gif │ │ │ │ ├── fm.gif │ │ │ │ ├── fo.gif │ │ │ │ ├── fr.gif │ │ │ │ ├── ga.gif │ │ │ │ ├── gb.gif │ │ │ │ ├── gd.gif │ │ │ │ ├── ge.gif │ │ │ │ ├── gf.gif │ │ │ │ ├── gg.gif │ │ │ │ ├── gh.gif │ │ │ │ ├── gi.gif │ │ │ │ ├── gl.gif │ │ │ │ ├── gm.gif │ │ │ │ ├── gn.gif │ │ │ │ ├── gp.gif │ │ │ │ ├── gq.gif │ │ │ │ ├── gr.gif │ │ │ │ ├── gs.gif │ │ │ │ ├── gt.gif │ │ │ │ ├── gu.gif │ │ │ │ ├── gw.gif │ │ │ │ ├── gy.gif │ │ │ │ ├── hk.gif │ │ │ │ ├── hm.gif │ │ │ │ ├── hn.gif │ │ │ │ ├── hr.gif │ │ │ │ ├── ht.gif │ │ │ │ ├── hu.gif │ │ │ │ ├── id.gif │ │ │ │ ├── ie.gif │ │ │ │ ├── il.gif │ │ │ │ ├── im.gif │ │ │ │ ├── in.gif │ │ │ │ ├── io.gif │ │ │ │ ├── iq.gif │ │ │ │ ├── ir.gif │ │ │ │ ├── is.gif │ │ │ │ ├── it.gif │ │ │ │ ├── je.gif │ │ │ │ ├── jm.gif │ │ │ │ ├── jo.gif │ │ │ │ ├── jp.gif │ │ │ │ ├── ke.gif │ │ │ │ ├── kg.gif │ │ │ │ ├── kh.gif │ │ │ │ ├── ki.gif │ │ │ │ ├── km.gif │ │ │ │ ├── kn.gif │ │ │ │ ├── kp.gif │ │ │ │ ├── kr.gif │ │ │ │ ├── kw.gif │ │ │ │ ├── ky.gif │ │ │ │ ├── kz.gif │ │ │ │ ├── la.gif │ │ │ │ ├── lb.gif │ │ │ │ ├── lc.gif │ │ │ │ ├── li.gif │ │ │ │ ├── lk.gif │ │ │ │ ├── lr.gif │ │ │ │ ├── ls.gif │ │ │ │ ├── lt.gif │ │ │ │ ├── lu.gif │ │ │ │ ├── lv.gif │ │ │ │ ├── ly.gif │ │ │ │ ├── ma.gif │ │ │ │ ├── mc.gif │ │ │ │ ├── md.gif │ │ │ │ ├── me.gif │ │ │ │ ├── mf.gif │ │ │ │ ├── mg.gif │ │ │ │ ├── mh.gif │ │ │ │ ├── mk.gif │ │ │ │ ├── ml.gif │ │ │ │ ├── mm.gif │ │ │ │ ├── mn.gif │ │ │ │ ├── mo.gif │ │ │ │ ├── mp.gif │ │ │ │ ├── mq.gif │ │ │ │ ├── mr.gif │ │ │ │ ├── ms.gif │ │ │ │ ├── mt.gif │ │ │ │ ├── mu.gif │ │ │ │ ├── mv.gif │ │ │ │ ├── mw.gif │ │ │ │ ├── mx.gif │ │ │ │ ├── my.gif │ │ │ │ ├── mz.gif │ │ │ │ ├── na.gif │ │ │ │ ├── nc.gif │ │ │ │ ├── ne.gif │ │ │ │ ├── nf.gif │ │ │ │ ├── ng.gif │ │ │ │ ├── ni.gif │ │ │ │ ├── nl.gif │ │ │ │ ├── no.gif │ │ │ │ ├── np.gif │ │ │ │ ├── nr.gif │ │ │ │ ├── nu.gif │ │ │ │ ├── nz.gif │ │ │ │ ├── om.gif │ │ │ │ ├── pa.gif │ │ │ │ ├── pe.gif │ │ │ │ ├── pf.gif │ │ │ │ ├── pg.gif │ │ │ │ ├── ph.gif │ │ │ │ ├── pk.gif │ │ │ │ ├── pl.gif │ │ │ │ ├── pm.gif │ │ │ │ ├── pn.gif │ │ │ │ ├── pr.gif │ │ │ │ ├── ps.gif │ │ │ │ ├── pt.gif │ │ │ │ ├── pw.gif │ │ │ │ ├── py.gif │ │ │ │ ├── qa.gif │ │ │ │ ├── re.gif │ │ │ │ ├── ro.gif │ │ │ │ ├── rs.gif │ │ │ │ ├── ru.gif │ │ │ │ ├── rw.gif │ │ │ │ ├── sa.gif │ │ │ │ ├── sb.gif │ │ │ │ ├── sc.gif │ │ │ │ ├── sd.gif │ │ │ │ ├── se.gif │ │ │ │ ├── sg.gif │ │ │ │ ├── sh.gif │ │ │ │ ├── si.gif │ │ │ │ ├── sj.gif │ │ │ │ ├── sk.gif │ │ │ │ ├── sl.gif │ │ │ │ ├── sm.gif │ │ │ │ ├── sn.gif │ │ │ │ ├── so.gif │ │ │ │ ├── sprite-hq.css │ │ │ │ ├── sprite-hq.png │ │ │ │ ├── sprite.css │ │ │ │ ├── sprite.png │ │ │ │ ├── sr.gif │ │ │ │ ├── ss.gif │ │ │ │ ├── st.gif │ │ │ │ ├── sv.gif │ │ │ │ ├── sx.gif │ │ │ │ ├── sy.gif │ │ │ │ ├── sz.gif │ │ │ │ ├── tc.gif │ │ │ │ ├── td.gif │ │ │ │ ├── tf.gif │ │ │ │ ├── tg.gif │ │ │ │ ├── th.gif │ │ │ │ ├── tj.gif │ │ │ │ ├── tk.gif │ │ │ │ ├── tl.gif │ │ │ │ ├── tm.gif │ │ │ │ ├── tn.gif │ │ │ │ ├── to.gif │ │ │ │ ├── tr.gif │ │ │ │ ├── tt.gif │ │ │ │ ├── tv.gif │ │ │ │ ├── tw.gif │ │ │ │ ├── tz.gif │ │ │ │ ├── ua.gif │ │ │ │ ├── ug.gif │ │ │ │ ├── um.gif │ │ │ │ ├── us.gif │ │ │ │ ├── uy.gif │ │ │ │ ├── uz.gif │ │ │ │ ├── va.gif │ │ │ │ ├── vc.gif │ │ │ │ ├── ve.gif │ │ │ │ ├── vg.gif │ │ │ │ ├── vi.gif │ │ │ │ ├── vn.gif │ │ │ │ ├── vu.gif │ │ │ │ ├── wf.gif │ │ │ │ ├── ws.gif │ │ │ │ ├── ye.gif │ │ │ │ ├── yt.gif │ │ │ │ ├── za.gif │ │ │ │ ├── zm.gif │ │ │ │ └── zw.gif │ │ │ ├── info-octagon.svg │ │ │ ├── pdf-icon.png │ │ │ ├── svgcrypto │ │ │ │ ├── and.svg │ │ │ │ ├── bcc.svg │ │ │ │ ├── bch.svg │ │ │ │ ├── bnb.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── cbc.svg │ │ │ │ ├── dash.svg │ │ │ │ ├── defi.svg │ │ │ │ ├── eos.svg │ │ │ │ ├── eth.svg │ │ │ │ ├── eur.svg │ │ │ │ ├── lfc.svg │ │ │ │ ├── lrg.svg │ │ │ │ ├── ltc.svg │ │ │ │ ├── matic.svg │ │ │ │ ├── mmeta.svg │ │ │ │ ├── plx.svg │ │ │ │ ├── rep.svg │ │ │ │ ├── rub.svg │ │ │ │ ├── trx.svg │ │ │ │ ├── usd.svg │ │ │ │ ├── usdc.svg │ │ │ │ ├── usdt.svg │ │ │ │ ├── wear.svg │ │ │ │ └── xrp.svg │ │ │ └── updata.png │ │ ├── copy.svg │ │ ├── down.png │ │ ├── en.png │ │ ├── envelope.svg │ │ ├── es.png │ │ ├── exchange-preview.png │ │ ├── eye-slash.svg │ │ ├── eye.svg │ │ ├── facebook.png │ │ ├── facebook.svg │ │ ├── faq │ │ │ ├── bars.svg │ │ │ ├── bolt.svg │ │ │ ├── cog.svg │ │ │ ├── credit_card.svg │ │ │ ├── exchange.svg │ │ │ ├── gift.svg │ │ │ ├── line_chart.svg │ │ │ ├── list_ul.svg │ │ │ ├── money.svg │ │ │ ├── rocket.svg │ │ │ ├── shield.svg │ │ │ └── users.svg │ │ ├── footer-android.png │ │ ├── footer-ios.png │ │ ├── fr.png │ │ ├── google.svg │ │ ├── history.svg │ │ ├── info-main-page │ │ │ ├── facebook.png │ │ │ ├── girl.png │ │ │ ├── human │ │ │ │ ├── 0.svg │ │ │ │ ├── 1.svg │ │ │ │ └── 2.svg │ │ │ ├── instant-exchange-mock.png │ │ │ ├── interface-img.png │ │ │ ├── man.png │ │ │ ├── pay-options.png │ │ │ ├── payments-img.png │ │ │ ├── portfolio-background.png │ │ │ ├── rocket.png │ │ │ ├── support-24-7.png │ │ │ ├── telegram.png │ │ │ ├── top-background.png │ │ │ ├── twitter.png │ │ │ ├── wallet.png │ │ │ └── your-portfolio-mock.png │ │ ├── ios-img.png │ │ ├── lang │ │ │ ├── en.png │ │ │ ├── en_circle.png │ │ │ ├── en_square.png │ │ │ ├── eng.png │ │ │ ├── eng_circle.png │ │ │ ├── es_circle.png │ │ │ ├── fr_circle.png │ │ │ ├── ru.png │ │ │ ├── ru_circle.png │ │ │ ├── ru_square.png │ │ │ ├── tr.png │ │ │ └── tr_circle.png │ │ ├── laptop.png │ │ ├── launchpad │ │ │ └── icons │ │ │ │ ├── application.svg │ │ │ │ ├── arror-left.svg │ │ │ │ ├── arrow-rigth.svg │ │ │ │ ├── arrow_circle_up.svg │ │ │ │ ├── back-icon.svg │ │ │ │ ├── bx-wallet.svg │ │ │ │ ├── check.svg │ │ │ │ ├── circulation.svg │ │ │ │ ├── confirmed.svg │ │ │ │ ├── currency.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── graphic.svg │ │ │ │ ├── group.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── info.svg │ │ │ │ ├── lightning.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lockup.svg │ │ │ │ ├── network.svg │ │ │ │ ├── outbond.svg │ │ │ │ ├── pending.svg │ │ │ │ ├── plx.svg │ │ │ │ ├── price.svg │ │ │ │ ├── profile.svg │ │ │ │ ├── project.svg │ │ │ │ ├── roadmap.svg │ │ │ │ ├── sale.svg │ │ │ │ ├── select_dropdown.svg │ │ │ │ ├── signedin.svg │ │ │ │ ├── socials.png │ │ │ │ ├── socials.svg │ │ │ │ ├── success-step.svg │ │ │ │ ├── supply.svg │ │ │ │ ├── swap_horiz.svg │ │ │ │ ├── ticker.svg │ │ │ │ ├── union.svg │ │ │ │ ├── up.svg │ │ │ │ ├── usdt.svg │ │ │ │ ├── verified.svg │ │ │ │ └── wallet.svg │ │ ├── linkedin.svg │ │ ├── logo-black.png │ │ ├── logo-black.svg │ │ ├── logo-white.svg │ │ ├── logo.png │ │ ├── logo_big.png │ │ ├── long-arrow-right.svg │ │ ├── mail.png │ │ ├── main-graph-mock.jpg │ │ ├── menu │ │ │ ├── bolt.svg │ │ │ ├── cog.svg │ │ │ ├── credit-card-alt.svg │ │ │ ├── exchange.svg │ │ │ ├── gift.svg │ │ │ ├── handshake.svg │ │ │ ├── headphones.svg │ │ │ ├── line-chart.svg │ │ │ ├── list-ul.svg │ │ │ ├── rocket.svg │ │ │ ├── sign-out.svg │ │ │ └── users.svg │ │ ├── minmax.svg │ │ ├── not-inform.png │ │ ├── not-verify.png │ │ ├── ok.png │ │ ├── p │ │ │ ├── Services.svg │ │ │ ├── arrow-right.svg │ │ │ ├── bs_icon.svg │ │ │ ├── check_icon.svg │ │ │ ├── eth_icon.svg │ │ │ ├── facebook_button.svg │ │ │ ├── file_icon.svg │ │ │ ├── file_icon_white.svg │ │ │ ├── info_icon.svg │ │ │ ├── participate_icon.svg │ │ │ ├── pdf-icon.svg │ │ │ ├── scan_icon.svg │ │ │ ├── services.png │ │ │ ├── t_bonuc.svg │ │ │ ├── t_contribution.svg │ │ │ ├── t_date.svg │ │ │ ├── t_denomination.svg │ │ │ ├── t_discount.svg │ │ │ ├── t_lock.svg │ │ │ ├── t_price.svg │ │ │ ├── t_to_sale.svg │ │ │ ├── telegram_button.svg │ │ │ ├── tether.svg │ │ │ ├── timer_bg.svg │ │ │ └── twitter_button.svg │ │ ├── pdf-icon.png │ │ ├── pencil-square-o.svg │ │ ├── pencil.svg │ │ ├── pencil_b.svg │ │ ├── portfolio-arrow.png │ │ ├── question.png │ │ ├── rect-green.svg │ │ ├── rect-orange.svg │ │ ├── refresh.svg │ │ ├── robot.png │ │ ├── ru.png │ │ ├── search.svg │ │ ├── searchicon.png │ │ ├── secure-img.png │ │ ├── soc │ │ │ ├── fb.svg │ │ │ ├── gh.svg │ │ │ ├── inst.svg │ │ │ ├── link.svg │ │ │ ├── s1.svg │ │ │ └── s2.svg │ │ ├── spinner.svg │ │ ├── swap-horiz.svg │ │ ├── telegram-icon.png │ │ ├── telegram-mini.png │ │ ├── telegram.svg │ │ ├── theme-dark.svg │ │ ├── times.svg │ │ ├── times_r.svg │ │ ├── top_bg.png │ │ ├── trade-preview.png │ │ ├── twitter.png │ │ ├── twitter.svg │ │ ├── us.png │ │ ├── usd.svg │ │ ├── user.png │ │ ├── user_b.png │ │ ├── v_white_on_transp_en.png │ │ ├── verifiedaccount.png │ │ ├── wallet-icon.png │ │ └── withdrawal.svg │ │ ├── manifest.json │ │ ├── robots.txt │ │ ├── site.webmanifest │ │ └── sprite.svg ├── store │ ├── core │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutation-types.js │ │ ├── mutations.js │ │ └── state.js │ ├── index.js │ └── modules │ │ ├── main.js │ │ └── robot.js └── utilities │ ├── consts.js │ ├── helpers.js │ ├── lazyLoad.js │ └── manager.js ├── tailwind.config.js ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | local_config.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/KYC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/KYC.js -------------------------------------------------------------------------------- /src/api/TradingView/historyProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/TradingView/historyProvider.js -------------------------------------------------------------------------------- /src/api/TradingView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/TradingView/index.js -------------------------------------------------------------------------------- /src/api/TradingView/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/TradingView/stream.js -------------------------------------------------------------------------------- /src/api/affiliatebonuses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/affiliatebonuses.js -------------------------------------------------------------------------------- /src/api/affiliatestatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/affiliatestatus.js -------------------------------------------------------------------------------- /src/api/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/balance.js -------------------------------------------------------------------------------- /src/api/coin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/coin.js -------------------------------------------------------------------------------- /src/api/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/countries.js -------------------------------------------------------------------------------- /src/api/exchanges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/exchanges.js -------------------------------------------------------------------------------- /src/api/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/notifications.js -------------------------------------------------------------------------------- /src/api/order_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/order_info.js -------------------------------------------------------------------------------- /src/api/order_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/order_list.js -------------------------------------------------------------------------------- /src/api/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/orders.js -------------------------------------------------------------------------------- /src/api/otcprices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/otcprices.js -------------------------------------------------------------------------------- /src/api/pairs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/pairs.js -------------------------------------------------------------------------------- /src/api/payment_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/payment_info.js -------------------------------------------------------------------------------- /src/api/payment_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/payment_list.js -------------------------------------------------------------------------------- /src/api/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/profile.js -------------------------------------------------------------------------------- /src/api/recenttrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/recenttrades.js -------------------------------------------------------------------------------- /src/api/robot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/robot.js -------------------------------------------------------------------------------- /src/api/stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/stack.js -------------------------------------------------------------------------------- /src/api/store_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/store_info.js -------------------------------------------------------------------------------- /src/api/store_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/store_list.js -------------------------------------------------------------------------------- /src/api/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/transactions.js -------------------------------------------------------------------------------- /src/api/user_notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/user_notifications.js -------------------------------------------------------------------------------- /src/api/wallethistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/api/wallethistory.js -------------------------------------------------------------------------------- /src/app-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/app-config.js -------------------------------------------------------------------------------- /src/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/css/main.css -------------------------------------------------------------------------------- /src/assets/css/modules/_index.scss: -------------------------------------------------------------------------------- 1 | @import "tooltip"; 2 | -------------------------------------------------------------------------------- /src/assets/css/modules/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/css/modules/_tooltip.scss -------------------------------------------------------------------------------- /src/assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/css/tailwind.css -------------------------------------------------------------------------------- /src/assets/css/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/css/theme.scss -------------------------------------------------------------------------------- /src/assets/css/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/css/variables.scss -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-300.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-300.otf -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-300.woff -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-300.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-400.otf -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-400.woff -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-400.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-600.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-600.otf -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-600.woff -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-600.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-700.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-700.otf -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/italic-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/italic-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-300.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-300.otf -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-300.woff -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-300.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-400.otf -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-400.woff -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-400.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-600.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-600.otf -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-600.woff -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-600.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-700.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-700.otf -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/basic-sans/normal-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/basic-sans/normal-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Roboto.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Roboto.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Roboto.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotoblack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotoblack.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotoblack.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotoblack.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotoblack.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotoblack.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotoblackitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotoblackitalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotoblackitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotoblackitalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotoblackitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotoblackitalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotobold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotobold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotobold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotobold.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotobold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotobold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotobolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotobolditalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotobolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotobolditalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotobolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotobolditalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotoitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotoitalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotoitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotoitalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotoitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotoitalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotolight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotolight.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotolight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotolight.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotolight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotolight.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotolightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotolightitalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotolightitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotolightitalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotolightitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotolightitalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotomedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotomedium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotomedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotomedium.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotomedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotomedium.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotomediumitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotomediumitalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotomediumitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotomediumitalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotomediumitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotomediumitalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotothin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotothin.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotothin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotothin.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotothin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotothin.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotothinitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotothinitalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotothinitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotothinitalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Robotothinitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/fonts/roboto/Robotothinitalic.woff2 -------------------------------------------------------------------------------- /src/assets/js/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/assets/js/support.js -------------------------------------------------------------------------------- /src/components/AddressTextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/AddressTextField.vue -------------------------------------------------------------------------------- /src/components/PhoneVerify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/PhoneVerify.vue -------------------------------------------------------------------------------- /src/components/layout/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/layout/Base.vue -------------------------------------------------------------------------------- /src/components/layout/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/layout/Footer.vue -------------------------------------------------------------------------------- /src/components/layout/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/layout/Header.vue -------------------------------------------------------------------------------- /src/components/layout/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/layout/Loading.vue -------------------------------------------------------------------------------- /src/components/layout/ModalPagesHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/layout/ModalPagesHeader.vue -------------------------------------------------------------------------------- /src/components/layout/Timeout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/layout/Timeout.vue -------------------------------------------------------------------------------- /src/components/layout/parts/LanguageSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/layout/parts/LanguageSelector.vue -------------------------------------------------------------------------------- /src/components/layout/parts/MainLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/layout/parts/MainLogo.vue -------------------------------------------------------------------------------- /src/components/layout/parts/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/layout/parts/Menu.vue -------------------------------------------------------------------------------- /src/components/main/userOrders/orderRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/main/userOrders/orderRow.vue -------------------------------------------------------------------------------- /src/components/main/userOrders/ordersTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/main/userOrders/ordersTable.vue -------------------------------------------------------------------------------- /src/components/main/userOrders/userOrders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/main/userOrders/userOrders.vue -------------------------------------------------------------------------------- /src/components/modal/ModalRoot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/modal/ModalRoot.vue -------------------------------------------------------------------------------- /src/components/modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/modal/modal.js -------------------------------------------------------------------------------- /src/components/modals/ConfirmMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/modals/ConfirmMessage.vue -------------------------------------------------------------------------------- /src/components/modals/InfoModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/modals/InfoModal.vue -------------------------------------------------------------------------------- /src/components/modals/RobotDepositModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/modals/RobotDepositModal.vue -------------------------------------------------------------------------------- /src/components/modals/RobotWithdrawModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/modals/RobotWithdrawModal.vue -------------------------------------------------------------------------------- /src/components/modals/UpdateOrderModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/modals/UpdateOrderModal.vue -------------------------------------------------------------------------------- /src/components/notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/notifications/index.js -------------------------------------------------------------------------------- /src/components/profileSettings/KycFrame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/profileSettings/KycFrame.vue -------------------------------------------------------------------------------- /src/components/shared/BaseButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/BaseButton.vue -------------------------------------------------------------------------------- /src/components/shared/BaseCopyInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/BaseCopyInput.vue -------------------------------------------------------------------------------- /src/components/shared/BaseModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/BaseModal.vue -------------------------------------------------------------------------------- /src/components/shared/BaseSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/BaseSelect.vue -------------------------------------------------------------------------------- /src/components/shared/BaseTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/BaseTable.vue -------------------------------------------------------------------------------- /src/components/shared/BaseTextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/BaseTextField.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseCheckbox.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseCounter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseCounter.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseRadios.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseRadios.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseSelect.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseSteps.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseSteps.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseSwitch.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseTabs.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseTextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseTextField.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseTextarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseTextarea.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseTimer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseTimer.vue -------------------------------------------------------------------------------- /src/components/shared/p2p/BaseVerticalSteps.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/shared/p2p/BaseVerticalSteps.vue -------------------------------------------------------------------------------- /src/components/ui/BaseList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/BaseList.vue -------------------------------------------------------------------------------- /src/components/ui/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/Button.vue -------------------------------------------------------------------------------- /src/components/ui/CountrySelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/CountrySelect.vue -------------------------------------------------------------------------------- /src/components/ui/Select2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/Select2.vue -------------------------------------------------------------------------------- /src/components/ui/Select3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/Select3.vue -------------------------------------------------------------------------------- /src/components/ui/SelectAdvanced.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/SelectAdvanced.vue -------------------------------------------------------------------------------- /src/components/ui/TabBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/TabBlock.vue -------------------------------------------------------------------------------- /src/components/ui/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/Tabs.vue -------------------------------------------------------------------------------- /src/components/ui/VCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/VCard.vue -------------------------------------------------------------------------------- /src/components/ui/VIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/VIcon.vue -------------------------------------------------------------------------------- /src/components/ui/form/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/form/Checkbox.vue -------------------------------------------------------------------------------- /src/components/ui/form/TextArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/form/TextArea.vue -------------------------------------------------------------------------------- /src/components/ui/form/TextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/form/TextField.vue -------------------------------------------------------------------------------- /src/components/ui/form/VSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/form/VSelect.vue -------------------------------------------------------------------------------- /src/components/ui/form/mixins/baseFormMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/form/mixins/baseFormMixin.js -------------------------------------------------------------------------------- /src/components/ui/form/setup/emittedUseField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/form/setup/emittedUseField.js -------------------------------------------------------------------------------- /src/components/ui/form/setup/useFocusClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/components/ui/form/setup/useFocusClass.js -------------------------------------------------------------------------------- /src/directives/numeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/directives/numeric.js -------------------------------------------------------------------------------- /src/directives/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/directives/pattern.js -------------------------------------------------------------------------------- /src/directives/restrictNumberInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/directives/restrictNumberInput.js -------------------------------------------------------------------------------- /src/directives/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/directives/tooltip.js -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/example.local_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/example.local_config.js -------------------------------------------------------------------------------- /src/helpers/errorHundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/helpers/errorHundle.js -------------------------------------------------------------------------------- /src/helpers/globalWSSubscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/helpers/globalWSSubscriptions.js -------------------------------------------------------------------------------- /src/helpers/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/helpers/widget.js -------------------------------------------------------------------------------- /src/locales/dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/locales/dictionary.js -------------------------------------------------------------------------------- /src/locales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/locales/index.js -------------------------------------------------------------------------------- /src/locales/lang/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/locales/lang/common.js -------------------------------------------------------------------------------- /src/locales/lang/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/locales/lang/pages.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/mixins/copyToBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/copyToBuffer.js -------------------------------------------------------------------------------- /src/mixins/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/delay.js -------------------------------------------------------------------------------- /src/mixins/getCoolBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getCoolBalance.js -------------------------------------------------------------------------------- /src/mixins/getCoolBalanceFIAT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getCoolBalanceFIAT.js -------------------------------------------------------------------------------- /src/mixins/getCoolTrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getCoolTrade.js -------------------------------------------------------------------------------- /src/mixins/getDecimalWLength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getDecimalWLength.js -------------------------------------------------------------------------------- /src/mixins/getFixedDecimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getFixedDecimal.js -------------------------------------------------------------------------------- /src/mixins/getFormattedDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getFormattedDate.js -------------------------------------------------------------------------------- /src/mixins/getPair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getPair.js -------------------------------------------------------------------------------- /src/mixins/getPairs24h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getPairs24h.js -------------------------------------------------------------------------------- /src/mixins/getRegularNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getRegularNumber.js -------------------------------------------------------------------------------- /src/mixins/getWizardComputedAmount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/getWizardComputedAmount.js -------------------------------------------------------------------------------- /src/mixins/handleLogout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/handleLogout.js -------------------------------------------------------------------------------- /src/mixins/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/helpers.js -------------------------------------------------------------------------------- /src/mixins/isFiat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/isFiat.js -------------------------------------------------------------------------------- /src/mixins/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/login.js -------------------------------------------------------------------------------- /src/mixins/mainPageDataInitMocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/mainPageDataInitMocks.js -------------------------------------------------------------------------------- /src/mixins/menuHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/menuHelper.js -------------------------------------------------------------------------------- /src/mixins/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/themes.js -------------------------------------------------------------------------------- /src/mixins/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/mixins/wallet.js -------------------------------------------------------------------------------- /src/modules/about/locales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/about/locales/index.js -------------------------------------------------------------------------------- /src/modules/about/pages/Support.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/about/pages/Support.vue -------------------------------------------------------------------------------- /src/modules/about/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/about/router.js -------------------------------------------------------------------------------- /src/modules/account/components/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/components/mixin.js -------------------------------------------------------------------------------- /src/modules/account/pages/ConfirmRegister.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/pages/ConfirmRegister.vue -------------------------------------------------------------------------------- /src/modules/account/pages/EmailVerify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/pages/EmailVerify.vue -------------------------------------------------------------------------------- /src/modules/account/pages/Forgot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/pages/Forgot.vue -------------------------------------------------------------------------------- /src/modules/account/pages/InterfaceSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/pages/InterfaceSelect.vue -------------------------------------------------------------------------------- /src/modules/account/pages/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/pages/Login.vue -------------------------------------------------------------------------------- /src/modules/account/pages/ProfileSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/pages/ProfileSettings.vue -------------------------------------------------------------------------------- /src/modules/account/pages/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/pages/Register.vue -------------------------------------------------------------------------------- /src/modules/account/pages/UserResetUrl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/pages/UserResetUrl.vue -------------------------------------------------------------------------------- /src/modules/account/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/account/router.js -------------------------------------------------------------------------------- /src/modules/exchange/locales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/exchange/locales/index.js -------------------------------------------------------------------------------- /src/modules/exchange/pages/FastBuySell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/exchange/pages/FastBuySell.vue -------------------------------------------------------------------------------- /src/modules/exchange/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/exchange/router.js -------------------------------------------------------------------------------- /src/modules/fees/locales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/fees/locales/index.js -------------------------------------------------------------------------------- /src/modules/fees/pages/Fees.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/fees/pages/Fees.vue -------------------------------------------------------------------------------- /src/modules/fees/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/fees/router.js -------------------------------------------------------------------------------- /src/modules/trade/components/CurrencyList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/CurrencyList.vue -------------------------------------------------------------------------------- /src/modules/trade/components/LimitsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/LimitsList.vue -------------------------------------------------------------------------------- /src/modules/trade/components/OTC.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/OTC.vue -------------------------------------------------------------------------------- /src/modules/trade/components/Overbook.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/Overbook.vue -------------------------------------------------------------------------------- /src/modules/trade/components/Recent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/Recent.vue -------------------------------------------------------------------------------- /src/modules/trade/components/StopLimit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/StopLimit.vue -------------------------------------------------------------------------------- /src/modules/trade/components/TradeGraphic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/TradeGraphic.vue -------------------------------------------------------------------------------- /src/modules/trade/components/TradeInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/TradeInput.vue -------------------------------------------------------------------------------- /src/modules/trade/components/TradeMenus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/TradeMenus.vue -------------------------------------------------------------------------------- /src/modules/trade/components/orders/Orders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/components/orders/Orders.vue -------------------------------------------------------------------------------- /src/modules/trade/pages/Trade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/pages/Trade.vue -------------------------------------------------------------------------------- /src/modules/trade/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/trade/router.js -------------------------------------------------------------------------------- /src/modules/wallet/components/WalletHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/wallet/components/WalletHistory.vue -------------------------------------------------------------------------------- /src/modules/wallet/components/WalletList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/wallet/components/WalletList.vue -------------------------------------------------------------------------------- /src/modules/wallet/components/WalletListEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/wallet/components/WalletListEdit.vue -------------------------------------------------------------------------------- /src/modules/wallet/locales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/wallet/locales/index.js -------------------------------------------------------------------------------- /src/modules/wallet/pages/Deposit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/wallet/pages/Deposit.vue -------------------------------------------------------------------------------- /src/modules/wallet/pages/History.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/wallet/pages/History.vue -------------------------------------------------------------------------------- /src/modules/wallet/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/wallet/pages/Index.vue -------------------------------------------------------------------------------- /src/modules/wallet/pages/Withdrawal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/wallet/pages/Withdrawal.vue -------------------------------------------------------------------------------- /src/modules/wallet/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/modules/wallet/router.js -------------------------------------------------------------------------------- /src/pages/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/pages/404.vue -------------------------------------------------------------------------------- /src/pages/KYC.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/pages/KYC.vue -------------------------------------------------------------------------------- /src/plugins/global-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/plugins/global-components.js -------------------------------------------------------------------------------- /src/plugins/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/plugins/http.js -------------------------------------------------------------------------------- /src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/plugins/index.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/0579d40b812fa2c3ffe72e5803a6e14c.cur: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/1.92647ec0a7beb8b2898d.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/1.92647ec0a7beb8b2898d.rtl.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/1df47f578aeef40dd1f2328338a133be.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/3293616ec0c605c7c2db25829a0a509e.woff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/4.92647ec0a7beb8b2898d.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/4.92647ec0a7beb8b2898d.rtl.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/40f9a03d174178efb12303caa9bc7cd8.woff2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/4a9abefd31dab7c8239e02e925aacd78.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/4fafff07d8914dc11f6d335f606ff47c.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/51.300c3df03ca063ec03a0.css: -------------------------------------------------------------------------------- 1 | .button-2YcRd2gv { 2 | padding: 0 5px; 3 | } 4 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/51.300c3df03ca063ec03a0.rtl.css: -------------------------------------------------------------------------------- 1 | .button-2YcRd2gv { 2 | padding: 0 5px; 3 | } 4 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/52.29cec22b3525b47af67e.css: -------------------------------------------------------------------------------- 1 | .spinnerWrap-1dkAsm33 { 2 | height: 68px; 3 | position: relative; 4 | } 5 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/52.29cec22b3525b47af67e.rtl.css: -------------------------------------------------------------------------------- 1 | .spinnerWrap-1dkAsm33 { 2 | height: 68px; 3 | position: relative; 4 | } 5 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/7393f661fc7d4389ea6d4dabd2a5aeea.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/7e0cc5f7d7f5151500dd60b8d6ca60a1.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/898929f1acdb622689e0fc0c95c8fcd0.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/b1a63a011fd92dfb93db6db243bb036c.woff2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/ed68e83c16f77203e73dbc4c3a7c7fa1.cur: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/charting_library/bundles/f55394b616ed1ae9462c37daab941d93.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/public/TV/datafeeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/TV/datafeeds/README.md -------------------------------------------------------------------------------- /src/static/public/TV/datafeeds/udf/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/TV/datafeeds/udf/.npmrc -------------------------------------------------------------------------------- /src/static/public/TV/datafeeds/udf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/TV/datafeeds/udf/README.md -------------------------------------------------------------------------------- /src/static/public/TV/datafeeds/udf/lib/iquotes-provider.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/static/public/TV/datafeeds/udf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/TV/datafeeds/udf/package.json -------------------------------------------------------------------------------- /src/static/public/TV/datafeeds/udf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/TV/datafeeds/udf/tsconfig.json -------------------------------------------------------------------------------- /src/static/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/static/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /src/static/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/browserconfig.xml -------------------------------------------------------------------------------- /src/static/public/dump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/dump.html -------------------------------------------------------------------------------- /src/static/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon.ico -------------------------------------------------------------------------------- /src/static/public/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /src/static/public/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /src/static/public/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /src/static/public/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /src/static/public/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /src/static/public/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /src/static/public/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /src/static/public/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /src/static/public/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /src/static/public/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /src/static/public/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /src/static/public/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/apple-icon.png -------------------------------------------------------------------------------- /src/static/public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /src/static/public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /src/static/public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /src/static/public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /src/static/public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/favicon.ico -------------------------------------------------------------------------------- /src/static/public/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/manifest.json -------------------------------------------------------------------------------- /src/static/public/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /src/static/public/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /src/static/public/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /src/static/public/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /src/static/public/img/Support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/Support.svg -------------------------------------------------------------------------------- /src/static/public/img/User.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/User.svg -------------------------------------------------------------------------------- /src/static/public/img/User_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/User_b.svg -------------------------------------------------------------------------------- /src/static/public/img/android-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/android-img.png -------------------------------------------------------------------------------- /src/static/public/img/angle-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/angle-down.svg -------------------------------------------------------------------------------- /src/static/public/img/angle-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/angle-up.svg -------------------------------------------------------------------------------- /src/static/public/img/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/apple.svg -------------------------------------------------------------------------------- /src/static/public/img/arrow-top-blue-sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/arrow-top-blue-sel.png -------------------------------------------------------------------------------- /src/static/public/img/arrow-top-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/arrow-top-blue.png -------------------------------------------------------------------------------- /src/static/public/img/arrow-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/arrow-top.png -------------------------------------------------------------------------------- /src/static/public/img/arrow-top_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/arrow-top_b.png -------------------------------------------------------------------------------- /src/static/public/img/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/author.png -------------------------------------------------------------------------------- /src/static/public/img/author.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/author.svg -------------------------------------------------------------------------------- /src/static/public/img/balans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/balans.png -------------------------------------------------------------------------------- /src/static/public/img/balans_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/balans_b.png -------------------------------------------------------------------------------- /src/static/public/img/bg-profits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/bg-profits.png -------------------------------------------------------------------------------- /src/static/public/img/bit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/bit.jpg -------------------------------------------------------------------------------- /src/static/public/img/btc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/btc-icon.png -------------------------------------------------------------------------------- /src/static/public/img/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/burger.png -------------------------------------------------------------------------------- /src/static/public/img/caret-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/caret-white.svg -------------------------------------------------------------------------------- /src/static/public/img/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/check-circle.svg -------------------------------------------------------------------------------- /src/static/public/img/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/checked.png -------------------------------------------------------------------------------- /src/static/public/img/coin/and.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/and.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/bcash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/bcash.png -------------------------------------------------------------------------------- /src/static/public/img/coin/bcash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/bcash.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/bcc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/bcc.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/bch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/bch.png -------------------------------------------------------------------------------- /src/static/public/img/coin/bch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/bch.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/binance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/binance.png -------------------------------------------------------------------------------- /src/static/public/img/coin/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/bitcoin.png -------------------------------------------------------------------------------- /src/static/public/img/coin/bnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/bnb.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/btc.png -------------------------------------------------------------------------------- /src/static/public/img/coin/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/btc.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/cashberrycoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/cashberrycoin.png -------------------------------------------------------------------------------- /src/static/public/img/coin/cbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/cbc.png -------------------------------------------------------------------------------- /src/static/public/img/coin/cbc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/cbc.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/dash.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/defi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/defi.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/dollar.png -------------------------------------------------------------------------------- /src/static/public/img/coin/eos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/eos.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/eth.png -------------------------------------------------------------------------------- /src/static/public/img/coin/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/eth.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/ethereum.png -------------------------------------------------------------------------------- /src/static/public/img/coin/ethereumCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/ethereumCircle.png -------------------------------------------------------------------------------- /src/static/public/img/coin/eur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/eur.png -------------------------------------------------------------------------------- /src/static/public/img/coin/eur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/eur.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/euro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/euro.png -------------------------------------------------------------------------------- /src/static/public/img/coin/iota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/iota.png -------------------------------------------------------------------------------- /src/static/public/img/coin/lfc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/lfc.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/litecoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/litecoin.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/lrg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/lrg.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/ltc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/ltc.png -------------------------------------------------------------------------------- /src/static/public/img/coin/ltc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/ltc.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/matic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/matic.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/mmeta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/mmeta.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/namecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/namecoin.png -------------------------------------------------------------------------------- /src/static/public/img/coin/navcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/navcoin.png -------------------------------------------------------------------------------- /src/static/public/img/coin/plx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/plx.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/r.png -------------------------------------------------------------------------------- /src/static/public/img/coin/rep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/rep.png -------------------------------------------------------------------------------- /src/static/public/img/coin/rep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/rep.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/rouble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/rouble.png -------------------------------------------------------------------------------- /src/static/public/img/coin/rub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/rub.png -------------------------------------------------------------------------------- /src/static/public/img/coin/rub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/rub.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/spiner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/spiner.png -------------------------------------------------------------------------------- /src/static/public/img/coin/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/t.png -------------------------------------------------------------------------------- /src/static/public/img/coin/trx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/trx.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/try.png -------------------------------------------------------------------------------- /src/static/public/img/coin/try.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/try.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/usd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/usd.png -------------------------------------------------------------------------------- /src/static/public/img/coin/usd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/usd.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/usdc.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/usdt.png -------------------------------------------------------------------------------- /src/static/public/img/coin/usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/usdt.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/wear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/wear.svg -------------------------------------------------------------------------------- /src/static/public/img/coin/xrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/xrp.png -------------------------------------------------------------------------------- /src/static/public/img/coin/xrp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/coin/xrp.svg -------------------------------------------------------------------------------- /src/static/public/img/common/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/arrow-down.svg -------------------------------------------------------------------------------- /src/static/public/img/common/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/arrow-up.svg -------------------------------------------------------------------------------- /src/static/public/img/common/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/arrow.svg -------------------------------------------------------------------------------- /src/static/public/img/common/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/calendar.svg -------------------------------------------------------------------------------- /src/static/public/img/common/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/close.svg -------------------------------------------------------------------------------- /src/static/public/img/common/flags/__.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/__.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ae.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ae.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/af.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/af.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ag.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ai.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/al.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/al.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/am.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/am.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/andora.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/andora.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ao.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ao.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/aq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/aq.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ar.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/as.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/as.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/at.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/at.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/au.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/au.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/aw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/aw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ax.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/az.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/az.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ba.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bb.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bd.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/be.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/be.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bf.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bh.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bi.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bj.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bl.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bo.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bq.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/br.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bs.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bt.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bv.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/by.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/by.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/bz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/bz.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ca.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cc.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cd.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cf.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ch.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ci.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ci.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ck.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cl.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/co.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cu.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cv.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cx.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cy.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/cz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/cz.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/de.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/dj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/dj.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/dk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/dk.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/dm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/dm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/do.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/do.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/dz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/dz.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ec.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ee.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/eg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/eg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/eh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/eh.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/er.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/er.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/es.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/et.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/et.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/eu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/eu.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/fi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/fi.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/fj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/fj.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/fk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/fk.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/fm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/fm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/fo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/fo.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/fr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ga.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ga.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gb.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gd.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ge.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gf.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gh.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gi.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gl.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gp.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gq.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gs.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gt.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gu.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/gy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/gy.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/hk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/hk.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/hm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/hm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/hn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/hn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/hr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ht.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ht.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/hu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/hu.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/id.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ie.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/il.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/il.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/im.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/im.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/in.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/io.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/io.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/iq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/iq.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ir.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ir.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/is.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/is.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/it.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/it.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/je.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/je.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/jm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/jm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/jo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/jo.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/jp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/jp.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ke.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/kg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/kg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/kh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/kh.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ki.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ki.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/km.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/km.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/kn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/kn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/kp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/kp.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/kr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/kr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/kw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/kw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ky.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/kz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/kz.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/la.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/la.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/lb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/lb.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/lc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/lc.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/li.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/li.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/lk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/lk.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/lr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/lr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ls.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/lt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/lt.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/lu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/lu.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/lv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/lv.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ly.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ma.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ma.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mc.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/md.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/md.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/me.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/me.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mf.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mh.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mk.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ml.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mo.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mp.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mq.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ms.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mt.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mu.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mv.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mx.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/my.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/my.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/mz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/mz.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/na.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/na.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/nc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/nc.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ne.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/nf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/nf.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ng.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ni.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ni.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/nl.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/no.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/np.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/np.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/nr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/nr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/nu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/nu.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/nz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/nz.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/om.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/om.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pa.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pe.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pf.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ph.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pk.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pl.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ps.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pt.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/pw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/pw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/py.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/py.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/qa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/qa.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/re.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/re.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ro.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/rs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/rs.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ru.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/rw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/rw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sa.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sb.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sc.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sd.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/se.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/se.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sh.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/si.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/si.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sj.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sk.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sl.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/so.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/so.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sprite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sprite.css -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sprite.png -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ss.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/st.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/st.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sv.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sx.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sy.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/sz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/sz.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tc.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/td.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/td.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tf.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/th.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/th.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tj.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tk.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tl.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/to.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/to.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tr.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tt.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tv.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/tz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/tz.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ua.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ua.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ug.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/um.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/um.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/us.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/uy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/uy.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/uz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/uz.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/va.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/va.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/vc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/vc.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ve.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ve.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/vg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/vg.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/vi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/vi.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/vn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/vn.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/vu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/vu.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/wf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/wf.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ws.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ws.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/ye.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/ye.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/yt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/yt.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/za.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/za.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/zm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/zm.gif -------------------------------------------------------------------------------- /src/static/public/img/common/flags/zw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/flags/zw.gif -------------------------------------------------------------------------------- /src/static/public/img/common/info-octagon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/info-octagon.svg -------------------------------------------------------------------------------- /src/static/public/img/common/pdf-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/pdf-icon.png -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/and.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/and.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/bcc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/bcc.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/bch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/bch.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/bnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/bnb.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/btc.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/cbc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/cbc.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/eos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/eos.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/eth.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/eur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/eur.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/lfc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/lfc.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/lrg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/lrg.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/ltc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/ltc.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/plx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/plx.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/rep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/rep.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/rub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/rub.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/trx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/trx.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/usd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/usd.svg -------------------------------------------------------------------------------- /src/static/public/img/common/svgcrypto/xrp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/svgcrypto/xrp.svg -------------------------------------------------------------------------------- /src/static/public/img/common/updata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/common/updata.png -------------------------------------------------------------------------------- /src/static/public/img/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/copy.svg -------------------------------------------------------------------------------- /src/static/public/img/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/down.png -------------------------------------------------------------------------------- /src/static/public/img/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/en.png -------------------------------------------------------------------------------- /src/static/public/img/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/envelope.svg -------------------------------------------------------------------------------- /src/static/public/img/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/es.png -------------------------------------------------------------------------------- /src/static/public/img/exchange-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/exchange-preview.png -------------------------------------------------------------------------------- /src/static/public/img/eye-slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/eye-slash.svg -------------------------------------------------------------------------------- /src/static/public/img/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/eye.svg -------------------------------------------------------------------------------- /src/static/public/img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/facebook.png -------------------------------------------------------------------------------- /src/static/public/img/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/facebook.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/bars.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/bolt.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/cog.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/credit_card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/credit_card.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/exchange.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/gift.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/line_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/line_chart.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/list_ul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/list_ul.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/money.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/rocket.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/shield.svg -------------------------------------------------------------------------------- /src/static/public/img/faq/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/faq/users.svg -------------------------------------------------------------------------------- /src/static/public/img/footer-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/footer-android.png -------------------------------------------------------------------------------- /src/static/public/img/footer-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/footer-ios.png -------------------------------------------------------------------------------- /src/static/public/img/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/fr.png -------------------------------------------------------------------------------- /src/static/public/img/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/google.svg -------------------------------------------------------------------------------- /src/static/public/img/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/history.svg -------------------------------------------------------------------------------- /src/static/public/img/info-main-page/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/info-main-page/girl.png -------------------------------------------------------------------------------- /src/static/public/img/info-main-page/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/info-main-page/man.png -------------------------------------------------------------------------------- /src/static/public/img/ios-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/ios-img.png -------------------------------------------------------------------------------- /src/static/public/img/lang/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/en.png -------------------------------------------------------------------------------- /src/static/public/img/lang/en_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/en_circle.png -------------------------------------------------------------------------------- /src/static/public/img/lang/en_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/en_square.png -------------------------------------------------------------------------------- /src/static/public/img/lang/eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/eng.png -------------------------------------------------------------------------------- /src/static/public/img/lang/eng_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/eng_circle.png -------------------------------------------------------------------------------- /src/static/public/img/lang/es_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/es_circle.png -------------------------------------------------------------------------------- /src/static/public/img/lang/fr_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/fr_circle.png -------------------------------------------------------------------------------- /src/static/public/img/lang/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/ru.png -------------------------------------------------------------------------------- /src/static/public/img/lang/ru_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/ru_circle.png -------------------------------------------------------------------------------- /src/static/public/img/lang/ru_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/ru_square.png -------------------------------------------------------------------------------- /src/static/public/img/lang/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/tr.png -------------------------------------------------------------------------------- /src/static/public/img/lang/tr_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/lang/tr_circle.png -------------------------------------------------------------------------------- /src/static/public/img/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/laptop.png -------------------------------------------------------------------------------- /src/static/public/img/launchpad/icons/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/launchpad/icons/drag.svg -------------------------------------------------------------------------------- /src/static/public/img/launchpad/icons/hint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/launchpad/icons/hint.svg -------------------------------------------------------------------------------- /src/static/public/img/launchpad/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/launchpad/icons/info.svg -------------------------------------------------------------------------------- /src/static/public/img/launchpad/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/launchpad/icons/link.svg -------------------------------------------------------------------------------- /src/static/public/img/launchpad/icons/plx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/launchpad/icons/plx.svg -------------------------------------------------------------------------------- /src/static/public/img/launchpad/icons/sale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/launchpad/icons/sale.svg -------------------------------------------------------------------------------- /src/static/public/img/launchpad/icons/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/launchpad/icons/up.svg -------------------------------------------------------------------------------- /src/static/public/img/launchpad/icons/usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/launchpad/icons/usdt.svg -------------------------------------------------------------------------------- /src/static/public/img/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/linkedin.svg -------------------------------------------------------------------------------- /src/static/public/img/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/logo-black.png -------------------------------------------------------------------------------- /src/static/public/img/logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/logo-black.svg -------------------------------------------------------------------------------- /src/static/public/img/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/logo-white.svg -------------------------------------------------------------------------------- /src/static/public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/logo.png -------------------------------------------------------------------------------- /src/static/public/img/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/logo_big.png -------------------------------------------------------------------------------- /src/static/public/img/long-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/long-arrow-right.svg -------------------------------------------------------------------------------- /src/static/public/img/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/mail.png -------------------------------------------------------------------------------- /src/static/public/img/main-graph-mock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/main-graph-mock.jpg -------------------------------------------------------------------------------- /src/static/public/img/menu/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/bolt.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/cog.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/credit-card-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/credit-card-alt.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/exchange.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/gift.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/handshake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/handshake.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/headphones.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/line-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/line-chart.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/list-ul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/list-ul.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/rocket.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/sign-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/sign-out.svg -------------------------------------------------------------------------------- /src/static/public/img/menu/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/menu/users.svg -------------------------------------------------------------------------------- /src/static/public/img/minmax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/minmax.svg -------------------------------------------------------------------------------- /src/static/public/img/not-inform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/not-inform.png -------------------------------------------------------------------------------- /src/static/public/img/not-verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/not-verify.png -------------------------------------------------------------------------------- /src/static/public/img/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/ok.png -------------------------------------------------------------------------------- /src/static/public/img/p/Services.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/Services.svg -------------------------------------------------------------------------------- /src/static/public/img/p/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/arrow-right.svg -------------------------------------------------------------------------------- /src/static/public/img/p/bs_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/bs_icon.svg -------------------------------------------------------------------------------- /src/static/public/img/p/check_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/check_icon.svg -------------------------------------------------------------------------------- /src/static/public/img/p/eth_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/eth_icon.svg -------------------------------------------------------------------------------- /src/static/public/img/p/facebook_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/facebook_button.svg -------------------------------------------------------------------------------- /src/static/public/img/p/file_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/file_icon.svg -------------------------------------------------------------------------------- /src/static/public/img/p/file_icon_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/file_icon_white.svg -------------------------------------------------------------------------------- /src/static/public/img/p/info_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/info_icon.svg -------------------------------------------------------------------------------- /src/static/public/img/p/participate_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/participate_icon.svg -------------------------------------------------------------------------------- /src/static/public/img/p/pdf-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/pdf-icon.svg -------------------------------------------------------------------------------- /src/static/public/img/p/scan_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/scan_icon.svg -------------------------------------------------------------------------------- /src/static/public/img/p/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/services.png -------------------------------------------------------------------------------- /src/static/public/img/p/t_bonuc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/t_bonuc.svg -------------------------------------------------------------------------------- /src/static/public/img/p/t_contribution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/t_contribution.svg -------------------------------------------------------------------------------- /src/static/public/img/p/t_date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/t_date.svg -------------------------------------------------------------------------------- /src/static/public/img/p/t_denomination.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/t_denomination.svg -------------------------------------------------------------------------------- /src/static/public/img/p/t_discount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/t_discount.svg -------------------------------------------------------------------------------- /src/static/public/img/p/t_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/t_lock.svg -------------------------------------------------------------------------------- /src/static/public/img/p/t_price.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/t_price.svg -------------------------------------------------------------------------------- /src/static/public/img/p/t_to_sale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/t_to_sale.svg -------------------------------------------------------------------------------- /src/static/public/img/p/telegram_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/telegram_button.svg -------------------------------------------------------------------------------- /src/static/public/img/p/tether.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/tether.svg -------------------------------------------------------------------------------- /src/static/public/img/p/timer_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/timer_bg.svg -------------------------------------------------------------------------------- /src/static/public/img/p/twitter_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/p/twitter_button.svg -------------------------------------------------------------------------------- /src/static/public/img/pdf-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/pdf-icon.png -------------------------------------------------------------------------------- /src/static/public/img/pencil-square-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/pencil-square-o.svg -------------------------------------------------------------------------------- /src/static/public/img/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/pencil.svg -------------------------------------------------------------------------------- /src/static/public/img/pencil_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/pencil_b.svg -------------------------------------------------------------------------------- /src/static/public/img/portfolio-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/portfolio-arrow.png -------------------------------------------------------------------------------- /src/static/public/img/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/question.png -------------------------------------------------------------------------------- /src/static/public/img/rect-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/rect-green.svg -------------------------------------------------------------------------------- /src/static/public/img/rect-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/rect-orange.svg -------------------------------------------------------------------------------- /src/static/public/img/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/refresh.svg -------------------------------------------------------------------------------- /src/static/public/img/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/robot.png -------------------------------------------------------------------------------- /src/static/public/img/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/ru.png -------------------------------------------------------------------------------- /src/static/public/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/search.svg -------------------------------------------------------------------------------- /src/static/public/img/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/searchicon.png -------------------------------------------------------------------------------- /src/static/public/img/secure-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/secure-img.png -------------------------------------------------------------------------------- /src/static/public/img/soc/fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/soc/fb.svg -------------------------------------------------------------------------------- /src/static/public/img/soc/gh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/soc/gh.svg -------------------------------------------------------------------------------- /src/static/public/img/soc/inst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/soc/inst.svg -------------------------------------------------------------------------------- /src/static/public/img/soc/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/soc/link.svg -------------------------------------------------------------------------------- /src/static/public/img/soc/s1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/soc/s1.svg -------------------------------------------------------------------------------- /src/static/public/img/soc/s2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/soc/s2.svg -------------------------------------------------------------------------------- /src/static/public/img/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/spinner.svg -------------------------------------------------------------------------------- /src/static/public/img/swap-horiz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/swap-horiz.svg -------------------------------------------------------------------------------- /src/static/public/img/telegram-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/telegram-icon.png -------------------------------------------------------------------------------- /src/static/public/img/telegram-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/telegram-mini.png -------------------------------------------------------------------------------- /src/static/public/img/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/telegram.svg -------------------------------------------------------------------------------- /src/static/public/img/theme-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/theme-dark.svg -------------------------------------------------------------------------------- /src/static/public/img/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/times.svg -------------------------------------------------------------------------------- /src/static/public/img/times_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/times_r.svg -------------------------------------------------------------------------------- /src/static/public/img/top_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/top_bg.png -------------------------------------------------------------------------------- /src/static/public/img/trade-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/trade-preview.png -------------------------------------------------------------------------------- /src/static/public/img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/twitter.png -------------------------------------------------------------------------------- /src/static/public/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/twitter.svg -------------------------------------------------------------------------------- /src/static/public/img/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/us.png -------------------------------------------------------------------------------- /src/static/public/img/usd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/usd.svg -------------------------------------------------------------------------------- /src/static/public/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/user.png -------------------------------------------------------------------------------- /src/static/public/img/user_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/user_b.png -------------------------------------------------------------------------------- /src/static/public/img/v_white_on_transp_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/v_white_on_transp_en.png -------------------------------------------------------------------------------- /src/static/public/img/verifiedaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/verifiedaccount.png -------------------------------------------------------------------------------- /src/static/public/img/wallet-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/wallet-icon.png -------------------------------------------------------------------------------- /src/static/public/img/withdrawal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/img/withdrawal.svg -------------------------------------------------------------------------------- /src/static/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/manifest.json -------------------------------------------------------------------------------- /src/static/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/robots.txt -------------------------------------------------------------------------------- /src/static/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/site.webmanifest -------------------------------------------------------------------------------- /src/static/public/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/static/public/sprite.svg -------------------------------------------------------------------------------- /src/store/core/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/store/core/actions.js -------------------------------------------------------------------------------- /src/store/core/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/store/core/getters.js -------------------------------------------------------------------------------- /src/store/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/store/core/index.js -------------------------------------------------------------------------------- /src/store/core/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/store/core/mutation-types.js -------------------------------------------------------------------------------- /src/store/core/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/store/core/mutations.js -------------------------------------------------------------------------------- /src/store/core/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/store/core/state.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/store/modules/main.js -------------------------------------------------------------------------------- /src/store/modules/robot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/store/modules/robot.js -------------------------------------------------------------------------------- /src/utilities/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/utilities/consts.js -------------------------------------------------------------------------------- /src/utilities/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/utilities/helpers.js -------------------------------------------------------------------------------- /src/utilities/lazyLoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/utilities/lazyLoad.js -------------------------------------------------------------------------------- /src/utilities/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/src/utilities/manager.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polygant/OpenCEX-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------