From 92e53582e6c27a38d691976d0e90d44c90738b89 Mon Sep 17 00:00:00 2001 From: Daniel Isaac Geslin Date: Mon, 5 Aug 2024 11:14:17 +0200 Subject: [PATCH 1/4] Add new property to mixpanel --- src/hooks/useHandleTransfer.tsx | 2 +- src/utils/telemetry.ts | 39 ++++++++++++++++++++++++++------- 2 files changed, 32 insertions(+), 9 deletions(-) diff --git a/src/hooks/useHandleTransfer.tsx b/src/hooks/useHandleTransfer.tsx index 0141f1878..8ea67c908 100644 --- a/src/hooks/useHandleTransfer.tsx +++ b/src/hooks/useHandleTransfer.tsx @@ -1163,7 +1163,7 @@ export function useHandleTransfer() { toTokenAddress: targetParsedTokenAccount?.isNativeAsset ? "native" : targetAddressHex, - amount, + amount: Number(amount), }; telemetry.on.transferInit(telemetryProps); diff --git a/src/utils/telemetry.ts b/src/utils/telemetry.ts index 625759512..8c5d53e22 100644 --- a/src/utils/telemetry.ts +++ b/src/utils/telemetry.ts @@ -15,13 +15,14 @@ interface TelemetryTxCommon { toTokenAddress?: string; route: string; txId?: string; - amount?: string; + amount?: number; + USDAmount?: number; error?: any; } export type TelemetryTxEvent = Omit< TelemetryTxCommon, - "fromChain" | "toChain" | "route" + "fromChain" | "toChain" | "route" | "USDAmount" >; type TelemetryTxTrackingProps = Omit< TelemetryTxCommon, @@ -76,9 +77,26 @@ class Telemetry { } }; - private getTxPropsFromEvent = (event: TelemetryTxEvent) => { + private getUSDAmount = async ( + chain: string, + tokenAddress: string, + amount: number + ): Promise => { + if (![chain, tokenAddress, amount].every(Boolean)) return; + try { + const response = await fetch( + `https://api.coingecko.com/api/v3/simple/token_price/${chain.toLowerCase()}?contract_addresses=${tokenAddress}&vs_currencies=usd` + ).then((r) => r.json()); + const USDValue = response?.[tokenAddress]?.usd; + const USDAmount = USDValue * amount; + return USDAmount || undefined; + } catch {} + }; + + private getTxPropsFromEvent = async (event: TelemetryTxEvent) => { + const fromChain = this.getChainNameFromId(event.fromChainId); return { - fromChain: this.getChainNameFromId(event.fromChainId), + fromChain, toChain: this.getChainNameFromId(event.toChainId), fromTokenSymbol: event.fromTokenSymbol, toTokenSymbol: event.toTokenSymbol, @@ -86,6 +104,11 @@ class Telemetry { toTokenAddress: event.toTokenAddress, txId: event.txId, amount: event.amount, + USDAmount: await this.getUSDAmount( + fromChain, + event.fromTokenSymbol!, + event.amount! + ), route: "Manual Bridge", } as TelemetryTxTrackingProps; }; @@ -107,13 +130,13 @@ class Telemetry { }; private onTransfer = - (eventName: `transfer.${string}`) => (event: TelemetryTxEvent) => { - this.track(eventName, this.getTxPropsFromEvent(event)); + (eventName: `transfer.${string}`) => async (event: TelemetryTxEvent) => { + this.track(eventName, await this.getTxPropsFromEvent(event)); }; - private onError = (event: TelemetryTxEvent) => { + private onError = async (event: TelemetryTxEvent) => { this.track("transfer.error", { - ...this.getTxPropsFromEvent(event), + ...(await this.getTxPropsFromEvent(event)), "error-type": "unknown", error: this.canBeSerialized(event.error) ? event.error : undefined, }); From c900e08fd2f3f8f66031b54c61f57737f75f7dd7 Mon Sep 17 00:00:00 2001 From: Daniel Isaac Geslin Date: Mon, 5 Aug 2024 11:38:08 +0200 Subject: [PATCH 2/4] fix on args sent to coingecko --- src/utils/telemetry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/telemetry.ts b/src/utils/telemetry.ts index 8c5d53e22..061ff1edd 100644 --- a/src/utils/telemetry.ts +++ b/src/utils/telemetry.ts @@ -106,7 +106,7 @@ class Telemetry { amount: event.amount, USDAmount: await this.getUSDAmount( fromChain, - event.fromTokenSymbol!, + event.fromTokenAddress!, event.amount! ), route: "Manual Bridge", From 4d6b5758821efea3b5cb9ad28844a233cf956f7c Mon Sep 17 00:00:00 2001 From: Daniel Isaac Geslin Date: Mon, 5 Aug 2024 12:07:07 +0200 Subject: [PATCH 3/4] fix on args sent to coingecko --- src/hooks/useHandleTransfer.tsx | 1 + src/utils/telemetry.ts | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/hooks/useHandleTransfer.tsx b/src/hooks/useHandleTransfer.tsx index 8ea67c908..09cee791a 100644 --- a/src/hooks/useHandleTransfer.tsx +++ b/src/hooks/useHandleTransfer.tsx @@ -1159,6 +1159,7 @@ export function useHandleTransfer() { toChainId: targetChain, fromTokenSymbol: sourceParsedTokenAccount?.symbol, toTokenSymbol: targetParsedTokenAccount?.symbol, + sourceAsset, fromTokenAddress: isNative ? "native" : sourceAsset, toTokenAddress: targetParsedTokenAccount?.isNativeAsset ? "native" diff --git a/src/utils/telemetry.ts b/src/utils/telemetry.ts index 061ff1edd..7eafb7843 100644 --- a/src/utils/telemetry.ts +++ b/src/utils/telemetry.ts @@ -11,6 +11,7 @@ interface TelemetryTxCommon { toChain: string; fromTokenSymbol?: string; toTokenSymbol?: string; + sourceAsset?: string; fromTokenAddress?: string; toTokenAddress?: string; route: string; @@ -26,7 +27,7 @@ export type TelemetryTxEvent = Omit< >; type TelemetryTxTrackingProps = Omit< TelemetryTxCommon, - "fromChainId" | "toChainId" + "fromChainId" | "toChainId" | "sourceAsset" >; class Telemetry { @@ -106,7 +107,7 @@ class Telemetry { amount: event.amount, USDAmount: await this.getUSDAmount( fromChain, - event.fromTokenAddress!, + event.sourceAsset!, event.amount! ), route: "Manual Bridge", From 85c258975b796c969e1d26dc2607c0c3f66d0ff7 Mon Sep 17 00:00:00 2001 From: Daniel Isaac Geslin Date: Mon, 5 Aug 2024 14:02:33 +0200 Subject: [PATCH 4/4] changed api --- src/hooks/useHandleTransfer.tsx | 1 - src/utils/coingeckoIdBySymbol.json | 11717 +++++++++++++++++++++++++++ src/utils/telemetry.ts | 15 +- 3 files changed, 11725 insertions(+), 8 deletions(-) create mode 100644 src/utils/coingeckoIdBySymbol.json diff --git a/src/hooks/useHandleTransfer.tsx b/src/hooks/useHandleTransfer.tsx index 09cee791a..8ea67c908 100644 --- a/src/hooks/useHandleTransfer.tsx +++ b/src/hooks/useHandleTransfer.tsx @@ -1159,7 +1159,6 @@ export function useHandleTransfer() { toChainId: targetChain, fromTokenSymbol: sourceParsedTokenAccount?.symbol, toTokenSymbol: targetParsedTokenAccount?.symbol, - sourceAsset, fromTokenAddress: isNative ? "native" : sourceAsset, toTokenAddress: targetParsedTokenAccount?.isNativeAsset ? "native" diff --git a/src/utils/coingeckoIdBySymbol.json b/src/utils/coingeckoIdBySymbol.json new file mode 100644 index 000000000..36a8396e3 --- /dev/null +++ b/src/utils/coingeckoIdBySymbol.json @@ -0,0 +1,11717 @@ +{ + "7": "lucky7", + "42": "42-coin", + "777": "jackpot", + "888": "888tron", + "2080": "2080", + "2192": "lernitas", + "4096": "4096", + "69420": "69420", + "zoc": "01coin", + "zcn": "0chain", + "0kn": "0-knowledge-network", + "ome": "0-mee", + "vix": "vixco", + "zerovm": "0vm", + "zrx": "0x", + "0x0": "0x0-ai-ai-smart-contract", + "xfour": "0x404", + "wolf": "wolf-solana", + "zad": "0xadventure", + "0xaiswap": "0xaiswap", + "0xanon": "0xanon", + "0xbet": "0xbet", + "0xb": "0xblack", + "coco": "0xcoco", + "oxd": "0xdao", + "cafe": "cafe", + "fair": "0xfair", + "0xg": "0xgpu-ai", + "0xgas": "0xgasless-2", + "xgn": "0xgen", + "oxl": "0x-leverage", + "0xlp": "0xliquidity", + "openli": "0xlp", + "0xlsd": "0xlsd", + "0xmr": "0xmonero", + "oxn": "0xnumber", + "0xos": "0xos-ai", + "scan": "0xscans", + "vpn": "0xvpn-org", + "1000bonk": "1000bonk", + "1000btt": "1000btt", + "1000rats": "1000rats", + "1000sats": "1000sats-ordinals", + "1000shib": "1000shib", + "1000troll": "1000troll", + "16dao": "16dao", + "1art": "1art", + "1ex": "1ex", + "water": "water-coin", + "1inch": "1inch", + "yv1inch": "1inch-yvault", + "intro": "1intro", + "1mdc": "1mdc", + "1mil": "1million-nfts", + "1mb": "1minbet", + "1mt": "1move token", + "1rt": "1reward-token", + "@btc25": "1rus-btc25", + "1rusd": "1rus-dao", + "safu": "staysafu", + "1sol": "1sol", + "₿": "-2", + "pump": "pumpkin-cat", + "20ex": "20ex", + "21m": "21million", + "21x": "21x", + "vck": "28vck", + "2dai": "2dai-io", + "2fai": "2fai", + "2gcc": "2g-carbon-coin", + "moon": "polywolf", + "2omb": "2omb-finance", + "2shares": "2share", + "meow": "zero-tech", + "fit": "snkrz-fit", + "a3a": "3a-lending-protocol", + "3d3d": "3d3d", + "p3d": "3dpass", + "3km": "3-kingdoms-multiverse", + "pace": "pace-bot", + "four": "the-4th-pillar", + "404a": "404aliens", + "bake": "bakerytoken", + "404blocks": "404blocks", + "top": "top-network", + "404wheels": "404wheels", + "4chan": "4chan", + "4dc": "4dcoin", + "4dmaps": "4d-twin-maps-2", + "4int": "4int", + "nxtu": "4-next-unicorn", + "4wmm": "4-way-mirror-money", + "50c": "50cent", + "vgc": "5g-cash", + "5ire": "5ire", + "5mc": "5mc", + "fiw": "777fuckilluminatiworldwid", + "mph": "morpher", + "w8bit": "8bit-chain", + "8bit": "8bitearn", + "8pay": "8pay", + "90s": "90s-crypto-exchange", + "kids": "90-s-kid", + "9-5": "9-5", + "stz": "suitizen", + "9inch": "9inch", + "9to5": "9to5io", + "aa": "astarter", + "a4": "a4-finance", + "a51": "a51-finance", + "lenfi": "aada-finance", + "aag": "aag-ventures", + "an": "aann-ai", + "vark": "aardvark-2", + "aark": "aark-digital", + "arma": "aarma-2", + "aast": "aastoken", + "aave": "aave", + "aaave": "aave-v3-aave", + "aammbptbalweth": "aave-amm-bptbalweth", + "aammbptwbtcweth": "aave-amm-bptwbtcweth", + "aammdai": "aave-amm-dai", + "aammuniaaveweth": "aave-amm-uniaaveweth", + "aammunibatweth": "aave-amm-unibatweth", + "aammunicrvweth": "aave-amm-unicrvweth", + "aammunidaiusdc": "aave-amm-unidaiusdc", + "aammunidaiweth": "aave-amm-unidaiweth", + "aammunilinkweth": "aave-amm-unilinkweth", + "aammunimkrweth": "aave-amm-unimkrweth", + "aammunirenweth": "aave-amm-unirenweth", + "aammunisnxweth": "aave-amm-unisnxweth", + "aammuniuniweth": "aave-amm-uniuniweth", + "aammuniusdcweth": "aave-amm-uniusdcweth", + "aammuniwbtcusdc": "aave-amm-uniwbtcusdc", + "aammuniwbtcweth": "aave-amm-uniwbtcweth", + "aammuniyfiweth": "aave-amm-uniyfiweth", + "aammusdc": "aave-amm-usdc", + "aammusdt": "aave-amm-usdt", + "aammwbtc": "aave-amm-wbtc", + "aammweth": "aave-amm-weth", + "abal": "arch-balanced-portfolio", + "abpt": "aave-balancer-pool-token", + "abat": "aave-bat-v1", + "abusd": "aave-busd-v1", + "acrv": "aave-v3-crv", + "adai": "aave-v3-dai", + "aenj": "aave-enj-v1", + "aeth": "aave-eth-v1", + "ghst": "aavegotchi", + "alpha": "alpha-shards", + "fomo": "fomo-tocd", + "fud": "fud-the-pug", + "kek": "pepe-prophet", + "agusd": "aave-gusd", + "asteth": "aave-interest-bearing-steth", + "aknc": "aave-v3-knc", + "alink": "alink-ai", + "amana": "aave-mana-v1", + "amkr": "aave-v3-mkr", + "amaave": "aave-polygon-aave", + "amdai": "aave-polygon-dai", + "amusdc": "aave-polygon-usdc", + "amusdt": "aave-polygon-usdt", + "amwbtc": "aave-polygon-wbtc", + "amweth": "aave-polygon-weth", + "amwmatic": "aave-polygon-wmatic", + "arai": "aave-rai", + "aren": "aave-ren-v1", + "asnx": "aave-v3-snx", + "stkgho": "aave-stkgho", + "asusd": "aave-susd-v1", + "atusd": "aave-tusd-v1", + "auni": "aave-v3-uni", + "ausdc": "ausdc", + "ausdt": "alloy-tether", + "a1inch": "aave-v3-1inch", + "aageur": "aave-v3-ageur", + "aarb": "aave-v3-arb", + "abtc.b": "aave-v3-btc-b", + "acbeth": "aave-v3-cbeth", + "adpi": "aave-v3-dpi", + "aens": "aave-v3-ens", + "aeure": "aave-v3-eure", + "aeurs": "aave-v3-eurs", + "afrax": "aave-v3-frax", + "aghst": "aave-v3-ghst", + "agno": "aave-v3-gno", + "aldo": "aave-v3-ldo", + "alusd": "alchemix-usd", + "amai": "aave-v3-mai", + "amaticx": "aave-v3-maticx", + "ametis": "aave-v3-metis", + "aop": "aave-v3-op", + "areth": "aave-v3-reth", + "arpl": "aave-v3-rpl", + "asavax": "aave-v3-savax", + "asdai": "aave-v3-sdai", + "astg": "aave-v3-stg", + "astmatic": "aave-v3-stmatic", + "asushi": "aave-v3-sushi", + "abasusdbc": "aave-v3-usdbc", + "ausdc.e": "aave-v3-usdc-e", + "awavax": "aave-v3-wavax", + "awbtc": "aave-wbtc-v1", + "aweth": "aave-weth", + "awmatic": "aave-v3-wmatic", + "awsteth": "aave-v3-wsteth", + "axsushi": "aave-xsushi", + "ayfi": "aave-yfi", + "yvaave": "aave-yvault", + "azrx": "aave-zrx-v1", + "abi": "abachi-2", + "abax": "abax", + "aabl": "abble", + "meta": "metaverse-miner", + "abcphar": "abcphar", + "abc": "angry-bulls-club", + "abel": "abelian", + "abey": "abey", + "able": "able-finance", + "abe": "aboard", + "aboat": "aboat-token-2", + "abond": "abond", + "abs": "abstradex", + "awt": "air-wing-token", + "aca": "acala", + "ausd": "aurelius-usd", + "acs": "acryptos-2", + "acfi": "accumulated-finance", + "ace": "metatrace-utility-token", + "act": "achain", + "achi": "achi-inu", + "achmed": "achmed-heart-and-sol", + "actly": "ackchyually", + "ack": "acknoledger", + "acm": "actinium", + "acn": "acorn-protocol", + "acq": "acquire-fi", + "acria": "acria", + "aimarket": "acria-ai-aimarket", + "acx": "apexcoin-global", + "acsi": "acryptosi", + "acu": "acurast", + "aac": "acute-angle-cloud", + "adacash": "adacash", + "adao": "adadao", + "addy": "addy", + "adm": "adamant-messenger", + "adana": "adanaspor-fan-token", + "adapad": "adapad", + "fren": "frencoin-2", + "adp": "adappter-token", + "tfbill": "adapt3r-digital-treasury-bill-fund", + "asw": "adaswap", + "adasol": "ada-the-dog", + "adax": "adax", + "add": "add-finance", + "dic": "addickted", + "adx": "adex", + "adil": "adil-chain", + "matrix": "matrixswap", + "ado": "ado-network", + "adon": "adonis-2", + "ad": "adreward", + "adr": "adroverse", + "ads": "adshares", + "adult": "adult-playground", + "gem": "opal-2", + "gold": "golden-token", + "advt": "advantis", + "agld": "adventure-gold", + "adco": "advertise-coin", + "aeggs": "aeggs", + "ags": "collector-coin", + "aegis": "aegis-ai", + "elf": "the-land-elf-crossing", + "aelin": "aelin", + "aeon": "aeon", + "aeonodex": "aeonodex", + "aepos": "aepos-network", + "aera": "aerarium-fi", + "aer": "aerdrop", + "aergo": "aergo", + "aerobud": "aerobud", + "aero": "aerovek-aviation", + "arnx": "aeron", + "aesirx": "aesirx", + "aet": "aet", + "ae": "aeternity", + "aeg": "aether-games", + "ath": "athens", + "aeusd": "aeusd", + "aevo": "aevo-exchange", + "aevum": "aevum-ore", + "azr": "aezora", + "afen": "afen-blockchain", + "affi": "affi-network", + "afnty": "affinity", + "fyn": "affyn", + "afin": "afin-coin", + "afr": "afreum", + "ubu": "africarare", + "afx": "wonderly-finance", + "afro": "afrostar", + "afsui": "aftermath-staked-sui", + "fund": "unification", + "afyon": "afyonspor-fan-token", + "agac": "aga-carbon-credit", + "acar": "aga-carbon-rewards", + "edc": "aga-rewards", + "agata": "agatech", + "aga": "agorahub", + "agve": "agave-token", + "agt": "avatago", + "usedcar": "a-gently-used-2001-honda", + "usedphone": "a-gently-used-nokia-3310", + "apes": "based-degen-apes", + "♒": "age-of-aquarius", + "aog": "smartofgiving", + "eura": "ageur", + "egeur.e": "ageur-plenty-bridge", + "agg": "amplifi-dao", + "agii": "agii", + "agi": "delysium", + "agio": "agio", + "agn": "agrinode", + "ago": "ago", + "agrs": "agoras-currency-of-tau", + "bld": "blackder-ai", + "agos": "agos", + "dlt": "agrello", + "agrf": "agri-future-token", + "agro": "agro-global", + "agus": "agus", + "aht": "avenue-hamilton-token", + "caw": "crow-with-knife", + "aia": "aiakita", + "aix": "aigentx", + "aiat": "ai-analysis-token", + "aibcoin": "aiblock", + "aibot": "aibot", + "aicb": "aicb", + "ait": "ai-trader", + "aicode": "ai-code", + "ai": "sleepless-ai", + "ai.com": "ai-com", + "aicore": "aicore", + "aicr": "aicrew", + "aidp": "ai-depin", + "aidi": "aidi-finance-2", + "chatgpt": "ai-dragon", + "aie": "aiearn", + "aien": "aienglish", + "aifloki": "ai-floki", + "aigc": "aigc-ordinals", + "aig": "a-i-genesis", + "aigpu": "aigpu-token", + "aih": "aihub", + "aiinu": "ai-inu", + "aimage": "aimage-tools", + "aim": "ai-market-compass", + "aimbot": "aimbot", + "aimx": "mind-matrix", + "$aimee": "aimee", + "amc": "amc-3", + "ail": "ainalysis", + "ain": "ai-network", + "ainu": "anon-inu", + "aion": "aion", + "aioz": "aioz-network", + "aipad": "aipad", + "aipepe": "ai-pepe-king", + "aipets": "aipets", + "aipg": "ai-power-grid", + "aip": "ai-powers", + "atmt": "aiptp", + "air": "spacebar", + "airb": "airb", + "airbtc": "airbtc", + "airm": "airealm-tech", + "airi": "airight", + "airt": "airnft-token", + "apuff": "airpuff", + "ast": "airswap", + "airtnt": "airtnt", + "anyone": "airtor-protocol", + "aiscii": "aiscii", + "shibai": "aishiba", + "aisig": "aisignal", + "ais": "aisociety", + "aisp": "ai-supreme", + "aisc": "ai-surf", + "aiswap": "aiswap", + "aitax": "aitaxbot", + "aitek": "ai-technology", + "aitk": "aitk", + "aitom": "aitom", + "tai": "tronai", + "aitt": "aittcoin", + "$wai": "ai-waifu", + "awo": "aiwork", + "x": "x-xrc-20", + "ajna": "ajna-protocol", + "baju": "ajuna-network", + "ajun": "ajuna-network-2", + "aku": "akamaru", + "akt": "akita-inu-2", + "aki": "aki-protocol", + "aaaaaa": "akitaaaaaa", + "akita": "akita-inu-4", + "akta": "akita-inu-asa", + "akitax": "akitavax", + "akv": "akiverse-governance-token", + "akro": "akropolis", + "adel": "akropolis-delphi", + "afs": "aktionariat-alan-frei-company-tokenized-shares", + "axras": "aktionariat-axelra-early-stage-ag-tokenized-shares", + "bees": "bee-launchpad", + "cas": "kaspa-classic", + "cfes": "aktionariat-clever-forever-education-ag-tokenized-shares", + "ddcs": "aktionariat-ddc-schweiz-ag-tokenized-shares", + "fdos": "aktionariat-fieldoo-ag-tokenized-shares", + "fnls": "aktionariat-finelli-studios-ag-tokenized-shares", + "dgcs": "aktionariat-green-consensus-ag-tokenized-shares", + "vegs": "aktionariat-outlawz-food-ag-tokenized-shares", + "dqts": "aktionariat-servicehunter-ag-tokenized-shares", + "sias": "aktionariat-sia-swiss-influencer-award-ag-tokenized-shares", + "spos": "aktionariat-sportsparadise-switzerland-ag-tokenized-shares", + "tbos": "aktionariat-tbo-co-comon-accelerator-holding-ag-tokenized-shares", + "vids": "aktionariat-technologies-of-understanding-ag-tokenized-shares", + "tvpls": "aktionariat-tv-plus-ag-tokenized-shares", + "vrgns": "aktionariat-vereign-ag-tokenized-shares", + "aldin": "alaaddin-ai", + "ald": "aladdin-dao", + "arusd": "aladdin-rusd", + "asdcrv": "aladdin-sdcrv", + "musk": "musk-gold", + "alan": "alan-the-alien", + "ala": "alanyaspor-fan-token", + "carat": "diamond-standard-carat", + "atp": "atlas-protocol", + "albedo": "albedo", + "albemarle": "albemarle-meme-token", + "albert": "albert-euro-2024", + "mist": "mist", + "alcx": "alchemix", + "aleth": "alchemix-eth", + "ach": "alchemy-pay", + "usdt": "viction-bridged-usdt-viction", + "rin": "aldrin", + "alea": "alea", + "aleph": "aleph-im-wormhole", + "alph": "alephium", + "azero": "aleph-zero", + "ali": "alita", + "alex": "alexgo", + "alexis": "alexis", + "susdt": "alex-wrapped-usdt", + "alf": "alf", + "sauber": "alfa-romeo-racing-orlen-fan-token", + "alfa": "alfa-society", + "algb": "algebra", + "chip": "blue-chip", + "gomint": "algomint", + "algo": "algowave", + "alg": "algory", + "stbl": "algostable", + "abbc": "alibabacoin", + "dbaba": "alibaba-tokenized-stock-defichain", + "alice": "my-neighbor-alice", + "alca": "alicenet", + "aoc": "alickshundra-occasional-cortex", + "alien": "alienswap", + "alienb": "alienb", + "alb": "alienbase", + "acf": "alien-chicken-farm", + "a4m": "alienform", + "tlm": "alien-worlds", + "alif": "alif-coin", + "alme": "alita-2", + "alita": "alitaai", + "alt": "aptos-launch-token", + "alm": "alium-finance", + "$ads": "alkimi", + "aart": "all-art", + "abr": "allbridge", + "aeeth": "allbridge-bridged-eth-fuse", + "assol": "allbridge-bridged-sol-fuse", + "asusdc": "allbridge-bridged-usdc-fuse", + "aeusdc": "allbridge-bridged-usdc-stacks", + "allcat": "all-cat-no-brakes", + "all": "alliance-fan-token", + "nxra": "allianceblock-nexera", + "axt": "alliance-x-trading", + "allin": "all-in", + "aigpt": "all-in-gpt", + "asafe": "allsafe", + "bets": "betswirl", + "ats": "atlas-dex", + "aly": "ally", + "yobase": "all-your-base", + "ayb": "all-your-base-2", + "almr": "almira-wallet", + "amkt": "alongside-crypto-market-index", + "alonmars": "alon-mars", + "alpa": "alpaca", + "alpaca": "alpaca-finance", + "alpha ai": "alpha-ai", + "alphabet": "alphabet-erc404", + "$alpha": "alpha-shares-v2", + "ag": "alpha-gardeners", + "aikek": "alphakek-ai", + "anva": "alphanova", + "aqt": "alpha-quark-token", + "arabbit": "alpha-rabbit", + "arbot": "alpha-radar-bot", + "ascn": "alphascan", + "alphr": "alphr", + "alpine": "alpine-f1-team-fan-token", + "tava": "altava", + "altb": "altbase", + "altt": "altcoinist-token", + "ctrl": "ctrl", + "alter": "alter", + "asto": "altered-state-token", + "althea": "althea", + "altd": "altitude", + "amx": "alt-markets", + "aken": "altoken", + "altr": "altranium", + "asi": "altsignals", + "alu": "altura", + "aln": "aluna", + "jownes": "alux-jownes", + "alva": "alvara-protocol", + "walv": "alvey-chain", + "amar": "amar-token", + "amas": "amasa", + "amt": "autominingtoken", + "iza": "amaterasufi-izanagi", + "omikami": "amaterasu-omikami", + "ama": "mrweb-finance-2", + "$amax": "amax", + "amazingteam": "amazingteamdao", + "damzn": "amazon-tokenized-stock-defichain", + "azy": "amazy", + "amb": "amber", + "amber": "amberdao", + "wallet": "ambire-wallet", + "ambt": "ambit-finance", + "ambo": "ambo", + "ambr": "ambra", + "ame": "amepay", + "america": "america1776", + "usa": "dedprz", + "uspepe": "american-pepe", + "ushiba": "american-shiba", + "$amo": "amino", + "ammx": "ammx", + "ami": "ammyi-coin", + "amapt": "amnis-aptos", + "stapt": "ditto-staked-aptos", + "amo": "amo", + "amon": "amond", + "amp": "amp-token", + "ampere": "amperechain", + "ampl": "ampleforth", + "forth": "ampleforth-governance-token", + "amu": "amulet-protocol", + "aha": "anagata", + "analos": "analos", + "zero": "zeroswapnft", + "🖕": "anarcho-catbus", + "anarchy": "anarchy", + "achf": "anchored-coins-chf", + "aeur": "anchored-coins-eur", + "anc": "anchor-protocol", + "anchor": "anchorswap", + "a8": "ancient8", + "taw": "ancient-world", + "andi": "andi", + "vonspeed": "andrea-von-speed", + "andr": "andromeda-2", + "deb": "anduschain", + "andy": "andy-the-wisguy", + "badcat": "badcat", + "candy": "candy-token", + "angle": "angle-protocol", + "stusd": "midas-stusd", + "usda": "angle-usd", + "agla": "angola", + "anb": "anubit", + "anfd": "angry-doge", + "angryslerf": "angryslerf", + "anima": "apeiron-anima", + "anml": "animal-concerts-token", + "anim": "animalia", + "am": "aston-martin-cognizant-fan-token", + "anime": "anime-base", + "ani": "anime-token", + "wynn": "anita-max-wynn", + "anka": "ankaragucu-fan-token", + "ankr": "ankr", + "ankreth": "ankreth", + "ankrftm": "ankr-reward-bearing-ftm", + "ankrmatic": "ankr-reward-earning-matic", + "ankrbnb": "ankr-staked-bnb", + "anok": "anokas-network", + "anom": "anomus-coin", + "anon": "anonymous", + "oni": "oni-token", + "atec": "anontech", + "aw3": "anon-web3", + "awm": "another-world", + "hobbes": "hobbes-new", + "awp": "ansem-wif-photographer", + "ansom": "ansom", + "agov": "answer-governance", + "antt": "antara-raiders-royals", + "atf": "arithfi", + "$agw": "anti-global-warming-token", + "tune": "antimatter", + "ams": "antmons", + "antx": "antnetworx", + "abn": "antofy", + "anty": "anty-the-anteater", + "apad": "anypad", + "any": "anyswap", + "susdz": "anzen-staked-usdz", + "usdz": "zonko-usdz", + "ao": "ao-computer", + "aok": "aok", + "apc": "apin-pulse", + "ape": "apetos", + "aped": "aped-3", + "apein": "apedao", + "apegpt": "apegpt", + "aprs": "apeironnft", + "nft": "nft-protocol", + "aptr": "aperture-finance", + "agb": "apes-go-bananas", + "banana": "world-record-banana", + "apetardio": "apetardio", + "apewifhat": "apewifhat", + "apex": "apex-token-2", + "apfc": "apf-coin", + "api3": "api3", + "apt": "aptos", + "nctr": "dust-city-nectar", + "aping": "aping", + "apm": "apm-coin", + "apl": "apollon-limassol", + "apollo": "apollo-protocol-ceres", + "ftw": "friendtech33", + "apx": "astropepex", + "appc": "appcoins", + "$acat": "apple-cat", + "pie": "sports-pie", + "daapl": "apple-tokenized-stock-defichain", + "aprt": "apricot", + "april": "april", + "apn": "apron", + "aps": "apsis", + "apd": "aptopad", + "apu": "apu-s-club", + "apugurl": "apu-gurl", + "apw": "apwine", + "apy": "apy-finance", + "apys": "apyswap", + "vision": "visiongame", + "aqtis": "aqtis", + "$aqua": "aquastake", + "aquagoat": "aqua-goat", + "aqla": "aqualibre", + "aqdc": "aquanee", + "aquari": "aquari", + "aqua": "planet-finance", + "ars": "aquarius-loan", + "arab": "arab-cat", + "dubx": "arabianchain", + "agon": "arabian-dragon", + "abic": "arabic", + "acre": "arable-protocol", + "ara": "ara-token", + "ant": "aragon", + "aidoge": "arbdoge-ai", + "adoge": "arbidoge", + "arbinauts": "arbinauts", + "nyan": "nyan-meme-coin", + "arbi": "arbitrum-ecosystem-index", + "rbis": "arbismart-token", + "10share": "arbiten-10share", + "alp": "arbitrove-alp", + "arb": "arb-protocol", + "wbtc": "wrapped-btc-wormhole", + "arcs": "arbitrum-charts", + "arx": "arcs", + "arbpad": "arbitrumpad", + "aius": "arbius", + "arbs": "arbswap", + "arbuz": "arbuz", + "arc": "archly-finance", + "arcade": "arcadefi", + "arcd": "arcade-protocol", + "arcadium": "arcadium", + "arcusd": "arcana-2", + "xar": "arcana-token", + "abt": "arcblock", + "aagg": "arch-aggressive-portfolio", + "archa": "archangel-token", + "bow": "archerswap-bow", + "hunt": "hunt-token", + "web3": "web3-ton-token", + "uco": "archethic", + "arch⚡️": "archetype", + "arch": "archway", + "arcx": "architex", + "archi": "archi-token", + "arcai": "archive-ai", + "al": "archloot", + "arcona": "arcona", + "dana": "ardana", + "ardr": "ardor", + "aes": "aree-shards", + "sply": "arena-supply-crate", + "arena": "arena-token", + "area": "areon-network", + "ares": "ares-protocol", + "arg": "argonon-helium", + "argo": "argo-finance", + "agc": "argocoin", + "argon": "argon", + "ari10": "ari10", + "ria": "calvaria-doe", + "aria20": "arianee", + "chikun": "arise-chikun", + "arv": "ariva", + "arix": "arix", + "99cents": "arizona-iced-tea", + "ark": "aurinko-network", + "diko": "arkadiko-protocol", + "$arken": "arken-finance", + "arker": "arker-2", + "arkm": "arkham", + "darkk": "ark-innovation-etf-defichain", + "arki": "arkitech", + "akre": "arkreen-token", + "arks": "arkstart", + "arky": "arky", + "ab": "arma-block", + "armor": "armor", + "armour": "armour-wallet", + "afg": "army-of-fortune-gem", + "afc": "arsenal-fan-token", + "arpa": "arpa", + "arq": "arqma", + "arqx": "arqx-ai", + "arrc": "arrland-arrc", + "rum": "dps-rum-2", + "arrow": "arrow-token", + "aby": "artbyte", + "ac": "artcoin", + "cpa-97530": "artcpaclub", + "adf": "art-de-finance", + "artem": "artem", + "mis": "mithril-share", + "atai": "artemisai", + "artr": "artery", + "artfi": "artfi", + "agpt": "artgpt", + "arth": "arth", + "arsw": "arthswap", + "choke": "artichoke", + "aii": "artificial-idiot", + "ainn": "artificial-neural-network-ordinals", + "volts": "artificial-robotic-tapestry-volts", + "atnt": "artizen", + "artl": "artl", + "$mart": "artmeta", + "atr": "aternos-chain", + "artx": "artx", + "arty": "artyfact", + "ar": "arweave", + "aya": "aryacoin", + "eeur": "e-money-eur", + "egbp": "aryze-egbp", + "eusd": "eusd-new", + "asan": "asan-verse", + "asap": "asap-sniper-bot", + "asd": "asd", + "asdi": "asdi", + "asdir": "asdi-reward", + "odin": "odin-protocol", + "ash": "ash-token", + "asia": "asia-coin", + "irene": "asian-mother", + "asix": "asix", + "asko": "askobar-network", + "asm": "assemble-protocol", + "aso": "aso-finance", + "aspo": "aspo-world", + "asr": "as-roma-fan-token", + "justice": "assangedao", + "asnt": "assent-protocol", + "aset": "assetlink", + "mntl": "assetmantle", + "astr": "stargate-bridged-astr-astar-zkevm", + "$xcastr": "astar-moonbeam", + "atc": "autochain", + "astx": "asterix", + "roids": "asteroids", + "avl": "aston-villa-fan-token", + "astra": "astra-protocol-2", + "astradao": "astra-dao-2", + "astrafer": "astrafer", + "xac": "astral-credits", + "glxy": "astrals-glxy", + "$rvv": "astra-nova", + "aznt": "astrazion", + "astro": "astrotools", + "astroai": "astroai", + "abb": "astro-babies", + "elonone": "astroelon", + "astrl": "astrolescent", + "astropepe": "astro-pepe", + "astroc": "astroport", + "spaces": "astrospaces-io", + "axv": "astrovault", + "xarch": "astrovault-xarch", + "xatom": "astrovault-xatom", + "xjkl": "astrovault-xjkl", + "astrox": "astro-x", + "asva": "asva", + "asx": "asymetrix", + "asy": "asyagro", + "als": "atalis", + "atri": "atari", + "atcp": "atc-launchpad", + "atem": "atem-network", + "olea": "athena-returns-olea", + "athenasv2": "athenas", + "aem": "atheneum", + "athusd": "athos-finance-usd", + "ata": "automata", + "atlas": "star-atlas", + "navi": "natus-vincere-fan-token", + "usv": "atlas-usv", + "atm": "atletico-madrid", + "atomarc20": "atomicals", + "atom1": "atomone", + "atpay": "atpay", + "atrno": "atrno", + "atrofa": "atrofarm", + "pine": "pine", + "atk": "attack-wagon", + "atrs": "attarius", + "att": "attila", + "auction": "auction", + "acl": "auction-light", + "auc": "auctus", + "audi": "audify", + "audt": "auditchain", + "audio": "audius-wormhole", + "rep": "republican", + "omen": "augury-finance", + "$aura": "aura", + "aurabal": "aura-bal", + "aura": "aura-on-sol", + "aur": "auroracoin", + "ang": "aureus-nummus-gold", + "ply": "plenty-ply", + "aoa": "aurora", + "idex": "aurora-dao", + "aurora": "auroratoken", + "$adtx": "aurora-token", + "aury": "aurory", + "acg": "aurum-gold", + "ax": "aurusx", + "aseed": "ausd-seed-karura", + "ass": "australian-safe-shepherd", + "aut": "autentic", + "autism": "autism", + "auto": "auto", + "aai": "aventis-ai", + "txl": "autobahn-network", + "au": "autocrypto", + "atn": "auton", + "niox": "autonio", + "olas": "autonolas", + "ussd": "autonomous-secure-dollar", + "jaws": "autoshark", + "autos": "autosingle", + "autumn": "autumn", + "aux": "aux-coin", + "avb": "avabot", + "avac": "avacoach", + "avacn": "avacoin", + "avex": "avadex-token", + "ava": "concierge-io", + "avail": "avail", + "avax": "binance-peg-avalanche", + "xava": "avalaunch", + "avalox": "avalox", + "avg": "avaocado-dao", + "": "monad", + "avatly": "avatly-2", + "avav": "avav-asc-20", + "nochill": "avax-has-no-chill", + "lama": "avaxlama", + "avxt": "avaxtars", + "atech": "avaxtech", + "avtm": "aventis-metaverse", + "avt": "aventus", + "avs": "aves", + "avn": "avnrich", + "avi": "aviator", + "avinoc": "avinoc", + "avive": "avive", + "avo": "avoteo", + "almc": "awkward-look-monkey-club", + "awk": "awkward-monkey", + "axe": "axe-cap", + "axel": "axel", + "axl": "axl-inu", + "axlfrxeth": "axelar-bridged-frax-ether", + "usdc.axl": "axelar-bridged-usdc-cosmos", + "axlusdt": "axelar-usdt", + "axlw": "axel-wrapped", + "axiav3": "axia", + "axial": "axial-token", + "axs": "axie-infinity", + "axset": "axie-infinity-shard-wormhole", + "axn": "axion", + "axm": "axiome", + "axis": "axis-token", + "axle": "axle-games", + "axlusdc": "ibc-bridged-axlusdc-xpla", + "axlwbtc": "axlwbtc", + "axleth": "axlweth", + "axo": "axo", + "axgt": "axondao-governance-token", + "ayin": "ayin", + "az": "azbit", + "azc": "azcoiner", + "azit": "azit", + "azuki": "azuki", + "azure": "azure-wallet", + "azur": "azur-token", + "b01": "b0rder1ess", + "b20": "b20", + "b2baby": "b2baby", + "b2b": "b2b-token", + "b2share": "b2share", + "bxx": "baanx", + "baas": "baasid", + "baba": "baba", + "bbc": "bull-btc-club", + "babyag": "baba-yaga", + "bax": "babb", + "$fish": "babelfish-2", + "baby": "metababy", + "babyakita": "babyakita", + "balvey": "baby-alvey", + "baptos": "baby-aptos", + "barb": "baby-arbitrum", + "baby arof": "baby-arof", + "bb": "bouncebit", + "bbeer": "baby-beercoin", + "babybnbtig": "babybnbtiger", + "babybonk": "babybonk-2", + "babyboo": "babyboo", + "boo": "spookyswap", + "babybrett": "baby-brett", + "bbrett": "baby-brett-on-base", + "babybtc": "babybtc-token", + "babycat": "baby-cat", + "bcoq": "bcoq-inu", + "babycrash": "babycrash", + "babydoge2.0": "babydoge2-0", + "army": "babydogearmy", + "babydogecash": "baby-doge-cash", + "bceo": "babydoge-ceo", + "babydoge": "save-baby-doge", + "$babydogeinu": "baby-doge-inu", + "babywif": "babydogwifhat", + "babydojo": "babydojo", + "babydragon": "baby-dragon-2", + "babyelon": "baby-elon", + "babyfloki": "baby-floki", + "babyflokicoin": "baby-floki-coin", + "bfloki": "bitfloki", + "babyg": "baby-g", + "babygemini": "baby-gemini", + "babygrok": "baby-grok-3", + "babygrokce": "babygrokceo", + "babygrok x": "babygrok-x", + "babyhamster": "baby-hamster", + "babykitty": "babykitty", + "$babylong": "babylong", + "babylong": "baby-long", + "babi": "babylons", + "blovely": "baby-lovely-inu", + "babymeme": "baby-meme-coin", + "babymusk": "baby-musk-2", + "babymyro": "babymyro-2", + "babybomeow": "baby-of-bomeow", + "babypandor": "babypandora", + "babypeipei": "baby-peipei", + "babypepe": "babypepefi", + "baby pepe": "baby-pepe", + "babypork": "baby-pepe-fork", + "peper": "peper", + "bepe": "blast-pepe", + "babyrabbit": "babyrabbit", + "babyrats": "baby-rats", + "$brich": "baby-richard-heart", + "babyrwa": "babyrwa", + "shark": "sharky-fi", + "babyshark": "baby-shark-2", + "bashtank": "baby-shark-tank", + "baby shiba": "babyshiba", + "babyshibainu": "baby-shiba-inu", + "babyshib": "baby-shiba-inu-erc", + "babyslerf": "baby-slerf", + "bs9000": "babysmurf9000", + "babysnek": "babysnek", + "babysol": "babysol", + "babysora": "baby-sora", + "bsg": "baby-squid-game", + "babytomcat": "baby-tomcat", + "babytroll": "baby-troll", + "babytrump": "baby-trump-bsc", + "babyx": "babyx-swap", + "bbyxrp": "babyxrp", + "kitten": "baby-zeek", + "bacgames": "bac-games", + "bjuno": "backbone-labs-staked-juno", + "bkuji": "backbone-staked-kujira", + "bosmo": "backbone-staked-osmo", + "bgoogl": "backed-alphabet-class-a", + "bcoin": "bomber-coin", + "bcspx": "backed-cspx-core-s-p-500", + "berna": "backed-erna-bond", + "bernx": "backed-ernx-bond", + "bgme": "backed-gamestop-corp", + "bc3m": "backed-govies-0-6-months-euro", + "bhigh": "backed-high-high-yield-corp-bond", + "bib01": "backed-ib01-treasury-bond-0-1yr", + "bibta": "backed-ibta-treasury-bond-1-3yr", + "bmsft": "backed-microsoft", + "bmstr": "backed-microstrategy", + "bniu": "backed-niu-technologies", + "bcsbgc3": "backed-swiss-domestic-government-bond-0-3", + "btsla": "backed-tesla", + "bzpr1": "backed-zpr1-1-3-month-t-bill", + "notes": "backstage-pass-notes", + "bacon": "bacondao", + "badger": "badger-dao", + "bbadger": "badger-sett-badger", + "bad": "bad-token", + "bafi": "bafi-finance-token", + "bag": "tehbag", + "bagel": "bagel-coin", + "bahamas": "bahamas", + "bai": "betai", + "baked": "baked-token", + "tbake": "bakerytools", + "bava": "baklava", + "bnusd": "balanced-dollars", + "bal": "balancer", + "b-80bal-20weth": "balancer-80-bal-20-weth", + "dlp": "balancer-80-rdnt-20-weth", + "stabal3": "balancer-stable-usd", + "usdc-usdbc-axlusdc": "balancer-usdc-usdbc-axlusdc", + "baln": "balance-tokens", + "bald": "bald", + "baldo": "bald-dog", + "bali": "bali-skull", + "bufc": "bali-united-fc-fan-token", + "ball": "game-5-ball", + "bsp": "ballswap", + "bart": "reptilianzuckerbidenbartcoin", + "balpha": "balpha", + "bam": "bambi", + "bambit": "bambit", + "bmbo": "bamboo-coin", + "bamboo": "bamboo-on-base", + "bbo": "bamboo-token-c90b31ff-8355-41d6-a495-2b16418524c2", + "🏦": "bamk-of-nakamoto-dollar", + "bcat": "bug-cat", + "nana": "nana-token", + "bana": "shibana", + "bsh": "banana-superhero", + "btw": "banana-tape-wall", + "bna": "bananatok", + "ban": "banano", + "bnt": "bancor", + "vbnt": "bancor-governance-token", + "band": "band-protocol", + "bands": "bands-2", + "bps": "base-pro-shops", + "bank": "float-protocol", + "bankbtc": "bank-btc", + "bnk": "bankera", + "$bank": "bankercoin", + "bank$": "bankers-dream", + "bed": "bankless-bed-index", + "vlt": "bankroll-vault", + "bsl": "bsclaunch", + "bars": "silver-standard", + "cbu": "banque-universal", + "banksy": "bansky", + "xbn": "bantu", + "banus": "banus-finance", + "banx": "banx", + "baos": "baobaosol", + "b-baoeth-eth-bpt": "baoeth-eth-stablepool", + "bao": "bao-finance-v2", + "solana": "solana-beach", + "bark": "barking", + "bond": "barnbridge", + "barsik": "barsik", + "brtr": "barter", + "base": "rebasechain", + "baseai": "baseai", + "bape": "bored-ape-social-club", + "boon": "base-baboon", + "bbank": "blockbank", + "$bbook": "base-book", + "bros": "crypto-bros", + "based": "based-money-finance", + "basedai": "basedai", + "bbb": "bitbullbot", + "bober": "bober", + "$boshi": "based-boshi", + "brett": "brett-memecoin", + "cap": "cap", + "bunny": "pancake-bunny", + "chad": "chad-scanner", + "bsdeth": "based-eth", + "fpepe": "based-father-pepe", + "fink": "fink-different", + "bloki": "based-floki", + "lambow": "based-lambow", + "dog": "the-doge-nft", + "peach": "peach-inu-bsc", + "beng": "based-peng", + "potato": "potato-3", + "rabbit": "rich-rabbit", + "brate": "based-rate", + "bshare": "based-rate-share", + "soap": "based-sbf-wif-soap", + "bshib": "based-shiba-inu", + "bsb": "based-street-bets", + "bsw": "biswap", + "bfrog": "basefrog", + "tybg": "base-god", + "gulp": "basegulp", + "baseheroes": "baseheroes", + "baseic": "baseic", + "binu": "blast-inu-2", + "bord": "cy-bord-cbrc-20", + "benji": "taylor-swift-s-cat", + "safe": "safe-token", + "street": "base-street", + "bswap": "baseswap", + "btama": "basetama", + "bvm": "bvm", + "bsx": "basix", + "bxt": "basex-token", + "bat": "basic-attention-token", + "bac": "basis-cash", + "bags": "basis-gold-share-heco", + "basis": "basis-markets", + "bas": "basis-share", + "bskt": "basketcoin", + "bbl": "blockblend-2", + "bkn": "brickken", + "bsmti": "basmati", + "baso": "baso-finance", + "btc": "blackrocktradingcurrency", + "gfly": "battlefly", + "bft": "the-big-five", + "ibat": "battle-infinity", + "bgs": "battle-of-guardians-share", + "pet": "petcoin-2", + "btl": "bitlocus", + "bvc": "battleverse", + "bwo": "battle-world", + "$bawls": "bawls-onu", + "baye": "bayesian", + "bzr": "bazaars", + "bazed": "bazed-games", + "bazinga": "bazinga-2", + "bbcg": "bbcgoldcoin", + "rtb": "bbs-network", + "bcpay": "bcpay-fintech", + "bcube": "b-cube-ai", + "bdo": "bdollar", + "becn": "beacon", + "beam": "beam-2", + "usdc": "zksync-bridged-usdc-zksync", + "weth": "zora-bridged-weth-zora-network", + "glint": "glint-coin", + "beamx": "beamx", + "bean": "killer-bean", + "bitb": "bean-cash", + "beany": "beany", + "bear": "teddy-bear", + "beardy": "beardy-dragon", + "beat": "beat-2", + "bgn": "beatgen-nft", + "star": "starheroes", + "lott": "beauty-bakery-linked-operation-transaction-technology", + "bebe": "bebe-on-base", + "beco": "becoswap-token", + "beecasino": "beecasinogames", + "beef": "pepebull", + "beftm": "beefy-escrowed-fantom", + "bifi": "bifi", + "bnode": "beenode", + "beep": "beep-coin", + "beer": "beer-money", + "beets": "beethoven-x", + "buzz": "buzz-the-bellboy", + "beet": "flappybee", + "bfht": "befasterholdertoken", + "befe": "befe", + "befi": "befi-labs", + "fiu": "befitter", + "b4fwx": "be-for-fwx", + "befy": "befy", + "beg": "beg", + "eye": "soleye-offchain-tracker", + "bdx": "beldex", + "befx": "belifex", + "bel": "bellscoin", + "bell": "bell-curve-money", + "long": "nobiko-coin", + "belt": "belt", + "beluga": "beluga-fi", + "bcn": "bytecoin", + "stton": "bemo-staked-ton", + "ben": "ben-2", + "$ben": "bencoin", + "bend": "benddao", + "bdin": "benddao-bdin-ordinals", + "beni": "beni", + "tybeng": "benji-bananas", + "qi": "qiswap", + "savax": "benqi-liquid-staked-avax", + "finale": "ben-s-finale", + "bent": "bent-finance", + "bendog": "ben-the-dog", + "bento": "bento", + "bzn": "benzene", + "bleo": "bep20-leo", + "becoin": "bepay", + "bepro": "bepro-network", + "bera": "berachain-bera", + "berf": "berf", + "bergerdoge": "bergerdoge", + "bmda": "bermuda", + "berry": "rentberry", + "bry": "berry-data", + "besa": "besa-gaming-company", + "bjk": "besiktas", + "bsk-baa025": "beskar", + "b45": "bet45", + "beta": "beta-finance", + "bet": "betfin-token", + "bbot": "betbot", + "crypto": "big-crypto-game", + "bte": "bitweb", + "becx": "bethel", + "betit": "betit", + "betz": "bet-lounge", + "bsgg": "betswap-gg", + "betted": "betted", + "bff": "betterfan", + "btb": "bitbar", + "bemd": "betterment-digital", + "byn": "beyond-finance", + "bp": "bunnypark", + "bezo": "bezo", + "bezoge": "bezoge-earth", + "bfg": "bfg-token", + "bficgold": "bficgold", + "bfic": "bficoin", + "bfk": "bfk-warzone", + "bgt": "bull-game", + "bha": "bha", + "bhbd": "bhbd", + "bhive": "bhive", + "bhat": "bhnetwork", + "bho": "bho-network", + "biao": "biaoqing", + "bib": "bib", + "bibi": "bibi-2", + "bibi2.0": "bibi2-0", + "bibl": "biblecoin", + "btru": "biblical-truth", + "bix": "bibox-token", + "bics": "biceps", + "bicho": "bicho", + "bicity": "bicity-ai-projects", + "bic": "billiard-crypto", + "bico": "biconomy", + "bit": "bitnet-io", + "bt": "bithash-token", + "bid": "bidao", + "bisc": "bidao-smart-chain", + "stbtc": "bido-staked-bitcoin", + "bidp": "bid-protocol", + "bidz": "bidz-coin", + "bfc": "bologna-fc-fan-token", + "bnb": "ronweasleytrumptoadn64inu", + "eth": "the-infinite-garden", + "matic": "matic-network", + "bnc": "bifrost-native-coin", + "vastr": "bifrost-voucher-astr", + "vmanta": "bifrost-voucher-manta", + "$bud": "big-bud", + "bdp": "big-data-protocol", + "bde": "big-defi-energy", + "big": "big-eyes", + "$floppa": "big-floppa", + "bigf": "bigfoot-monster", + "panda": "panda-swap", + "bigroo": "big-roo", + "bigsb": "bigshortbets", + "bigtime": "big-time", + "tom": "tom-finance", + "mbtyc": "big-tycoon", + "biis": "biis-ordinals", + "brt": "bikerush", + "tryb": "bilira", + "billi": "billion-dollar-dog-runes", + "bpc": "brave-power-crystal", + "bdc": "billion-dollar-cat-runes", + "bhc": "black-hole-coin", + "bvt": "bovineverse-bvt", + "bill": "bill-the-bear", + "billy": "billy", + "bim": "bim", + "bimbo": "bimbo-the-dog", + "bmon": "binamon", + "btcb": "bitcoin-on-base", + "bsc-usd": "binance-bridged-usdt-bnb-smart-chain", + "beth": "okx-beth", + "bch": "bitcoin-cash", + "busd": "thundercore-bridged-busd-thundercore", + "ada": "cardano", + "doge": "doge-on-pulsechain", + "eos": "eos", + "fil": "filecoin", + "firo": "zcoin", + "iotx": "iotex", + "ltc": "litecoin", + "ont": "ontology", + "dot": "xcdot", + "xrp": "warioxrpdumbledoreyugioh69inu", + "bbtc": "bouncebit-btc", + "byte": "byteonblast", + "bnry": "binary-holdings", + "0101": "binary-swap", + "bnx": "binaryx-2", + "bcnt": "bincentive", + "bin": "binemon", + "catbingolo": "bingo-2", + "bingo": "bingo-3", + "bingus": "bingus-the-cat", + "bsr": "binstarter", + "char": "biochar", + "bkpt": "biokript", + "sbkpt": "biokriptx", + "biofi": "biometric-financial", + "$biop": "biop", + "biot": "biopassport", + "bopb": "biopop", + "bios": "bios", + "bip1": "bip1", + "bir": "birake", + "birb": "birb-3", + "birddog": "bird-dog-on-sol", + "$birdie": "birdie", + "birds": "birdies", + "bird": "luckybird", + "birdón": "birdon", + "birdtoken": "birdtoken", + "biskit": "biskit-protocol", + "bis": "bismuth", + "biso": "biso", + "bist": "bistroo", + "b2m": "bit2me", + "bitard": "bitard", + "btrs": "bitball-treasure", + "bama": "bitbama", + "bitbedr": "bitbedr", + "bbt": "bitboost", + "brawl": "bitbrawl", + "bcna": "bitcanna", + "castle": "bitcastle", + "bitcat": "bitcat", + "blok": "bloktopia", + "bitci": "bitcicoin", + "boge": "boge", + "bedu": "bitci-edu", + "brace": "bitci-racing-token", + "btx": "bitnex-ai", + "cat": "sol-cat", + "bcs": "bitclouds", + "btc2": "bitcoin-2", + "btc20": "bitcoin20", + "btc2.0": "bitcoin-2-0", + "bitcoinai": "bitcoin-ai", + "bca": "bitcoiva", + "btc.b": "bitcoin-avalanche-bridged-btc-b", + "btcbam": "bitcoinbam", + "bbcc": "bitcoin-black-credit-card", + "btc.z": "bitcoin-bridged-zed20", + "cdy": "bitcoin-candy", + "bsv": "bsv", + "1cat": "bitcoin-cats", + "bcd": "blockchat", + "bitwallet": "bitcoin-e-wallet", + "bcf": "bitcoin-fast", + "god": "god-coin", + "btg": "bitcoin-gold", + "btcinu": "bitcoin-inu", + "bnsx": "bitcoin-name-service-system", + "btcpay": "bitcoin-pay", + "xbc": "bitcoin-plus", + "btcs": "btcs", + "btcw": "bitcoinpow", + "btcp": "bitcoin-pro", + "puppet": "puppet-on-sol", + "bsov": "bitcoinsov", + "xbtx": "bitcoin-subsidium", + "bitton": "bitcoin-ton", + "btct": "bitcoin-trc20", + "btty": "bitcointry-token", + "btcusd": "bitcoin-usd-btcfi", + "btcv": "bitcoin-vault", + "btcvb": "bitcoinvb", + "wzrd": "wizardia", + "bcx": "blockx", + "btcz": "bitcoinz", + "cone": "honeywood", + "bdt": "blackdragon-token", + "bf": "bitforex", + "bgvt": "bit-game-verse-token", + "bitg": "bitgate", + "wish": "bitgenie", + "bgb": "bitget-token", + "bwb": "bitget-wallet-token", + "bgai": "bitgrok-ai", + "bth": "bit-hotel", + "kub": "bitkub-coin", + "marks": "marksman", + "btmt": "bitmarkets-token", + "bmx": "bmx", + "bmex": "bitmex-token", + "btn": "butane-token", + "bito": "bito-coin", + "bitorb": "bitorbit", + "btrm": "bitrium", + "best": "bitpanda-ecosystem-token", + "bpro": "bitpro", + "brise": "bitrise-token", + "brock": "bitrock", + "brw": "bitrock-wallet-token", + "btr": "btrips", + "brune": "bitrunes", + "bits": "bitswap", + "btscrw": "bitscrow", + "bcut": "bitscrunch-token", + "bts": "bitshares", + "shiba": "shiba-armstrong", + "btsg": "bitsong", + "spwn": "bitspawn", + "$bssb": "bitstable-finance", + "store": "bit-store-coin", + "tao": "tao-meme", + "bitt": "bittoken", + "btt": "bittorrent", + "bttold": "bittorrent-old", + "bwt": "bittwatt", + "tbo": "biturbo", + "bitv": "bitvalley", + "bitx": "bitx", + "bxr": "bitxor", + "bty": "bityuan", + "biu": "biu-coin", + "bi": "bivreost", + "biza": "bizauto", + "black": "black-token", + "bccoin": "blackcardcoin", + "blk": "blackcoin", + "blackcroc": "blackcroc", + "blackdragon": "black-dragon", + "blkc": "blackhat-coin", + "blf": "blacklatexfist", + "bplc": "blackpearl-chain", + "bpx": "black-phoenix", + "bpt": "blackpool-token", + "buidl": "blackrock-usd-institutional-digital-liquidity-fund", + "bs": "bullshits404", + "bwl": "blackwater-labs", + "blacky": "blacky", + "blade": "bladeswap", + "blank": "blank", + "blarb": "blarb", + "blast": "safeblast", + "btard": "blastardio", + "bd": "blastdex", + "disp": "blast-disperse", + "blstr": "blaster", + "$bres": "blastfi-ecosystem-token", + "bfx": "blast-futures-token", + "hoge": "hoge-finance", + "bpepe": "blastin-pepes", + "bnet": "blastnet", + "off": "blastoff", + "blastup": "blastup", + "bsol": "blazestake-staked-sol", + "blazex": "blazex", + "blendr": "blendr-network", + "blepe": "blepe-the-blue", + "blerf": "blerf", + "blec": "bless-global-credit", + "bles": "blind-boxes", + "blin": "blin-metaverse", + "blt": "bullets", + "blitz": "blitz-labs", + "blob": "blob-avax", + "blobs": "blobs", + "bly": "blocery", + "block": "blocknet", + "arcas": "block-ape-scissors", + "bbox": "blockbox", + "bcdn": "blockcdn", + "bcb": "blockchain-bets", + "brwl": "blockchain-brawlers", + "bcdt": "blockchain-certified-data-token", + "xccx": "blockchaincoinx", + "bcug": "blockchain-cuties-universe-governance", + "bcl": "blockchain-island", + "bcmc": "blockchain-monster-hunt", + "bcp": "blockchainpoland", + "guild": "blockchainspace", + "defend": "blockdefend-ai", + "bdrop": "blockdrop", + "bgpt": "blockgpt", + "bls": "bluesale", + "lrds": "blocklords", + "mate": "virtumate", + "remit": "blockremit", + "bro$": "blockrock", + "blocks": "blocks", + "blc": "blockscape", + "$forge": "blocksmith-labs-forge", + "bspt": "blocksport", + "bst": "blockstar", + "stx": "stox", + "bton": "blockton", + "tools": "tools", + "vee": "vee-finance", + "bloc": "stasis-network", + "blocx": "blocx-2", + "bpad": "blokpad", + "blood": "impostors-blood", + "bc": "old-bitcoin", + "$bls": "bloodloop", + "bony": "bloody-bunny", + "bloom": "bloomer", + "cdt": "collateralized-debt-token", + "blox": "the-blox-project", + "bxc": "bloxies-coin", + "blxm": "bloxmove-erc20", + "myrc": "blox-myrc", + "blu": "blubird", + "blub": "blub", + "blubi": "blubi", + "bla": "blueart", + "benx": "bluebenx-2", + "blb": "blueberry", + "bcor": "bluecore", + "blue": "the-cat-is-blue", + "bluefloki": "bluefloki", + "booby": "blue-footed-booby", + "bluefrog": "blue-frog", + "kirby": "blue-kirby", + "bldt": "bluelotusdao", + "move": "movement", + "$blue": "blue-on-base", + "oblue": "blueprint-oblue", + "blues": "blueshift", + "bluesparrow": "bluesparrow-token", + "whale": "white-whale", + "blunny": "blunny", + "blur": "blur", + "blurt": "blurt", + "blz": "bluzelle", + "bw": "blwise", + "bm2k": "bm2k", + "bmax": "bmax", + "bmt": "bmchain-token", + "bmoney": "brett-is-based", + "$bmp": "bmp", + "wmlt": "bmx-wrapped-mode-liquidity-token", + "koge": "bnb48-club-token", + "bbk": "bnb-bank", + "poseidon": "bnb-cat", + "bnbd": "bnb-diamond", + "bee": "globees", + "bnbking": "bnbking", + "pets": "solpets", + "bnbtiger": "bnbtiger", + "$bnbtiger": "bnb-tiger", + "bnb whales": "bnb-whales", + "swipes": "bndr", + "bnvda": "bndva-backed-nvidia", + "b3x": "bnext-b3x", + "bnsd": "bnsd-finance", + "bns": "bns-token", + "fa$h": "bnv", + "bob": "bob-token", + "boba": "boba-network", + "psps": "bobacat", + "bfi": "boba-finance", + "bobaoppa": "boba-oppa", + "bobby": "independence-token", + "bobc": "bobcoin", + "bobo": "bobo-the-bear", + "bobs": "bobs", + "bobuki": "bobuki-neko", + "chica": "chica-chain", + "bodav2": "boda-token", + "bodge": "bodge", + "bdrm": "bodrumspor-fan-token", + "bait": "body-ai", + "boe": "boe", + "bog": "bogged-finance", + "boggy": "boggy-coin", + "bogus": "bogus", + "$bojack": "bojack", + "boai": "bolic-ai", + "boli": "bolivarcoin", + "bolly": "paje-etdev-company", + "bolt": "huebel-bolt", + "$bolt": "bolt-token-023ba86e-eb38-41a1-8d32-8b48ecfcb2c7", + "bomb": "lollybomb", + "bombo": "bombo", + "bclat": "bomboclat", + "boom": "the-wonders", + "bome 2.0": "bome-ai", + "bcro": "bonded-cronos", + "bdxn": "bondex", + "bondly": "bondly", + "bone": "bone-token", + "$boner": "boner", + "bswp": "bonerium-boneswap", + "bones": "soul-dog-city-bones", + "fida": "bonfida", + "bonfire": "bonfire", + "bong": "bonk-wif-glass", + "bongo": "bongo-cat", + "bonk": "bonk-on-eth", + "bonk 2.0": "bonk-2-0", + "bonk2.0": "bonk-2-0-sol", + "boby": "bonkbaby", + "bonkbest": "bonkbest", + "bonke": "bonke-base", + "bern": "bonkearn", + "bonkgrok": "bonk-grok", + "bonki": "bonk-inu", + "bok": "bonklana", + "bonkfa": "bonk-of-america", + "bonksol": "bonk-staked-sol", + "bif": "bonkwifhat", + "bonsai": "bonsai-token", + "seed": "seed-photo", + "bonsaicoin": "bonsai-coin", + "bnsai": "bonsai-network", + "bonte": "bontecoin", + "bonus": "bonusblock", + "bnyta": "bonyta", + "bonzai": "bonzai-depin", + "$boo": "boo-2", + "boofi": "boo-finance", + "stuff": "book-2", + "boam": "book-of-ai-meow", + "babybome": "book-of-baby-memes", + "bobe": "book-of-billionaires", + "boob": "book-of-bitcoin", + "$boob": "bookofbullrun", + "boobz": "book-of-buzz", + "bode": "book-of-derp", + "bomedoge": "book-of-doge-memes", + "dyor": "find-check", + "booe": "book-of-ethereum", + "bome": "book-of-meme", + "bome2": "book-of-meme-2-0", + "bomeow": "book-of-meow", + "bope": "book-of-pepe", + "bopi": "book-of-pumpfluencers", + "bool": "bool", + "boomer": "boomers-on-sol", + "xboo": "boo-mirrorworld", + "boop": "boop-2", + "boosey": "boosey", + "boost": "podfast", + "blusd": "boosted-lusd", + "booty": "pirate-dice", + "boppy": "boppy-the-bat", + "bora": "bora", + "bdcl bsc": "bordercolliebsc", + "brl": "borealis", + "$bored": "bored", + "boring": "boringdao", + "bor": "boringdao-[old]", + "bop": "boring-protocol", + "boris": "boris", + "bork": "bork-2", + "borpa": "borpa", + "gorples": "borpatoken", + "borzoi": "borzoi-coin", + "boa": "bosagora", + "boshi": "boshi", + "boson": "boson-protocol", + "boss": "bossswap", + "bossie": "bossie", + "boot": "bostrom", + "botc": "bot-compiler", + "btop": "botopiafinance", + "botto": "botto", + "bto": "bottos", + "botx": "botxcoin", + "bbusd": "bouncebit-usd", + "dvd": "bouncing-dvd", + "seals": "bouncing-seals", + "bountie": "bountie-hunter", + "bnty": "bounty0x", + "yu": "bountykinds-yu", + "bmc": "bountymarketcap", + "tyt": "bounty-temple", + "bowie": "bowie", + "bwld": "bowled-io", + "bxbt": "boxbet", + "b-dao": "box-dao", + "box": "defibox", + "boysclub": "matt-furie-s-boys-club", + "$boys": "boysclubbase", + "munchy": "boys-club-munchy", + "bozo": "the-official-bozo", + "bpinky": "bpinky", + "brc": "bracelet", + "brainers": "brainers", + "brain": "sebra-ai", + "brainlet": "brainlet-2", + "rot": "brainrot", + "syncbrain": "brain-sync", + "btrst": "braintrust", + "bworm": "brain-worms", + "brand": "brandpad-finance", + "brcbot": "brc20-bot", + "bd20": "brc-20-dex", + "brcx": "brc20x", + "brct": "brc-app", + "brc20": "ordg", + "brcst": "brcstarter", + "brd": "bread", + "breed": "breederdao", + "brepe": "brepe", + "$brett": "brett0x66", + "brett2.0": "brett-2-0", + "brettei": "brettei", + "brettgold": "brett-gold", + "krett": "brett-killer", + "balt": "brett-s-cat", + "brogg": "brett-s-dog", + "$bif": "brettwifhat", + "brewlabs": "brewlabs", + "brex": "brex", + "coin": "swapbased-coin", + "brai": "bribeai", + "brick": "brick-token", + "brx": "bricks-exchange", + "brics": "brics-chain", + "gador": "bridgador", + "sandr": "bridged-andromeda", + "arb.e": "bridged-arbitrum-lightlink", + "link.e": "chainlink-plenty-bridge", + "crv": "curve-dao-token", + "dai[hts]": "bridged-dai-stablecoin-hashport", + "dai": "skale-ima-bridged-dai", + "dog•go•to•the•moon": "bridged-dog-go-to-the-moon", + "knc_b": "bridged-kyber-network-crystal-bsc", + "knc_e": "bridged-kyber-network-crystal-ethereum", + "lobo•the•wolf•pup": "bridged-lobo-the-wolf-pup", + "trump": "pepe-3", + "om[hts]": "bridged-mantra-hashport", + "matic.e": "matic-plenty-bridge", + "reth": "rocket-pool-eth", + "usdt[hts]": "bridged-tether-hashport", + "usdt.e": "tether-rainbow-bridge", + "jusdt": "bridged-tether-ton-bridge", + "tia.n": "bridged-tia-hyperlane", + "tusd": "true-usd", + "unieth": "universal-eth", + "uni.e": "bridged-uniswap-lightlink", + "usdc.e": "usdc-rainbow-bridge", + "usdbc": "bridged-usd-coin-base", + "jusdc": "jones-usdc", + "usdt.z": "bridged-usdt-zedxion", + "weeth": "wrapped-eeth", + "wagora": "bridged-wrapped-agora-genesis-bridge", + "wbtc[hts]": "bridged-wrapped-bitcoin-hashport", + "jwbtc": "bridged-wrapped-bitcoin-ton-bridge", + "wbtc.e": "wbtc-plenty-bridge", + "weth[hts]": "bridged-wrapped-ether-hashport", + "whbar": "wrapped-hbar", + "wsteth": "wrapped-steth", + "axl-wsteth": "bridged-wrapped-steth-axelar", + "bmi": "bridge-mutual", + "brg": "bridge-oracle", + "bri": "brightpool", + "brix": "brix-gaming", + "bright": "bright-union", + "brish": "brish", + "britt": "britt", + "briun": "briun-armstrung", + "brn": "brn-metaverse", + "broc": "broccoli-the-gangsta", + "broge": "broge", + "$broke": "broke-again", + "brokie": "brokieinu", + "broton": "brokie-on-ton", + "bro": "brokkr", + "brkl": "brokoli", + "broot": "broot", + "brs": "broovs-projects", + "brr": "brr-protocol", + "bruh": "bruh", + "bruv": "bruv", + "brz": "brz", + "bscx": "bscex", + "bscm": "bscm", + "bscpad": "bscpad", + "start": "bscstarter", + "bscs": "bsc-station", + "bsk": "bsk", + "bscl": "bsocial-2", + "btaf": "btaf-token", + "btc2x-fli": "btc-2x-flexible-leverage-index", + "btcmeme": "btcmeme", + "btcpx": "btc-proxy", + "btcst": "btc-standard-hashrate-token", + "btf": "btf", + "msot": "btour-chain", + "btse": "btse-token", + "btu": "btu-protocol", + "bubba": "bubba", + "bubble": "imaginary-ones", + "bbf": "bubblefong", + "bub": "lil-bub-on-sol", + "bubsy": "bubsy-ai", + "brrr": "burrow", + "buck": "coinbuck", + "bhig": "buckhath-coin", + "bucky": "bucky", + "buddha": "buddha", + "buddy": "buddyai", + "buff": "buff-coin", + "dogecoin": "ragingelonmarscoin", + "buffs": "buffswap", + "buffy": "buffy", + "bug": "bug", + "bugs": "bugs-bunny", + "build": "buildai", + "bul": "bul", + "bulei": "bulei", + "bull": "terrier", + "aibb": "bullbear-ai", + "bullet": "bullet-game", + "bullish": "bullish", + "$bmc": "bullishmarketcap", + "$bull": "bull-run-solana", + "blp": "bullperks", + "brbc": "bull-run-bets", + "bsf": "bull-star-finance", + "bully": "bully-ze-bull", + "bumn": "bumoon", + "bump": "bumper", + "buna": "buna-games", + "bndl": "bundl", + "bund": "bundles", + "buni": "bunicorn", + "bunk": "bunkee", + "bg": "bunnypark-game", + "polybunny": "bunny-token-polygon", + "buy": "buying", + "burger": "burger-swap", + "burn": "smoked-token-burn", + "bfy": "burnify", + "circle": "you-looked", + "burnking": "burnking", + "burns": "burnsdefi", + "burp": "burp", + "burry": "burrial", + "burrrd": "burrrd", + "tmsh": "bursaspor-fan-token", + "rspn": "busdx", + "busy": "busy-dao", + "butter": "butter-2", + "solvbtc": "solv-btc", + "butt": "buttman", + "bfly": "butterfly-protocol-2", + "dip": "etherisc", + "infra": "infrax", + "bxh": "bxh", + "bxn": "bxn", + "byat": "byat", + "epix": "byepix", + "bypass": "bypass", + "gbyte": "byteball", + "bnu": "bytenext", + "btm": "bytom", + "bze": "bzedge", + "bzet": "bzetcoin", + "bzrx": "bzx-protocol", + "caave": "caave", + "cabal": "cabal", + "caca": "caca", + "cacao": "cacao", + "cacom": "cacom", + "abra": "cadabra-finance", + "wcadai": "cadai", + "cad": "cadence-protocol", + "cbon": "cadinu-bonus", + "cdg": "cadog", + "cmp": "coinmarketprime", + "caesar": "caesar-s-arena", + "cbs": "cagdas-bodrumspor-fan-token", + "ca": "curiosityanon", + "cicc": "caica-coin", + "cbank": "cairo-finance-cairo-bank", + "jenner": "caitlyn-jenner-eth", + "caj": "cajutel", + "cakebot": "cakebot-2", + "monsta": "cake-monster", + "ckp": "cakepie-xyz", + "kma": "calamari-network", + "clxy": "calaxy", + "cal": "calorie", + "cali": "calicoin", + "0xc": "callhub", + "clo": "callisto", + "come": "community-of-meme", + "chiln": "calm-bear-on-solana", + "cml": "camelcoin", + "clot": "camelot-protocol", + "grail": "camelot-token", + "camly": "camly-coin", + "cdn": "ceden", + "cadinu": "canadian-inuit-dog-2", + "cnr": "canary", + "crb": "canary-reborn", + "cndl": "candle-ai", + "candle": "candle-cat", + "cft": "rc-celta-de-vigo-fan-token", + "crt": "cantina-royale", + "canto": "canto", + "crab": "crabby", + "cohm": "cantohm", + "cinu": "canto-inu", + "cpp": "cantosino-com-profit-pass", + "glr": "glory-token", + "can": "channels", + "cau": "canxium", + "cds": "cats-do-something", + "cr": "chromium-dollar", + "capone": "capone", + "cwr": "capo-was-right", + "capp": "cappasity", + "capri": "caprisun-monkey", + "ctp": "ctomorrow-platform", + "tsugt": "captain-tsubasa", + "capy": "capybara-token", + "bara": "capybara-memecoin", + "cby": "cloud-binary", + "carbon": "carbon", + "csix": "carbon-browser", + "carb": "carbon-labs", + "cct": "coughing-cat", + "cet": "degen-cet", + "cnb": "coinsbit-token", + "c4": "cardano-crocs-club", + "cgi": "cardanogpt", + "carda": "cardanum", + "$crdn": "cardence", + "cardi": "cardinals", + "crdc": "cardiocoin", + "cards": "cards", + "card": "cardstack", + "care": "carecoin", + "cxo": "cargox", + "carlo": "carlo", + "carmin": "carmin", + "carr": "carnomaly", + "her": "herity-network", + "carol": "caroltoken", + "cvtx": "carrieverse", + "cre": "crypto-real-estate", + "cartel": "cartel-coin-2", + "ctsi": "cartesi", + "$cartman": "cartman", + "carv": "carv", + "cv": "carvertical", + "cc": "crypto-clubs-app-2", + "cbp": "cashbackpro", + "cab": "cashcab", + "$cats": "cats-in-the-sats", + "cow": "cow-protocol", + "cd": "cash-driver", + "ctt": "cryptotycoon", + "csc": "casinocoin", + "casinu": "casinu-inu", + "cspr": "casper-network", + "cspd": "casperpad", + "cassie 🐉": "cassie-dragon", + "cast": "castello-coin", + "cobe": "castle-of-blackwater", + "whales": "whales-market", + "cata": "catamoto", + "atd": "catapult", + "cabo": "catbonk", + "catboy": "catboy-4", + "catceo": "catceo", + "catch": "spacecatch", + "catchi": "catchiliz", + "catchy": "catchy", + "cats": "ton-cats-jetton", + "catdog": "cat-dog", + "cate": "catecoin", + "catex": "catex", + "catt": "catex-token", + "catfish": "catfish", + "catfrogdogshark": "catfrogdogshark", + "catge": "catge-coin", + "cgf": "cat-getting-fade", + "catgirl": "catgirl", + "optig": "catgirl-optimus", + "catgpt": "catgpt", + "cgo": "comtech-gold", + "catheon": "catheon-gaming", + "boxeth": "cat-in-a-box-ether", + "boxfee": "cat-in-a-box-fee-token", + "mew": "cat-in-a-dogs-world", + "hodi": "cat-in-hoodie", + "catino": "catino", + "catman": "catman", + "catmouse": "cat-mouse", + "cato": "catocoin", + "eloncat": "elon-cat-2", + "nippy": "cat-on-catnip", + "catour": "catour", + "cok": "catownkimono", + "cts": "cats-coin-1722f9f2-68f8-4ad8-a123-2835ea18abc5", + "cos": "contentos", + "solcat": "catsolhat", + "catstr": "catster", + "mewswifhat": "cats-wif-hats-in-a-dogs-world", + "catvax": "catvax", + "catwif": "catwifhat-3", + "cif": "catwifhat", + "$cwif": "catwifhat-2", + "melon": "melon-dog", + "catx": "catx", + "catz": "catzcoin", + "cavada": "cavada", + "cavat": "cavatar", + "cave": "cave", + "caviar": "caviar-meme", + "cvr": "caviar-3", + "lsulp": "caviarnine-lsu-pool-lp", + "cawceo": "caw-ceo", + "cbdc": "central-bank-digital-currency-memecoin", + "cbyte": "cbyte-network", + "cca": "cca", + "ccash": "c-cash", + "鸡鸡币 (ccb)": "ccb", + "ccc": "cute-cat-token", + "found": "ccfound-2", + "ccgds": "ccgds", + "cchg": "c-charge", + "ccomp": "ccomp", + "cco": "ccore", + "cdai": "cdai", + "cdao": "coredaoswap", + "mcd": "cdbio", + "cbsl": "cebiolabs", + "cdfi": "cedefiai", + "ceek": "ceek", + "ceicat": "ceiling-cat", + "cekke": "cekke-cronje", + "celr": "celer-network", + "tia": "tia", + "celt": "celestial", + "cell": "cellmates", + "celo": "celo-wormhole", + "cusd": "stably-cusd", + "ceur": "celo-euro", + "ckes": "celo-kenyan-shilling", + "creal": "celo-real-creal", + "cel": "celsius-degree-token", + "cxeth": "celsiusx-wrapped-eth", + "cens": "censored-ai", + "cntr": "centaur", + "cent": "centaurify", + "cbit": "centbit", + "cenx": "centcex", + "cennz": "centrality", + "cns": "centric-cash", + "cfg": "centrifuge", + "cix": "centurion-invest", + "crbrus": "cerberus-2", + "neuron": "cerebrum-dao", + "cere": "cere-network", + "ceres": "ceres", + "cerra": "cerra", + "cert": "certicos-2", + "ctk": "cryptyk", + "cerus": "cerus", + "cetes": "cetes", + "ceto": "ceto-swap", + "bceto": "ceto-swap-burned-ceto", + "cetus": "cetus-protocol", + "cfxq": "cfx-quantum", + "cb8": "chabit", + "chadcat": "chad-cat", + "putni": "chadimir-putni", + "xcn": "chain-2", + "c4e": "chain4energy", + "archive": "chainback", + "cbg": "chainbing", + "chaincade": "chaincade", + "crisis": "chain-crisis", + "cex": "coinmart-finance", + "factory": "chainfactory", + "flip": "chainflip", + "cfxt": "chainflix", + "chain": "chain-games", + "xchng": "chainge-finance", + "cgpt": "chaingpt", + "cgg": "chain-guardians", + "ckbtc": "chain-key-bitcoin", + "cketh": "chain-key-ethereum", + "ckusdc": "chain-key-usdc", + "label": "chainlabel", + "link": "chainlink", + "cminer": "chainminer", + "cleg": "chain-of-legends", + "portx": "chainport", + "cp": "cypress", + "mira": "chains-of-war", + "chains": "chainswap-2", + "cswap": "cswap", + "pcx": "chainx", + "zoom": "chainzoom", + "chair": "chair", + "hero": "step-hero", + "chambs": "chambs", + "champz": "champignons-of-arborethia", + "chan": "memechan", + "cag": "change", + "now": "toearnnow", + "cng": "coinnavigator", + "change": "changex", + "cz": "changpeng-zhao", + "chap": "chappie", + "chapz": "chappyz", + "chb": "coinhub", + "static": "chargedefi-static", + "ionx": "charged-particles", + "mich": "charity-alfa", + "chdao": "charity-dao-token", + "c3": "charli3", + "charlie": "charlie", + "charm": "charm", + "cx": "crypto-x", + "cai": "crypto-ai", + "chatai": "chatai", + "chatni": "chatni", + "shield": "shield-protocol-2", + "chatfi": "chatxbt", + "chax": "chax", + "check": "check", + "checkr": "checkerchain", + "checks": "checks-token", + "checoin": "checoin", + "chedda": "chedda-2", + "cheeks": "cheeks", + "dawg": "dawg-coin", + "cheel": "cheelee", + "cheems": "cheems-token", + "cheepepe": "cheepepe", + "cheers": "cheersland", + "cheese": "cheese-swap", + "ccake": "cheesecakeswap", + "cheesed": "cheesed", + "chta": "cheetahcoin", + "cheez": "cheezburger-cat", + "cheng": "chengshi", + "cheq": "cheqd-network", + "chry": "cherrylend", + "cher": "cherry-network", + "chess": "tranchess", + "cfsh": "chessfish", + "chew": "chew", + "chwy": "chwy", + "chewy": "chewyswap", + "chexbacca": "chexbacca", + "chex": "chex-token", + "xch": "chia", + "chiba": "chiba-neko", + "chibi": "chibi", + "kfc": "kungfu-cat", + "chkn": "chickencoin", + "chickentown": "chicken-town", + "chicky": "chicky", + "ctg": "cryptorg-token", + "cto": "chief-troll-officer-3", + "hua": "chihuahua", + "chih": "chihuahuasol", + "huahua": "chihuahua-token", + "chiitan": "chiitan", + "ckc": "chikincoin", + "egg": "waves-ducks", + "feed": "feeder-finance", + "fert": "chikn-fert", + "worm": "chikn-worm", + "o": "childhoods-end", + "caf": "childrens-aid-foundation", + "$cs": "child-support", + "chili": "chili", + "chz": "chiliz", + "chzinu": "chiliz-inu", + "$chill": "chillwhales", + "chilly": "chilly", + "wchi": "chimaera", + "cult": "cult-dao", + "chmpz": "chimpzee-chmpz", + "andwu": "chinese-andy", + "chrett": "chinese-brett", + "cnyd": "chinese-ny-dragon", + "peipei": "peipei-sol", + "ctoshi": "chinese-toshi", + "chinu": "chinu-2", + "chipi": "chipi", + "chippy": "fish-n-chips", + "chi": "chi-usd", + "chirp": "chirp-finance", + "chrp": "chirpley", + "ccy": "choccyswap", + "cho": "choise", + "cholo": "cholo-pepe", + "chomp": "chompcoin", + "chonk": "chonk-the-cat", + "chonky": "chonky", + "choo": "chooky-records", + "rich": "super-cycle", + "choppy": "choppy", + "chow": "chow-chow", + "chch": "chrischan", + "floc": "christmas-floki", + "chr": "chronos-finance", + "xnl": "chronicle", + "chro": "chronicum", + "time": "wonderland", + "sphr": "chronos-worlds-sphere", + "chuanpu": "chuan-pu", + "cakita": "chubbyakita", + "chuchu": "chuchu", + "chuck": "chuck-on-eth", + "chucky": "chucky", + "chud": "chudjak", + "chmb": "chumbai-valley", + "chump": "chump-change", + "chunks": "chunks", + "machina": "church-of-the-machina", + "churro": "churro", + "cia": "furari", + "cias": "cias", + "cicca": "cicca-network", + "cnto": "ciento-exchange", + "cifd": "cifdaq", + "cifi": "circularity-finance", + "cig": "cigarette-token", + "cnd": "coinhound", + "cind": "cindrum", + "$cino": "cinogames", + "cpr": "cipher-2", + "cir": "circleswap", + "coval": "circuits-of-value", + "cirx": "circular-protocol", + "ciri": "ciri-coin", + "circ": "cirque-du-sol", + "cirq": "cirquity", + "cirus": "cirus", + "knight": "knightswap", + "ctl": "twelve-legions", + "xct": "citadel-one", + "fort": "forta", + "citty": "citty-meme-coin", + "toons": "city-boys", + "0ne": "civfund-stone", + "cvc": "civic", + "civ": "civilization", + "ucjl": "cjournal", + "cla": "claimswap", + "clam": "clams", + "torch": "hercules-token", + "col": "clash-of-lilliput", + "clash": "clashub", + "cbtc": "classicbitcoin", + "usc": "usc-2", + "czz": "classzz", + "clay": "clay-nation", + "ccx": "conceal", + "clh": "cleardao", + "cpool": "clearpool", + "cle": "clecoin", + "cleo": "cleopatra", + "$cleo": "cleo-tech", + "clv": "clover-finance", + "clev": "clever-token", + "clfi": "clfi", + "cti": "community-inu", + "clip": "clip-finance", + "clippy": "clippy", + "$clippy": "clippy-ai", + "clips": "clips", + "ct": "cryptotwitter", + "cloak": "cloakcoin", + "cl1mpepe": "cloned-1mpepe", + "clapt": "cloned-aptos", + "clbnb": "cloned-bnb", + "cldoge": "cloned-dogecoin", + "clsui": "cloned-sui", + "clarb": "clone-protocol-clarb", + "clop": "clone-protocol-clop", + "clore": "clore-ai", + "closedai": "super-closed-source", + "cld": "crystal-diamond", + "cloud": "solcloud", + "clbk": "cloudbric", + "ccfi": "cloudcoin-finance", + "cmnd": "cloudmind-ai", + "cxm": "cloud-mining-technologies", + "cname": "cloudname", + "cnai": "cloudnet-ai", + "cpet": "cloud-pet", + "ccs": "cloutcontracts", + "clown": "clown-sol", + "honk": "pepoclown", + "clp": "clp", + "chvs": "club-deportivo-fan-token", + "galo": "clube-atletico-mineiro-fan-token", + "mpwr": "clubrare-empower", + "san": "santiment-network-token", + "clu": "clucoin", + "cms": "cmusicai", + "cneta": "cneta", + "cnht": "cnh-tether", + "cnns": "cnns", + "co2": "co2dao", + "coal": "coalculus", + "cst": "crypto-samurai", + "cbk": "coinback", + "coban": "coban", + "cob": "cobra-king", + "coc": "coin-of-the-champions", + "cpoo": "cockapoo", + "$ccc": "coconut-chicken", + "combo": "furucombo", + "coda": "coda", + "codai": "codai", + "$codeg": "codegenie", + "coai": "codemong-ai-games", + "code": "code-token", + "cdx": "crossdex", + "codex": "codex-multichain", + "dino": "dinoswap", + "ctok": "codyfight", + "coffee": "coffee-club-token", + "cofi": "coinfi", + "coge": "cogecoin", + "cgntsol": "cogent-sol", + "cgv": "cogito-protocol", + "c98": "coin98", + "cyt": "coinary-token", + "cbpay": "coinbarpay", + "dcoin": "cryptodeliverycoin", + "cbeth": "coinbase-wrapped-staked-eth", + "cfi": "cyberfi", + "cbe": "coinbidex", + "coinbt": "coinbot", + "caps": "coin-capsule", + "clm": "coinclaim", + "collect": "coincollect", + "scc": "stakecube", + "cnct": "coinecta", + "edel": "coin-edelweis", + "amlt": "coinfirm-amlt", + "cnfrg": "coinforge", + "grab": "coingrab", + "comew": "coin-in-meme-world", + "clt": "coinloan", + "clyc": "coinlocally", + "cmai": "coinmatch-ai", + "cmos": "coinmerge-os", + "xcm": "coinmetro", + "mooner": "coinmooner", + "con": "coin-of-nature", + "chp": "coinpoker", + "crace": "coinracer", + "cracer": "coinracer-reloaded", + "coinsale": "coinsale-token", + "trau": "coin-trau", + "cwt": "crosswallet", + "cnw": "crypto-network", + "cweb": "coinweb", + "cxpad": "coinxpad", + "coinye": "coinye-west", + "zix": "coinzix-token", + "cola": "cola-token-2", + "scb": "sacabam", + "cls": "coldstack", + "zeum": "colizeum", + "collab": "collab-land", + "colt": "collateral-network", + "colle": "colle-ai", + "gtm": "colonizemars", + "cly": "colony", + "clny": "marscolony", + "colx": "colossuscoinxt", + "$colr": "colr-coin", + "coma": "compound-meta", + "fire": "the-phoenix", + "cmdx": "comdex", + "comet": "comet-token", + "cmn": "common", + "wlth": "common-wealth", + "comai": "commune-ai", + "cbt": "community-business-token", + ".com": "com-ordinals", + "cbot": "companionbot", + "cpc": "cryptoperformance-coin", + "cmfi": "compendium-fi", + "cmst": "composite", + "czrx": "compound-0x", + "cbat": "compound-basic-attention-token", + "clink": "compound-chainlink-token", + "ceth": "compound-ether", + "comp": "compound-governance-token", + "cmkr": "compound-maker", + "csushi": "compound-sushi", + "cuni": "compound-uniswap", + "cusdc": "compound-usd-coin", + "cwbtc": "compound-wrapped-btc", + "cyfi": "compound-yearn-finance", + "dcn": "dentacoin", + "cpu": "cpucoin", + "yvcomp": "comp-yvault", + "csas": "comsats", + "conan": "conan-2", + "cnv": "concave", + "cvp": "concentrated-voting-power", + "ctr": "creator-platform", + "cvt": "cybervein", + "ccd": "copycat-dao", + "condo": "condo", + "cntp": "conet-network", + "cfx": "cosmic-force-token-v2", + "cnc": "cornatto", + "coni": "coniun", + "cnfi": "connect-financial", + "cntm": "connectome", + "conx": "connex", + "next": "shopnext-loyalty-token", + "cvn": "consciousdao", + "dag": "constellation-labs", + "people": "maga-people-token", + "ctn": "core-token-2", + "um": "continuum-world", + "ctcn": "contracoin", + "0xdev": "contract-dev-ai", + "ctus": "contractus", + "cycon": "conun", + "converge": "converge-bot", + "conv": "convergence", + "cvg": "convergence-finance", + "cjpy": "convertible-jpy-token", + "cvxcrv": "convex-crv", + "cvx": "convex-finance", + "cvxfpis": "convex-fpis", + "cvxfxn": "convex-fxn", + "cvxfxs": "convex-fxs", + "cvxprisma": "convex-prisma", + "conviction": "conviction", + "cook": "cook-3", + "ccat": "cook-cat", + "cookie": "cookiebase", + "catgame": "cookie-cat-game", + "♨": "cook-the-mempool", + "cool": "coolcoin", + "coomer": "coomer", + "coop": "coop-coin", + "cope": "cope-token", + "cop": "copiosa", + "copycat": "copycat-finance", + "coq": "coq-inu", + "coral": "coral-swap", + "cmcx": "core", + "core": "cvault-finance", + "xcb": "crypto-birds", + "coredao": "coredao", + "cid": "core-id", + "coke": "core-keeper", + "cstr": "corestarter", + "cor": "coreto", + "coreum": "coreum", + "corgi": "welsh-corgi", + "corgiai": "corgiai", + "corgiceo": "corgi-ceo", + "corx": "corionx", + "co": "corite", + "crtb": "coritiba-f-c-fan-token", + "corn": "solanacorn", + "cdog": "corn-dog", + "cmt": "cornermarket", + "copi": "cornucopias", + "oooi": "corridor-finance", + "ctxc": "cortex", + "crtx": "cortexloop", + "lpu": "cortexlpu", + "cosa": "cosanta", + "coshi": "coshi-inu", + "cosmic": "cosmicswap", + "cosg": "cosmic-champs", + "$cosmic": "cosmic-on-base", + "magick": "cosmic-universe-magic-token", + "cbaby": "cosmo-baby", + "atom": "cosmos", + "cot": "cotrader", + "coss": "coss-2", + "cost": "costco-hot-dog", + "coti": "coti", + "gcoti": "coti-governance-token", + "cgs": "cougar-token", + "cbtm": "could-be-the-move", + "ccxx": "counosx", + "xcp": "counterparty", + "cup": "couponbay", + "cqt": "covalent", + "cxt": "covalent-x-token", + "cove": "cove-dao", + "covn": "covenant-child", + "cov": "covesting", + "coveyfi": "cove-yfi", + "cowrie": "cowrie", + "cozy": "cozy-pepe", + "cpiggy": "cpiggy-bank-token", + "cra": "cracle", + "crf": "crafting-finance", + "$cramer": "cramer-coin", + "crappy": "crappy-bird", + "crash": "crash-on-base", + "crate": "crate", + "crts": "cratos", + "crazybunny": "crazy-bunny", + "cbunny": "crazy-bunny-equity-token", + "crazy": "crazy-frog", + "frog": "frogswap-2", + "cmonk": "crazy-monkey", + "crazypepe": "crazypepe-2", + "crc": "crazyrabbit", + "crazytiger": "crazy-tiger", + "crds": "crds", + "crm": "crimson", + "cream": "creamlands", + "creamy": "creamy", + "cre8": "creaticles", + "creatopy": "creatopy-builder", + "cret": "creat-or", + "cbab": "crebit-2", + "$cbl": "credbull", + "cred": "cred-coin-pay", + "credi": "credefi", + "credit": "credit-2", + "ctc": "creditcoin-2", + "cs": "credits", + "cremat": "cremation-coin", + "creo": "creo-engine", + "mnlt": "crescentswap-moonlight", + "xcre": "cresio", + "creta": "creta-world", + "cri3x": "cri3x", + "cric": "cricket-foundation", + "csm": "crust-storage-market", + "crimson": "crimson-network", + "seat": "seatlabnft", + "croak": "croakey", + "$croak": "croak_on_linea", + "vatreni": "croatian-ff-fan-token", + "crob": "cropto-barley-token", + "croc": "cropto-corn-token", + "crocdog": "crocdog", + "crochet": "crochet-world", + "$croco": "croco", + "crx": "mind-games-cortex", + "crodie": "crodie", + "crofam": "crofam", + "croge": "crogecoin", + "croginal": "croginal-cats", + "croissant": "croissant-games", + "crk": "croking", + "clmrs": "crolon-mars", + "crona": "cronaswap", + "cronk": "cronk", + "cronon": "crononymous", + "croid": "cronos-id", + "vrse": "cronosverse", + "cronus": "cronus", + "cbx": "cropbytes", + "crp": "utopia", + "crof": "cropto-hazelnut-token", + "crow": "night-crows", + "cros": "cros", + "bridge": "octus-bridge", + "degen": "degenstogether", + "ciotx": "crosschain-iotx", + "crfi": "crossfi", + "xfi": "xfinance", + "cta": "cyber-tesla-ai", + "crowd": "crowdswap", + "crw": "crown", + "crown": "crown-token-77469f91-69f6-44dd-b356-152e2c39c0cc", + "cws": "crowns", + "csov": "crown-sovereign", + "crwny": "crowny-token", + "crox": "crox", + "crtai": "crt-ai-network", + "oil": "petroleum-oil", + "crunch": "crunchcat", + "crdao": "crunchy-dao", + "crnchy": "crunchy-network", + "crusader": "crusaders-of-crypto", + "crust": "crust-exchange", + "cru": "crust-network", + "crux": "cryptomines-reborn", + "crvusd": "curve-fi-usd-stablecoin-stargate", + "cryn": "cryn", + "cryo": "cryodao", + "cwar": "cryowar-token", + "crypsi": "crypsi-coin", + "cpt": "cryptaur", + "crpt": "crypterium", + "ctx": "cryptex-finance", + "cryptiq": "cryptiq-web3", + "c2d": "crypto-2-debit", + "cryptoai": "cryptoai-2", + "cair": "crypto-ai-robo", + "cart": "cryptoart-ai", + "caga": "crypto-asset-governance-alliance", + "cbex": "cryptobank", + "$cbet": "crypto-bet", + "skill": "cryptoblades", + "king": "king-of-memes", + "cyce": "crypto-carbon-energy-2", + "ccr": "cryptocarsreborn", + "ccv2": "cryptocart", + "cht": "cyberharbor", + "chicks": "solchicks-token", + "cch": "cryptocoinhash", + "cro": "crypto-com-chain", + "cdceth": "crypto-com-staked-eth", + "cem": "crypto-emergency", + "xpress": "cryptoexpress", + "cof": "cryptoforce", + "xchf": "cryptofranc", + "crg": "cryptogcoin", + "cgu": "crypto-global-united", + "crgpt": "cryptogpt", + "lai": "lockon-active-index", + "chft": "crypto-holding-frank-token", + "hub": "crypto-hub", + "crh": "crypto-hunters-coin", + "cip": "crypto-index-pool", + "cisla": "crypto-island", + "daddy": "daddy-tate", + "tokki": "cryptokki", + "cku": "cryptoku", + "tech": "tech", + "eternal": "cryptomines-eternal", + "$crypton": "crypton-ai", + "cnf": "crypto-news-flash-ai", + "cprx": "crypto-perx", + "$tos": "cryptopia", + "bcpi": "cryptopia-world", + "ogmf": "cryptopirates", + "cpo": "cryptopolis", + "hoodie": "cryptopunk-7171-hoodie", + "μͼ721": "cryptopunks-721", + "ipunks": "cryptopunks-fraction-toke", + "raider": "crypto-raiders", + "roy": "crypto-royale", + "saga": "saga-2", + "sdg": "shadowfi-2", + "shares": "shares-finance", + "tank": "cryptotanks", + "totem": "dragonmaster-totem", + "ctex": "crypto-tex", + "ctf": "crypto-trading-fund", + "cu": "crypto-unicorns", + "cut": "cryptounity", + "yield": "yield-protocol", + "cvag": "crypto-village-accelerator-cvag", + "zoo": "zookeeper", + "zoon": "cryptozoon", + "crystal": "defi-kingdoms-crystal", + "cpfc": "crystal-palace-fan-token", + "crystl": "crystl-finance", + "nebo": "csp-dao-network", + "csr": "csr", + "ctez": "ctez", + "cth": "cthulhu-finance", + "qub": "cubechain", + "iland": "cuberium", + "cub": "cubigator", + "cbix-p": "cubiex-power", + "cubi": "cubiswap", + "cubt": "cubtoken", + "cuck": "cuckadoodledoo", + "cudos": "cudos", + "culo": "culo", + "$cost": "culture-of-solana-token", + "cuminu": "cuminu", + "cummies": "cumrocket", + "cess": "cumulus-encrypted-storage-system", + "xcur": "curate", + "cure": "cure-token-v2", + "cgt": "curio-gas-token", + "cve": "curvance", + "am3crv": "curve-fi-amdai-amusdc-amusdt", + "crvfrax": "curve-fi-frax-usdc", + "crvrenwsbtc": "curve-fi-renbtc-wbtc-sbtc", + "2crv": "curve-fi-usdc-usdt", + "crvy": "curve-inu", + "cvs": "curveswap", + "cty": "custodiy", + "cthulhu": "cute-cthulhu", + "cvip": "cvip", + "cvpad": "cv-pad", + "cvshot": "cvshots", + "gamer": "gamestation", + "cbr": "cyberblast-token", + "cyber": "cyberpunk-city", + "c-dao": "cyber-dao", + "cydx": "cyberdex", + "cdoge": "cyber-doge-2", + "cydoge": "cyberdoge-2", + "cyfm": "cyberfm", + "cypx": "cyberpixels", + "truck": "cybertruck", + "cybertruck": "cybertruck-2", + "cy": "cyberyen", + "cybonk": "cybonk", + "borg": "swissborg", + "cyba": "cybria", + "cybro": "cybro", + "cyg": "cyclix-games", + "cyc": "cyclone-protocol", + "cys": "cyclos", + "cgusd": "cygnus-finance-global-usd", + "cypepe": "cypepe", + "cypher": "cypher-ai", + "cph": "cypherium", + "czol": "czolana", + "czpw": "czpow", + "d2x": "d2", + "d2": "d2-token", + "d3d": "d3d-social", + "dacat": "dacat", + "d/acc": "d-acc", + "dackie": "dackieswap", + "dacxi": "dacxi", + "dada": "dada-3", + "daddydoge": "daddy-doge", + "dax": "daex", + "dafi": "dafi-protocol", + "xdag": "dagger", + "daii": "daii", + "dkd": "daikodex", + "dau": "daily-active-users", + "dly": "daily-finance", + "dfish": "dailyfish", + "drs": "dai-reflections", + "daisy": "daisy", + "dalgo": "dalgo", + "dall": "dall-doginals", + "dalma": "dalma-inu", + "damex": "damex-token", + "damoon": "damoon", + "beans": "moonbeans", + "triangle": "dancing-triangle", + "dank": "dank", + "ninjaz": "danketsu", + "danzo": "danzo", + "haus": "daohaus", + "vest": "vestige", + "dal": "daolaunch", + "dao": "dao-maker", + "daosol": "daosol", + "daop": "dao-space", + "rice": "daosquare", + "gen": "genesis-2", + "daot": "daoversal", + "$pinchi": "da-pinchi", + "dapp": "dapp", + "appa": "dappad", + "dap": "dap-the-dapper-dog", + "radar": "radar", + "dappx": "dappstore", + "darc": "darcmatter-coin", + "dark": "dark-protocol", + "sky": "sky-raiders", + "dec": "decentralized-runes", + "dknight": "darkknight", + "dmaga": "dark-maga", + "dmagic": "dark-magic", + "dmt": "dream-machine-token", + "dmd": "diamond", + "dks": "darkshield", + "daruma": "daruma", + "kton": "darwinia-commitment-token", + "ring": "ring-protocol", + "dash": "dash", + "d2t": "dash-2-trade", + "dashd": "dash-diamond", + "dasia": "dasia", + "dan": "dastra-network", + "data": "streamr", + "dbrx": "databricks-ai", + "dtx": "databroker-dao", + "dhx": "datahighway", + "lake": "data-lake", + "dmc": "dominica-coin", + "dam": "datamine", + "dop": "drops-ownership-power", + "dav": "data-vital", + "waddup": "dat-boi", + "daumen": "daumenfrosch-2", + "$dave": "dave-coin", + "dc": "donaldcat", + "wtf": "what-the", + "davinci": "davincigraph", + "dvinci": "davinci-jeremie", + "davis": "davis-cup-fan-token", + "dusd": "dusd", + "sdusd": "davos-protocol-staked-dusd", + "daw": "dawkoin", + "dawn": "dawn-protocol", + "dbd": "day-by-day", + "dayl": "daylight-protocol", + "dod": "day-of-defeat", + "dod100": "day-of-defeat-mini-100x", + "dst": "dragon-soul-token", + "toni": "daytona-finance", + "dbk": "dbk", + "dbuy": "doont-buy", + "dbx": "dbx-2", + "dxn": "dbxen", + "dcnx": "dcntrl-network", + "dcm": "ducky-city", + "dili": "d-community", + "dco": "dcoreum", + "ding": "deadpxlz", + "dean": "dean-s-list", + "dep": "deapcoin", + "drace": "deathroad", + "death": "death-token", + "dbio": "debio-network", + "dbr": "dola-borrowing-right", + "dcnt": "decanect", + "dct": "degree-crypto-token", + "decats": "decats", + "dbnb": "decentrabnb", + "dcard": "decentracard", + "dcloud": "decentracloud", + "dce": "ducky-city-earn", + "mana": "decentraland-wormhole", + "dg": "degate", + "ice": "iron-finance", + "dad": "decentralized-advertising", + "dci": "dynamic-crypto-index", + "dcip": "decentralized-community-investment-protocol", + "detf": "decentralized-etf", + "dmcc": "decentralized-music-chain", + "dubi": "decentralized-universal-basic-income", + "dvp": "decentralized-vulnerability-platform", + "dmind": "decentramind", + "dxs": "decentrashop", + "dweb": "decentraweb", + "deod": "decentrawood", + "dmint": "decetralized-minting-atomicals", + "dnode": "decetranode", + "dechat": "dechat", + "del": "decimal", + "dio": "decimated", + "dcr": "diecast-racer", + "dcrn": "decred-next", + "dcb": "decubate", + "dede": "dede-on-sol", + "dedi": "dedium", + "dbc": "digitalbay", + "dpr": "deeper-network", + "fakeai": "deepfakeai", + "deep": "deeployer", + "dfv": "deep-fucking-value-2", + "deepl": "deepl", + "onion": "deeponion", + "deepr": "deepr", + "south": "deepsouth-ai", + "dps": "deepspace", + "wtr": "wateract", + "love": "love-token-2", + "dn": "deez-nuts-erc404", + "nuts": "thetanuts-finance", + "factr": "defactor", + "dfndr": "defender-bot", + "defi": "defiway", + "dfai": "defiai", + "daog": "defi-all-odds-daogame", + "dfiat": "defiato", + "bram": "defibox-bram", + "dfi": "wrapped-dfi", + "defc": "defi-coin", + "dfc": "definder-capital", + "defido": "defino-base", + "dfd": "defido-2", + "dfy": "defi-for-you", + "dchf": "defi-franc", + "dfg": "defigram", + "ddao": "defi-hunters-dao", + "jewel": "defi-kingdoms", + "dfl": "defi-land", + "goldy": "defi-land-gold", + "money": "moremoney-usd", + "fina": "fina", + "dfa": "define", + "fin": "definer", + "defx": "definity", + "dfp2": "defiplaza", + "dpst": "defi-pool-share", + "dpi": "defipulse-index", + "dradar": "defi-radar", + "drbt": "defi-robot", + "dss": "defi-shopping-stake", + "spot": "spot", + "sta": "sta-token", + "defit": "defit", + "dftl": "defitankland", + "fiwa": "defi-warrior", + "dwc": "dogwifcrocs", + "dyp": "dypius", + "defly": "defly", + "defrogs": "defrogs", + "svic": "vicpool-staked-vic", + "defy": "defy", + "dega": "dega-2", + "d三g三n": "degen-2", + "$db": "degen-base-2", + "danny": "degen-danny", + "dgen": "degen-knightsofdegen", + "kongz": "degen-kongz", + "dmai": "degenmasters-ai", + "dpad": "degenpad", + "pov": "pepe-original-version", + "dswap": "degenswap", + "dtf": "degen-traded-fund", + "dgw": "degenwin", + "dgnx": "degenx", + "dzoo": "degen-zoo", + "deg": "degis", + "dego": "dego-finance", + "wef": "degwefhat", + "dhlt": "dehealth", + "heroes": "dehero-community-token", + "amg": "deherogame-amazing-token", + "dhv": "dehive", + "devt": "dehorizon", + "dhb": "dehub", + "hoshi": "dejitaru-hoshi", + "tsuka": "dejitaru-tsuka", + "dek": "dekbox", + "deai": "zero1-labs", + "dph": "delphibets", + "dpy": "delphy", + "delrey": "delrey-inu", + "deto": "delta-exchange-token", + "delta": "delta-financial", + "dlta": "delta-theta", + "deo": "player-2", + "demi": "demi", + "ouro": "demiourgos-holdings-ouroboros", + "dmlg": "demole", + "dmr": "demr", + "demx": "demx", + "d": "denarius", + "mxd": "denarius-mxd", + "dench": "denchcoin", + "de": "denet-file-token", + "dnz": "denizlispor-fan-token", + "dent": "dent", + "deorbit": "deorbit-network", + "depay": "depay", + "depindao": "depin-dao", + "depd": "depindao-ordinals", + "dpln": "deplan", + "daft": "deportivo-alaves-fan-token", + "zerc": "zeroclassic", + "dsrun": "derby-stars-run", + "deri": "deri-protocol", + "ddx": "derivadao", + "dermo": "dermophis-donaldtrumpi", + "dero": "dero", + "derp": "odung", + "dsai": "desend-ai", + "dsm": "desmos", + "deso": "deso", + "des": "despace-protocol", + "deco": "destiny-world", + "ds": "destorage", + "dsync": "destra-network", + "detensor": "detensor", + "deton": "deton", + "deus": "deus-finance-2", + "dem": "deutsche-emark", + "dvt": "safestake", + "deve": "develocity", + "dvk": "devikins", + "devil": "devil-finance", + "devin": "devin-on-solana", + "evo": "evoverses", + "dev": "dev-protocol", + "dpay": "devour-2", + "devve": "devvio", + "dewae": "dewae", + "dewn": "dewn", + "dexa": "dexa-coin", + "dxc": "dex-trade-coin", + "alot": "dexalot", + "dexana": "dexana", + "dxb": "dexbet", + "dck": "dexcheck", + "dexe": "dexe", + "dexed": "dexed", + "gdex": "dexfi-governance", + "dxgm": "dex-game", + "dexio": "dexioprotocol-v2", + "dxt": "dexit-finance", + "kit": "kitty", + "dxl": "dexlab", + "dex": "dex-message", + "dexnet": "dexnet", + "docswap": "dex-on-crypto", + "dxp": "dexpad", + "dxr": "dex-raiden", + "dexshare": "dexshare", + "desu": "dexsport", + "taos": "dextensor", + "dextr": "dexter-exchange", + "dextf": "dextf", + "dt": "dexton", + "dext": "dextools", + "dtoro": "dextoro", + "dxo": "dextro", + "dwt": "dexwallet", + "dez": "dez", + "df": "dforce-token", + "dfsm": "dfs-mafia", + "dfnd": "dfund", + "dfx": "dfx-finance", + "dfyn": "dfyn-network", + "dgi": "dgi-game", + "dhd": "doom-hero-dao", + "dhp": "dhealth", + "dht": "dht", + "diac": "diabase", + "dia": "synergy-diamonds", + "dbz": "diamond-boyz-coin", + "diamond": "drake-s-dog", + "dlc": "diamond-launch", + "dmtc": "diamond-the-cat-coin", + "dibble": "dibbles", + "errdb": "dibbles-404", + "dshare": "dshares", + "dk": "dice-kingdom", + "$dicki": "dicki", + "didid": "didi-duck", + "die": "die-protocol", + "dig": "dig-chain", + "digg": "digg", + "dgbn": "digibunnies", + "dgb": "digibyte", + "dcask": "digicask-token", + "dft": "digifinextoken", + "dgh": "digihealth", + "dgmv": "digimetaverse", + "digi": "digiverse-2", + "dar": "mines-of-dalarnia", + "dba": "digital-bank-of-africa", + "xdb": "digitalbits", + "dgc": "metafishing-2", + "difi": "digital-files", + "difx": "digital-financial-exchange", + "digita": "digitaliga", + "xdn": "digitalnote", + "drc": "doric-network", + "dsb": "digital-standard", + "dta": "digital-trip-advisor", + "dgtx": "digitex-futures-exchange", + "digits": "digits-dao", + "dgx": "digix-gold", + "digau": "dignity-gold-2", + "diligent": "diligent-pepe", + "dill": "dillwifit", + "dilly": "dilly", + "dime": "dimecoin", + "dd": "duckdao", + "dimi": "diminutive-coin", + "dmtr": "dimitra", + "dimo": "dimo", + "dzg": "dinamo-zagreb-fan-token", + "aapl.d": "dinari-aapl-dshares", + "amd.d": "dinari-amd", + "amzn.d": "dinari-amzn-dshares", + "arm.d": "dinari-arm", + "brk.a.d": "dinari-brk-a-d", + "coin.d": "dinari-coin", + "dis.d": "dinari-dis-dshares", + "googl.d": "dinari-googl-dshares", + "meta.d": "dinari-meta-dshare", + "msft.d": "dinari-msft-dshares", + "nflx.d": "dinari-nflx-dshares", + "nvda.d": "dinari-nvda-dshares", + "pfe.d": "dinari-pfe-dshares", + "pld.d": "dinari-pld", + "pypl.d": "dinari-pypl-dshares", + "spy.d": "dinari-spy-dshares", + "tsla.d": "dinari-tsla-dshares", + "usd+": "usd", + "usfr.d": "dinari-usfr-dshares", + "dint": "dinartether", + "dinero": "dinerobet", + "apxeth": "dinero-apxeth", + "pxeth": "dinero-staked-eth", + "dinger": "dinger-token", + "dingo": "dingocoin", + "dinj": "dinj", + "rawr": "dino-poker", + "dinoshi": "dinoshi", + "dinosol": "dinosol", + "dnxc": "dinox", + "dinu": "dogey-inu", + "dione": "dione", + "diq": "diqinu", + "dirty": "dirty-street-cats", + "ddos": "disbalancer", + "disknee": "diskneeplus", + "dis": "tosdis", + "dude": "dude", + "dnt": "space-guild-diamond-token", + "dith": "dither", + "diva": "diva-staking", + "diver": "divergence-protocol", + "dseth": "diversified-staked-eth", + "divi": "divi", + "dvnci": "divincipay", + "dzhv": "dizzyhavoc", + "djbonk": "djbonk", + "djcat": "djcat", + "djed": "djed", + "dka": "dkargo", + "dkey": "dkey-bank", + "dlcbtc": "dlc-link-dlcbtc", + "duck": "unit-protocol-duck", + "dmail": "dmail-network", + "dmx": "dymmax", + "dmz": "dmz-token", + "dxct": "dnaxcat", + "dobi": "dobi", + "dock": "dock", + "evil": "doctor-evil", + "dcct": "docuchain", + "dms": "dragon-mainland-shards", + "dodo": "dodo-the-black-swan", + "cep": "dodreamchain", + "doeg": "doeg-wif-rerart", + "dogai": "dogai", + "doga": "dogita", + "collar": "dog-collar", + "dogcoq": "dog-coq", + "doge1": "doge-1", + "doge-1": "satellite-doge-1-mission", + "doge-1sat": "doge-1satellite", + "doge2.0": "doge-2-0", + "doge69": "doge69", + "dogeai": "dogeai", + "dbit": "dogebits-drc-20", + "dobo": "donablock", + "dogb": "dogeboy-2", + "dogec": "dogecash", + "dogeceo": "dogeceomeme", + "dogc": "dogeclub", + "doge2": "dogecoin-2", + "doge20": "dogecoin20", + "colana": "dogecola", + "dogecube": "dogecube", + "dogedi": "dogedi", + "omnom": "doge-eat-doge", + "(dofi20": "doge-floki-2-0", + "dofi": "doge-floki-coin", + "dogefood": "dogefood", + "votedoge": "doge-for-president", + "goge": "dogegayson", + "dogegf": "dogegf", + "dogegrok": "doge-grok", + "dgr": "dogegrow", + "dew": "doge-in-a-memes-world", + "kaki": "doge-kaki", + "dogeking": "dogeking", + "dgln": "dogelana", + "doge legio": "doge-legion", + "elonc": "dogelon-classic", + "elon": "dogelon-mars-wormhole", + "elon2.0": "dogelon-mars-2-0", + "dxlm": "doge-lumens", + "marley": "doge-marley", + "dome": "everdome", + "dogemob": "dogemob", + "dogo": "dogo-token", + "dogemoon": "dogemoon", + "dogegrokai": "doge-of-grok-ai", + "don": "thedonato-token", + "$doge": "doge-on-sol", + "dpf": "dogepad-finance", + "dope": "dopamine", + "dogep": "doge-protocol", + "dogeshrek": "dogeshrek", + "squoge": "dogesquatch", + "doges": "dogeswap", + "dogether": "dogether", + "doget": "doge-token", + "$dgtv": "doge-tv", + "dogeverse": "dogeverse", + "dwhl": "doge-whale", + "zilla": "dogezilla-2", + "dogmi": "dogfinity", + "dogga": "doggacoin", + "doggs": "doggensnout", + "dogs": "doggensnout-skeptic", + "dogggo": "dogggo", + "doggo": "doggo", + "doggy": "doggy-coin", + "dogi": "dogi", + "$hub": "dogihub-doginals", + "dosu": "doginal-kabosu-drc-20", + "dcex": "doginals-club-exclusive-doginals", + "doginme": "doginme", + "dogira": "dogira", + "dogl": "doglibre", + "dogm": "dogmcoin", + "dognus": "dognus", + "wisdm": "dog-of-wisdom", + "$dog": "dog-ordinals", + "dogpad": "dogpad-finance", + "doe": "dogsofelon", + "spoon": "spoony", + "dogsrock": "dogs-rock", + "dogu": "dogu-inu", + "nelsol": "dog-walter", + "$wif2": "dogwif2-0", + "wif": "wif-secondchance", + "dogwifhat": "dogwifhat-eth", + "katana": "dogwifkatana", + "leg": "legia-warsaw-fan-token", + "nohat": "dogwifnohat", + "ninja": "shinobi-2", + "wifout": "dogwifouthat", + "pants": "dogwifpants", + "dwp": "dog-wif-pixels", + "wifsa": "dogwifsaudihat", + "wifs": "dogwifscarf", + "sd": "stader", + "dopu": "dog-with-purpose", + "dor": "dor", + "dogz": "dogz", + "dhn": "dohrnii", + "doi": "doichain", + "dojo": "project-dojo", + "doai": "dojo-protocol", + "$dojo": "dojo-supercomputer", + "doke": "doke-inu", + "doki": "okidoki-social", + "dolan": "dolan-duck", + "dola": "dola-usd", + "dollar": "dollar-2", + "doc": "dollar-on-chain", + "dsq": "dollarsqueeze", + "dolp": "dolp", + "dolz": "dolz-io", + "domi": "domi", + "domdom": "dominator-domains", + "dom": "dominium-2", + "domo": "domo", + "tremp": "donald-tremp", + "trump2024": "donald-trump", + "dona": "donaswap", + "doncat": "don-catblueone", + "donki": "don-don-donki", + "dong": "dongcoin", + "ddmt": "dongdaemun-token", + "dongo": "dongo-ai", + "donk": "donk-inu", + "donke": "donke", + "donkee": "donkee", + "doky": "donkey-king", + "dons": "dons", + "dbi": "don-t-buy-inu", + "bitcoin": "harrypotterobamasonic10inu", + "donut": "donut", + "doodoo": "doodoo", + "doogle": "doogle", + "dook": "dook", + "doomer": "doomer-on-base-cto", + "dopa": "dopameme", + "paper": "paper-fantom", + "dpx": "dopex", + "rdpx": "dopex-rebate-token", + "$dorab": "dorado-finance", + "dora": "dora-factory-2", + "dork": "dork", + "dorkl": "dork-lord-eth", + "dlord": "dork-lord-coin", + "dos": "dos-network", + "dose": "dose-token", + "dtbx": "dotblox", + "ddd": "scry-info", + "pink": "pink-elements", + "ded": "dot-is-ded", + "moov": "dotmoovs", + "dbl": "dps-doubloon-2", + "doug": "duck-the-doug", + "$doh": "doughge", + "hhgttg": "douglas-adams", + "dov": "dovu", + "dovi": "dovi", + "dovu": "dovu-2", + "dox": "doxcoin", + "dozy": "dozy-ordinals", + "parrot": "dparrot", + "dpex": "dpex", + "rating": "dprating", + "tmap": "dps-treasuremaps-2", + "dra": "dracoo-point", + "drac": "drac-ordinals", + "fang": "fang-token", + "draggy0x62": "draggy-0x62", + "draggy": "draggy-cto", + "drago": "drago", + "dma": "dragoma", + "dragon": "soldragon", + "drgn": "dragonchain", + "dcau": "dragon-crypto-aurum", + "dragonking": "dragonking", + "licat": "dragon-licat", + "drag": "dragon-ordinals", + "dquick": "dragons-quick", + "draw": "dragon-war", + "dwif": "dragon-wif-hat", + "drgx": "dragonx-2", + "dragonx": "dragonx-win", + "nova": "nova-finance", + "dragy": "dragy", + "drako": "drako", + "munk": "dramatic-chipmunk", + "joy": "joystream", + "dream": "dream-token", + "dreams": "dreams-quest", + "dv": "dreamverse", + "drep": "drep-new", + "drf": "drife", + "drifty": "driftin-cat", + "drift": "drift-token", + "dsol": "drift-staked-sol", + "drip": "drip-network", + "drv3": "drive3", + "droggy": "droggy", + "drone": "drone", + "drop": "dropcoin-club", + "drops": "drops", + "dwin": "drop-wireless-infrastructure", + "drunk": "drunk", + "metal": "metal-blockchain", + "stink": "drunk-skunks-drinking-club", + "mix": "mixmarvel", + "dsun": "dsun-token", + "dtec": "dtec-token", + "dti": "dt-inu", + "dtng": "dtng", + "trvl": "dtravel", + "dtsla": "dtsla", + "dual": "dual-finance", + "dua": "dua-token", + "dubbz": "dubbz", + "dubcat": "dubcat", + "$dub": "dub-duck", + "dub": "dubx", + "ducx": "ducatus", + "ddim": "duckdaodime", + "ducker": "duckereum", + "mmeta": "duckie-land-multi-metaverse", + "duckies": "duckies", + "$duckie": "duckie-the-meme-token", + "diat": "duck-in-a-truck", + "ducks": "ducks", + "degg": "duckydefi", + "ducky": "duckyduck", + "du": "du-coin", + "dudegen": "dudegen", + "dudiez": "dudiez-meme-token", + "royale": "duel-royale", + "duet": "duet-protocol", + "dug": "dug", + "duge": "duge", + "duh": "duh", + "duk": "duk-on-sol", + "duke": "duke-inu-token", + "duko": "duko", + "gme": "gme", + "dummy": "dummy", + "dump": "dump-trade", + "dune": "dune404", + "dnd": "dungeonswap", + "grow": "valleydao", + "dupe": "dupe-the-duck", + "$wall": "du-rove-s-wall", + "dusk": "dusk-network", + "dust": "dust-protocol", + "dvi": "dvision-network", + "dvpn": "sentinel-group", + "dwake": "dwake-on-sol", + "dx": "dxchain", + "dxd": "dxdao", + "dyad": "dyad", + "ethdydx": "dydx", + "dydx": "dydx-wormhole", + "dyl": "dyl", + "dym": "dymension", + "dyna": "dynamix", + "dynmt": "dynamite-token", + "dny": "dynasty-coin", + "dnx": "dynex", + "dyst": "dystopia", + "dysto": "dystoworld-ai", + "dyzilla": "dyzilla", + "eai": "eternalai", + "early": "early-radix", + "ebet": "earnbet", + "earn": "powercity-earn-protocol", + "etv": "earntv", + "ess": "essentia", + "ebyt": "earthbyt", + "1earth": "earthfund", + "emt": "emotech", + "egp": "eigenpie", + "ez": "ez-pepe", + "ezswap": "ezswap-protocol", + "eave": "eaveai", + "eazy": "eazyswap-token", + "ebabil": "ebabil-io", + "frtn": "ebisusbay-fortune", + "ebit": "ebit-2", + "ebso": "eblockstock", + "ebox": "ebox", + "ebtc": "ebtc", + "xec": "ecash", + "ect": "ecochain-token", + "prime": "solanaprime", + "eblock": "echoblock", + "echo": "echo-bot", + "ecp": "echodex-community-portion", + "eko": "echolink-2", + "eoth": "echo-of-the-horizon", + "eci": "e-c-inu", + "ecl": "ecl", + "elt": "element-black", + "eclip": "eclipse-fi", + "eco": "ormeus-ecosystem", + "ecoin": "ecoin-finance", + "omi": "ecomi", + "ecoreal": "ecoreal-estate", + "ecu": "ecoscu", + "ecoterra": "ecoterra", + "ecox": "ecox", + "vtra": "e-c-vitoria-fan-token", + "edda": "eddaswap", + "edse": "eddie-seal", + "edlc": "edelcoin", + "eden": "paradisefi", + "edge": "edge", + "edgt": "edgecoin-2", + "emc": "emercoin", + "egs": "emingunsirer", + "edgesol": "edgevana-staked-sol", + "fast": "fastswap-bsc-2", + "edg": "edgeware", + "bored": "edison-bored", + "edns": "edns-domains", + "zeni": "edoverse-zeni", + "nfe": "edu3labs", + "edu": "edu-coin", + "edux": "edufex", + "edum": "edum", + "eeg": "eeg", + "ese": "eesee", + "eeyor": "eeyor", + "efx": "effect-network", + "efi": "efinity", + "efk": "efk-token", + "efcr": "eflancer", + "efun": "efun", + "egaz": "egaz", + "eggt": "egg-n-partners", + "eggp": "eggplant-finance", + "eggs": "eggs", + "eggx": "eggx", + "eggy": "eggy-the-pet-egg", + "egax": "egochain", + "egod": "egodcoin", + "ego": "paysenger-ego", + "egold": "egold-project-2", + "egon": "egoncoin", + "egc": "evergrowcoin", + "esta": "egostation", + "eg": "eg-token", + "sphynx": "sphynx-labs-bae5b42e-5e37-4607-8691-b56d3a5f344c", + "ehash": "ehash", + "ele": "elementum", + "eigen": "eigenlayer", + "mankreth": "eigenpie-ankreth", + "mcbeth": "eigenpie-cbeth", + "methx": "eigenpie-ethx", + "msfrxeth": "eigenpie-frxeth", + "mlseth": "eigenpie-lseth", + "mmeth": "eigenpie-meth", + "msteth": "eigenpie-msteth", + "moeth": "eigenpie-oeth", + "moseth": "eigenpie-oseth", + "mreth": "eigenpie-reth", + "msweth": "eigenpie-sweth", + "mwbeth": "eigenpie-wbeth", + "emc2": "einsteinium", + "ey": "eiyaro", + "ekta": "ekta-2", + "ekubo": "ekubo-protocol", + "eefi": "elastic-finance-token", + "ela": "elastos", + "moosk": "elawn-moosk", + "elda": "eldarune", + "ede": "el-dorado-exchange-base", + "eca": "electra", + "xep": "electra-protocol", + "elcash": "electric-cash", + "evdc": "electric-vehicle-direct-currency", + "evz": "electric-vehicle-zone", + "elec": "electrify-asia", + "electron": "electron-arc-20", + "etn": "electroneum", + "efl": "electronicgulden", + "eltk": "elektrik", + "elmt": "element", + "pgt": "elemental-story", + "elephant": "elephant-money", + "elepepe": "elephantpepe", + "$elev": "elevate-token", + "elgato": "el-gato-2", + "hipp": "el-hippo", + "goc": "eligma", + "xls": "elis", + "deusd": "elixir-deusd", + "elxr": "elixir-finance", + "elix": "elixir-token", + "whoren": "elizabath-whoren", + "elk": "elk-finance", + "elm": "ellerium", + "eps": "ellipsis", + "epx": "ellipsis-x", + "elmo": "elmoerc", + "eloin": "eloin", + "$elon": "elon", + "elon2024": "elon-2024", + "elon404": "elon404", + "schrodinge": "elon-cat", + "ecat": "elon-cat-finance", + "edao": "elondoge-dao", + "edoge": "etherdoge", + "egt": "elon-goat", + "elonmars": "elon-mars", + "elonmuskce": "elon-musk-ceo", + "elonrwa": "elonrwa", + "catme": "elon-s-cat", + "et": "elon-trump", + "elonx": "elonx", + "xmas": "elon-xmas", + "elo": "elosys", + "egld": "elrond-erd-2", + "elsd": "elsd-coin", + "ells": "elseverse-world", + "elux": "elucks", + "elu": "elumia", + "emagic": "elvishmagic", + "wiwi": "el-wiwi", + "elya": "elya", + "elfi": "elyfi", + "el": "elysia", + "els": "ethlas", + "lcmg": "elysiumg", + "royal": "royal", + "elys": "elys-network", + "ely": "elyssa", + "ember": "ember-sword", + "embr": "embr", + "emdx": "emdx", + "eag": "emerging-assets-group", + "em": "eminer", + "emit": "emit", + "eml": "eml-protocol", + "emma": "emma", + "emmi": "emmi-gg", + "emmy": "emmy", + "$emoji": "emoji-erc20", + "ngm": "e-money", + "emr": "emorya-finance", + "emoti": "emoticoin", + "empire": "empire-token", + "emp": "export-mortos-platform", + "eshare v2": "emp-shares-v2", + "encs": "encoins", + "dna": "encrypgen", + "end": "endblock", + "eww": "endlesswebworlds", + "endcex": "endpoint-cex-fan-token", + "eftr": "eneftor", + "egx": "enegra", + "nrg": "energy-token", + "usde": "usde-2", + "tsl": "energo", + "egrn": "energreen", + "e8": "energy8", + "deem": "energy-efficient-mortgage-tokenized-stock-defichain", + "eft": "everflow-token", + "ewt": "energy-web-token", + "eng": "enigma-gaming", + "fury": "fanfury", + "enj": "enjincoin", + "ejs": "enjinstarter", + "enjoy": "enjoy", + "eyn": "enjoy-network", + "enki": "enki-protocol", + "enno": "enno-cash", + "eno": "eno", + "enoch": "enoch", + "hln": "holonus", + "eusdt": "enosys-usdt", + "enq": "enq-enecuum", + "nrch": "enreachdao", + "enrx": "enrex", + "ensue": "ensue", + "ngl": "gold-fever-native-gold", + "enter": "enter", + "entr": "enterdao", + "ents": "ents", + "edat": "envida", + "vis": "envision-2", + "env": "envoy-network", + "eon": "hyper-3", + "eosdac": "eosdac", + "eosc": "eosforce", + "wram": "eos-wrapped-ram", + "epep": "epep", + "epic": "epic-cash", + "💥": "epic-epic-epic-epic", + "epl": "epic-league", + "epct": "epics-token", + "epiko": "epiko", + "epik": "teh-epik-duck", + "aiepk": "epik-protocol", + "epoch": "epoch-island", + "eq9": "eq9", + "eqx": "eqifi", + "eqz": "equalizer", + "scale": "scalia-infrastructure", + "equal": "equalizer-dex", + "equ": "equation", + "vara": "vara-network", + "eqb": "equilibria-finance", + "ependle": "equilibria-finance-ependle", + "eq": "equilibrium-token", + "eosdt": "equilibrium-eosdt", + "edx": "equilibrium-exchange", + "nox": "equinox-ecosystem", + "eqpay": "equitypay", + "era": "era-name-service", + "eape": "eraape", + "exrd": "e-radix", + "es": "era-swap-token", + "erg": "ergo", + "ergone": "ergone", + "ergopad": "ergopad", + "eric": "eric-the-goldfish", + "ampjuno": "eris-amplified-juno", + "ampmnta": "eris-staked-mnta", + "amposmo": "eris-amplified-osmo", + "ampwhale": "eris-amplified-whale", + "ampkuji": "eris-staked-kuji", + "pnf": "error404", + "$err": "error-404", + "ertha": "ertha", + "erth": "erth-point", + "$esab": "esab", + "esco": "esco-coin", + "elg": "escoin-token", + "silv2": "escrowed-illuvium-2", + "eslbr": "escrowed-lbr", + "esprf": "escrowed-prf", + "esg": "esg", + "esgc": "esg-chain", + "esk": "eska", + "eses": "eskisehir-fan-token", + "esmx": "esm-x", + "spent": "espento", + "espt": "esport", + "bahia": "esporte-clube-bahia-fan-token", + "espr": "espresso-bot", + "esx": "estatex", + "etcpow": "etcpow", + "mind": "morpheus-labs", + "$glory": "eternity-glory-token", + "etf": "etf-the-token", + "etgm": "etgm-ordinals", + "eth 2.0": "eth-2-0", + "eth2": "eth2-staking-by-poolx", + "eth2x-fli": "eth-2x-flexible-leverage-index", + "eth3s": "eth3s", + "etha": "etha-lend", + "c2h6": "ethane", + "ethax": "ethax", + "ethdown": "ethdown", + "ena": "ethena", + "susde": "ethena-staked-usde", + "etho": "ether-1", + "os": "ethereans", + "ete": "ethereum-express", + "eth.z": "ethereum-bridged-zed20", + "etc": "ethereum-classic", + "ethg": "ethereum-gold-2", + "ethinu": "ethereum-inu", + "emax": "ethereummax", + "ems": "ethereum-message-service", + "ethm": "ethereum-meta", + "ens": "ethereum-name-service", + "eth+": "reserve-protocol-eth-plus", + "ethw": "ethereum-pow-iou", + "push": "push", + "ethv": "ethereum-volatility-index-token", + "etx": "ethrix", + "ethfi": "ether-fi", + "eeth": "evereth-2", + "egem": "ethergem", + "eland": "etherland", + "etl": "etherlite-2", + "emon": "ethermon", + "ethfin": "ethernal-finance", + "ern": "ethos-reserve-note", + "ecld": "ethernity-cloud", + "orb": "ordible", + "fuel": "fuel-network", + "epets": "etherpets", + "scape": "etherscape", + "etr": "etherunes", + "ethfai": "ethforestai", + "ethix": "ethichub", + "lend": "lendle", + "vgx": "ethos", + "3th": "ethos-2", + "ethpad": "ethpad", + "$rock": "eth-rock-erc404", + "eths": "eth-stable-mori-finance", + "ethtz": "ethtez", + "ethup": "ethup", + "eti": "etica", + "tuk": "etuktuk", + "etw": "etwinfinity", + "eul": "euler", + "euno": "euno", + "euro3": "euro3", + "eurc": "gnosis-xdai-bridged-eurc-gnosis", + "ecte": "eurocoinpay", + "eur-c": "euro-coinvertible", + "euroe": "euroe-stablecoin", + "eva": "evolva", + "ev": "evai-2", + "eve the cat": "eve", + "eveai": "eve-ai", + "eved": "evedo", + "eve": "eve-exchange", + "evex": "eventsx", + "ecet": "evercraft-ecotechnologies", + "evereth": "evereth", + "evx": "everex", + "id": "space-id", + "iq": "everipedia", + "eldg": "everlodge", + "evermoon": "evermoon-sol", + "evr": "evrmore", + "evrf": "everreflect", + "rise": "everrise-sol", + "ever": "ever-sol", + "efc": "everton-fan-token", + "hold": "hold-vip", + "evy": "everycoin", + "egame": "every-game", + "every": "everyworld", + "evilpepe": "evil-pepe", + "evire": "evire", + "evmos": "evmos", + "evd": "evmos-domains", + "evld": "evoload", + "$evol": "evolve", + "evry": "evrynet", + "evu": "evulus", + "exa": "exa", + "exaop": "exactly-op", + "exausdc": "exactly-usdc", + "exawbtc": "exactly-wbtc", + "exaweth": "exactly-weth", + "exawsteth": "exactly-wsteth", + "ext": "exatech", + "exc": "excalibur", + "xlon": "excelon", + "art": "salvor", + "excc": "exchangecoin", + "xgem": "exchange-genesis-ethlas-medium", + "xed": "exeedme", + "exgo": "exgo", + "exit": "exit-designer-token", + "exm": "exmo-coin", + "exnt": "exnetwork-token", + "exo": "exohood", + "exd": "exorde", + "sama": "exosama-network", + "exp": "expanse", + "xpc": "experience-chain", + "wis": "wingswap", + "expo": "exponential-capital-2", + "xdna": "extradna", + "extra": "extra-finance", + "xtrm": "extreme", + "exvg": "exverse", + "xyn": "exynos-protocol", + "eyebot": "eyebot", + "smilek": "eye-earn", + "eyes": "eyes-protocol", + "ezi": "ezillion", + "sword": "sword-2", + "gezy": "ezzy-game-2", + "tyrant": "fable-of-the-dragon", + "fab": "fabric", + "fabs": "fabs", + "welt": "fabwelt", + "dfb": "facebook-tokenized-stock-defichain", + "face": "facedao", + "fact": "orcfax", + "fctr": "factor", + "bkc": "facts", + "fade": "fade", + "fafy": "fafy-token", + "berc": "fair-berc20", + "ferc": "fairerc20", + "frx": "fairex", + "fcdp": "fairlight", + "tfs": "fairspin", + "fai": "futuresai", + "ftrb": "faith-tribe", + "f9": "falcon-nine", + "fnt": "falcon-token", + "falx": "falx", + "$fmc": "fame-ai", + "fame": "fantom-maker", + "frp": "fame-reward-plus", + "fam": "family-2", + "guy": "family-guy", + "foxy": "foxy", + "foxes": "famous-fox-federation-floor-index", + "fan": "superfans-tech", + "fanc": "fanc", + "fnc": "fancy-games", + "fand": "fandomdao", + "fti": "fanstime", + "ut": "ulord", + "ftm": "fantom", + "rip": "skull-with-ripped-hood", + "ftg": "fantomgo", + "flibero": "fantom-libero-financial", + "fbux": "fantom-money-market", + "ftmo": "fantom-oasis", + "fsonic": "fantomsonicinu", + "fs": "futureswap-finance", + "fusd": "fuse-dollar", + "fvm": "fantom-velocimeter", + "fnz": "fanzee-token", + "fara": "faraland", + "far": "few-and-far", + "flower": "farcaster-flower", + "farm": "harvest-finance", + "frank": "farmer-frank", + "fox": "shapeshift-fox-token", + "fww": "farmers-world-wood", + "farms": "farmsent", + "frtc": "fart-coin", + "farther": "farther", + "lane": "fastlane", + "ftn": "fasttoken", + "fatality": "fatality-coin", + "fatcat": "tombili-the-fat-cat", + "fcat": "floki-cat", + "fatgf": "fatgf", + "$fathom": "fathom", + "fxd": "frax-doge", + "fthm": "fathom-protocol", + "fksk": "fatih-karagumruk-sk-fan-token", + "ftr": "fautor", + "favr": "favor", + "faya": "faya", + "fayd": "fayda-games", + "bar": "gold-standard", + "porto": "fc-porto", + "fcr": "fcr-coin", + "sion": "fc-sion-fan-token", + "fcuk": "fcuk", + "fear": "fear", + "ftc": "feathercoin", + "feces": "feces", + "fedai": "federal-ai", + "tips": "just-the-tip", + "good": "good-entry", + "fgm": "feels-good-man-2", + "fefe": "fefe", + "feg": "feg-token-2", + "nfd": "feisty-doge-nft", + "fei": "fei-usd", + "felicette": "felicette-the-space-cat", + "flx": "reflexer-ungovernance-token", + "felix": "felix-2", + "$peow": "felix-the-lazer-cat", + "fella": "fella", + "flz": "fellaz", + "fb": "fenerbahce-token", + "fenglvziv2": "fenglvziv2", + "fentanyl": "fentanyl-dragon", + "ferma": "ferma", + "ferret": "ferret-ai", + "fer": "ferro", + "frm": "ferrum-network", + "fet": "fetch-ai", + "fgds": "fgdswap", + "fhb": "fhb", + "chf24": "fiat24-chf", + "eur24": "fiat24-eur", + "usd24": "fiat24-usd", + "fibo": "fibo-token", + "fo": "fibos", + "fdc": "fidance", + "fdls": "fidelis", + "fi": "fideum", + "fid": "fidira", + "fido": "fido", + "fidu": "fidu", + "fierdragon": "fierdragon", + "fiero": "fiero", + "fifi": "fifi", + "fight": "fight-to-maga", + "sft": "fightly", + "fota": "fight-of-the-ages", + "fwin-ai": "fight-win-ai", + "fdao": "figure-dao", + "sfil": "filecoin-standard-full-hashrate", + "fcp": "filipcoin", + "film": "filmcredits", + "filter": "filter-ai", + "fmc": "fimarkcoin-com", + "financeai": "finance-ai", + "fbx": "firebot", + "fvt": "finance-vote", + "fff": "financial-freedom-formula", + "fts": "fortress", + "fnct": "financie-token", + "finc": "finceptor-token", + "findme": "findme", + "fra": "france-coin", + "fine": "woof", + "finedog": "finedog", + "finger": "finger-blast", + "prints": "fingerprints", + "fmt": "finminity", + "fins": "fins-token", + "ftx": "hairyplotterftx", + "finx": "finx", + "fxf": "finxflo", + "fio": "fio-protocol", + "fira": "fira-cronos", + "hott": "firepot-finance", + "flame": "flame-protocol", + "fct": "firmachain", + "first": "first", + "fdusd": "first-digital-usd", + "grok": "grok-codes", + "firsthare": "firsthare", + "fscc": "fisco", + "fico": "fish-crypto", + "tuna": "tunachain", + "koin": "koinos", + "fvs": "fishverse", + "$fishy": "fishy", + "fist": "fistbump", + "fbt": "fitburn-fbt", + "fitt": "fitmint", + "fiwb": "fiwb-doginals", + "fix00": "fix00", + "fjo": "fjord-foundry", + "fketh": "fketh", + "flack": "flack-exchange", + "flag": "for-loot-and-glory", + "fldx": "flair-dex", + "mengo": "flamengo-fan-token", + "fghst": "flamingghost", + "flm": "flamingo-finance", + "flap": "flap", + "flappy": "flappy", + "fevo": "flappy-bird-evolution", + "$fmb": "flappymoonbird", + "exfi": "flare-finance", + "flr": "flare-networks", + "1flr": "flare-token", + "flash": "flash-protocol", + "flashdash": "flashdash", + "ftt": "ftx-token", + "unit": "flat-money", + "qube": "queenbee-2", + "flex": "flexmeme", + "fgpu": "flexgpu", + "flexusd": "flex-usd", + "fkrpro": "flickerpro", + "flight": "flightclupcoin", + "flipcat": "flipcat", + "fls": "flits", + "tim": "tourism-industry-metavers", + "flochi": "flochi-inu", + "floki": "shiba-floki", + "flobo": "flokibonk", + "flokiburn": "flokiburn", + "flokicash": "floki-cash", + "flokiceo": "floki-ceo", + "flokidash": "flokidash", + "fork": "flokifork", + "rloki": "floki-rocket", + "flokis": "flokis", + "flokisanta": "floki-santa", + "3ceo": "floki-shiba-pepe-ceo", + "flokita": "flokita", + "floof": "floof", + "floop": "floop", + "flrbrg": "floor-cheese-burger", + "floor": "floordao-v2", + "flc": "flowchaincoin", + "uelem": "flooring-protocol-microelemental", + "uppg": "flooring-protocol-micropudgypenguins", + "floppa": "floppa-cat", + "fyt": "florachain-yield-token", + "ffm": "florence-finance-medici", + "xfl": "florin", + "$flork": "flork", + "flork": "flork-bnb", + "fdust": "flovatar-dust", + "flovi": "flovi-inu", + "flow": "velocimeter-flow", + "fm": "flowmatic", + "fxy": "floxypay", + "floyx": "floyx-new", + "flt": "fluence-2", + "fluf": "fluffy-coin", + "fluff": "fluffys", + "fluid": "fluid-2", + "fdai": "flux-dai", + "ffrax": "flux-frax", + "fly": "hoppers-game", + "fusdt": "frapped-usdt", + "fldt": "fluidtokens", + "ftusd": "fluid-tusd", + "fusdc": "fluid-usd-coin", + "fweth": "fluid-wrapped-ether", + "fwsteth": "fluid-wrapped-staked-eth", + "flu": "fluminense-fc-fan-token", + "flurry": "flurry", + "flut": "flute", + "flux": "zelcash", + "fluxb": "fluxbot", + "shards": "solchicks-shards", + "fluxt": "flux-terminal", + "flycat": "flycat", + "fac": "flying-avocado-cat", + "fyp": "flypme", + "fncy": "fncy", + "fnk": "fnkcom", + "foam": "foam-protocol", + "foc": "theforce-trade", + "fodl": "fodl-finance", + "fofar": "fofar0x71", + "fofo": "fofo-token", + "fog": "fognet", + "foho": "foho-coin", + "fld": "fold", + "folo": "follow-token", + "fomeow": "fomeow", + "fomos": "fomosfi", + "fon": "inofi", + "fonzy": "fonzy", + "food": "food-token-2", + "foom": "foom", + "fav": "football-at-alphaverse", + "xfc": "football-coin", + "fwc": "football-world-community", + "foox": "foox-ordinals", + "ffe": "forbidden-fruit-energy", + "frc": "freicoin", + "force": "force-3", + "forc": "forcefi", + "for": "fortuna-sittard-fan-token", + "fore": "fore-protocol", + "fry": "fryscrypto", + "foat": "forever-aid-token", + "4shiba": "forever-shiba", + "fp": "frenpet", + "form": "formation-fi", + "finu": "formula-inu", + "fbg": "fort-block-games", + "audf": "forte-aud", + "ftsc": "fortress-chain-network", + "ifbill": "fortunafi-tokenized-short-term-u-s-treasury-bills-for-non-us-residents", + "frt": "fortunebets", + "fortune": "fortune-bets", + "fftb": "fortune-favours-the-brave", + "forward": "forward", + "fjlt-b24": "forwards-rec-bh-2024", + "fottie": "fottie", + "ftp": "fountain-protocol", + "foxe": "fox-europe", + "foxgirl": "foxgirl", + "foxsy": "foxsy-ai", + "foxt": "fox-trading-token", + "fr33": "fr33-gpt", + "fcl": "fractal", + "ft": "fracton-protocol", + "foa": "fragments-of-arker", + "frkt": "frakt-token", + "frame": "frame-token", + "frf": "france-rev-finance", + "zchf": "frankencoin", + "ffrog": "frankenfrog", + "frax": "fraxtal-bridged-frax-fraxtal", + "frxbullas": "frax-bullas", + "frxeth": "frax-ether", + "fpi": "frax-price-index", + "fpis": "frax-price-index-share", + "fxs": "frax-share", + "fxtl": "fraxtal", + "keke": "keke-inu", + "freco": "freco-coin", + "$fred": "freddy-fazbear", + "fred": "fredenergy", + "frbk": "freebnk", + "freecz": "freecz", + "fdm": "freedom-2", + "freed": "freedomcoin", + "free": "freerossdao", + "$fjb": "freedom-jobs-business", + "frel": "freela", + "$trump": "make-solana-great-again", + "fwt": "freeway", + "mef": "meflex", + "zypto": "french-connection-finance", + "frepe": "fren-pepe", + "$fren": "frens-club", + "frens": "frens-coin", + "frenz": "frenz", + "freqai": "freqai", + "fresco": "fresco", + "freth": "freth", + "xya": "freyala", + "freya": "freya-the-dog", + "frgx": "frgx-finance", + "fric": "frictionless", + "fckn": "fried-chicken", + "f3": "friend3", + "ffi": "friendfi", + "fwb": "friends-with-benefits-pro", + "friend": "friend-tech", + "frin": "fringe-finance", + "frog ceo": "frog-ceo", + "leap": "frog-chain", + "frogex": "froge-finance", + "froge": "frogevip", + "frgst": "froggies-token-2", + "froggy": "froggy", + "tadpole": "froggy-friends", + "frogie": "frogie", + "peen": "frog-wif-peen", + "frokai": "frokai", + "frok": "frok-ai", + "fronk": "fronk", + "fanx": "frontfanz-2", + "front": "frontier-token", + "frr": "front-row", + "fodo": "froodoo", + "frosty": "frosty-the-polar-bear", + "froyo": "froyo-games", + "frts": "fruits", + "fdt": "frutti-dino", + "fsn": "fsn", + "fsc": "fsociety", + "ftails": "ftails", + "elite": "ftm-guru", + "f2c": "ftribe-fighters", + "fuack": "fuack", + "fuec": "fuertecoin", + "fufu": "fufu-token", + "fjt": "fujitoken", + "ful": "fulcrom", + "fu": "fu-money", + "funded": "funded", + "foy": "fund-of-yours", + "fun": "hyperfun", + "fnf": "funfi", + "fungi": "fungi", + "fung": "fungify-token", + "fuc": "funny-coin", + "$fur": "furio", + "volt": "voltswap", + "fuse": "fuse-network-token", + "fusion": "fusionbot", + "future": "futurespl", + "fst": "futureswap", + "fto": "futurocoin", + "fuxe": "fuxion-labs", + "fuze": "fuze-token", + "fuzn": "fuzion", + "fuzz": "fuzz-finance", + "fwog": "fwog", + "fxi": "fx1sports", + "fxb": "fxbox-io", + "fx": "fx-coin", + "fxdx": "fxdx", + "fxn": "fxn-token", + "feth": "f-x-protocol-fractional-eth", + "fxusd": "handleusd", + "xeth": "particles-money-xeth", + "rusd": "fx-rusd", + "fxst": "fx-stock-token", + "trsy": "fyde-treasury", + "g": "g-token", + "g8c": "g8coin", + "g999": "g999", + "noosum": "gabin-noosum", + "gaga": "gaga-pepe", + "ggr": "gagarin", + "gaia": "gaia-everworld", + "gmrx": "gaimin", + "gains": "gains", + "gns": "gains-network", + "gusdc": "geist-usdc", + "gain$": "gainspot", + "gaj": "gaj", + "gala": "gala", + "gan": "galactic-arena-the-nftverse", + "music": "gala-music", + "gal": "project-galaxy", + "gxa": "galaxia", + "glxia": "galaxiaverse", + "glx": "galaxify", + "galaxis": "galaxis-token", + "esnc": "galaxy-arena", + "galaxy": "galaxycoin", + "gcoin": "galaxy-fight-club", + "gfox": "galaxy-fox", + "gwt": "galaxy-war", + "galeon": "galeon", + "ize": "galvan", + "g3": "gam3s-gg", + "gbe": "gambex", + "gambit": "gambit-2", + "gtc": "global-trust-coin", + "game": "sportsology-game", + "$g": "gooddollar", + "gboy": "gameboy", + "gach": "game-changer", + "gmex": "game-coin", + "gmee": "gamee", + "gfs": "gamefantasystar", + "gft": "gifto", + "gafi": "gamefi", + "gfx": "gamyfi-token", + "flp": "gameflip", + "gamefork": "gamefork", + "duel": "gamegpt", + "games": "gaming-stars-2", + "gome": "game-of-memes", + "gmy": "gameology", + "gof": "golff", + "gpn": "gamepass-network", + "gplan": "gameplan", + "gmr": "gamer", + "gau": "gamer-arena", + "ghx": "gamercoin", + "gamerfi": "gamerfi", + "lfg": "turnup-lfg", + "gfal": "games-for-a-living", + "gmpd": "gamespad", + "dgme": "gamestop-tokenized-stock-defichain", + "gswap": "gameswap-org", + "gswift": "gameswift", + "hip": "hippo-token", + "gtt": "game-tournament-trophy", + "gtcoin": "game-tree", + "gg": "reboot", + "gamex": "gamexchange", + "gzone": "gamezone", + "gami": "gami-world", + "gia": "gamia", + "gmm": "gamium", + "gamma": "green-planet", + "gncat": "gannamcat", + "gap": "gapcoin", + "garbage": "garbage", + "grb": "garbi-protocol", + "lasagna": "garffeldo", + "garfi": "garfi", + "$garfield": "garfield-bsc", + "gari": "gari-network", + "grlc": "garlicoin", + "gary": "gary", + "gas": "gas-dao", + "gasc": "gaschameleon", + "gsfy": "gasify-ai", + "gast": "gas-turbo", + "gai": "goku-money-gai", + "gt": "gatechain-token", + "gate": "gatenet", + "mars": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "gat": "gather-2", + "gatsby": "gatsby-inu-new", + "gauro": "gauro", + "gauss": "gauss0x", + "gav": "gavcoin", + "gltr": "gax-liquidity-token-reward", + "gay": "gay", + "gaypepe": "gay-pepe", + "gfk": "gaziantep-fk-fan-token", + "gbot": "gbot", + "gcc": "gccoin", + "gcr": "golden-celestial-ratio", + "gdrt": "gdrt", + "gear": "near-tinker-union-gear", + "gec": "greenenvironmentalcoins", + "gecko": "gecko-meme", + "ggp": "gogopool", + "geeko": "geeko-dex", + "geek": "geek-protocol", + "geeq": "geeq", + "gege": "gege", + "gdai": "geist-dai", + "geth": "guarded-ether", + "gftm": "geist-ftm", + "gfusdt": "geist-fusdt", + "gwbtc": "geist-wbtc", + "geke": "geke", + "gekko": "gekko", + "gel": "gelato", + "gos": "gelios", + "gmac": "gemach", + "gemai": "the-next-gem-ai", + "gxt": "gem-exchange-and-trading", + "finder": "gem-finder", + "gef": "gemflow", + "gems": "safegem", + "ghub": "the-gamehub", + "gusd": "gusd-token-49eca0d2-b7ae-4a58-bef7-2310688658f2", + "glink": "gemlink", + "gemston": "gemston", + "zgem": "gemswap-2", + "genai": "genbox", + "gnx": "genaro-network", + "gbsk": "genclerbirligi-fan-token", + "wealth": "generational-wealth-2", + "ineth": "genesislrt-restaked-eth", + "gs": "genesis-shards", + "gwink": "genesis-wink", + "genesis": "genesis-worlds", + "gsys": "genesys", + "shdw": "shadowswap-token", + "genie": "geniebot", + "gnp": "genie-protocol", + "gnt": "greentrust", + "geni": "genius", + "gnus": "genius-ai", + "gensx": "genius-x", + "gens": "genshiro", + "iux": "geniux", + "genix": "genix", + "geno": "genomefi", + "$gene": "genomesdao", + "genome": "genomesdao-genome", + "ki": "genopet-ki", + "gene": "genopets", + "sec": "side-eye-cat", + "mv": "gensokishis-metaverse", + "genz": "genz-token", + "geo": "geodb", + "geod": "iotube-bridged-geod-iotex", + "jam": "tune-fm", + "glt": "geoleaf-2", + "geo$": "geopoly", + "germain": "germain-le-lynx-mascot-ps", + "ger": "germany-coin", + "gero": "gerowallet", + "gerta": "gerta", + "geta": "getaverse", + "kicks": "getkicks", + "get": "get-token", + "geuro": "geuro", + "gexc": "gexc-finance", + "gysr": "geyser", + "ggmt": "gg-metagame", + "ggtk": "gg-token", + "ghost": "ic-ghost", + "ghacoin": "ghacoin", + "gha": "ghast", + "ghsi": "ghislaine-network", + "gho": "gho", + "gdag": "ghostdag-org", + "gm": "good-morning-2", + "gif": "goatwifhat", + "ghsy": "ghosty", + "ghzli": "ghozali-404", + "gde": "giannidoge-esport", + "gmmt": "giant-mammoth", + "$gib": "gib", + "gib": "gibape", + "gict": "gictrade", + "giddy": "giddy", + "giff": "giffordwear", + "ghd": "giftedhands", + "gigacat": "gigacat", + "gcat": "giga-cat", + "giga": "gigatoken", + "gigachad": "gigachad-eth", + "$giga": "gigachadgpt", + "gigs": "gigadao", + "gtx": "global-trading-xenocurren", + "ched": "giggleched", + "giko": "giko-cat", + "glg": "gilgeous", + "ginger": "gingers-have-no-sol", + "ginnan": "ginnan-the-cat", + "ginoa": "ginoa", + "ginza": "ginza-network", + "gtceth": "gitcoin-staked-eth-index", + "lore": "gitopia", + "gbt": "green-block", + "gvst": "givestation", + "giv": "giveth", + "gtryc": "give-tr-your-coq", + "dgld": "gld-tokenized-stock-defichain", + "gleec": "gleec-coin", + "gleek": "gleek", + "glend": "glend", + "gli": "gli", + "glide": "glide-finance", + "glitch": "glitch", + "glch": "glitch-protocol", + "xgli": "glitter-finance", + "gtn": "relictumpro-genesis-token", + "bsty": "globalboost", + "gbgc": "global-business-group-corporation", + "gcz": "globalchainz", + "gcb": "global-commercial-business", + "gdcc": "global-digital-cluster-co", + "glft": "global-fan-token", + "gip": "global-innovation-platform", + "gsc": "global-social-chain", + "gvc": "global-virtual-coin", + "gdt": "gradient-protocol", + "gc": "grabcoinclub", + "gbex": "globiance-exchange", + "usdglo": "glo-dollar", + "gloom": "gloom", + "glorp": "glorp", + "glk": "glouki", + "glow": "glow-token-8fba1e9e-5643-47b4-8fef-d0eef67af854", + "glub": "glub", + "gmbl": "gmbl-computer-chip", + "gshare": "gmcash-share", + "gmcoin": "gmcoin-2", + "gmd": "gmd-protocol", + "gmeow": "gmeow-hyperliquid", + "gmfam": "gmfam", + "gmichi": "gmichi", + "gomining": "gmt-token", + "gmusd": "gmusd", + "gmx": "gmx", + "gnb": "gnb", + "gnd": "gnd-protocol", + "gnft": "gnft", + "gnobby": "gnobby", + "$gnome": "gnome", + "gnome": "gnomeland", + "gnomy": "gnomy", + "gno": "gnosis", + "gny": "gny", + "sluglord": "g-o", + "zkusd": "goal3", + "goal": "topgoal", + "goat": "sonic-the-goat", + "gtf": "golden-tiger-fund", + "goa": "goat-protocol", + "◨": "gob-is-gob-is-gob", + "goblin": "goblin", + "goblintown": "goblintown", + "gobtc": "gobtc", + "gbx": "gobyte", + "go": "gochain", + "charged": "gocharge-tech", + "gochu": "gochujangcoin", + "gcme": "gocryptome", + "oooooo": "goddog", + "gode": "gode-chain", + "goe": "god-of-ethereum", + "gods": "gods-unchained", + "gdz": "godzi", + "godz": "godzilla", + "goeth": "goeth", + "fitai": "gofitterai", + "gfy": "go-fu-k-yourself", + "gol": "goledo-2", + "ggavax": "gogopool-ggavax", + "gogo": "gogowifcone", + "gttm": "going-to-the-moon", + "gojobsc": "gojo-bsc", + "goku": "gokuswap", + "golc": "golcoin", + "gold8": "gold8", + "goldcat": "gold-cat", + "glc": "goldcoin", + "gldgov": "gold-dao", + "glb": "golden-ball", + "gld": "goldencoin", + "gdoge": "golden-doge", + "golden": "golden-inu-token", + "gkappa": "golden-kappa", + "gpaws": "golden-paws", + "gldx": "goldex-token", + "gfi": "groceryfi", + "gix": "goldfinx", + "gpo": "goldpesa-option", + "gsx": "gold-secured-currency", + "glm": "golem", + "gltm": "golteum", + "gomd": "gomdori", + "gomu": "gomu-gator", + "gondola": "gondola", + "gone": "gone", + "gnfty": "gonfty", + "gong": "gong", + "gooch": "gooch", + "boy": "good-boy", + "heel": "good-dog", + "ggg": "good-games-guild", + "genslr": "good-gensler", + "gmeme": "goodmeme", + "gofurs": "good-old-fashioned-un-registered-security", + "gpcx": "good-person-coin", + "goo": "silly-goose", + "dgoogl": "google-tokenized-stock-defichain", + "googly": "googly-cat", + "goon": "goon-2", + "gob": "goons-of-balatroon", + "gofx": "goosefx", + "gora": "goracle-network", + "gorilla": "gorilla-finance", + "giac": "gorilla-in-a-coupe", + "gosh": "gosh", + "gotem": "gotem", + "gotg": "got-guaranteed", + "gotti": "gotti-token", + "gum": "gumball-machine", + "galgo": "governance-algo", + "gohm": "governance-ohm", + "gvec": "governance-vec", + "gzil": "governance-zil", + "gdao": "governor-dao", + "govi": "govi", + "gov": "subdao", + "gmat": "gowithmi", + "gwgw": "gowrap", + "goz": "goztepe-s-k-fan-token", + "xgp": "gp-coin", + "g360": "gpt360", + "gptplus": "gptplus", + "gpt": "qna3-ai", + "gptv": "gptverse", + "gpubot": "gpubot", + "gpuinu": "gpu-inu", + "gpx": "grabpenny", + "gracy": "gracy", + "graf": "smoking-giraffe", + "grai": "grai", + "igrail": "grail-inu", + "gram": "solgram", + "gramg": "gram-gold", + "gramp": "gram-platinum", + "grams": "gram-silver", + "gslam": "gramslams", + "grain": "granary", + "gb": "grand-base", + "grape": "the-grapes-grape-coin", + "grp": "grape-2-2", + "gp": "nexus-asa", + "glq": "graphlinq-protocol", + "grve": "grave", + "gio": "graviocoin", + "gravitas": "gravitas", + "grav": "graviton", + "gtron": "gravitron", + "g-usdc": "gravity-bridge-usdc", + "gcx": "greasycex", + "gbd": "great-bounty-dealer", + "$grl": "greelance", + "gac": "greenart-coin", + "grbe": "green-beli", + "eben": "green-ben", + "gbtc": "growthdefi-gbtc", + "gbc": "green-block-capital", + "ged": "greendex", + "gnc": "greenercoin", + "tripx": "green-foundation", + "ggc": "green-god-candle", + "$greengold": "greengold", + "$ggh": "green-grass-hopper", + "cbd": "greenheart-cbd", + "grnl": "greenlers", + "gle": "green-life-energy", + "gst-sol": "green-satoshi-token", + "gst-bsc": "green-satoshi-token-bsc", + "gst-eth": "green-satoshi-token-on-eth", + "ginux": "green-shiba-inu", + "grwv": "greenwaves", + "gzx": "greenzonex", + "greg": "greg16676935420", + "gre": "gre-labs", + "grelf": "grelf", + "grc": "gridcoin-research", + "gart": "griffin-art-ecosystem", + "grimace": "grimace-coin", + "grim": "grimreaper", + "grin": "grin", + "grizzly": "grizzly-bot", + "ghny": "grizzly-honey", + "grs": "groestlcoin", + "grok1.5": "grok1-5", + "$grok": "grok-2", + "grok2.0": "grok2-0", + "xai": "xai-corp", + "grokbank": "grok-bank", + "grokbot": "grokbot", + "grokboy": "grokboy", + "grokbull": "grok-bull", + "grōk": "grok-by-grok-com", + "grokcat": "grok-cat", + "grokceo": "grok-ceo", + "groc": "grok-chain", + "grok cm": "grok-community", + "grokdoge": "grokdoge", + "gdx": "grokdogex", + "gelo": "grok-elo", + "grokgirl": "grok-girl", + "grokheroes": "grok-heroes", + "grokinu": "grok-inu", + "grokky": "grokky", + "grokmoon": "grok-moon", + "grokqueen": "grok-queen", + "groktether": "groktether", + "grok x": "grok-x", + "gr": "grom", + "groove": "groove", + "groq": "groq", + "grv": "grove", + "gburn": "grovecoin-gburn", + "grw": "growsol", + "gro": "growth", + "groyper": "groyper", + "grug": "grug", + "gse": "gsenetwork", + "gst": "gstcoin", + "gtai": "gt-protocol", + "gtrok": "gtrok", + "gu": "gu", + "guac": "guacamole", + "guap": "guapcoin", + "tee": "guarantee", + "guardai": "guardai", + "gobal": "guardians-of-the-ball", + "guard": "guardian-token", + "godex": "guard-of-decent", + "guccipepe": "guccipepe", + "guess": "guessonchain", + "gui": "gui-inu", + "gf": "guildfi", + "gog": "guild-of-guardians", + "gulf": "gulfcoin-2", + "gummy": "gummy", + "gsts": "gunstar-metaverse", + "gurs": "gursonavax", + "guru": "guru-network", + "gus": "gus", + "guufy": "guufy", + "hole": "guys", + "gzlr": "guzzler", + "gxc": "gxchain", + "gyen": "gyen", + "gym ai": "gym-ai", + "gymnet": "gym-network", + "gyoshi": "gyoshi", + "gyoza": "gyoza", + "gyr": "gyre-token", + "gyfi": "gyroscope", + "gyd": "gyroscope-gyd", + "gw": "gyrowin", + "yfih2": "h2finance", + "h2o": "h2o-dao", + "h2on": "h2o-securities", + "habbo": "habbolana", + "habi": "habi", + "habibi": "habibi-sol", + "hac": "planet-hares", + "hacd": "hacash-diamond", + "hachi": "hachikosolana", + "hachiko": "hachiko-2", + "haki": "hachiko-era", + "inu": "solana-inu", + "hai": "let-s-get-hai", + "hades": "hades-network", + "hasui": "haedal-staked-sui", + "haggord": "haggord", + "haha": "mother-of-memes-2", + "rizo": "rizo", + "haiperai": "haiperai", + "hair": "hairdao", + "hairy": "hairy-the-bene", + "hakka": "hakka-finance", + "haku": "hakuswap", + "hal": "halcyon", + "piza": "pizza-cat", + "shib0.5": "half-shiba-inu", + "hls": "halisworld", + "halo": "halonft-art", + "ho": "halo-network", + "halving": "halving", + "halvi": "halvi-solana", + "hami": "hamachi-finance", + "$hami": "hami", + "hust": "hamilton-ust", + "ham": "hamster", + "groomer": "hamster-groomers", + "hmstr": "hamster-kombat", + "hams": "hamsters", + "han": "hanchain", + "forex": "handle-fi", + "hns": "handshake", + "handy": "handy", + "handz": "handz-of-gods", + "hanep": "haneplatform", + "hank": "hank", + "hut": "hibiki-run", + "hanu": "hanu-yokia", + "hapi": "hapi", + "happi": "happi-cat", + "smileai": "happyai", + "hbdc": "happy-birthday-coin", + "happy": "happyfans", + "hpc": "happy-puppy-club", + "$haram": "haram", + "harambe": "harambecoin", + "harambeai": "harambe-ai", + "hart": "hara-token", + "harbor": "harbor-2", + "hbr": "harbor-3", + "nick": "i-choose-rich-everytime", + "hare": "hare-token", + "quins": "harlequins-fan-token", + "one": "onetokenburn", + "harold": "harold", + "hrp": "harpoon", + "saitama": "harrypotterrussellsonic1inu", + "ethereum": "voldemorttrumprobotnik-10neko", + "hashai": "hashai", + "hbit": "hashbit-2", + "hsc": "hashcoin", + "hft": "hodl-finance", + "gard": "hashgard", + "hsk": "hashkey-ecopoints", + "hash": "provenance-blockchain", + "pack": "pack", + "link[hts]": "hashport-bridged-link", + "qnt[hts]": "hashport-bridged-qnt", + "wavax[hts]": "hashport-bridged-wavax", + "mooo": "hashtagger", + "hashtag": "hashtag-united-fan-token", + "0xvox": "hashvox-ai", + "hat": "joe-hat-token", + "hatchy": "hatchypocket", + "htr": "hathor", + "htm": "hatom", + "hava": "hava-coin", + "hvh": "havah", + "hf": "have-fun-598a6209-8136-4282-a14c-1f2b2b5d0c26", + "xhv": "haven", + "h1": "haven1", + "cmps": "haven-s-compass", + "haven": "haven-token", + "havoc": "havoc", + "snx": "sincronix", + "hawex": "hawex", + "hawk": "hawksight", + "hawktuah": "hawk-tuah", + "hay": "haycoin", + "hbarbarian": "hbarbarian", + "hbarx": "hbarx", + "h": "h-df0f364f-76a6-47fd-9c38-f8a239a4faad", + "oki": "hdoki", + "hdl": "headline", + "hst": "headstarter", + "hmd": "healthmedi", + "hnx": "heartx-utility-token", + "hto": "heavenland-hto", + "hebe": "hebeblock", + "hect": "hectic-turkey", + "hec": "heroeschained", + "hbar": "hedera-hashgraph", + "hlqt": "hedera-liquity", + "hchf": "hedera-swiss-franc", + "hedex": "hedex", + "hedgehog": "hedgehog", + "hif": "hedgehog-in-the-fog", + "hedge": "hedge-on-sol", + "hpay": "hedgepay", + "hget": "hedget", + "hedg": "hedgetrade", + "ush": "unsheth", + "hdp.ф": "hedpay", + "hdrn": "hedron", + "heehee": "heeeheee", + "hefe": "hefe", + "hefi": "hefi", + "$hege": "hege", + "hegic": "hegic", + "yvhegic": "hegic-yvault", + "hehe": "hehecat", + "hela": "hela", + "hlusd": "hela-usd", + "helena": "helena", + "helga": "helga-inu", + "heli": "heliswap", + "copter": "helicopter-finance", + "hd": "heli-doge", + "lisusd": "helio-protocol-hay", + "hlx": "helios", + "usdc[hts]": "heliswap-bridged-usdc-hts", + "hnt": "helium", + "iot": "iotec-finance", + "mobile": "helium-mobile", + "hsol": "helius-staked-sol", + "hel": "hellar", + "hnc": "hot-n-cold-finance", + "htt": "hello-art", + "hello": "hello-labs", + "helmet": "helmet-insure", + "hkc": "helpkidz-coin", + "hth": "help-the-homeless-coin", + "hms": "hemis", + "thc": "transhuman-coin", + "hemule": "hemule", + "hptf": "heptafranc", + "hte": "hepton", + "hera": "hero-arena", + "herb": "herbcoin", + "hmx": "hmx", + "hermes": "hermes-protocol", + "hez": "hermez-network-token", + "mudol2": "hero-blaze-three-kingdoms", + "hct": "hurricaneswap-token", + "play": "xcad-network-play", + "he": "heroes-empires", + "mavia": "heroes-of-mavia", + "hon": "soul-society", + "htd": "heroes-td", + "cgc": "heroestd-cgc", + "rofi": "herofi-token-2", + "hp": "heropark", + "hex": "hex-pulsechain", + "hexdc": "hex-dollar-coin", + "hoa": "hex-orange-address", + "usdx": "usdx", + "a2e": "heyflokiai", + "rb": "runesbridge", + "hibakc": "hibakc", + "hibeanz": "hibeanz", + "hibs": "hiblocks", + "hdao": "hyperdao", + "hi": "hi-dollar", + "hidoodles": "hidoodles", + "hiens3": "hiens3", + "hiens4": "hiens4", + "hifi": "hifi-finance", + "hifluf": "hifluf", + "hifriends": "hifriends", + "high": "highstreet", + "higher": "my-pronouns-are-high-er", + "noon": "highnoon", + "hpb": "high-performance-blockchain", + "hyeth": "high-yield-eth-index", + "hyusd": "high-yield-usd-base", + "hikari": "hikari-protocol", + "hsf": "hillstone", + "hilo": "hilo", + "himfers": "himfers", + "him": "human-intelligence-machin", + "himoonbirds": "himoonbirds", + "himo": "himo-world", + "hiodbs": "hiodbs", + "hipenguins": "hipenguins", + "hpo": "humanscape", + "hton": "hipo-staked-ton", + "hiram": "hiram", + "hrt": "hiro", + "hiseals": "hiseals", + "hta": "historia", + "hao": "historydao", + "hope": "hope-2", + "hit": "hitchain", + "hmkr": "hitmakr", + "hiundead": "hiundead", + "hivalhalla": "hivalhalla", + "hive": "white-hive", + "hbd": "hybrid-token-2f302f60-395f-4dd0-8c18-9c5418a61a31", + "hgt": "hive-game-token", + "honey": "hivemapper", + "hny": "honey", + "hivp": "hiveswap", + "hvn": "hiveterminal", + "hivewater": "hivewater", + "hkava": "hkava", + "hmm": "hmmonsol", + "hnb": "hnb-protocol", + "hoc": "hocus-pocus-finance", + "hodl": "ordinal-hodl", + "hod": "hodooi-com", + "hog": "hog", + "hoichi": "hoichi", + "$hokk": "hokkaido-inu", + "hoka": "hokkaido-inu-30bdfab6-dfb9-4fc0-b3c3-02bffe162ee4", + "hinu": "hypra-inu", + "doken": "hokkaido-ken", + "hokk": "hokkaidu-inu", + "hola": "hola", + "hfun": "hypurr-fun", + "hm": "horizon-blockchain", + "hldr": "holdr", + "hsusdc": "holdstation-usd-coin", + "ugold": "ugold-inc", + "hgold": "hollygold", + "hlg": "holograph", + "hol": "hololoot", + "ride": "holoride", + "hot": "holotoken", + "hly": "holygrail", + "holy": "holygrails-io", + "hom": "hom", + "hts": "home3", + "simpson": "homer", + "simpson 2.0": "homer-2", + "homie": "homie", + "homiecoin": "homie-wars", + "hnst": "honest-mining", + "hoba": "honey-badger-2", + "hxd": "honeyland-honey", + "hkd": "hongkongdao", + "honkler": "honkler", + "hrm": "honorarium", + "hwt": "honor-world-token", + "hook": "hooked-protocol", + "hoops": "hoops", + "htn": "hoosat-network", + "hop": "hop-protocol", + "hoppyinu": "hoppyinu", + "hoppy": "hoppy-token", + "hopr": "hopr", + "hord": "hord", + "hzn": "horizon-protocol", + "hrzn": "horizon-3", + "hornt": "hornt", + "horny": "horny-hyenas", + "$hrx": "horuslayer", + "hosky": "hosky", + "hostai": "host-ai", + "boxy": "hot-boxy", + "hotcross": "hot-cross", + "hotdoge": "hot-doge", + "htl": "hotelium", + "hotkey": "hotkeyswap", + "hotmoon": "hotmoon", + "hottie": "hottie-froggie", + "lock": "houdini-swap", + "wait": "hourglass", + "hgp": "hourglass-protocol", + "house": "house", + "hou": "houston-token", + "hov": "hover", + "hcat": "howcat", + "howdy": "howdysol", + "how": "howinu", + "hwl": "howl-city", + "puff": "puff-the-dragon", + "tether": "hpohs888inu", + "hc": "hshare", + "hsuite": "hsuite", + "html": "htmlcoin", + "htx": "htx-dao", + "hbb": "hubble", + "hbn": "hubin-network", + "swirlx": "hubswirl", + "finn": "huckleberry", + "hudi": "hudi", + "hug": "hug", + "huge": "hugewin", + "hghg": "hughug-coin", + "huhcat": "huh-cat", + "huhu": "huhu-cat", + "hulvin": "hulvin", + "huma": "huma-finance", + "hmq": "humaniq", + "dply": "humanity-protocol-dply", + "$hmt": "humanize", + "hmnd": "humanode", + "humai": "humanoid-ai", + "hmt": "human-protocol", + "heart": "humans-ai", + "hcfw": "humanscarefoundationwater", + "hmng": "hummingbird-finance-2", + "hbot": "hummingbot", + "hum": "hummus", + "hump": "hump", + "hund": "hund", + "hundred": "hundred", + "hnd": "hundred-finance", + "hvi": "hungarian-vizsla-inu", + "hntr": "hunter", + "laptop": "hunter-biden-s-laptop", + "huntboden": "hunter-boden", + "huny": "huny", + "hbtc": "huobi-btc-wormhole", + "ht": "huobi-token", + "lya": "huralya", + "husd": "husd", + "hush": "hush", + "hus": "husky-ai", + "husky": "husky-avax", + "hxa": "hxacoin", + "hxro": "hxro", + "hydra": "tonhydra", + "hdx": "hydradx", + "hdn": "hydranet", + "hdv": "hydraverse", + "hdro": "hydro-protocol-2", + "hinj": "hydro-staked-inj", + "hydt": "hydt-protocol-hydt", + "hyc": "hyena-coin", + "hygt": "hygt", + "hyme": "hyme", + "hmtt": "hype-meme-token", + "hyper": "hyperchainx", + "hbt": "hyperbc", + "hype": "supreme-finance", + "hyco": "hypercomic", + "hypc": "hypercycle", + "hypt": "hyperdust", + "hgpt": "hypergpt", + "hyperai": "hyperhash-ai", + "hpy": "hyper-pay", + "pill": "hyperpill", + "hq": "hyperquant-2", + "hid": "hypersign-identity-token", + "hyp": "hypra", + "hypr": "hypr-network", + "rupee": "hyruleswap", + "topia": "hytopia", + "hyve": "hyve", + "hzm": "hzm-coin", + "$agnt": "iagent-protocol", + "iag": "iagon", + "iamx": "iamx", + "iazuki": "iazuki", + "ibcx": "ibc-index", + "ibg": "ibg-token", + "ibh": "ibithub", + "ibs": "ibs", + "ibtc": "interbtc", + "bfr": "ibuffer-token", + "vel": "icarus-m-guild-war-velzeroth", + "wcore": "wrapped-core", + "iceland": "ice-land-on-eth", + "ichi": "legacy-ichi", + "icl": "ironclad-token", + "icom": "icommunity", + "icx": "ic-x", + "icnq": "iconiq-lab-token", + "icnx": "icon-x-world", + "icsa": "icosa-eth", + "icpi": "icpi", + "ics": "icpswap-token", + "icpx": "icrypex-token", + "ict": "internet-computer-technology", + "ic": "icy", + "icy": "icycro", + "idv": "idavoll-network", + "io": "io", + "idea": "ideaology", + "idyp": "idefiyieldprotocol", + "idna": "idena", + "ide": "ide-x-ai", + "ido": "interstellar-domain-order", + "idia": "idia", + "idle": "idle", + "idledaisafe": "idle-dai-risk-adjusted", + "idledaiyield": "idle-dai-yield", + "idlesusdyield": "idle-susd-yield", + "idletusdyield": "idle-tusd-yield", + "idleusdcsafe": "idle-usdc-risk-adjusted", + "idleusdcyield": "idle-usdc-yield", + "idleusdtsafe": "idle-usdt-risk-adjusted", + "idleusdtyield": "idle-usdt-yield", + "idlewbtcyield": "idle-wbtc-yield", + "idm": "idm-token", + "idk": "i-dont-know", + "idoodles": "idoodles", + "idrx": "idrx", + "ieth": "instadapp-eth", + "rlc": "iexec-rlc", + "ifarm": "ifarm", + "ifc": "infinitecoin", + "ignis": "ignis", + "fbtc": "ignition-fbtc", + "4token": "ignore-fud", + "igup": "iguverse", + "igu": "iguverse-igu", + "ihf": "ihf-smart-debase-token", + "iht": "iht-real-estate-protocol", + "ily": "iiii-lovvv-youuuu", + "ijz": "iinjaz", + "ijc": "ijascoin", + "ikigai": "ikigai", + "capo": "ilcapo", + "ilc": "ilcoin", + "milk": "udder-chaos-milk", + "ilum": "illuminati", + "nati": "illuminaticoin", + "ix": "illuminex", + "illusion": "illusion", + "illuvia": "illuvia", + "ilv": "illuvium", + "puppies": "i-love-puppies", + "lovesnoopy": "i-love-snoopy", + "imagine": "imagine", + "imaro": "imaro", + "imayc": "imayc", + "lime": "lime-cat", + "imgnai": "imgnai", + "immo": "immortaldao", + "dara": "immutable", + "imx": "immutable-x", + "notket": "im-not-a-ket", + "imo": "imonster", + "imt": "imov", + "pact": "impactmarket-2", + "ime": "imperium-empires", + "ibex": "impermax-2", + "impls": "impls-finance", + "if": "impossible-finance", + "impt": "impt", + "inbred": "inbred-cat", + "incbeth": "inception-restaked-cbeth", + "inlseth": "inception-restaked-lseth", + "inmeth": "inception-restaked-meth", + "inoeth": "inception-restaked-oeth", + "inreth": "inception-restaked-reth", + "insteth": "inception-restaked-steth", + "insweth": "inception-restaked-sweth", + "inwbeth": "inception-restaked-wbeth", + "inci": "inci-token", + "incr": "increment", + "i20": "index20", + "iai": "inheritance-art", + "ixad": "index-avalanche-defi", + "btc2x": "index-coop-bitcoin-2x-index", + "cdeti": "index-coop-coindesk-eth-trend-index", + "index": "index-cooperative", + "eth2x-fli-p": "index-coop-eth-2x-flexible-leverage-index", + "eth2x": "index-coop-ethereum-2x-index", + "matic2x-fli-p": "index-coop-matic-2x-flexible-leverage-index", + "ndx": "indexed-finance", + "icc": "indian-call-center", + "indshib": "indian-shiba-inu", + "indi": "indigg", + "kcash": "indigg-kratos-cash", + "indy": "indigo-dao-governance-token", + "$inr": "inery", + "monie": "infiblue-world", + "inficloud": "inficloud", + "infi": "infinimos", + "inf": "socean-staked-sol", + "inftee": "infinitee", + "torr": "infinitorr", + "ing": "influpia", + "ibit": "infinitybit-token", + "ipad": "infinity-pad-2", + "infinity": "infinity-protocol", + "irt": "infinity-rocket-token", + "isky": "infinity-skies", + "ihc": "inflation-hedging-coin", + "ins": "insect", + "init": "init", + "boys": "inj-boys", + "ikings": "injective-kings", + "$ipepe": "injective-pepes", + "inj": "injective-protocol", + "qunt": "injective-quants", + "injx": "injex-finance", + "ink": "ink-fantom", + "quill": "ink-finance", + "inn": "innova", + "ino": "innovai", + "innbc": "innovative-bioresearch", + "inva": "innoviatrust", + "inovai": "inovai", + "ipwt": "in-pepe-we-trust", + "ipx": "ipx-token", + "labz": "insane-labz", + "insc": "insc", + "icda": "inscription-dao", + "instar": "insights-network", + "inx": "inx-token-2", + "insolvent": "insolvent", + "insp": "inspire-ai", + "$insrt": "insrt-finance", + "xusdt": "wanchain-bridged-usdt-xdc-network", + "inst": "instadapp", + "idai": "instadapp-dai", + "ieth v2": "instadapp-eth-v2", + "iusdc": "instadapp-usdc", + "iwbtc": "instadapp-wbtc", + "isla": "insula", + "insur": "insurace", + "sure": "insure", + "ixt": "ix-token", + "itgr": "integral", + "teer": "integritee", + "ioc": "intelligence-on-chain", + "inqu": "intelliquant", + "itx": "itronix", + "intl": "intelly", + "intx": "intexcoin", + "ibeth": "interest-bearing-eth", + "iceth": "interest-compounding-eth-index", + "🐒": "intergalactic", + "intr": "interlay", + "ilock": "interlock", + "inter": "inter-milan-fan-token", + "isc": "international-stable-currency", + "net": "netsis", + "icp": "internet-computer", + "idoge": "internet-doge", + "im": "internet-money-bsc", + "ioen": "internet-of-energy-network", + "int": "intrepid-token", + "intern": "interns", + "inxt": "internxt", + "itp": "interport-token", + "ist": "inter-stable-token", + "tox": "trollbox", + "inuinu": "inu-inu", + "inuko": "inuko-finance", + "invectai": "invectai", + "iethv": "inverse-ethereum-volatility-index-token", + "inv": "inverse-finance", + "icg": "invest-club-global", + "ivn": "investin", + "in": "investive", + "kieth": "invisible-cat", + "invite": "invite-token", + "invi": "invi-token", + "iv": "invoke", + "iobusd": "iobusd", + "ioeth": "ioeth", + "ioi": "ioi-token", + "ion": "ziyon", + "inp": "ionic-pocket-token", + "ionusdt": "ionic-tether-usd", + "ionusdc": "ionic-usd-coin", + "iost": "iostoken", + "iota": "iota", + "mtgo": "iotex-monster-go", + "tex": "iotexpad", + "ioshib": "iotexshiba", + "wifi": "wifi", + "wnt": "wicrypt", + "xnet": "xnet-mobile", + "iousdc": "iousdc", + "iousdt": "iousdt", + "iowbtc": "iowbtc", + "iown": "iown", + "ipmb": "ipmb", + "ipor": "ipor", + "ipv": "ipverse", + "iq50": "iq50", + "iqt": "iqt-token", + "irena": "irena-green-energy", + "ird": "iridium", + "iristoken": "iris-ecosystem", + "iris": "iris-token-2", + "iro": "iro-chan", + "ib": "iron-bank", + "ibeur": "iron-bank-euro", + "iron": "iron-stablecoin", + "titan": "titanswap", + "iryde": "iryde", + "iset-84e55e": "isengard-nft-marketplace", + "durth": "ishares-msci-world-etf-tokenized-stock-defichain", + "ishi": "ishi", + "ishib": "ishib", + "shk": "ishook", + "isikc": "isiklar-coin", + "isk": "iskra-token", + "islm": "islamic-coin", + "islami": "islamicoin", + "isa": "islander", + "isp": "ispolink", + "issp": "issp", + "i-stable": "istable", + "ibfk": "istanbul-basaksehir-fan-token", + "iwft": "istanbul-wild-cats-fan-token", + "istep": "istep", + "syth": "isynthetic-token", + "ita": "italian-national-football-team-fan-token", + "itam": "itam-games", + "itc": "itc", + "item": "itemverse", + "itheum": "itheum", + "shrimple": "its-as-shrimple-as-that", + "itsb": "itsbloc", + "rock": "rockswap", + "over": "overprotocol", + "itg": "it-technology-global-ltd", + "iucn": "iucn-coin", + "iusd": "izumi-bond-usd", + "ius": "iustitia-coin", + "ivpay": "ivendpay", + "ivex": "ivex", + "ivip": "ivipcoin", + "ivy": "ivy-live", + "shit": "shitcoin-on-ton", + "ixc": "ixcoin", + "ixi": "ixicash", + "ixir": "ixirswap", + "ixo": "ixo", + "ixs": "ix-swap", + "iykyk": "iykyk", + "izi": "izumi-finance", + "jab": "jable", + "jace": "jace", + "jack": "jack-the-goat", + "jkl": "jackal-protocol", + "jbot": "jackbot", + "jfi": "jungle-defi", + "jackpot": "jackpot-on-solana", + "$jacky": "jacky", + "jacy": "jacy", + "jade": "jaderoll", + "jaiho": "jaiho-crypto", + "jail": "jail", + "cuff": "jail-cat", + "jne": "jake-newman-enterprises", + "jala": "jalapeno-finance", + "jani": "jani", + "janny": "janny", + "japan": "japan-coin", + "jared": "jared-from-subway", + "jarvis": "jarvis-2", + "jrt": "jarvis-reward-token", + "jeur": "jarvis-synthetic-euro", + "jchf": "jarvis-synthetic-swiss-franc", + "jsm": "jaseonmun", + "fjlt-f24": "jasmine-forwards-voluntary-rec-front-half-2024-liquidity-token", + "jasmy": "jasmycoin", + "jason": "jason-sol", + "polluk": "jasse-polluk", + "meelay": "javor-meelay", + "jav": "javsphere", + "wjxn": "jax-network", + "jay": "jaypegggers", + "jcc": "jc-coin", + "jdc": "jd-coin", + "$jeet": "jeeter-on-solana", + "jefe": "jefe-2", + "jeff": "jeffworld-token", + "jj": "jjmoji-2", + "jelli": "jelli", + "jfish": "jellyfish-mobile", + "jly": "jellyverse", + "jen": "jen-coin", + "jco": "jennyco", + "jensen": "jensen-huang-meme", + "boden": "jeo-boden", + "jerry": "jerry-inu", + "jesus": "jesus-on-sol", + "jet": "jetcoin", + "jetcat": "jetcat", + "jets": "jetoken", + "jts": "jts", + "jetton": "jetton", + "jex": "jexchange", + "jfin": "jfin-coin", + "jigen": "jigen-2", + "stak": "jigstack", + "jillboden": "jill-boden", + "jimmy": "jimmy-on-solana", + "jind": "jindo-inu", + "jinko": "jinko-ai", + "jto": "jito-governance-token", + "jitosol": "jito-staked-sol", + "jiyuu": "jiyuu", + "jizz": "jizzrocket", + "jk": "jk-coin", + "job": "jobchain", + "joe": "joe-coin", + "jeoing737": "joeing737", + "joel": "joel", + "jyc": "joe-yo-coin", + "jogeco": "jogeco-dog", + "jdoge": "john-doge", + "pork": "pork", + "john": "john-the-coin", + "jdt": "johor-darul-ta-zim-fc", + "jlt": "join-learn-and-thrive-token", + "jojo": "jojo-2", + "joker": "the-joker-coin", + "jok": "jokinthebox", + "jolt": "joltify", + "$jones": "jones", + "jones": "jones-dao", + "jglp": "jones-glp", + "jobt": "jongro-boutique", + "jfive": "jonny-five", + "joops": "joops", + "poowel": "joram-poowel", + "josh": "josh", + "joule": "joule-2", + "jart": "journart", + "jrny": "journey-ai", + "jovjou": "jovjou", + "jp": "jp", + "jpeg": "jpeg-ordinals", + "jpgd": "jpeg-d-2", + "jpgc": "jpgoldcoin", + "jpg": "jpg-store", + "jsol": "jpool", + "jpyc": "jpy-coin", + "jtc": "jtc-network", + "judge": "judge-ai", + "jmtai": "judgment-ai", + "jgn": "juggernaut", + "jugni": "jugni", + "$juice": "juice", + "juc": "juice-2", + "jbx": "juicebox", + "juice": "juice-finance", + "jsp": "juicybet", + "jucysol": "juicy-staked-sol", + "jujube": "jujube", + "juld": "julswap", + "jumbo": "jumbo-exchange", + "jum": "jumoney", + "jmpt": "jumptoken", + "jungle": "jungledoge", + "jngl": "jungle-labz", + "junior": "junior", + "juno": "juno-network", + "jupbot": "jupbot", + "jup": "jupiter-exchange-solana", + "jlp": "jupiter-perpetuals-liquidity-provider-token", + "jupsol": "jupiter-staked-sol", + "jupu": "jupu", + "ju": "ju-rugan", + "jusd": "jusd", + "jst": "just", + "rocco": "just-a-rock", + "jm": "justmoney-2", + "usdj": "just-stablecoin", + "jtt": "justus", + "juv": "juventus-fan-token", + "k21": "k21", + "knine": "k9-finance-dao", + "karcon": "kaarigar-connect", + "kabal": "kabal", + "kabo": "kabochan", + "kabosu": "kabosu-on-sol", + "$kabosu": "kabosu-3", + "kceo": "kabosuceo", + "kbc": "kibho-coin", + "kaby": "kaby-arena", + "kch": "kaching", + "kdx": "kaidex", + "kda": "kadena", + "kaeru": "kaeru-the-frog", + "kfn": "kafenio-coin", + "kage": "kage", + "kaf": "kaif", + "kaiju": "kaijuno8", + "kai": "kreaitor", + "kzen": "kaizen", + "kaka": "kaka-nft-world", + "kakaxa": "kakaxa", + "kala": "kalax", + "klo": "kalao", + "$kalei": "kaleidocube", + "kalis": "kalichain", + "ks": "kalisten", + "kalm": "kalmar", + "klc": "kalycoin", + "kama": "kamala-horris", + "klt": "kamaleont", + "kat": "karat", + "kmno": "kamino", + "kampay": "kampay", + "kan": "kan", + "okinami": "kanagawa-nami", + "kana": "kanaloa-network", + "kang3n": "kang3n", + "kng": "kanga-exchange", + "kangal": "kangal", + "kang": "kangamoon", + "kroo": "kangaroo-community", + "ye": "mr-west", + "kap": "kapital-dao", + "intellique": "karasou", + "umy": "karastar-umy", + "karate": "karate-combat", + "krb": "karbo", + "karen": "karen-hates-you", + "$kepe": "karen-pepe", + "kls": "karlsen", + "karma": "karmacoin", + "knot": "karmaverse", + "karrat": "karrat", + "ksk": "karsiyaka-taraftar-token", + "kar": "karura", + "kasa": "kasa-central", + "kas": "wrapped-kaspa", + "kmn": "kaspamining", + "kacy": "kassandra", + "kasta": "kasta", + "kata": "katana-inu", + "katchu": "katchusol", + "ktn": "kattana", + "katt": "katt-daddy", + "kava": "kava", + "hard": "kava-lend", + "swp": "sprint-2", + "kwt": "kawaii-islands", + "kcal": "kcal", + "kccpad": "kccpad", + "kdag": "kdag", + "kdl": "kdlaunch", + "kds": "kdswap", + "kebabs": "kebapp", + "kp3r": "keep3rv1", + "keep": "keep-network", + "kverse": "keeps-coin", + "kei": "kei-finance", + "keko": "keko", + "kelp": "kelp-dao", + "rseth": "layerzero-bridged-rseth-linea", + "kep": "kelp-earned-points", + "kel": "kelvpn", + "ken": "kohenoor", + "knda": "kenda", + "kendu": "kendu-inu", + "kenka": "kenka-metaverse", + "kns": "kenshi-2", + "knto": "kento", + "kphi": "kephi-gallery", + "kpl": "kepple", + "kept": "keptchain", + "kerc": "kerc", + "keren": "keren", + "kermit": "kermit-cc0e2d66-4b46-4eaf-9f4e-5caa883d1c09", + "kern": "kernel", + "kreth": "kernel-restaked-eth", + "kseth": "kernel-staked-eth", + "kusd": "kolibri-usd", + "kerosene": "kerosene", + "ketamine": "ketamine", + "kevin": "kevin-2", + "kwl": "kewl-exchange", + "keycat": "keyboard-cat-base", + "$keydog": "keydog", + "keyfi": "keyfi", + "kol": "king-of-legends-2", + "keysatin": "keysatin", + "keys": "keys-token", + "xki": "ki", + "kiba": "kiba-inu", + "kibble": "kibble", + "kib": "kibbleswap", + "kibshi": "kiboshib", + "kick": "kick", + "kpad": "kickpad", + "kiiro": "kiirocoin", + "kiki": "kiki-sol", + "lop": "kilopi-8ee65670-efa5-4414-b9b4-1a1240415d74", + "kilt": "kilt-protocol", + "kimbo": "kimbo", + "kimchi": "kimchi-finance", + "kim": "kim-token", + "kin": "kin", + "kgb": "kind-guardians-of-blockchain-protocol", + "knt": "kinect-finance", + "knk": "kineko-knk", + "kine": "kine-protocol", + "kau": "kinesis-gold", + "kag": "kinesis-silver", + "kru": "kingaru", + "kingbonk": "king-bonk", + "kingcat": "king-cat", + "kingdom": "kingdomgame", + "kdg": "kingdom-game-4-0", + "kkt": "kingdom-karnage", + "antc": "kingdom-of-ants-ant-coins", + "kt": "kingdomx", + "kfr": "king-forever", + "kinggrok": "king-grok", + "lion": "lion-token", + "kingshib": "king-shiba", + "kingshit": "kingshit", + "kingu": "kingu", + "kingwif": "king-wif", + "kingy": "kingyton", + "kini": "kini", + "xnk": "kinka", + "kint": "kintsugi", + "kbtc": "kintsugi-btc", + "kira": "kira-the-injective-cat", + "kex": "kira-network", + "kiro": "kirobo", + "kitup": "kiseki", + "kishu": "kishu-inu", + "kishk": "kishu-ken", + "ksn": "kissan", + "kite": "kite", + "kiteai": "kiteai", + "gil": "kith-gil", + "$kmc": "kitsumon", + "kif": "kittenfinance", + "khai": "kitten-haimer", + "kittenwif": "kittenwifhat", + "kitti": "kitti", + "kitty": "roaring-kitty-solana", + "kcake": "kittycake", + "ktr": "kitty-run", + "kwh": "kittywifhat", + "kivr": "kiverse-token", + "$kiwi": "kiwi-deployer-bot", + "kiwi": "kiwi-token-2", + "kizuna": "kizuna", + "klap": "klap-finance", + "dice": "klaydice", + "kfi": "klever-finance", + "kly": "klayr", + "ksp": "klayswap-protocol", + "kdai": "klaytn-dai", + "klay": "klay-token", + "ktu": "klaytu", + "klee": "kleekai", + "kleo": "kleomedes", + "pnk": "kleros", + "kleva": "kleva", + "klv": "klever", + "kid": "kleverkid-coin", + "klima": "klima-dao", + "klub": "klubcoin", + "ktv": "kmushicoin", + "kws": "knight-war-spirits", + "kft": "knit-finance", + "knob": "knob", + "knox": "knox-dollar", + "kkma": "koakuma", + "koko": "kokodi", + "koava": "koava", + "kstt": "kocaelispor-fan-token", + "kochi": "kochi-ken-eth", + "koda": "koda-finance", + "kogecoin": "kogecoin", + "kohler": "kohler", + "koi": "koi-3", + "kbt": "koinbay-token", + "koji": "koji", + "kok": "kok", + "kokoa": "kokoa-finance", + "ksd": "kokoa-stable-dollar", + "kdao": "kolibri-dao", + "kltr": "kollector", + "kom": "kommunitas", + "kmd": "komodo", + "kompete": "kompete", + "kndx": "kondux-v2", + "kong": "ton-kong", + "konke": "konke", + "kct": "konnect", + "kpn": "konnektvpn", + "kono": "konomi-network", + "kon": "konpay", + "kooky": "kooky", + "korra": "korra", + "kora": "kortana", + "kot": "kotia", + "kto": "kounotori", + "kovin": "kovin-segnocchi", + "kyo": "koyo", + "koy": "koyo-6e93c7c7-03a3-4475-86a1-f0bc80ee09d6", + "kpc": "k-pop-click-coin", + "kpop": "k-pop-on-solana", + "krav": "krav", + "krazy": "krazy-n-d", + "krees": "krees", + "krest": "krest", + "krida": "krida-fans", + "krill": "polywhale", + "kripto": "kripto", + "kro": "kroma", + "krom": "kromatika", + "knb": "kronobit", + "krw": "krown", + "krl": "kryll", + "xkr": "kryptokrona", + "kmon": "kryptomon", + "krd": "krypton-dao", + "seilor": "kryptonite", + "stsei": "kryptonite-staked-sei", + "kgc": "krypton-token", + "kxa": "kryxivia-game", + "krx": "kryza-exchange", + "krn": "kryza-network", + "ksta": "k-stadium", + "ksc": "kstarcoin", + "knft": "kstarnft", + "ktt": "k-tune", + "ktc": "ktx-finance", + "kube": "kubecoin", + "kcs": "kucoin-shares", + "kuji": "kujira", + "kuku": "pankuku", + "kuma": "kuma-inu", + "dkuma": "kumadex-token", + "kumamon": "kumamon-finance", + "frk": "kuma-protocol-fr-kuma-interest-bearing-token", + "wfrk": "kuma-protocol-wrapped-frk", + "kunai": "kunaikash", + "kunci": "kunci-coin", + "kfucat": "kung-fucat", + "kuni": "kuni", + "knj": "kunji-finance", + "kunkun": "kunkun-coin", + "kurbi": "kurbi", + "kuro": "kurobi", + "jiji": "kuroneko", + "ksm": "kusama", + "kusd-t": "kusd-t", + "kush": "kushcoin-sol", + "kusunoki": "kusunoki-samurai", + "kus": "kuswap", + "qe": "kuza-finance-qe", + "kvnt": "kvants-ai", + "kwai": "kwai", + "kwenta": "kwenta", + "ktx": "kwiktrust", + "kyan": "kyanite", + "kbd": "kyberdyne", + "kncl": "kyber-network", + "knc": "kyber-network-crystal", + "kcn": "kylacoin", + "kswap": "kyotoswap", + "krrx": "kyrrex", + "kte": "kyte-one", + "kyve": "kyve-network", + "kzc": "kzcash", + "kz": "kz-token", + "l": "lormhole", + "l2ve": "l2ve-inu", + "dough": "l3t-h1m-c00k", + "l3usd": "l3usd", + "lsd": "pontem-liquidswap", + "lbl": "label-foundation", + "labi": "labradorbitcoin", + "labsv2": "labs-group", + "labs": "labs-protocol", + "lac": "la-coin", + "$lady": "ladybot", + "laelaps": "laelaps", + "laika": "the-soldog", + "lki": "laika-ai", + "lainesol": "laine-stake", + "lvm": "lakeviewmeta", + "lmf": "lamas-finance", + "lamb": "lambda", + "lmda": "lambda-markets", + "lambo": "lambo-2", + "lm": "leisuremeta", + "lamp": "lamp-on-larissa", + "lana": "lanacoin", + "lanc": "lanceria", + "land": "outlanders", + "tcl": "lander", + "$landlord": "landlord-roland", + "loh": "land-of-heroes-2", + "lrt": "landrocker", + "shard": "landtorn-shard", + "landwolf": "landwolf-3", + "landwu": "land-wu", + "lndx": "landx-governance-token", + "lan": "lan-network", + "lanternsol": "lantern-staked-sol", + "lpp": "lapapuy", + "pta": "la-peseta", + "ptas": "la-peseta-2", + "lqr": "laqira-protocol", + "lar": "larace", + "lrs": "larissa-blockchain", + "larix": "larix", + "larry": "larry-the-llama", + "la": "latoken", + "latte": "latte", + "ltx": "lattice-token", + "lbp": "launchblock", + "lpool": "launchpool", + "lcr": "lucro", + "laurion": "laurion-404", + "lava": "lavaswap", + "lave": "lavandos", + "lavita": "lavita", + "law": "law", + "lbt": "lyfebloc", + "loa": "legend-of-annihilation", + "l2dao": "layer2dao", + "l3": "layer3", + "layer4": "layer4-network", + "lyum": "layerium", + "layer": "unilayer", + "l1x": "layer-one-x", + "zro": "layerzero", + "zusdc": "layerzero-bridged-usdc-aptos", + "lzusdc": "layerzero-usdc", + "lazio": "lazio-fan-token", + "lbk": "lbk", + "lbc": "lifebankchain", + "lcom": "linkcom", + "lcx": "lcx", + "l7l": "le7el", + "loka": "league-of-kingdoms", + "lean": "leancoin", + "lopes": "leandro-lopes", + "lstar": "learning-star", + "leash": "leash", + "bleu": "le-bleu-elefant", + "led": "ledgis", + "ldy": "ledgity-token", + "lee": "love-earn-enjoy", + "lufc": "leeds-united-fan-token", + "leeroy": "leeroy-jenkins", + "leet": "leetswap-canto", + "lme": "legendary-meme", + "lfw": "legend-of-fantasy-war", + "loe": "legends-of-elysium", + "legend": "legends-of-sol", + "lg": "legends-token", + "legion": "legion", + "lgx": "legion-network", + "$legion": "legion-ventures", + "leh": "lehman-brothers", + "leia": "leia-the-cat", + "tigers": "leicester-tigers-fan-token", + "lemeow": "le-meow", + "lemo": "lemochain", + "lemc": "lemonchain", + "lemd": "lemond", + "lemon": "lemon-terminal", + "lemn": "lemon-token", + "lenard": "lenard", + "lendfi": "lendfi-finance", + "lends": "lends", + "( ͡° ͜ʖ ͡°)": "lenny-face", + "leo": "leo-token", + "lenni": "leonard-the-lizard", + "lio": "leonidasbilic", + "leonidas": "leonidas-token", + "leopard": "leopard", + "leox": "leox", + "lesbian": "lesbian-inu", + "leslie": "leslie", + "lthn": "lethean", + "$cook": "let-him-cook", + "lfc": "life-coin", + "letsgo": "lets-go-brandon", + "lvn": "levana-protocol", + "lev": "lever-network", + "lvl": "level", + "lgo": "level-governance", + "lever": "lever", + "l2": "leverj-gluon", + "squid": "squid-game-2", + "lexa": "lexa-ai", + "lex": "lexer-markets", + "lexi": "lexiai", + "@lfg": "lfg", + "lfgo": "lfgo", + "lgcy": "lgcy-network", + "lld": "liberland-lld", + "llm": "llm-eth", + "libero": "libero-financial", + "ltai": "libertai", + "liberta": "libertarian-dog", + "lbm": "libertum", + "flth": "liberty-square-filth", + "libx": "libfi", + "libra": "libra-protocol-2", + "lba": "libra-credit", + "lixx": "libra-incentix", + "lbr": "lybra-finance", + "libre": "libre", + "lc": "lichang", + "lick": "lickgoat", + "ldo": "lido-dao-wormhole", + "stmatic": "lido-staked-matic", + "stsol": "lido-staked-sol", + "lidya": "lidya", + "lien": "lien", + "lif3": "lif3-2", + "lshare": "lif3-lshare", + "lifc": "life-coin-2", + "life": "life-crypto", + "lft": "lifti", + "efil": "liferestart", + "ltnv2": "life-token-v2", + "lfnty": "lifinity", + "usdl": "liquid-loans-usdl", + "lbcc": "lightbeam-courier-coin", + "lhc": "lightcoin", + "lilc": "lightcycle", + "light": "lightning-protocol", + "ll": "lightlink", + "lbtc": "lightning-bitcoin", + "ligma": "ligma-node", + "ligo": "ligo-ordinals", + "like": "only1", + "lilai": "lilai", + "lilcat": "lilcat", + "llt": "lillius", + "lilpump": "lil-pump", + "limex": "limestone-network", + "lmwr": "limewire-token", + "lnt": "limitless-network", + "lmcswap": "limocoin-swap", + "limo": "limoverse", + "lina": "linear", + "linda": "linda-2", + "lab": "the-professor", + "linear": "linear-protocol", + "lnr": "lunar-2", + "lxp": "linea-voyage-xp", + "lwc": "linework-coin", + "ling": "lingose", + "fnsa": "link", + "let": "linkeye", + "linkfi": "linkfi", + "lpl": "linkpool", + "links": "links", + "lts": "linktensor", + "ltao": "linktoa", + "yvlink": "link-yvault", + "linq": "linq", + "lnq": "linqai", + "roar": "roaring-kitty", + "liq": "liquis", + "nastr": "liquid-astr", + "latom": "liquid-atom", + "lico": "liquid-collectibles", + "lcro": "liquid-cro", + "lqdx": "liquid-crypto", + "lqdr": "liquiddriver", + "liveretro": "liquid-driver-liveretro", + "livethe": "liquid-driver-livethe", + "liqd": "liquid-finance", + "sarch": "liquid-finance-arch", + "lqt": "liquidifty", + "liquid": "liquidify-077fd783-dead-4809-b5a9-0d9876f6ea5c", + "liquidium (runes)": "liquidium-token", + "lksm": "liquid-ksm", + "lila": "liquidlayer", + "loan": "proton-loan", + "merc": "liquid-mercury", + "lp": "liquid-protocol", + "lsdai": "liquid-savings-dai", + "scanto": "liquid-staked-canto", + "lseth": "liquid-staked-ethereum", + "stflow": "liquid-staked-flow", + "sfuse": "liquid-staked-fuse", + "bcre": "liquid-staking-crescent", + "ldot": "liquid-staking-dot", + "lsi": "liquid-staking-index", + "lst": "liquid-staking-token", + "liquify": "liquify-network", + "lqty": "liquity", + "lusd": "lusd-2", + "lq": "liqwid-finance", + "lqw": "liqwrap", + "tryt": "lirat", + "lsk": "lisk", + "lista": "lista", + "listr": "listr", + "lit": "timeless", + "fias": "litcraft-fias", + "lite": "lite", + "cash": "stabl-fi", + "lcc": "litecoin-cash", + "ltz": "litecoinz", + "ldoge": "litedoge", + "lith": "lithium-finance", + "ions": "lithium-ventures", + "litho": "lithosphere", + "litt": "litlab-games", + "lab-v2": "little-angry-bunny-v2", + "1on8": "little-dragon", + "linu": "luna-inu", + "ltrbt": "little-rabbit-v2", + "lud": "ludos", + "lgc": "livegreen-coin", + "lpt": "livepeer", + "live": "livex-network", + "liza": "liza-2", + "lizard": "lizard", + "llama": "llama", + "lmeow": "lmeow-2", + "lndry": "lndry", + "loaf": "loaf-token", + "lobo": "lobo-the-wolf-pup-runes", + "$lobster": "lobster", + "locai": "localai", + "lcs": "localcoinswap", + "local": "local-money", + "ltt": "luxury-travel-token", + "$locg": "locgame", + "loc": "lockchain", + "lmi": "lucky-mio", + "$lockin": "lock-in", + "lkn": "lockness", + "locus": "locus-finance", + "cicada": "locust-pocus", + "lode": "lode-token", + "logg": "logarithm-games", + "logx": "logx", + "oxen": "loki-network", + "lkr": "lokr", + "lol": "lol-2", + "lola": "lola-2", + "$lola": "lola-cat", + "stftn": "lolik-staked-ftn", + "london": "londononsol", + "lof": "lonelyfans", + "longfu": "longfu", + "olong": "long-johnson", + "lmao": "long-mao", + "lonk": "lonk-on-near", + "look": "lookscoin", + "looks": "looksrare", + "loom": "loom-network-new", + "loomold": "loom-network", + "loong": "plumpy-dragons", + "loon": "loon-network", + "loop": "loopnetwork", + "loi": "loop-of-infinity", + "lrc": "loopring", + "loopy": "loopy", + "loot": "treasure-labs-loot", + "looter": "looter", + "lopo": "lopo", + "logt": "lord-of-dragons", + "los": "lord-of-sol", + "lords": "lords", + "lowb": "loser-coin", + "lss": "lossless", + "lost": "lost-world", + "lotty": "lotty", + "louder": "louder", + "lzm": "loungem", + "lb": "lovebit", + "lhinu": "love-hate-inu", + "lovely": "lovely-inu-finance", + "moli": "love-moli", + "lower": "lower", + "lowq": "lowq", + "lox": "lox-network", + "3crv": "lp-3pool-curve", + "renbtccurve": "lp-renbtc-curve", + "scurve": "lp-scurve", + "lp-ycrv": "lp-yearn-crv-vault", + "lsdoge": "lsdoge", + "lto": "lto-network", + "luab": "lua-balancing-token", + "lua": "lumi-finance", + "lube": "lube", + "luca": "luca", + "lucha": "lucha", + "lcd": "lucidao", + "lblock": "lucky-block", + "lucky": "maximus-lucky", + "roo": "lucky-roo", + "luckyslp": "luckysleprecoin", + "toad": "toadie-meme-coin", + "luc": "lucretius", + "$luca": "lucrosus-capital", + "lueygi": "lueygi", + "luffy": "luffy-inu", + "luigi": "luigiswap", + "lyxe": "lukso-token", + "lyx": "lukso-token-2", + "lsp": "lumenswap", + "lmr": "lumerin", + "lumi": "lumishare", + "$lumi": "lumi-2", + "chill": "lumichill", + "luag": "lumi-finance-governance-token", + "luausd": "lumi-finance-luausd", + "lumiii": "lumiiitoken", + "lumin": "lumin", + "lumai": "luminai", + "ltm04": "lumiterra-totem-404", + "ludamoon": "lumi-to-da-moon", + "lum": "shimmersea-lum", + "lumos": "lumoscoin", + "lumox": "lumox-studio", + "$luna": "luna28", + "luchow": "lunachow", + "loge": "lunadoge", + "lfi": "lunafi", + "lung": "lunagens", + "xln": "lunarium", + "lunar": "lunar-3", + "lunarlens": "lunarlens", + "lust": "lunarstorm", + "lus": "luna-rush", + "lunat": "lunatics-eth", + "lunc": "wrapped-terra", + "luncarmy": "luncarmy", + "lunch": "lunchdao", + "lune": "luneko", + "lunr": "lunr-token", + "lun": "lunyr", + "yvlusd": "lusd-yvault", + "lush": "lush-ai", + "lbxc": "lux-bio-exchange-coin", + "lux": "luxcoin", + "lkt": "luxkingtech", + "luxy": "luxy", + "lvusd": "lvusd", + "lyd": "lydia-finance", + "lyfe": "lyfe-2", + "lgold": "lyfe-gold", + "lkk": "lykke", + "lym": "lympo", + "lmt": "lympo-market-token", + "lcn": "lyncoin", + "lynx": "lynx", + "lyptus": "lyptus-token", + "lyra": "lyra-finance", + "lyte": "lyte-finance", + "lyve": "lyve-finance", + "lyzi": "lyzi", + "m2": "m2", + "mmx": "m2-global-wealth-limited-mmx", + "maal": "maal-chain", + "mcrn": "macaronswap", + "macke": "mackerel-2", + "macks": "mackerel-packs-runes", + "mad": "madlad", + "madai": "madai", + "mbc": "monbasecoin", + "metf": "mad-meerkat-etf", + "mmo": "mmocoin", + "madpepe": "mad-pepe", + "bnz": "madskullz-bnz", + "musd": "musd", + "mvg": "mad-viking-games-token", + "umad": "madworld", + "maga": "maga-hat", + "magaa": "maga-again", + "magadoge": "maga-doge", + "trumpcoin": "maga-fight-for-trump", + "magaiba": "magaiba", + "magapepe": "maga-pepe-eth", + "mape": "mecha-morphing", + "magashib": "maga-shiba", + "magatrump": "maga-trump", + "mvp": "maga-vp", + "mawc": "magawincat", + "mage": "metabrands", + "magic": "magic-token", + "mblk": "magical-blocks", + "tux": "magicaltux", + "bsts": "magic-beasties", + "mcrt": "magiccraft", + "mc": "moon-cat", + "mcc": "magic-cube", + "magicglp": "magicglp", + "mic": "magic-internet-cash", + "mim": "magic-internet-money-polygon", + "mlum": "magic-lum", + "mgp": "most-global", + "mring": "magicring", + "sqr": "magic-square", + "mys": "magic-yearn-share", + "magik": "magik", + "mgkl": "magikal-ai", + "magma": "magma", + "mag": "monsterra-mag", + "mtg": "mtg-token", + "mbs": "monkeyball", + "maha": "mahadao", + "maia": "maia", + "mimatic": "mimatic", + "mex": "maiar-dex", + "mdn": "maidaan", + "emaid": "maidsafecoin", + "maid": "maidsafecoin-token", + "swprs": "maid-sweepers", + "main": "main", + "mft": "mainframe", + "netz": "mainnetz", + "mftu": "mainstream-for-the-underground", + "majin": "majin", + "majo": "majo", + "major": "major-dog", + "tmc": "tom-coin", + "$mega": "make-ethereum-great-again", + "mega": "megaworld", + "mkr": "mkr-fuse", + "mkf": "maker-flip", + "mkx": "makerx", + "mlnk": "malinka", + "never": "neversol", + "mamba": "mamba", + "mami": "mami", + "wooly": "mammoth-2", + "mamai": "mammothai", + "mnc": "manacoin", + "city": "manchester-city-fan-token", + "manc": "mancium", + "mdx": "multidex-ai", + "mand": "mande-network", + "mandox": "mandox-2", + "mane": "mane", + "maneki": "maneki", + "neki": "maneki-neko", + "mp": "merlinswap", + "mgx": "mangata-x", + "$manga": "manga-token", + "mmit": "mangoman-intelligent", + "mngo": "mango-markets", + "manifest": "manifest-on-sol", + "fold": "manifold-finance", + "man": "matrix-ai-network", + "mnta": "mantadao", + "mbtc": "micro-bitcoin-finance", + "meth": "mirrored-ether", + "manta": "manta-network", + "mante": "mante", + "mnt": "mr-mint", + "minu": "minu", + "om": "mantra-dao", + "mnft": "mongol-nft", + "mao": "mao", + "maorabbit": "maorabbit", + "mpl": "maple", + "mni": "mnicorp", + "maps": "maps", + "mar3": "mar3-ai", + "maran": "maranbet", + "artex": "marbledao-artex", + "mbx": "metablox", + "mapo": "marcopolo", + "mare": "mare-finance", + "marga": "margaritis", + "mfi": "marginswap", + "mrhb": "marhabadefi", + "maria": "maria", + "mcoin": "mcoin1", + "mnde": "marinade", + "mogul": "mogul-trumps-code-name", + "mmpro": "market-making-pro", + "peak": "marketpeak", + "raker": "marketraker", + "viz": "vision-city", + "mark": "moneyark", + "pond": "marlin", + "mard": "marmalade-token", + "mcl": "mclaren-f1-fan-token", + "taur": "marnotaur", + "mrpt": "marpto-ordinals", + "marq": "marquee", + "mars4": "mars4", + "mdao": "marsdao", + "xms": "mars-ecosystem-token", + "mfc": "millonarios-fc-fan-token", + "mswap": "moneyswap", + "mtk": "metatoken-2", + "msi": "monkey-shit-inu", + "marty": "marty-inu", + "maru": "marutaro", + "marv": "marv", + "mlxc": "marvellex-classic", + "mlxv": "marvellex-venture-token", + "marvin": "marvin-inu", + "mob": "mobster", + "masa": "masa-finance", + "msr": "masari", + "mask": "wojak-mask", + "masq": "masq", + "mass": "mass", + "mas": "massa", + "usdt.b": "massa-bridged-usdt-massa", + "mav": "maverick-protocol", + "mvl": "mass-vehicle-ledger", + "mdex": "masterdex", + "mastermind": "mastermind", + "mnbtc": "masternode-btc", + "noded": "masternoded-token", + "mom": "my-mom", + "mw": "metaworld", + "matar": "matar-ai", + "match": "matchtrade", + "meslbr": "match-finance-eslbr", + "mtbc": "mateable", + "mtrm": "materium", + "math": "math", + "maaave": "matic-aave-aave", + "mausdc": "mausdc", + "dai-matic": "matic-dai-stablecoin", + "maticpo": "matic-wormhole", + "max": "upmax", + "mtrk": "matrak-fan-token", + "mdf": "matrixetf", + "mai": "multi-ai", + "mtx": "matrix-protocol", + "mtix": "matrix-token", + "mshiba": "matsuri-shiba-inu", + "matt": "matt-0x79", + "mausdt": "mausdt", + "mvx": "metavault-trade", + "maw": "mawcat", + "$max": "maxcat", + "maxib": "maxi-barsik", + "maxi": "maxi-ordinals", + "deci": "maximus-deci", + "party": "pool-partyyy", + "trio": "trio-ordinals", + "$maxx": "maxx", + "may": "mayfair", + "mzc": "maza", + "mazi": "mazimatic", + "mazze": "mazze", + "mba": "mba-platform", + "mbd": "mbd-financials", + "mcbroken": "mcbroken", + "mcb": "mcdex", + "mcelo": "mcelo", + "mceur": "mceur", + "mcf": "mcfinance", + "mchc": "mch-coin", + "mcontent": "mcontent", + "pepes": "mcpepe-s", + "mcv": "mcverse", + "mdbl": "mdbl", + "tmed": "mdsquare", + "meadow": "meadow", + "mean": "meanfi", + "mdt": "meta-dance", + "meb": "meblox-protocol", + "$mecha": "mechachain", + "mech": "merchant-finance", + "mch": "mktcash", + "mon": "monstock", + "mlt": "media-licensing-token", + "media": "solmedia", + "med": "medibloc", + "mtn": "medicalchain", + "mveda": "medicalveda", + "mork": "morkie", + "mdi": "medicle", + "mdus": "medieus", + "mee": "medieval-empires", + "fakt": "medifakt", + "mds": "midas-token", + "medoo": "medoo", + "mpg": "medping", + "meeb": "meeb-vault-nftx", + "meed": "meeds-dao", + "mshare": "meerkat-shares", + "megabot": "megabot", + "megadeath": "megadeath-pepe", + "mg8": "megalink", + "mpix": "megapix", + "msz": "megashibazilla", + "mgt": "minergatetoken", + "wton": "megaton-finance-wrapped-toncoin", + "$weapon": "megaweapon", + "myc": "mega-yacht-cult", + "meh": "meh-on-ton", + "meld": "metaelfland", + "mcau": "meld-gold", + "marco": "melega", + "meli": "meli-games", + "mell": "mellivora", + "mln": "melon", + "melos": "melos-studio", + "member": "member", + "mbrn": "membrane", + "memeai": "meme-ai-coin", + "mma": "meme-alliance", + "meme": "memetoon", + "mem": "not-meme", + "$memes": "memecoindao", + "mcult": "meme-cult", + "memecup": "meme-cup", + "memd": "memedao", + "mdai": "mindai", + "memerune": "meme-economics-rune", + "memelon": "meme-elon-doge-floki-2", + "memeetf": "meme-etf", + "memefi": "memefi", + "toybox": "memefi-toybox-404", + "mflate": "memeflate", + "mf": "metafighter", + "mmtr": "memeinator", + "mk": "meme-kombat", + "lordz": "meme-lordz", + "$mememe": "mememe", + "mememint": "meme-mint", + "mgls": "meme-moguls", + "mememusk": "meme-musk", + "mepad": "memepad", + "merwa": "memerwa", + "$msr": "memesaur", + "memes": "memes-street", + "ms": "meme-shib", + "mmip": "memes-make-it-possible", + "mst": "metaland-gameverse", + "mvu": "memes-vs-undead", + "mmvg": "memevengers", + "memex": "memex", + "mmt": "my-metatrader", + "mend": "mend", + "mendi": "mendi-finance", + "mento": "mento", + "mnz": "menzy", + "mewc": "meowcoin", + "meowg": "meowgangs", + "meowif": "meowifhat", + "mto": "merchant-token", + "mrch": "merchdao", + "$mercle": "mercle", + "mer": "mercurial", + "m404": "mercury-protocol-404", + "merge": "merge", + "mrgn": "mergen", + "mge": "mergex", + "merlinbox": "merlinbox", + "merl": "merlin-chain", + "voya": "merlin-chain-bridged-voya-merlin", + "merlinland": "merlinland", + "m-btc": "merlin-s-seal-btc", + "m-usdc": "merlins-seal-usdc", + "m-usdt": "merlins-seal-usdt", + "mstar": "merlin-starter", + "aimr": "meromai", + "hohoho": "merrychristmas-2", + "mct": "mundocrypto", + "mesh": "meshswap-protocol", + "mwave": "meshwave", + "meso": "meso", + "msn": "meson-network", + "messi": "messi-coin", + "m87": "messier", + "mta": "meta", + "peel": "meta-apes-peel", + "mac": "meta-art-connection", + "$beat": "metabeat", + "bmtc": "metabit-network", + "mtbl": "metable", + "metabot": "metabot", + "mlz": "metabusdcoin", + "mcade": "metacade", + "mak": "metacene", + "dby": "metaderby", + "hoof": "metaderby-hoof", + "metadoge": "metadoge-bsc", + "second": "metados", + "mdp": "metadrive-premeum", + "meto": "metoshi", + "mtf": "metafootball", + "megaland": "metagalaxy-land", + "mga": "metagame-arena", + "mgh": "metagamehub-dao", + "mgc": "meta-games-coin", + "mgg": "metagaming-guild", + "mgod": "metagods", + "mtgrd": "metaguard", + "munity": "metahorse-unity", + "men": "metahub-finance", + "vcoin": "metajuice", + "mtl": "metal", + "pvp": "metalands", + "mtla": "meta-launcher", + "mcg": "metalcore", + "xmd": "metal-dollar", + "mtls": "metal-friends", + "xmt": "metalswap", + "maf": "metamafia", + "mall": "metamall", + "memagx": "meta-masters-guild-games", + "mm": "moonman", + "mmm": "mmm", + "metameme": "met-a-meta-metameme", + "mtmn": "meta-mine", + "mmg": "meta-minigames", + "mmai": "metamonkeyai", + "monopoly": "meta-monopoly", + "metamoon": "metamoon", + "mmui": "metamui", + "nept": "metanept", + "metan": "metan-evolutions", + "metania": "metaniagames", + "metano": "metano", + "metx": "metanyx", + "motg": "metaoctagon", + "phone": "metaphone", + "mplai": "metaplanet-ai", + "mplx": "metaplex", + "mts": "metastrike", + "mpdao": "meta-pool", + "mtp": "metapuss", + "metaq": "metaq", + "rim": "metarim", + "mtrx": "metarix", + "mrs": "metars-genesis", + "mrun": "metarun", + "metasfm": "metasafemoon", + "mhunt": "metashooter", + "msu": "metasoccer", + "punketh-20": "metastreet-v2-mwsteth-wpunks-20", + "tt": "trendingtool", + "mett": "metathings", + "mtc": "moonft", + "fxmetod": "meta-toy-dragonz-saga-fxerc20", + "trc": "tracer", + "mvd": "metavault-dao", + "etp": "metaverse-etp", + "mefa": "metaverse-face", + "mhub": "metaverse-hub", + "mvi": "metaverse-index", + "mvk": "metaverse-kombat", + "m": "metaverse-m", + "neer": "metaverse-network-pioneer", + "mtvt": "metaverser", + "bmbi": "metaverse-universal-assets-bmbi-ordinals", + "mevr": "metaverse-vr", + "metax": "metaxcosmos", + "mesa": "metavisa", + "metav": "metavpad", + "wars": "metawars", + "wear": "metawear", + "mxy": "metaxy", + "mzero": "metazero", + "mz": "metazilla", + "mzm": "metazoomee", + "met": "metronome", + "mtrg": "meter", + "emtrg": "meter-governance-mapped-by-meter-io", + "stmtrg": "meter-io-staked-mtrg", + "wstmtrg": "meter-io-wrapped-stmtrg", + "mtr": "meter-stable", + "metfi": "metfi-2", + "mbot": "moonbot", + "metis": "metis-token", + "mxh": "metroxynth", + "mtlx": "mettalex", + "metti": "metti-inu", + "mev": "meverse", + "meveth": "meveth", + "mewing": "mewing-coin", + "mewnb": "mewnb", + "mxnt": "mexican-peso-tether", + "chingon": "mexico-chingon", + "mezz": "mezz", + "mfer": "mfercoin", + "mfers": "mfers", + "mfet": "mfet", + "mhcash": "mhcash", + "mia": "miaswap", + "mibr": "mibr-fan-token", + "mice": "mice", + "micha": "micha", + "$michi": "michicoin", + "mickey": "steamboat-willie", + "micro": "micro-coq", + "$micro": "micro-gpt", + "amm": "micromoney", + "mpepe": "micropepe", + "dmsft": "microsoft-tokenized-stock-defichain", + "tick": "microtick", + "space": "space-token-bsc", + "mtbill": "midas-mtbill", + "night": "midnight", + "miidas": "miidas", + "mikawa": "mikawa-inu", + "mike": "mikeneko", + "miki": "miki", + "ladys": "milady-meme-coin", + "milady": "milady-vault-nftx", + "ladyf": "milady-wif-hat", + "milei": "milei-token", + "msmil": "milestone-millions", + "mvc": "multiverse-capital", + "milkai": "milkai", + "mlk": "milk-alliance", + "milkbag": "milkbag", + "milky": "milky-token", + "milktia": "milkyway-staked-tia", + "mille": "mille-chain", + "mclb": "millenniumclub-coin-new", + "milli": "milli-coin", + "mdb": "milliondollarbaby", + "mimo": "mimo-parallel-governance-token", + "milo": "milo-inu", + "milo dog": "milo-dog", + "mimany": "mimany", + "mimas": "mimas-finance", + "mwc": "mimblewimblecoin", + "mimbo": "mimbo", + "mimir": "mimir-token", + "usk": "usk", + "mina": "mina-protocol", + "mntc": "minativerse", + "mnto": "minato", + "mnd": "mound-token", + "minds": "minds", + "mverse": "mindverse", + "mnb": "mn-bridge", + "mbase": "minebase", + "melb": "minelab", + "miner": "miner", + "mnr": "mooner", + "mxtk": "mineral-token", + "minar": "miner-arena", + "mgold": "minergold-io", + "mine": "spacemine", + "miva": "minerva-wallet", + "see": "minesee", + "mns": "monnos", + "mini": "minimini", + "barron": "mini-donald", + "mini grok": "mini-grok", + "minima": "minima", + "min": "minswap", + "mint": "public-mint", + "mtd": "minted", + "mnte": "mintera", + "minty": "minterest", + "ml": "mintlayer", + "btcmt": "minto", + "mss": "mintstakeshare", + "mnu": "nirvana-meta-mnu-chain", + "mpt": "miracle-play", + "mirx": "mirada-ai", + "mirage": "mirage-2", + "mql": "miraqle", + "mir": "mir-token", + "msb": "misbloc", + "misser": "misser", + "miggles": "mister-miggles", + "mery": "mistery", + "misty": "misty-meets-pepe", + "mith": "mithril", + "mittens": "mittens-2", + "miu": "miu", + "miw": "miw-musk", + "xin": "mixin", + "mxm": "mixmob", + "mte": "mixtoearn", + "mzr": "mizar", + "mm72": "mm72", + "mmf": "mmfinance-arbitrum", + "burrow": "mmf-money", + "mmsc": "mms-coin", + "mmss": "mmss", + "mnee": "mnee-usd-stablecoin", + "nuum": "mnet-continuum", + "moai": "wicked-moai", + "mofi": "museum-of-influencers", + "mcpc": "mobile-crypto-pay-coin", + "mobic": "mobility-coin", + "mbp": "mobipad", + "mitx": "mobist", + "mobi": "mobius-money", + "mot": "mother-earth", + "mobx": "mobix", + "mbox": "mobox", + "moby": "moby-2", + "moca": "museum-of-crypto-art", + "mochad": "mochadcoin", + "mo": "mo-chain", + "mochi": "mochi-thecatcoin", + "mochicat": "mochicat", + "moma": "mochi-market", + "mockjup": "mockjup", + "mcos": "mocossi-planet", + "moda": "moda-dao", + "modai": "modai", + "dcd": "modclub", + "mode": "mode", + "mod": "move-dollar", + "modex": "modex", + "mods": "modulus-domains-service", + "moe": "moe-3", + "mda": "moeda-loyalty-points", + "moeta": "moeta", + "moew": "moew", + "mog": "mog-coin", + "mogdog": "mogdog", + "moge": "moge", + "moggo": "moggo", + "mogi": "mogi-cet", + "stars": "ton-stars", + "mogu": "mogutou", + "salman": "mohameme-bit-salman", + "mojo": "planet-mojo", + "mjt": "mojitoswap", + "molandak": "molandak", + "vita-fast": "molecules-of-korolchuk-ip-nft", + "mollars": "mollarstoken", + "molly": "molly-ai", + "molten": "molten-2", + "mommydoge": "mommy-doge", + "momo": "momo-2-0", + "emoji": "momoji", + "key": "selfkey", + "momo v2": "momo-v2", + "mona": "monavale", + "monai": "monai", + "mnrch": "monarch", + "monat": "monat-money", + "lisa": "mona-token", + "mndcc": "mondo-community-coin", + "mone": "mone-coin", + "eure": "monerium-eur-money", + "gbpe": "monerium-gbp-emoney", + "xmr": "monero", + "xmc": "x-mask", + "xmv": "monerov", + "mntg": "monetas-2", + "mth": "monetha", + "monet": "monet-society", + "moneybee": "moneybee", + "bips": "moneybrain-bips", + "moc": "mossland", + "mong": "mongcoin", + "mongoose": "mongoose", + "mongy": "mongy", + "moni": "monsta-infinite", + "monk": "monk-gg", + "monkas": "monkas", + "monke": "monkeonbase", + "monked": "monked", + "monkei": "monkei", + "monkex": "monkex", + "monkey": "monkey-2", + "mkc": "monkeycoin", + "bananas": "monkey-peepo", + "monkeys": "monkeys-token", + "monkie": "monkie", + "monku": "monku", + "$monky": "monky", + "mono": "the-monopolist", + "mononoke-inu": "mononoke-inu", + "poly": "polymath", + "mmc": "movemovecoin", + "mrx": "monorix", + "mcash": "monsoon-finance", + "mfb": "monster-ball", + "ggm": "monster-galaxy", + "mstr": "monsterra", + "mtgx": "montage-token", + "moocat": "moocat", + "moochii": "moochii", + "mooi": "mooi-network", + "mcusd": "moola-celo-dollars", + "mlh": "moolahverse", + "mcreal": "moola-interest-bearing-creal", + "moo": "moola-market", + "moonair": "moon-air", + "app": "moon-app", + "moonarch": "moonarch", + "bay": "moon-bay", + "glmr": "moonbeam", + "mbdao": "moonboots-dao", + "mooncats": "mooncats-on-base", + "mooncat": "mooncat-vault-nftx", + "mcloud": "mooncloud-ai", + "woof": "woofwork-io", + "mooned": "moonedge", + "mooney": "mooney", + "moonion": "moonions", + "moonke": "moonke", + "moonkize": "moonkize", + "mola": "moonlana", + "moonlight": "moonlight-token", + "mmp": "moon-maker-protocol", + "pots": "moonpot", + "moonpot": "moonpot-finance", + "aaa": "moon-rabbit", + "movr": "moonriver", + "mrc": "moon-roll-coin", + "mscp": "moonscape", + "moond": "moonsdust", + "mnst": "moonstarter", + "cah": "moon-tropica", + "mfam": "moonwell", + "well": "moonwell-artemis", + "moove": "moove-protocol", + "moox": "mooxmoo", + "mops": "mops", + "mora": "mora-2", + "more": "stack-2", + "morfey": "morfey", + "mori": "mori-finance", + "mor": "morpheusai", + "moros": "moros-net", + "morph": "morph", + "mnw": "morpheus-network", + "pills": "morpheus-token", + "morpho": "morpho-network", + "macrv": "morpho-aave-curve-dao-token", + "mawbtc": "morpho-aave-wrapped-btc", + "morra": "morra", + "mosolid": "mosolid", + "suckr": "mosquitos-finance", + "mco2": "moss-carbon-credit", + "$wanted": "most-wanted", + "mota": "motacoin", + "møth": "moth", + "moth": "moth-2", + "mother": "mother-iggy", + "motion": "motion-coin", + "motn": "motion-motn", + "moto": "moto", + "tobi": "moto-dog", + "mgpt": "movegpt", + "mtrc": "motorcoin", + "usdm": "usd-mars", + "mow": "mouse-in-a-cats-world", + "stuck": "mouse-in-pasta", + "mca": "movecash", + "movex": "movex-token", + "movez": "movez", + "mbl": "moviebloc", + "moxie": "moxie", + "mox": "mox-studio", + "moya": "moya", + "moz": "mozfire", + "mpaa": "mpaa", + "mpendle": "mpendle", + "mpeth": "mpeth", + "mpro": "mpro-lab", + "mpx": "mpx", + "pinky": "mr-beast-dog", + "mrsmiggles": "mrs-miggles", + "mryen": "mr-yen-japanese-businessman-runes", + "msol": "msol", + "paint": "paint", + "msq": "msquare-global", + "mtfi": "mtfi", + "mthn": "mth-network", + "mtms": "mtms-network", + "mps": "mt-pelerin-shares", + "mt": "mytoken", + "mu": "muverse", + "mudai": "mudai", + "myield": "muesliswap-yield-token", + "muffin": "muffin", + "muto": "muito-finance", + "muki": "muki", + "muln": "mullenarmy", + "mubi": "multibit", + "multi": "multichain", + "usdt_t": "multichain-bridged-usdt-bittorrent", + "mmgt": "multimoney-global", + "mpad": "multipad", + "inus": "multiplanetary-inus", + "mul": "multipool", + "myus": "multisys", + "muc": "multi-universe-central", + "mtv": "multivac", + "mumba": "mumba", + "mume": "mu-meme", + "mummat": "mummat", + "mmy": "mummy-finance", + "mumu": "mumu-the-bull-3", + "munch": "munch", + "mura": "murasaki", + "muratiai": "muratiai", + "mur": "mur-cat", + "muse": "muse-2", + "record": "music-protocol", + "muskmeme": "musk-meme", + "must": "mustafa", + "flies": "mutatio-xcopyflies", + "mute": "mute", + "muttski": "muttski", + "$muu": "muu-inu", + "$muva": "muva", + "muzki": "muzki", + "muzz": "muzzle", + "msp": "mvcswap", + "mvs": "mvs-multiverse", + "mxc": "mxc", + "mxgp": "mxgp-fan-token", + "mbe": "mxmboxceus-token", + "mxnb": "mxnb", + "xseed": "mxs-games", + "mx": "mx-token", + "mxt": "mx-token-2", + "mbid": "mybid", + "myb": "mybit-token", + "bricks": "mybricks", + "dlegends": "my-defi-legends", + "dpet": "my-defi-pet", + "mlc": "my-lovely-coin", + "mat": "my-master-war", + "mynt": "myntpay", + "piggie": "mypiggiesbank", + "myra": "mytheria", + "$myre": "myre-the-dog", + "myria": "myriad-social", + "xmy": "myriadcoin", + "$myro": "myro", + "myro2.0": "myro-2-0", + "myrofloki": "myro-floki-ceo", + "myrowif": "myrowif", + "mif": "myrowifhat", + "myt": "mystic-treasure", + "myst": "mysterium", + "myth": "mythos", + "nabox": "nabox", + "nacho": "nacho-finance", + "nada": "nada-protocol-token", + "naft": "nafter", + "ngc": "naga", + "ngy": "nagaya", + "nii": "nahmii", + "nbot": "naka-bodhi-token", + "naka": "nakamoto-games", + "nals": "nals", + "nmc": "namecoin", + "nao": "nettensor", + "nami": "thief", + "namx": "namx", + "xno": "xeno-token", + "nbt": "neuralbyte", + "indc": "nano-dogecoin", + "nano": "nanomatic", + "nmbtc": "nanometer-bitcoin", + "naos": "naos-finance", + "npx": "napoleon-x", + "nap": "napoli-fan-token", + "naruto": "naruto", + "nsdx": "nasdex-token", + "nat": "natcoin-ai", + "nation": "nation3", + "natix": "natix-network", + "ngold": "naturesgold", + "ntl": "nautilus-network", + "nav": "nav-coin", + "navx": "navi", + "navist": "navist", + "navyseal": "navy-seal", + "naxar": "naxar", + "nxn": "naxion", + "nbl": "nbl", + "chart": "nchart", + "ndau": "ndau", + "ndb": "ndb", + "near": "near", + "neld": "nearlend-dao", + "pad": "smartpad-2", + "nstart": "nearstarter", + "neat": "neat", + "nebl": "neblio", + "nebula": "nebula-2", + "nbla": "nebula-project", + "nas": "nebulas", + "ned": "netherlands-coin", + "nefty": "nefty", + "neta": "neta", + "neged": "neged", + "nht": "neighbourhoods", + "neiro": "neiro-on-eth", + "neko": "the-neko", + "asg": "nekoverse-city-of-greed-anima-spirit-gem", + "nlc": "nolimitcoin", + "xem": "nem", + "nd": "nemesis-downfall", + "nem": "nemgame", + "nemo": "nemo-sum", + "neng": "nengcoin", + "neo": "neonx", + "naai": "neoaudit-ai", + "neobot": "neobot", + "corai": "neocortexai", + "cortex": "neocortexai-2", + "neon": "neon", + "neonai": "neonai", + "nex": "nexus-2", + "neop": "neopepe", + "npt": "nexus-pro-token", + "safo": "neorbit", + "ncr": "neos-credits", + "bytes": "neo-tokyo", + "neox": "neoxa", + "npm": "neptune-mutual", + "nptx": "neptunex", + "nerd": "nerdbot", + "nerds": "nerds", + "nero": "nero-token", + "xnv": "nerva", + "nrv": "nerve-finance", + "nerve": "nerveflux", + "nvt": "nervenetwork", + "ckb": "nervos-network", + "ness": "ness-lab", + "nest": "nest", + "nesta": "nest-arcade", + "ncc": "netcoincapital-2", + "dnflx": "netflix-tokenized-stock-defichain", + "ntr": "nether", + "nfi": "netherfi", + "nmt": "nftmart-token", + "nto": "neton", + "nett": "netswap", + "netvr": "netvrk", + "netc": "network-capital-token", + "nzero": "netzero", + "ncat": "neuracat-2", + "neura": "neurahub", + "xna": "neurai", + "neural": "neuralai", + "neuralai": "neural-ai", + "$neural": "neuralbot", + "nerf": "neural-radiance-field", + "ntd": "neural-tensor-dynamics", + "nei": "neurashi", + "ncn": "neurochainai", + "nrn": "neuron", + "neuroni": "neuroni-ai", + "npai": "neuropulse-ai", + "neuro": "neurowebai", + "ntmpi": "neutaro", + "neu": "neutra-finance", + "xtn": "neutrino", + "nsbt": "neutrino-system-base-token", + "ntrn": "neutron-3", + "neutron20": "neutron-4", + "neutro": "neutroswap", + "neuy": "neuy", + "neva": "nevacoin", + "nbd": "never-back-down", + "newb": "newton-on-base", + "nbs": "new-bitshares", + "newm": "newm", + "newo": "new-order", + "pepe": "tezos-pepe", + "nwc": "newscrypto-coin", + "news": "publish", + "newt": "newt", + "thro": "newthrone", + "ntn": "newton", + "new": "newton-project", + "newu": "newu-ordinals", + "state": "new-world-order", + "nyt": "new-year-token", + "nyc": "newyorkcoin", + "nye": "newyork-exchange", + "nexa": "nexacoin", + "nexbox": "nexbox", + "nt": "nextype-finance", + "nxl": "nexellia", + "nexg": "nexgami", + "nexo": "nexo", + "nax": "nextdao", + "nxtt": "next-earth", + "nexm": "nexum", + "nxs": "nexus", + "nexusai": "nexusai", + "wnexus": "nexus-chain", + "nxd": "nexus-dubai", + "nmd": "novamind", + "nexus": "nexuspad", + "euus": "nexus-pro-euus", + "useu": "nexus-pro-useu", + "nezuko": "nezuko", + "nfnt": "nfinityai", + "nfm": "nfmart", + "nfp": "nfprompt-token", + "stay": "stay", + "nftart": "nft-art-finance", + "nftb": "nftb", + "nbm": "nftblackmarket", + "nbp": "nftbomb", + "nftbs": "nftbooks", + "champ": "nft-champions", + "nftc": "nft-combining", + "deli": "nftdeli", + "nftfi": "nftfi", + "nftfn": "nftfn", + "n1": "nftify", + "nftl": "nifty-league", + "$nmkr": "nft-maker", + "nftpunk": "nftpunk-finance", + "nftd": "nftrade", + "tresr": "nftreasure", + "nfsg": "nft-soccer-games", + "nfts": "nft-stars", + "nftstyle": "nftstyle", + "wrkx": "nft-workx", + "wrld": "nft-worlds", + "nftx": "nftx", + "nfty": "nifty-token", + "nga": "ngatiger", + "ngmi": "ngmi-bp", + "ngt": "ngt", + "niao": "niao", + "nibi": "nibiru", + "shib": "shibwifhatcoin", + "p": "nicolas-pi-runes", + "nift": "niftify", + "nigella": "nigella-chain", + "ngit": "nightingale-token", + "nvg": "nightverse-game", + "nigi": "nigi", + "nihao": "nihao-coin", + "niifi": "niifi", + "nikepig": "nikepig", + "nks": "nikssa", + "nile": "nile", + "nil": "nillion", + "nimbus": "nimbus-network", + "gnimb": "nimbus-platform-gnimb", + "nimb": "nimbus-utility", + "nim": "nim-network", + "nina": "ninapumps", + "ninjapepe": "ninjapepe", + "roll": "ninjaroll", + "nst": "ninja-squad", + "$ninja": "ninja-turtles", + "nwt": "ninja-warriors", + "niob": "niob", + "nbr": "niobio-cash", + "nioctib": "nioctib", + "nir": "nirmata", + "nac": "nirvana-chain", + "prana": "nirvana-prana", + "nitefeeder": "nitefeeder", + "trove": "nitro-cartel", + "ntx": "nunet", + "nitro": "nitro-league", + "ncash": "nucleus-vision", + "nishib": "nitroshiba", + "nix": "zanix", + "voice": "nix-bridge-token", + "niza": "niza-global", + "nkclc": "nkcl-classic", + "nkn": "nkn", + "nkyc": "nkyc-token", + "noah": "noahswap", + "noa": "noa-play", + "sox": "nobby-game", + "nobl": "nobleblocks", + "node": "node-ordinals", + "gpu": "nodeai", + "nbet": "nodebet", + "scarce": "no-decimal", + "nhub": "nodehub", + "nrc": "nodes-reward-coin", + "nds": "nodestation-ai", + "ns": "nodesynapse", + "mnx": "nodetrade", + "nws": "nodewaves", + "nodifi": "nodifiai", + "nodl": "nodle-network", + "nogs": "noggles", + "nogwai": "nogwai", + "noia": "noia-network", + "woosh": "woosh", + "noir": "noir-phygital", + "nois": "nois", + "enqai": "noisegpt", + "nojeet": "nojeet", + "noka": "noka-solana-a", + "nola": "nola-2", + "nole": "nole", + "n0le": "nole-inu", + "nls": "nolus", + "nom": "onomy-protocol", + "pride": "nomad-exiles", + "nomads": "nomads", + "nmx": "nominex", + "nomnom": "nomnom", + "nmai": "nomotaai", + "none": "none-trading", + "spores": "non-fungible-fungi", + "nonja": "nonja", + "npc": "non-playable-coin", + "$npi": "non-playable-inu", + "noone": "no-one", + "noot": "noot-sol", + "nop": "nop-app", + "nrk": "nordek", + "nord": "nord-finance", + "nrdc": "nordic-ai", + "norm": "norman", + "normie": "normie-2", + "normilio": "normilio", + "normus": "normus", + "xrt": "robonomics-network", + "nct": "toucan-protocol-nature-carbon-tonne", + "nos": "nostalgia", + "nosebud": "nose-bud", + "noso": "noso", + "nstr": "nostra", + "uno": "uno-re", + "not": "notcoin", + "notdoge": "notdogecoin", + "note": "solnote", + "nfai": "not-financial-advice", + "nothing": "nothing-2", + "thing": "thing", + "notnot": "not-notcoin", + "nwg": "notwifgary", + "nous": "nousai", + "nvc": "novacoin", + "nvx": "novadex", + "nov": "novara-calcio-fan-token", + "audd": "novatti-australian-digital-dollar", + "vachi": "novawchi", + "novax": "novax", + "nnn": "novem-gold", + "nvm": "novem-pro", + "novo": "novo-9b9480a5-9545-49c3-a999-94ec2902cedb", + "npcs": "npc-on-solana", + "nshare": "nshare", + "nsi": "nsights", + "n": "nsurance", + "nsure": "nsure-network", + "nua": "nuance", + "nut": "nutflex", + "xcfx": "nucleon-xcfx", + "ncdt": "nuco-cloud", + "nuc": "nucoin", + "nu": "nucypher", + "nugen": "nugencoin", + "nukem": "nuk-em-loans", + "nukey": "nukey", + "nai": "nuklai", + "nlk": "nulink-2", + "nuls": "nuls", + "nswap": "nulswap", + "numa": "numa", + "nars": "num-ars", + "nr1": "number-1-token", + "num": "numbers-protocol", + "nmr": "numeraire", + "numi": "numi-shards", + "nuna": "nuna", + "paloosi": "nuncy-paloosi", + "nnt": "nunu-spirits", + "nuon": "nuon", + "nuri": "nuri-exchange", + "nrfb": "nurifootball", + "nblu": "nuritopia", + "nusa": "nusa-finance", + "susd": "susd-optimism", + "nutgv2": "nutgain", + "nvl": "nuvola-digital", + "dnvda": "nvidia-tokenized-stock-defichain", + "nvir": "nvirworld", + "nxm": "nxm", + "nxt": "nxtchain", + "nxusd": "nxusd", + "nyandoge": "nyandoge-international", + "nyante": "nyantereum", + "nym": "nym", + "nyro": "nyro", + "nyxc": "nyxia-ai", + "nyzo": "nyzo", + "o3": "o3-swap", + "ap": "oak-network", + "oasis": "project-oasis", + "rose": "rose-finance", + "oas": "oasys", + "oath": "oath", + "oat": "oat-network", + "obx": "openblox", + "obema": "obema", + "obicoin": "obi-real-estate", + "orb7": "obital7", + "obot": "obortech", + "ten": "tokenomy", + "obsr": "observer-coin", + "obn": "obsidian-coin", + "obs": "one-basis-cash", + "obsw": "obs-world", + "ocavu": "ocavu-network", + "occ": "occamfi", + "ocx": "occamx", + "oce": "oceanex", + "ocf": "oceanfi", + "oland": "oceanland", + "ocean": "ocean-protocol", + "och": "och", + "ocicat": "ocicat-token", + "oci": "ociswap", + "plx": "pullix", + "octa": "octaspace", + "via": "viacoin", + "octo": "octorand", + "otk": "octo-gaming", + "oct": "oraclechain", + "ops": "octopus-protocol", + "ocw": "octopuswallet", + "ocv": "ocvcoin", + "oddz": "oddz", + "ode": "odem", + "odie": "odie-on-sol", + "owc": "oduwa-coin", + "ocn": "odyssey", + "odys": "odysseywallet", + "btck": "oec-btc", + "okt": "oec-token", + "ocisly": "ofcourse-i-still-love-you", + "ofe": "ofero", + "xft": "offshift", + "og404": "og404", + "ogc": "ogc", + "og": "og-fan-token", + "oggy": "oggy-inu-2", + "$roar": "og-roaring-kitty", + "ogsm": "og-sminem", + "ogz": "ogzclub", + "oh": "oh-finance", + "ohno": "oh-no", + "oho": "oho-blockchain", + "oks": "oikos", + "oja": "ojamu", + "okage": "okage-inu", + "okana": "okami-lana", + "okayeg": "okayeg", + "okb": "okb", + "ok": "okcash", + "okcat": "okcat", + "ort": "xreators", + "okto": "okto-token", + "xot": "okuru", + "ovso": "olaf-vs-olof", + "olen": "olen-mosk", + "olv": "olive", + "olive": "olivecash", + "olumpc": "olumpec-terch", + "pia": "olympia-ai", + "ohm": "olympus-v1", + "oly": "olyverse", + "omm": "omamori", + "omax": "omax-token", + "ombi": "ombi", + "omb": "ombre", + "omc": "omchain", + "omega": "omega-cloud", + "omn": "omni-foundation", + "omlt": "omeletteswap", + "omg": "omisego", + "omni": "omni-network", + "o404": "omni404", + "omnix": "omnibotx", + "ocp": "omni-consumer-protocol", + "flix": "omniflix-network", + "omkg": "omnikingdoms-gold", + "osea": "omnisea", + "omochi": "omochi-the-frog", + "lwa": "onbuff", + "onchain": "onchain", + "ocai": "onchain-ai", + "ocd": "on-chain-dynamics", + "ocp404": "onchain-pepe-404", + "summer": "summer", + "ot": "oracle-tools", + "ondo": "ondo-finance", + "usdy": "ondo-us-dollar-yield", + "onc": "one-cash", + "ocb": "onecoinbuy", + "rone-bb2e": "onedex-rone", + "ohmi": "one-hundred-million-inu", + "olt": "one-ledger", + "onepunch": "onepunch", + "orare": "onerare", + "ons": "one-share", + "1sp": "onespace", + "owct": "one-world-chain", + "onez": "onez", + "oft": "onfa", + "ong": "ong", + "oky": "onigiri-kitty", + "opos": "only-possible-on-solana", + "omp": "onmax-2", + "onno": "onno-vault", + "ooks": "onooks", + "opls": "onpulse", + "onston": "onston", + "onus": "onus", + "onx": "onx-finance", + "obt": "oobit", + "oof": "oof-2", + "oofp": "oofp", + "okg": "ookeenga", + "ooki": "ooki", + "oort": "oort-digital", + "opct": "opacity", + "$opcat": "opcat", + "opc": "opclouds", + "openai erc": "openai-erc", + "oap": "openalexa-protocol", + "oax": "openanx", + "chat": "vectorchat-ai", + "sos": "opendao", + "od": "open-dollar", + "odg": "open-dollar-governance", + "tbill": "openeden-tbill", + "ox old": "open-exchange-token", + "oex": "openex-network-token", + "ofn": "openfabric", + "ogb": "open-games-builders", + "open": "qredo", + "ogpu": "open-gpu", + "ole": "openleverage", + "omnd": "openmind", + "opmnd": "open-mind-network", + "omusd": "openmoney-usd", + "ooe": "openocean", + "opl": "openpool", + "osky": "opensky-finance", + "opn": "open-ticketing-ecosystem", + "openx": "openxswap", + "owner": "openworldnft", + "xopenx": "openxswap-gov-token", + "$ophx": "operation-phoenix", + "oro": "oro", + "wpe": "opes-wrapped-pe", + "ophir": "ophir-dao", + "opip": "opipets", + "opium": "opium", + "opmoon": "opmoon", + "oppa": "oppa", + "opy": "opportunity", + "opsec": "opsec", + "opta": "opta-global", + "obtc": "optical-bitcoin", + "opch": "opticash", + "optim": "optim", + "op": "optimism", + "optcm": "optimus", + "opti": "optimus-ai", + "optimus al": "optimus-al-bsc", + "optimuselo": "optimuselonai", + "opinu": "optimus-inu", + "opx": "opx-finance", + "o2t": "option2trade", + "opt": "optionflow-finance", + "opa": "option-panda-platform", + "room": "option-room", + "opai": "optopia-ai", + "opulence": "opulence", + "opul": "opulous", + "opxvesliz": "opxsliz", + "osqth": "opyn-squeeth", + "oracle": "oracleswap", + "omt": "oxymetatoken", + "orai": "oraichain-token", + "oraix": "oraidex", + "orang": "orang", + "ornj": "orange", + "orng": "orange-2", + "orbot": "orange-bot", + "o4dx": "orangedx", + "orao": "orao-network", + "olm": "ora-protocol", + "orbn": "orbeon-protocol", + "orbi": "orbital7", + "obelt": "orbit-bridge-klaytn-belt", + "obnb": "orbit-bridge-klaytn-binance-coin", + "oeth": "origin-ether", + "ohandy": "orbit-bridge-klaytn-handy", + "omatic": "orbit-bridge-klaytn-matic", + "oorc": "orbit-bridge-klaytn-orbit-chain", + "oxrp": "orbit-bridge-klaytn-ripple", + "ousdc": "orbit-bridge-klaytn-usdc", + "ousdt": "orbit-bridge-klaytn-usd-tether", + "owbtc": "orbit-bridge-klaytn-wrapped-btc", + "orc": "orc", + "opad": "orbitpad", + "orbit": "orbit-protocol", + "orbt": "orbitt-pro", + "orbr": "orbler", + "obi": "orbofi-ai", + "orbs": "orbs", + "orca": "orca", + "avai": "orca-avai", + "scatom": "orchai-protocol-staked-compound-atom", + "oxt": "orchid-protocol", + "wbrge": "ordbridge", + "order": "orderly-network", + "rdex": "orders-exchange", + "orbk": "ordibank", + "ordibot": "ordibot", + "orfy": "ordify", + "odgn": "ordigen", + "ordibridge": "ordinal-bridge", + "odoge": "ordinal-doge", + "ordi": "ordinals", + "ordifi": "ordinalsfi", + "ord": "ordinex", + "ords": "ordiswap-token", + "ore": "ptokens-ore", + "oreo": "oreoswap", + "ost": "simple-token", + "origen": "origen-defi", + "ousd": "synth-ousd", + "ogv": "origin-dollar-governance", + "lgns": "origin-lgns", + "ogn": "origin-protocol", + "trac": "trac", + "ogy": "origyn-foundation", + "orion": "orion-money", + "orn": "orion-protocol", + "oris": "oris", + "ork": "orkan", + "orme": "ormeuscoin", + "ormit": "ormit", + "orym": "orym", + "osak": "osaka-protocol", + "oscar": "oscarswap", + "osean": "osean", + "oshi": "phantom-of-the-kill-alternative-imitation-oshi", + "osis": "osis", + "osk": "osk", + "osmi": "osmium", + "osmo": "osmosis", + "otacon": "otacon-ai", + "otf": "otflow", + "own": "otherworld", + "otia": "otia", + "otiainu": "otiainu", + "otsea": "otsea", + "home": "otterhome", + "otti": "otti", + "otto": "ottochain", + "otn": "otton", + "$otty": "otty-the-otter", + "otx": "otx-exchange", + "ousg": "ousg", + "outdefine": "outdefine", + "gq": "outer-ring", + "out": "outter-finance-2", + "ovl3": "oval3", + "clocksol": "overclock-staked-sol", + "ovdm": "overdome", + "ov": "overlay-protocol", + "dai+": "overnight-dai", + "ovn": "overnight-finance", + "overpow": "overpowered", + "$ovol": "ovols-floor-index", + "ovo": "ovo-nft-platform", + "ovr": "ovr", + "owl": "stark-owl", + "oco": "owners-casino-online", + "0xbtc": "oxbitcoin", + "oxbt": "oxbt", + "oxb": "oxbull-tech-2", + "ox": "ox-fun", + "oxy": "oxygen", + "krpza": "oxyo2", + "ozo": "ozone-chain", + "$ozone": "ozone-metaverse", + "p2ps": "p2p-solutions-foundation", + "paal": "paal-ai", + "pablo": "pablo-defi", + "pac": "pacmoon", + "paf": "pacific", + "port": "port-finance", + "pacoca": "pacoca", + "padawan": "padawan", + "padre": "padre", + "page": "page", + "pai": "purple-ai", + "paid": "paid-network", + "work": "work-x", + "brush": "paint-swap", + "paired": "pairedworld", + "ppd": "paisapad", + "pajamas": "pajamas-cat", + "pak": "pakcoin", + "pal": "paladin", + "plb": "paladeum", + "palai": "paladinai", + "dpltr": "palantir-tokenized-stock-defichain", + "earth": "palebluedot", + "plt": "poollotto-finance", + "palg": "palgold", + "palm": "palmpay", + "verdao": "palmeiras-fan-token", + "pambii": "pambii", + "gcake": "pancake-games", + "hunny": "pancake-hunny", + "cake": "pancakeswap-token", + "ptkn": "panda", + "pnd": "pandacoin", + "pmd": "pandemic-diamond", + "pando": "pando", + "pandora": "pandora", + "pan": "pantos", + "pndr": "ponder-one", + "ptx": "platinx", + "stone": "tranquil-staked-one", + "png": "pangolin", + "pfl": "professional-fighters-league-fan-token", + "pbar": "pangolin-hedera", + "psb": "planet-sandbox", + "panic": "panicswap", + "panj": "panjea", + "panx": "panorama-swap-token", + "pano": "panoverse", + "zkp": "zkproof", + "panties": "panties", + "papa": "papa-on-sol", + "papadoge": "papa-doge", + "ppt": "populous", + "plane": "paper-plane", + "papi": "puppy", + "papo": "papocoin", + "ppft": "papparico-finance-token", + "papu": "papu-token", + "papyrus": "papyrus-swap", + "par": "par-stablecoin", + "pdf": "paradise-defi", + "pdx": "pokedx", + "rgen": "paragen", + "para": "paraverse", + "pdt": "paragonsdao", + "xpll": "parallelchain", + "pausd": "parallel-usd", + "param": "param", + "paras": "paras", + "psol": "parasol-finance", + "psp": "paraswap", + "prcl": "parcl", + "prx": "parex", + "prb": "paribu-net", + "pbx": "probinex", + "prf": "parifi", + "pfusdc": "parifi-usdc", + "pfweth": "parifi-weth", + "psg": "paris-saint-germain-fan-token", + "parma": "parma-calcio-1913-fan-token", + "paro": "parobot", + "pbirb": "parrotly", + "prt": "portion", + "prq": "parsiq", + "part": "particl", + "prtcle": "particle-2", + "particle": "particles-money", + "ptc": "prospera-tax-credit", + "mpc": "partisia-blockchain", + "phat": "partyhat-meme", + "parry": "party-parrot", + "pasg": "passage", + "psl": "pastel", + "pat": "pat", + "patex": "patex", + "pathsol": "pathfinders-staked-sol", + "ptoy": "patientory", + "ppy": "patriot-pay", + "pats": "pats", + "patton": "patton", + "paul": "paul-token", + "pavia": "pavia", + "paw": "paypaw", + "paws": "pawstars", + "pawth": "pawthereum-2", + "upi": "pawtocol", + "paxe": "paxe", + "paxg": "pax-gold", + "usdp": "skale-ima-bridged-usdp", + "paxu": "pax-unitas", + "payb": "payb", + "pybc": "paybandcoin", + "paybit": "paybit", + "pay": "tenx", + "pci": "pay-coin", + "pin": "pay-it-now", + "xpay": "payments", + "psub": "payment-swap-utility-board", + "payn": "paynet-coin", + "pyusd": "paypal-usd", + "epan": "paypolitan-token", + "propel": "payrue", + "pays": "payslink-token", + "pvt": "payvertise", + "payx": "payx", + "pbmc": "pbm", + "pbtc35a": "pbtc35a", + "pi": "pi-network-iou", + "pme": "pomerium-community-meme-t", + "dpdbc": "pdbc-defichain", + "pe": "pe", + "pce": "peace-coin", + "pch": "pigcoinhero", + "pchf": "peachfolio", + "peachy": "peachy", + "peanie": "peanie", + "nux": "peanut", + "peas": "peapods-finance", + "pearl": "pearl-finance", + "pear": "pear-swap", + "pedro": "pedro-the-raccoon", + "peep": "peep", + "peepa": "peepa", + "peepo": "peepo", + "pepo": "peepo-eth", + "$peep": "peepo-sol", + "ppc": "pokeplay-token", + "peezy": "young-peezy-aka-pepe", + "peg": "pegazus-finance", + "psys": "pegasys-rollux", + "pgx": "pegaxy-stone", + "peusd": "peg-eusd", + "peka": "peka", + "pelf": "pelfort", + "pem": "pembrock", + "pendle": "pendle", + "pen": "protocon", + "peng": "peng", + "pengu": "penguiana", + "penguin": "penguin404", + "pefi": "penguin-finance", + "pos": "polygon-star", + "penos": "penos", + "penose": "penose", + "pdd": "penpad-token", + "pnp": "penpie", + "pny": "peony-coin", + "pepa": "pepa-inu", + "pepcat": "pepcat", + "pepe2.0": "pepe-2-0", + "pepeai": "pepe-ai-token", + "pepeblue": "pepeblue", + "pepebnbs": "pepebnbs", + "pbb": "pepe-but-blue", + "pepecash": "pepecash-bsc", + "pepecat": "pepecat", + "peo": "pepe-ceo", + "pepe ceo": "pepe-ceo-bsc", + "pc": "playable-coin", + "pepechain": "pepe-chain", + "pepecoin": "pepecoin-2", + "pep": "pepecoin-network", + "peped": "pepe-dao", + "pepedashai": "pepe-dash-ai", + "ppdex": "pepedex", + "pepedoge": "pepe-doge", + "pepef": "pepe-floki", + "porkinu": "pepefork-inu", + "pepega": "pepega", + "pepeg": "pepe-girl", + "pepegoat": "pepegoat", + "pew": "pew4sol", + "$ina": "pepeinatux", + "pepi": "pepito", + "pepinu": "pepinu-sol", + "ǝԁǝԁ": "pepe-inverted", + "pepejr": "pepe-junior", + "$plpc": "pepe-le-pew-coin", + "pepelon": "pepelon", + "pelo": "pepelon-token", + "pepemaga": "pepe-maga", + "ppblz": "pepemon-pepeballs", + "pepenomics": "pepenomics", + "pog": "proof-of-gorila", + "pfire": "pepe-on-fire", + "pepew": "pepepow", + "snake": "pepe-predator", + "pepera": "pepera", + "skull": "wolf-skull", + "pepesora": "pepe-sora-ai", + "pepebnb": "pepe-the-frog", + "pepee": "pepe-the-pepe", + "pepetr": "pepe-treasure", + "ptrump": "pepe-trump", + "uncle": "pepe-uncle", + "pepez": "pepe-undead", + "cute": "pepe-uwu", + "pif": "pepe-wif-hat", + "pwh": "pepewifhat-2", + "pepewifhat": "pepewifhat-3", + "pepewfpork": "pepewifpork", + "pepex": "pepex", + "pepexl": "pepexl", + "pepig": "pepig", + "peppa": "peppa", + "pepurai": "pepurai", + "pepy": "pepy-coin", + "pera": "pera-finance", + "percy": "percy", + "przs": "perezoso", + "peri": "peri-finance", + "perc": "perion", + "perl": "perlin", + "pgiff": "permagiff", + "ask": "permission-coin", + "perp": "perpetual-protocol", + "pwt": "perpetual-wallet", + "prp": "perpetuum-coin", + "perpx": "perpex", + "per": "per-project", + "pry": "perpy-finance", + "jotchua": "perro-dinero", + "perry": "perry-the-bnb", + "persib": "persib-fan-token", + "xprt": "persistence", + "stkxprt": "persistence-staked-xprt", + "fpft": "peruvian-national-football-team-fan-token", + "pesa": "pesabase", + "peshi": "peshi", + "pts": "piteas", + "pete": "pete", + "peth": "peth", + "petoshi": "petoshi", + "ptshp": "petshop-io", + "dogpet": "petthedog-erc404", + "$gold": "runescape-gold-runes", + "pftm": "pftm", + "pgala": "pgala", + "pha": "pha", + "phae": "phaeton", + "$xcpha": "phala-moonbeam", + "phame": "phame", + "soul": "soul-swap", + "phm": "phantom-protocol", + "phar": "pharaoh", + "phasesol": "phase-labs-staked-sol", + "phauntem": "phauntem", + "pcd": "phecda", + "pt": "phemex", + "phnx": "phoenixdao", + "phiat": "phiat-protocol", + "phil": "phili-inu", + "phpc": "philippine-peso-coin", + "pbos": "phobos-token", + "pnic": "phoenic-token", + "phx": "phoenix-token", + "pxc": "phoenixcoin", + "pdragon": "phoenix-dragon", + "phb": "red-pulse", + "pxai": "phoneix-ai", + "pht": "phoneum", + "phonon": "phonon-dao", + "phr": "phore", + "photon": "photonswap", + "php": "phpcoin", + "phron": "phronai", + "phteve": "phteven", + "phunk": "phunk-vault-nftx", + "phtr": "phuture", + "phux": "phux-governance-token", + "phy": "physis", + "pib": "pibble", + "pica": "picasso", + "pinu": "pulse-inu-2", + "pickle": "pickle-finance", + "rick": "pick-or-rick", + "picosol": "pico-staked-sol", + "pier": "pier-protocol", + "pig": "pig-finance", + "pgn": "pigeoncoin", + "pigeon": "pigeon-in-yellow-boots", + "pgenz": "pigeon-park", + "pigga": "pigga", + "$piggy": "pigged-by-piggy", + "pika": "pika-protocol", + "mls": "pikaster", + "$pill": "pill", + "plr": "pillar", + "pcat": "pineapple-cat", + "pineowl": "pineapple-owl", + "pingu": "pingu-on-sol", + "pinkav": "pinjam-kava", + "froglic": "pink-hood-froglicker", + "pinkm": "pinkmoon", + "pinkninja": "pinkninja", + "pinksale": "pinksale", + "snail": "snailbrook", + "pino": "pino", + "ptu": "pintu-token", + "pion": "pion", + "pip": "pi-protocol", + "pipi": "pipi-the-cat", + "pirate": "pirate-token", + "arrr": "pirate-chain", + "piratecoin☠": "piratecoin", + "pira": "piratera", + "pirb": "pirb", + "piri": "pirichain", + "piss": "pisscoin", + "pit": "pitbull", + "pitchfxs": "pitch-fxs", + "pitqc": "pitquidity-capital", + "pivn": "pivn", + "pivx": "pivx", + "$pixe": "pixel-2", + "pwc": "pixel-battle", + "pixl": "sappy-seals-pixl", + "pxl": "pixelpotus", + "pixel": "pixelverse", + "pixfi": "pixelverse-xyz", + "pxt": "pixer-eternity", + "pixi": "pixi", + "pix": "private-wrapped-ix", + "pixiz": "pixiz", + "pzt": "pizon", + "pizza": "samurai-pizza-sats", + "$pizza": "pizzaverse", + "pkt": "play-kingdom", + "place": "place-war", + "catcoin": "planetcats", + "planet": "planet-token", + "planets": "planetwatch", + "plnk": "plankton", + "plank": "planktos", + "plq": "planq", + "pvu": "plant-vs-undead-token", + "ppay": "plasma-finance", + "pth": "plastichero", + "plastik": "plastiks", + "plata": "plata-network", + "payu": "platform-of-meme-coins", + "plc": "platincoin", + "lat": "platon-network", + "ptp": "pulsetrailerpark", + "usp": "united-states-property-coin", + "3ull": "playa3ull-games-2", + "pbux": "playbux", + "pcnt": "playcent", + "pda": "playdapp", + "pym": "playermon", + "playfi": "playfi", + "pxg": "playgame", + "waves": "waves", + "ppad": "playpad", + "drn": "play-to-create", + "pzp": "playzap", + "plaz": "plaza-dao", + "plcu": "plc-ultima", + "pln": "pulseln", + "nsfw": "pleasure-coin", + "pleb": "plebz", + "bling": "plebdreke", + "plenty": "plenty-dao", + "plex": "plex", + "plug": "plgnet", + "plink": "plink-cat", + "plot": "plotx", + "plsjones": "plsjones", + "pli": "plugin", + "ppai": "plug-power-ai", + "plums": "plums", + "plus": "plus-bet", + "plu": "pluton", + "pld": "plutonian-dao", + "plsarb": "plutus-arb", + "pls": "pulsechain", + "plsdpx": "plutus-dpx", + "plsrdnt": "plutus-rdnt", + "plvglp": "plvglp", + "plxy": "plxyer", + "plz": "plz-come-back-to-eth", + "pmg": "pomerium-ecosystem", + "pnear": "pnear", + "pnt": "pnetwork", + "pnut": "pnut", + "poc": "poc-blockchain", + "pkoin": "pocketcoin", + "pokt": "pocket-network", + "pocket": "pocket-watcher-bot", + "poco": "pocoland", + "pod": "the-other-party", + "poe": "poet", + "pogai": "pogai-sol", + "pogs": "pog-digital", + "pxp": "pointpay-2", + "points": "points-on-solana", + "poi$on": "poison-finance", + "pj": "pojak", + "pokegrok": "pokegrok", + "pkn": "poken", + "pokerfi": "pokerfi", + "pokky": "pokkycat", + "poko": "poko", + "pola": "polaris-share", + "polar": "polar-sync", + "spolar": "polar-shares", + "poldo": "poldo", + "plmc": "polimec", + "poli": "polinate", + "polis": "star-atlas-dao", + "pocat": "polite-cat", + "pbr": "polkabridge", + "polc": "polka-city", + "pdex": "polkadex", + "pkf": "polkafoundry", + "pgold": "polkagold", + "polk": "polkamarkets", + "polo": "polkaplay", + "prare": "polkarare", + "pols": "polkastarter", + "pswap": "polkaswap", + "pwar": "polkawar", + "pkr": "polker", + "pox": "pollux-coin", + "polly": "polly", + "ndefi": "polly-defi-nest", + "polter": "polter-finance", + "pbt": "property-blockchain-trade", + "fish": "ton-fish-memecoin", + "pmon": "polychain-monsters", + "polycub": "polycub", + "polydoge": "polydoge", + "pgem": "polygame", + "pgen": "polygen", + "gull": "polygod", + "polygold": "polygold", + "pol": "proof-of-liquidity", + "spade": "polygonfarm-finance", + "phbd": "polygon-hbd", + "zkj": "polyhedra-network", + "polx": "polylastic", + "polyx": "polymesh", + "polypad": "polypad", + "hmdx": "poly-peg-mdex", + "pup": "polypup", + "shi3ld": "polyshield", + "ptce": "polytech", + "trade": "unitrade", + "yeld": "polyyeld-token", + "pom": "pomcoin", + "pomboo": "pomeranian-boo", + "pomg": "pom-governance", + "poncho": "poncho", + "pndc": "pond-coin", + "pong": "pong-heroes", + "pongo": "pongo", + "ponk": "ponk", + "ponke": "ponke-ton", + "ponke bnb": "ponke-bnb", + "porke": "ponkefork", + "toon": "pontoon", + "skate": "ponyhawk", + "ponzi": "ponzi", + "ponzio": "ponziothecat", + "ponzy": "ponzy", + "pooch": "pooch", + "poocoin": "poocoin", + "poodl": "poodl-inu", + "poodle": "poodlecoin", + "poo doge": "poo-doge", + "poof": "poofai", + "pooh": "pooh", + "pool": "pooltogether", + "pweth": "pooltogether-prize-weth-aave", + "plup": "poolup", + "poolz": "poolz-finance", + "poolx": "poolz-finance-2", + "$poon": "poon-coin", + "poop": "poopcoin-poop", + "pooti": "pooti-relaunch", + "popcat": "popcat", + "pop": "proof-of-pepe-art", + "pcorn": "popcorn-meme", + "popdog": "popdog-2", + "pope": "popecoin", + "popk": "popkon", + "popo": "popo", + "$popo": "popo-pepe-s-dog", + "pora": "pora-ai", + "porigon": "porigon", + "pornrocket": "pornrocket", + "port3": "port3-network", + "poai": "port-ai", + "portal": "portal-2", + "por": "portuma", + "pory": "porygon", + "pdo": "poseidollar", + "psh": "poseidollar-shares", + "psdn": "poseidon-finance", + "posi": "position-token", + "psm": "possum", + "phmn": "posthuman", + "post": "post-tech", + "pot": "x-protocol", + "tato": "potato-2", + "potdog": "potdog", + "ptf": "powertrade-fuel", + "p404": "potion-404", + "pou": "pou", + "durev": "povel-durev", + "powa": "powa-rangers-go-runes", + "pwr": "power-token", + "pxdc": "powercity-pxdc", + "watt": "wattton", + "powr": "power-ledger", + "podo": "power-of-deep-ocean", + "pwrsol": "power-staked-sol", + "pow": "punks-comic-pow", + "ppizza": "ppizza", + "pqx": "pqx", + "prachtpay": "pracht-pay", + "prcy": "prcy-coin", + "pre": "presearch", + "rain": "rainmaker-games", + "pred": "predictcoin", + "preai": "predict-crypto", + "prmx": "prema", + "preme": "preme-token", + "premia": "premia", + "prnt": "prnt", + "prtg": "pre-retogeum", + "platy": "president-platy", + "presi": "president-red", + "ron": "ronin", + "press": "pressdog", + "ptools": "pricetools", + "prick": "prick", + "primal": "primal-b3099cd0-995a-4311-80d5-9c133153b38e", + "pst": "primas", + "primate": "primate", + "d2d": "prime", + "peace": "primeace", + "xpm": "primecoin", + "primeeth": "prime-staked-eth", + "pmx": "primex-finance", + "$cash": "print-cash", + "print": "print-protocol", + "$pp": "print-the-pepe", + "prism": "prism-2", + "prisma": "prisma-governance-token", + "mkusd": "prisma-mkusd", + "prvc": "privacoin", + "pvgo": "privago-ai", + "bpriva": "privapp-network", + "pgpt": "privateai", + "pri": "privateum", + "pwrose": "private-wrapped-wrose", + "priv": "privcy", + "pzm": "prizm", + "prm": "prm-token", + "prob": "probit-exchange", + "prc": "proc", + "prco": "procyon-coon-coin", + "pro": "proton-coin", + "prai": "protonai", + "ale": "project-ailey", + "mullet": "project-mullet", + "qbit": "project-quantum", + "wiken": "project-with", + "xil": "projectx", + "prox": "proxima", + "gxe": "project-xeno", + "prom": "prometeus", + "pmpy": "prometheum-prodigy", + "promise": "promise", + "promptide": "promptide", + "proof": "proof-platform", + "props": "props", + "propc": "propchain", + "pel": "propel-token", + "prophet": "prophet-2", + "pros": "prosper", + "zaar": "protectorate-protocol", + "proteo": "proteo-defi", + "proto": "protofi", + "p-gyd": "proto-gyro-dollar", + "xpr": "proton", + "prtn": "proton-project", + "proton": "proton-protocol", + "xpx": "xpx", + "prxy": "proxy", + "psi/acc": "psi-gate", + "pssymonstr": "pssymonstr", + "pstake": "pstake-finance", + "stkbnb": "pstake-staked-bnb", + "stkdydx": "pstake-staked-dydx", + "stkhuahua": "pstake-staked-huahua", + "stkosmo": "pstake-staked-osmo", + "stkstars": "pstake-staked-stars", + "psyop": "psyop", + "psy": "psyoptions", + "pter": "pterosaur-finance", + "pbtc": "ptokens-btc", + "pube": "pube-finance", + "publx": "publc", + "pmt": "public-meme-token", + "$pudgy": "pudgy-cat", + "pufeth": "pufeth", + "pugai": "pug-ai", + "puggle": "puggleverse", + "sara": "pulsara", + "plsr": "pulsar-coin", + "pulse": "pulse-token", + "plsb": "pulsebitcoin-pulsechain", + "plsc": "pulsecoin", + "plscx": "pulsecrypt", + "pulsedoge": "pulsedoge", + "pdrip": "pulse-drip", + "launch": "superlauncher-dao", + "plspad": "pulsepad", + "plsp": "pulsepot", + "prs": "pulsereflections", + "plsx": "pulsex", + "inc": "pulsex-incentive-token", + "pulsr": "pulsr", + "puma": "puma", + "pma": "pumapay", + "puml": "puml-better-health", + "pumlx": "pumlx", + "pumpbtc": "pumpbtc", + "pumpkinsol": "pumpkin-staked-sol", + "pumpopoly": "pumpopoly", + "pumpr": "pumpr", + "punch": "punchy-token", + "npxs": "pundi-x", + "pundix": "pundi-x-2", + "purse": "pundi-x-purse", + "pun": "punkko", + "pundu": "pundu", + "pungu": "pungu", + "punk": "starkpunks", + "punkai": "punkai", + "pupdoge": "pup-doge", + "$puppa": "puppacoin", + "pups": "rune-pups", + "pca": "purchasa", + "ufi": "purefi", + "pure": "puriever", + "$purp": "purp", + "purpe": "purple-pepe", + "prps": "purpose", + "purr": "purrcoin", + "pusd": "pusd", + "puss": "pusscat", + "puca": "puss-cat", + "pussy": "pussy-financial", + "pusuke": "pusuke-inu", + "put": "putincoin", + "puush": "puush-da-button", + "puzzle": "puzzle-swap", + "pvc": "pvc-meta", + "pwrc": "pwrcash", + "pyges": "pyges", + "pyme": "pymedao", + "pyi": "pyrin", + "pyro": "pyro-2", + "pyo": "pyrrho-defi", + "pyth": "pyth-network", + "qanx": "qanplatform", + "qash": "qash", + "qatargrow": "qatargrow", + "qatom": "qatom", + "qwla": "qawalla", + "qbt": "qubit", + "qdt": "qchain-qdt", + "qkc": "quark-chain", + "qie": "qie", + "qtc": "quantum-cloak", + "meer": "qitmeer-network", + "qiusd": "qiusd", + "qjuno": "qjuno", + "qlindo": "qlindo", + "qlc": "qlink", + "qlix": "qlix", + "qmall": "qmall", + "qmc": "qmcoin", + "qoda": "qoda", + "qdo": "qoodo", + "qorpo": "qopro", + "qosmo": "qosmo", + "qwt": "qowatt", + "qgov": "q-protocol", + "dqqq": "qqq-tokenized-stock-defichain", + "qregen": "qregen", + "qrt": "qrkita-token", + "qro": "qro", + "osp": "qrolli", + "qsomm": "qsomm", + "q*": "qstar", + "qstar": "qstar-2", + "qto": "qtoken", + "qtum": "qtum", + "quack": "richquack", + "quacks": "star-quacks", + "quad": "quadency", + "equad": "quadrant-protocol", + "qai": "quantixai", + "qtk": "quantcheck", + "qtf": "quantfury", + "quantic": "quantic-protocol", + "qlt": "quantland", + "qnt": "quant-network", + "qns": "quantoswap", + "eurd": "quantoz-eurd", + "$qtdao": "quantum-dao", + "qf": "quantum-fusion", + "quantum": "quantum-hub", + "qswap": "quantum-network", + "pipe": "quantum-pipeline", + "qrl": "quantum-resistant-ledger", + "qua": "quasacoin", + "quark": "quark-2", + "qckuji": "quark-protocol-staked-kuji", + "qcmnta": "quark-protocol-staked-mnta", + "qtz": "quartz", + "qsr": "quasar-2", + "qubic": "qubic-network", + "qyai": "quby-ai", + "qdfi": "qudefi", + "qbc": "quebecoin", + "quick": "quickswap", + "qkntl": "quick-intel", + "qck": "quicksilver", + "qtcc": "quick-transfer-coin-plus", + "qdx": "quidax", + "quidd": "quidd", + "quil": "wrapped-quil", + "qin": "quincoin", + "quint": "quint", + "quipu": "quipuswap-governance-token", + "qrx": "quiverx", + "qtcon": "quiztok", + "qgold": "quorium", + "qwoyn": "qwoyn", + "r34p": "r34p", + "r4re": "r4re", + "rait": "rabbit-games", + "rbit": "rabbit-inu", + "rab": "rabbit-wallet", + "rbx": "reserveblock", + "rabi": "rabi", + "rbf": "robots-farm", + "roon": "raccoon", + "racefi": "racefi", + "atoz": "race-kingdom", + "racex": "racex", + "racing": "racing-club-fan-token", + "$rkt": "racket", + "rac": "racoon", + "rad": "radicle", + "rada": "rada-foundation", + "rxd": "radiant", + "rdnt": "radiant-capital", + "raca": "radio-caca", + "radio": "radioshack", + "val": "valeria", + "xrd": "radix", + "rdp": "radpie", + "$radx": "radx-ai", + "rae": "rae-token", + "rafl": "rafl-on-base", + "raft": "raft", + "rage": "rage-trade", + "rai": "rai", + "rdn": "raiden-network", + "aurum": "raider-aurum", + "sharx": "raidsharksbot", + "raid": "raid-token", + "sofi": "rai-finance", + "rail": "railgun", + "rainbow": "rainbow-2", + "rainbowtoken": "rainbowtoken", + "rnbw": "rainbow-token", + "rbw": "rainbow-token-2", + "$raini": "rainicorn", + "rst": "raini-studios-token", + "yvrai": "rai-yvault", + "rake": "rake-in", + "rak": "rake-finance", + "rly": "rally-2", + "rama": "ramestta", + "ram": "ramses-exchange", + "ramp": "ramp", + "rnd": "rand", + "random": "random-tg", + "rbet": "rangerbet", + "rft": "rangers-fan-token", + "rpg": "revolve-games", + "ranker": "rankerdao", + "$rapcat": "rapcat", + "raphael": "raphael", + "rpd": "rapids", + "bible": "raptor", + "rtm": "raptoreum", + "rptr": "raptor-finance-2", + "rbp": "rare-ball-shares", + "fnd": "rare-fnd", + "rari": "rarible", + "rgt": "rari-governance-token", + "rasto": "rastopyry", + "rat": "ratsdao", + "xra": "ratecoin", + "ratio": "ratio-finance", + "rats": "ratsbase", + "ratwif": "ratwifhat", + "rvn": "ravencoin", + "rvc": "revenue-coin", + "raven": "raven-protocol", + "rwb": "rawblock", + "rce": "raw-chicken-experiment", + "ray": "raydium", + "aktio": "rayn", + "xray": "ray-network", + "rays": "rays", + "raze": "raze-network", + "razor": "razor-network", + "rzby": "razzberry-inu", + "enft": "rcd-espanyol-fan-token", + "rch": "rich", + "rdat": "r-datadao", + "rddt": "rddt", + "rdgx": "r-dee-protocol", + "$reach": "reach", + "rtc": "reaction", + "rf": "reactorfusion", + "rdf": "readfi", + "rs": "readyswap", + "rtf": "ready-to-fight", + "rkr": "reaktor", + "rwa": "xend-finance", + "real": "realy-metaverse", + "$rael": "realaliensenjoyingliquidity", + "rbc": "ruby-currency", + "reeth": "real-ether", + "speed": "speed-star-speed", + "fevr": "realfevr", + "refi": "refi-protocol", + "rgoat": "realgoat", + "rio": "realio-network", + "lis": "realis-network", + "rmv": "reality-metaverse", + "rvr": "reality-vr", + "realm": "realm", + "rmw": "realmoneyworld", + "rnt": "reental", + "smurfcat": "real-smurf-cat", + "smurf": "smurfsinu", + "шайлушай": "real-smurf-cat-bsc", + "rso": "real-sociedad-fan-token", + "rlto": "real-tok", + "reg": "realtoken-ecosystem-governance", + "usdr": "real-usd", + "ustb": "superstate-short-duration-us-government-securities-fund-ustb", + "rvm": "realvirm", + "rwx": "realworldx", + "reap": "releap", + "reaper": "reaper-token", + "rebase": "rebase-base", + "$irl": "rebase-gg-irl", + "tbt": "rebasing-tbt", + "rbls": "rebel-bots", + "xoil": "rebel-bots-oil", + "rc": "rebel-cars", + "rbt": "rubix", + "rebus": "rebus", + "r1": "recast1", + "rcg": "recharge", + "rec": "recoverydao", + "rrt": "recovery-right-token", + "rtg": "rectangle-finance", + "rtime": "rectime", + "riwa": "recycle-impact-world-association", + "rcx": "recycle-x", + "red": "red-token", + "btrfly": "redacted", + "rbnt": "redbelly-network-token", + "rdd": "reddcoin", + "reddit": "reddit", + "redev2": "redecoin", + "rdtn": "redemption-token", + "redfeg": "redfeg", + "redflokiceo": "red-floki-ceo", + "rfox": "redfox-labs-2", + "agame": "red-hat-games", + "redpepe": "red-pepe", + "rpepe": "red-pepe-2", + "rpill": "red-pill-2", + "reee": "reeeeeeeeeeeeeeeeeeeee", + "reef": "reef", + "reelfi": "reelfi", + "reelt": "reel-token", + "rfr": "refereum", + "ref": "reflect-audit", + "$reflect": "reflect", + "rfl": "reflect-base", + "rto": "reflecto", + "rfx": "reflex", + "rld": "refluid", + "rfrm": "reform-dao", + "rfd": "refund", + "rfnd": "refund-base", + "regen": "regen", + "regent": "regent-coin", + "regu": "regularpresale", + "reign": "reign-of-terror", + "rei": "rei-network", + "rjv": "rejuve-ai", + "rekt": "rektcoin", + "rel": "relation-native-token", + "relay": "relay-token", + "remilio": "remilio", + "rem": "remme", + "rena": "warena", + "renbtc": "renbtc", + "render": "render-token", + "rendy": "rendy-ai", + "renec": "renec", + "rngd": "renegade", + "ret": "renewable-energy", + "renq": "renq-finance", + "rent": "rentai", + "rnb": "rentible", + "rez": "renzo", + "ezeth": "renzo-restaked-eth", + "pzeth": "renzo-restaked-lst", + "rplay": "replay", + "repx": "reposwap", + "rpc": "republic-credits", + "ren": "republic-protocol", + "rpk": "republik", + "req": "request-network", + "rescue": "rescue", + "rsc": "researchcoin", + "rcd": "reserve-currency-dogs", + "rsr": "reserve-rights-token", + "rese": "rese-social", + "reset": "reset", + "redo": "resistance-dog", + "redu": "resistance-duck", + "regi": "resistance-girl", + "reno": "resistance-notcoin", + "tor": "tor", + "source": "source", + "rsweth": "restaked-swell-eth", + "rstk": "restake-finance", + "rtk": "retafi", + "retard": "retard-coin", + "retardio": "retardio", + "reth2": "reth2", + "rether": "retherswap", + "retik": "retik-finance", + "$retire": "retire-on-sol", + "retro": "retro-finance", + "reuni": "reunit-wallet", + "rev3l": "rev3al", + "rev": "revepe", + "gamefi": "revenant", + "rgusd": "revenue-generating-usd", + "rvsl": "reversal", + "rvst": "revest-finance", + "revive": "reviveeth", + "revoai": "revoai", + "rpm": "revolon", + "rvl": "revolotto", + "rvlt": "revolt-2-earn", + "revo": "revomon-2", + "rvs": "revswap", + "revu": "revuto", + "revv": "revv", + "rwd": "reward", + "rewd": "reward-protocol", + "rex": "rex-2", + "xrx": "rex-token", + "rexhat": "rexwifhat", + "rexx": "rexx-coin", + "zolt": "rezolut", + "rgame": "r-games", + "dvf": "rhinofi", + "rho": "rho-token", + "rhythm": "rhythm", + "ribbit": "solribbit", + "rbn": "robinos-2", + "rib": "riverboat", + "rides": "ride_finance", + "rdt": "ridotto", + "ric": "riecoin", + "ru": "rifi-united", + "rif": "rif-token", + "rgp": "rigel-protocol", + "rig": "riggers", + "grg": "rigoblock", + "rik": "rikeza", + "rifi": "rikkei-finance", + "riku": "riku", + "riky": "riky-the-raccoon", + "ril": "rilcoin", + "rilla": "rillafi", + "rxt": "rimaunangis", + "rinia": "rinia-inu", + "rfuel": "rio-defi", + "riot": "riot-racers", + "rcn": "ripio-credit-network", + "mmac": "rise-of-the-warbots-mmac", + "ris": "riser", + "risita": "risitas-coin", + "rite": "ritestream", + "rito": "rito", + "welle": "riverex-welle", + "rivus": "rivusdao", + "atolo": "rizon", + "rizz": "rizz-solomon", + "rkey": "rkey", + "rloop": "rloop", + "rmrk": "rmrk", + "roach": "roach-rally", + "roa": "roaland-core", + "stonks": "stonks-on-eth", + "jim": "roasthimjim", + "robin": "robin-on-cronos", + "rbai": "roboai-drc-20", + "vics": "robofi-token", + "robo": "the-meme-of-the-future", + "rbif": "robo-inu-finance", + "rpl": "rocket-pool", + "roc": "rocket-raccoon", + "rckt": "rocketswap", + "rkv": "rocketverse-2", + "rvf": "rocketx", + "rocki": "rocki", + "rocko": "rockocoin", + "rr": "rockstar", + "rocky": "rocky-the-rock", + "$rocky": "rocky-on-base", + "roco": "roco-finance", + "rodai": "rod-ai", + "rdo": "rodeo-finance", + "roger": "roger", + "rog": "rogin-ai", + "rmav": "rogue-mav", + "rox": "roguex", + "rok": "rok", + "roko": "roko-network", + "rlb": "rollbit-coin", + "rlm": "rollium", + "rome": "rome", + "rond": "rond", + "rong": "rong", + "roobee": "roobee", + "rook": "rook", + "roost": "roost", + "isme": "root-protocol", + "rbtc": "rootstock", + "rope": "rope-token", + "ror": "ror-universe", + "rosa": "rosa-inu", + "rsn": "rosen-bridge", + "rosx": "roseon", + "rosnet": "rosnet", + "rosy": "rosy", + "rth": "rutheneum", + "rndx": "round-x", + "roup": "roup", + "roush": "roush-fenway-racing-fan-token", + "route": "router-protocol-2", + "rwn": "rowan-coin", + "roxy": "roxy-frog", + "rfc": "royal-finance-coin", + "royalshiba": "royal-shiba", + "rsft": "royal-smart-future-token", + "rpgmai": "rpg-maker-ai", + "rps": "rps-league", + "rss3": "rss3", + "rubber": "rubber-ducky", + "$ducky": "rubber-ducky-cult", + "rbd": "rubidium", + "rbl": "rublex", + "kenidy": "ruburt-f-kenidy-jr", + "ruby": "rubypulse", + "ruff": "ruff", + "rug": "rug-rugged-art", + "zmbe": "rugzombie", + "rule": "rule-token", + "rumi": "rumi-finance", + "run": "run", + "rux": "runblox-arbitrum", + "rbot": "runesbot", + "rune": "thorchain", + "runix": "the-runix-token", + "rsic": "runecoin", + "rg": "runes-glyphs", + "runi": "runesterminal", + "rsb": "runestone-bot", + "✖": "runes-x-bitcoin", + "runic": "runic-chain", + "rng": "runigun", + "rudes": "runode", + "runy": "runy", + "rup": "rupee", + "idrt": "rupiah-token", + "rush": "rushcoin", + "rushcmc": "rushcmc", + "ruski": "ruski-inu", + "rust": "rusty-robot-country-club", + "ruuf": "ruufcoin", + "rwas": "rwa-finance", + "rwax": "rwax", + "rxcg": "rxcgames", + "ryiu": "ryi-unity", + "ryo": "ryo-coin", + "ryoshi": "ryoshi-with-knife", + "ryu": "ryujin", + "s4f": "s4fe", + "skr": "saakuru-labs", + "saba": "saba-finance", + "sabai": "sabai-ecovers", + "sabaka inu": "sabaka-inu", + "sbr": "saber", + "saber": "saber-2", + "sable": "sable", + "sac": "sac-daddy", + "sape": "sad-ape", + "$saddy": "saddy", + "hammy": "sad-hamster", + "wompwomp": "sad-trombone", + "saf": "safcoin", + "sbonk": "shibonk-311f81df-a4ea-4f31-9e61-df0af8211bd7", + "safeclassic": "safeclassic", + "sfd": "safe-deal", + "safegrok": "safegrok", + "sha": "safe-haven", + "sfex": "safelaunch", + "safemars": "safemars", + "smars": "safemars-protocol", + "sme": "safememe", + "smcn": "safeminecoin", + "safemoo": "safemoo", + "sm96": "safemoon-1996", + "sfm": "safemoon-2", + "smi": "safemoon-inu", + "sfz": "safemoon-zilla", + "safemuun": "safemuun", + "snb": "safe-nebula", + "sfp": "stade-francais-paris-fan-token", + "safereum": "safereum", + "ssf": "safe-seafood-coin", + "swap": "trustswap", + "ssgtx": "safeswap-token", + "trees": "safetrees", + "sfi": "saffron-finance", + "safle": "safle", + "safuu": "safuu", + "sage": "sage-universe", + "sai": "synthetic-ai", + "saiko": "saiko-the-revival", + "sail": "sail-dao", + "sails": "sailing", + "swt": "starwallets-token", + "saitabit": "saitabit", + "stc": "techcat", + "soltama": "saitama-soltama", + "saito": "saito", + "spepe": "sui-pepe", + "sakai": "sakai-vault", + "saka": "saka-vault", + "sake": "sake-token", + "sku": "sakura", + "sup": "sakura-united-platform", + "sald": "salad", + "sally": "salamander", + "slm": "slm-games", + "legld": "salsa-liquid-multiversx", + "salt": "salt", + "sbae": "salt-bae-for-the-people", + "snv": "salt-n-vinegar", + "sal": "salvium", + "sbf": "swapblast-finance-token", + "samowif": "samo-wif-hat", + "samo": "samoyedcoin", + "sam": "superalgorithmicmoney", + "sambo": "samurai-bot", + "yuki": "yuki", + "sanctum": "sanctum", + "quartz": "sandclock", + "sand": "the-sandbox-wormhole", + "saca": "sandwich-cat", + "sandy": "sandy", + "misa": "sangkara", + "sani": "sanin-inu", + "sanshu!": "sanshu", + "sanshu": "sanshu-inu", + "santa": "santa-coin-2", + "santagrok": "santa-grok", + "saninu": "santa-inu", + "santos": "santos-fc-fan-token", + "spfc": "sao-paulo-fc-fan-token", + "spn": "sportzchain", + "sapp": "sapphire", + "sarries": "saracens-fan-token", + "sarco": "sarcophagus", + "srds": "sardis-network", + "saros": "saros-finance", + "sashimi": "sashimi", + "sassymf": "sassy-the-mf-sasquatch", + "sat": "super-athletes-token", + "satin": "satin-exchange", + "snd": "satnode", + "sato": "satoshi-finance", + "sao": "sator", + "soshe": "satoshe-network", + "scash": "satoshi-cash-network", + "btusd": "satoshi-finance-btusd", + "satoshi": "satoshi-nakamoto", + "丰": "satoshi-nakamoto-rune", + "$godfather": "satoshi-nakamoto-sol", + "sap": "satoshi-panda", + "sats": "sats-ordinals", + "ssnc": "satoshisync", + "savm": "satoshivm", + "satox": "satoxcoin", + "satoz": "satozhi", + "sabr": "satsbridge", + "shnt": "sats-hunters", + "satt": "satt", + "sauce": "saucerswap", + "sauceinu": "sauce-inu", + "saudibonk": "saudi-bonk", + "saudipepe": "saudi-pepe", + "meat": "sausagers-meat", + "savg": "savage", + "svn": "stakevault-network", + "savantai": "savant-ai", + "svd": "savedroid", + "sdai": "savings-xdai", + "sveth": "staked-veth", + "sbtc": "sbtc", + "bhny": "sbu-honey", + "scales": "scales", + "sca": "scallop-2", + "sclp": "scallop", + "scm": "scamfari", + "$mania": "scapesmania", + "scarab": "scarab-finance", + "dung": "scarab-tools", + "scx": "scarcity", + "scart": "scart360", + "sccp": "s-c-corinthians-fan-token", + "sflr": "sceptre-staked-flr", + "schizo": "schizo", + "shc": "school-hack-coin", + "schrodi": "schrodi", + "sgr": "schrodinger-2", + "swai": "schwiftai", + "scie": "scientia", + "scix": "scientix", + "saci": "sc-internacional-fan-token", + "scooter": "scooter", + "xscp": "scopecoin", + "scopex": "scopexai", + "scop": "scopuly-token", + "scorai": "scorai", + "scorp": "scorpion", + "scr": "scorum", + "$scot": "scottish", + "scotty": "scotty-beam", + "scrap": "scrap", + "scrat": "scrat", + "scream": "scream", + "scribes": "scribes", + "scpt": "script-network", + "spay": "spacey-2025", + "scriv": "scriv", + "scrolly": "scrolly-the-map", + "scrooge": "scrooge", + "sdoge": "spacedoge", + "sdola": "sdola", + "scoin": "sdrive-app", + "seah": "seahorses", + "slk": "starlink-program", + "seal": "seal-sol", + "si": "siren", + "seam": "seamless-protocol", + "seamless": "seamlessswap-token", + "spt": "seapad", + "sprl": "sea-pearl", + "0xsearch": "search", + "seba": "seba", + "snn": "sechain", + "swio": "second-world-games", + "scrt": "secret", + "hide": "secret-block-hide", + "wscrt": "secret-erc20", + "$crypt": "secret-skellies-society", + "ss": "secret-society", + "ser": "secretum", + "sect": "sector", + "scsx": "secure-cash", + "scai": "securechain-ai", + "smrat": "secured-moonrat-token", + "sob": "secured-on-blockchain-2", + "seda": "seda-2", + "sdr": "sedra-coin", + "seeded": "seeded-network", + "sfund": "seedify-fund", + "slt": "sui-launch-token", + "seeds": "seeds", + "seedx": "seedx", + "sti": "seek-tiger", + "sef": "segment", + "$seif": "seifmoon", + "share": "share-on-crypto", + "seimen": "seimen", + "seimoyed": "seimoyed", + "sei": "seiwhale", + "spex": "stepex", + "serg": "seiren-games-network", + "seiyan": "seiyan", + "sekai": "sekai-dao", + "glory": "sekai-glory", + "skrt": "sekuritance", + "skya": "sekuya-2", + "sbar": "selfbar", + "slf": "self-chain", + "self": "self-token", + "selfie": "selfiedogcoin", + "sse": "soroosh-smart-ecosystem", + "soai": "self-operating-ai", + "selo": "selo", + "smai2.0": "sempsunai2-0", + "senate": "senate", + "send": "social-send", + "sendc": "sendcrypto", + "sendex": "sendex-ai", + "sendit": "sendit", + "sen": "senspark-matic", + "senusd": "seneca-usd", + "senk": "senk", + "snsy": "sensay", + "sfit": "sense4fit", + "sensei": "sensei-dog", + "sensi": "sensi", + "sets": "sensitrust", + "senso": "senso", + "sent": "sentiment-token", + "senai": "sentinel-ai", + "snt": "status", + "senc": "sentinel-chain", + "upp": "sentinel-protocol", + "sntr": "sentre", + "seor": "seor-network", + "сербскаяле": "serbian-dancing-lady", + "sersh": "serenity-shield", + "$serious": "serious-coin", + "srm": "solareum-d260e488-50a0-4048-ace4-1b82f9822903", + "seth": "seth", + "seth2": "seth2", + "sexy": "settled-ethxy-token", + "seur": "seur", + "sdt": "stake-dao", + "sevilla": "sevilla-fan-token", + "sex": "solidex", + "sfg": "s-finance", + "sfort": "sfortuna-token", + "🤷": "sgn-sho-ga-nai-sgn-runes", + "shack": "shackleford", + "shd": "shade-protocol", + "shadowcats": "shadowcats", + "$shadow": "shadowladys-dn404", + "svpn": "shadow-node", + "gang": "shadow-wizard-money-gang", + "shkk": "shakaka", + "shak": "shakita-inu", + "bala": "shambala", + "shang": "shanghai-inu", + "shan": "shanum", + "$sharbi": "sharbi", + "shm": "shardeum", + "wnot": "shard-of-notcoin-nft-bond", + "ult": "shardus", + "sgtv2": "sharedstake-governance-token", + "shr": "shree", + "$shaka": "sharetheshaka", + "sbee": "sharkbee", + "sc": "star-cat", + "sharki": "sharki", + "sharky": "sharky-swap", + "spi": "sharp-portfolio-index", + "sheb": "sheboshis-2", + "$sheesh": "sheesh-3", + "sheesha": "sheesha-finance-erc20", + "msheesha": "sheesha-finance-polygon", + "sheesh": "sheeshin-on-solana", + "shei": "sheishei", + "ss20": "shell", + "shl": "shelling", + "shell": "shell-protocol-token", + "terz": "shelterz", + "shen": "shen", + "$shepe": "shepe", + "sinu": "shepherd-inu-2", + "shezmu": "shezmu", + "shezeth": "shezmueth", + "shezusd": "shezmuusd", + "shib2": "shib2", + "shib2.0": "shib2-0", + "shibaai": "shibaai", + "shibtc": "shibabitcoin-2", + "shibsc": "shiba-bsc", + "pesos": "shiba-cartel", + "shibceo": "shibceo", + "shibc": "shiba-inu-classic-2", + "shico": "shibacorgi", + "shibdoge": "shibadoge", + "shifo": "shibafomi", + "shibemp": "shiba-inu-empire", + "$shibk": "shibakeanu", + "shibaken": "shibaken-finance", + "sbmt": "shibaments", + "shibanft": "shibanft", + "shino": "shiba-nodes", + "conk": "shibapoconk", + "qom": "shiba-predator", + "spunk": "shiba-punkz", + "sns": "synesis-one", + "serp": "shibarium-perpetuals", + "wbone": "wrapped-bone", + "shibarmy": "shib-army", + "shia": "shiba-saga", + "shibasso": "shibasso", + "shibx": "shibavax", + "verse": "verse-bitcoin", + "shepe": "shiba-v-pepe", + "$wif": "shibawifhat", + "xshib": "xshib", + "shibelon": "shibelon", + "shflcn": "shibfalcon", + "shibgf": "shibgf", + "shibking": "shibking", + "shibn": "shibnaut", + "shibo": "shibonk", + "shiboo": "shiboo", + "sov": "sovryn", + "shiboshi": "shiboshi", + "shibot": "shibot", + "shsh": "shibsharks", + "shid": "shid", + "sdn": "wrapped-shiden-network", + "shido": "shido-2", + "shdb": "shield-bsc-token", + "shieldnet": "shield-network", + "0stc": "shieldtokencoin", + "shih": "shih-tzu", + "shik": "shikoku", + "shiko": "shikoku-inu", + "shil": "shila-inu", + "sgt": "suzuverse", + "shill": "shill-token", + "smr": "shimmer", + "shi": "shirtum", + "shin": "shina-inu-2", + "sc20": "shine-chain", + "shinji": "shinjiru-inu", + "catshira": "shira-cat", + "frogdog": "shiro-the-frogdog", + "shiryo-inu": "shiryo-inu", + "suzume": "shita-kiri-suzume", + "shitzu": "shitzu", + "shiv": "shiva-inu", + "neuros": "shockwaves", + "shoe": "shoefy", + "shog": "shog", + "shoki": "shoki", + "shon": "shontoken", + "shoot": "shoot-2", + "shop": "shopping-io-token", + "shping": "shping", + "shrap": "shrapnel-2", + "shred": "shredn", + "shredn": "shredn-dog", + "shrekai": "shrek-ai", + "shrimp": "shrimp-2", + "shroom": "shroom-finance", + "shrub": "shrub", + "shfl": "shuffle-2", + "sfl": "sunflower-land", + "shui": "shui", + "scfx": "shui-cfx", + "swave": "shuts-wave", + "shu": "shutter", + "shft": "shyft-network-2", + "$sia": "sia-ai", + "siam": "siamese", + "scp": "siaprime-coin", + "sidus": "sidus", + "sienna": "sienna", + "wsienna": "sienna-erc20", + "erowan": "sifchain", + "sifu": "sifu-vision-2", + "sigma": "sigma", + "sign": "sign", + "sata": "signata", + "signa": "signum", + "sigusd": "sigusd", + "ubsn": "silent-notary", + "silk": "silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2", + "silky": "silky", + "sib": "sillybird", + "sillycat": "sillycat", + "silly": "stupid-silly-cat-runes", + "nub": "sillynubcat", + "silo": "silo-finance", + "isei": "silo-staked-sei", + "silva": "silva-token", + "silver": "silver", + "sstx": "silverstonks", + "dslv": "silver-tokenized-stock-defichain", + "xagx": "silver-token-xagx", + "simba": "simba-coin", + "smbswap": "simbcoin-swap", + "simit": "simit", + "smc": "simong-coin", + "safeth": "simple-asymmetry-eth", + "simpli": "simpli-finance", + "simpson690": "simpson6900", + "src": "simracer-coin", + "sin": "sin-city", + "sindi": "sindi", + "single": "single-finance", + "sing": "sing-token-ftm", + "sgly": "singularity", + "sdao": "singularitydao", + "agix": "singularitynet", + "sino": "sino", + "stv": "sint-truidense-voetbalvereniging-fan-token", + "sipher": "sipher", + "sls": "siphon-life-spell", + "sir": "sir", + "srn": "sirin-labs-token", + "srs": "sirius-finance", + "sint": "siriusnet", + "sispop": "sispop", + "six": "six-network", + "sge": "six-sigma", + "size": "size-2", + "emerald": "sj741-emeralds", + "skai": "skai", + "skl": "skale", + "skatecat": "skatecat", + "skeb": "skeb", + "skey": "skey-network", + "toilet": "skibidi-toilet", + "skbdi": "skibidi-toilet-2", + "ski": "ski-mask-dog", + "skipup": "ski-mask-pup", + "sklay": "sklay", + "$skol": "skol", + "skol": "skolana", + "skx": "skpanax", + "skm": "skrumble-network", + "$skullcat": "skull-cat", + "skop": "skull-of-pepe-token", + "skydoge": "skydogenet", + "skyh": "sky-hause", + "skp": "skyplay", + "skyrim": "skyrim-finance", + "slam": "slam-token", + "stacks": "stacks", + "slafac": "slap-face", + "svl": "slash-vision-labs", + "benfica": "sl-benfica-fan-token", + "slerf": "slerf", + "slerfcat": "slerf-cat", + "slex": "slex", + "sling": "slingshot", + "slnv2": "slnv2", + "sloth": "slothana", + "slp": "smooth-love-potion", + "slumbo": "slumbo", + "sdog": "small-doge", + "sdex": "smardex", + "smart": "smart-game-finance", + "sas": "smart-aliens", + "audit": "smartaudit-ai", + "sbcc": "smart-block-chain-city", + "smrtr": "smart-coin-smrtr", + "smartcredit": "smartcredit-token", + "sln": "solland", + "smak": "smartlink", + "smt": "swarm-markets", + "mfg": "smart-mfg", + "smrt": "smartmoney", + "smartnft": "smartnft", + "sri": "smart-reckon-intelligence", + "srt": "smart-reward-token", + "sst": "socialswap-token", + "ssp": "starship-3", + "smart-bot": "smart-trade-bot", + "valor": "smart-valor", + "swgt": "smartworld-global", + "swu": "smart-world-union", + "spy": "smarty-pay", + "smash": "smash-cash", + "sml": "smell", + "smidge": "smidge", + "smile": "smileai", + "smiley": "smiley-coin", + "smog": "smog", + "smoke": "smoke-the-ticker", + "scf": "smoking-chicken-fish", + "slo": "smolano", + "smol": "smolcoin", + "smole": "smolecoin", + "su": "smol-su", + "smty": "smoothy", + "smorf": "smorf", + "smpf": "smp-finance", + "smudcat": "smudge-cat", + "smudge": "smudge-lord", + "snack": "snackboxai", + "snm": "sonm", + "slime": "snail-trail", + "snk": "snook", + "hiss": "snake-of-solana", + "snakes": "snakes-game", + "snapcat": "snapcat", + "$nap": "snap-kero", + "smx": "snapmuse-io", + "snps": "snaps", + "$snrk": "snark-launch", + "sneel": "sneel", + "snek": "snek", + "snepe": "snepe", + "snet": "snetwork", + "snfts": "snfts-seedify-nft-space", + "sng": "synergy-land-token", + "snibbu": "snibbu-the-crab", + "$sniff": "sniff", + "sbabe": "snoopybabe", + "snort": "snort", + "snob": "snowball-token", + "sb": "solbank", + "sbot": "snow-bot", + "nora": "snowcrash-token", + "irbis": "snow-leopard-irbis", + "snow": "snowswap", + "stomb": "snowtomb", + "slot": "snowtomb-lot", + "snpad": "snpad", + "snpt": "snpit-token", + "yvsnx": "snx-yvault", + "skmt": "soakmont", + "motus": "soarchain", + "sbx": "sobax", + "sobb": "sobit-bridge", + "sot": "soccer-crypto", + "socialai": "social-ai", + "socap": "social-capitalism-2", + "sg": "social-good-project", + "spl": "socialpal", + "eurcv": "societe-generale-forge-eurcv", + "$cat": "sociocat", + "socks": "unisocks", + "simp": "socol", + "comfy": "socomfy", + "soc": "socrates", + "sodi": "sodi-protocol", + "softco": "soft-coq-inu", + "soft": "soft-dao", + "sohot": "sohotrn", + "soil": "soil", + "sojak": "sojak", + "soju": "sojudao", + "soku": "sokuswap", + "sober": "solabrador-2", + "solala": "solala", + "slgo": "solalgo", + "solama": "solama", + "soly": "solamander", + "solamb": "solamb", + "sol": "wrapped-solana", + "solcade": "solana-arcade", + "compasssol": "solana-compass-staked-sol", + "sonda": "solanaconda", + "soli": "solana-ecosystem-index", + "solgun": "solgun-sniper", + "hubsol": "solanahub-staked-sol", + "solkit": "solana-kit", + "sol10": "solana-meme-token", + "solnut": "solana-nut", + "sshib": "solana-shib", + "ssb": "solana-street-bets", + "solwars": "solana-wars", + "slim": "solanium", + "solape": "solape-token", + "solar": "solar-swap", + "solbear": "solar-bear", + "slr": "solarcoin", + "seg": "solar-energy", + "solareum": "solareum-3", + "xsb": "solareum-wallet", + "flare": "solarflare", + "sxch": "solarx-2", + "sola": "sola-token", + "solav": "solav", + "solawave": "solawave", + "sax": "sola-x", + "sbabydoge": "sol-baby-doge", + "soba": "sol-bastard", + "$beats": "sol-beats", + "slb": "solberg", + "blze": "solblaze", + "solblock": "solblock-ai", + "book": "solbook", + "solbull": "solbull", + "solc": "solcard", + "scs": "solcasino-token", + "solcex": "solcex", + "slcl": "solcial", + "sct": "supercells-2", + "solx": "solxdex", + "docs": "soldocs", + "slnd": "solend", + "solen": "soletheon", + "slx": "solex-finance", + "tulip": "solfarm", + "sfarm": "solfarm-2", + "files": "solfiles", + "friends": "solfriends", + "solge": "solge", + "solgoat": "solgoat", + "graph": "solgraph", + "slc": "solice", + "solfi": "solidefi", + "sliz": "solidlizard", + "solid": "solidlydex", + "sido": "solido-finance", + "aitech": "solidus-aitech", + "solidx": "solid-x", + "damn": "sol-killer", + "$sollabs": "sollabs", + "solly": "solly", + "mail": "solmail", + "solmaker": "solmaker", + "mash": "solmash", + "mixer": "ton-mixer", + "smoon": "solmoon-bsc", + "solnyfans": "solnyfans", + "solo": "solordi", + "solong": "solong-the-dragon", + "solpac": "solpaca", + "solpad": "solpad-finance", + "solpaka": "solpaka", + "solpay": "solpay-finance", + "solphin": "solphin", + "solpod": "solpod", + "srgn": "solragon", + "solr": "solrazr", + "slrs": "solrise-finance", + "sols": "sols", + "snap": "solsnap", + "spend": "solspend", + "srch": "solsrch", + "str": "sterling-finance", + "storm": "storm-trade", + "stream": "zilstream", + "soltalk": "soltalk-ai", + "tracker": "soltracker", + "stbot": "soltradingbot", + "solum": "solum", + "solve": "solve-care", + "solvegas": "solvegas", + "solvbtc.bbn": "solv-protocol-solvbtc-bbn", + "solvbtc.ena": "solv-protocol-solvbtc-ena", + "xencat": "solxencat", + "sgg": "solx-gaming-guild", + "yard": "solyard-finance", + "solympics": "solympics", + "solzilla": "solzilla", + "soma": "soma-finance", + "smbr": "sombra-network", + "somee": "somee-social", + "ssg": "somesing", + "somm": "sommelier", + "cube": "somnium-space-cubes", + "sonar": "sonarwatch", + "sona": "sonata-network", + "sgb": "songbird", + "sfin": "songbird-finance", + "sonic": "sonic-suite", + "s": "soperme", + "sgoat": "sonic-goat", + "hotdog": "sonic-hotdog", + "sonicwif": "sonicwifhat", + "sonik": "sonik", + "sonne": "sonne-finance", + "sono": "sonocoin", + "bratt": "son-of-brett", + "sonorc": "sonorc", + "soon": "soonswap", + "sop": "sopay", + "soopy": "sopermen", + "soph": "sophon", + "xor": "sora", + "sora": "sora-solana", + "sorabtc": "sorabtc-ordinals", + "soraceo": "sora-ceo", + "soradoge": "sora-doge", + "xstbrl": "sora-synthetic-brl", + "xstjpy": "sora-synthetic-jpy", + "xstltc": "sora-synthetic-ltc", + "xstrub": "sora-synthetic-rub", + "xstusd": "sora-synthetic-usd", + "xstxag": "sora-synthetic-xag", + "sor": "soros", + "soulb": "soulboundid", + "sboy": "soulja-coin", + "soulo": "soulocoin", + "sdlx": "sound-linx", + "son": "souni-token", + "soup": "soup-finance", + "korea": "south-korea-coin", + "dllr": "sovryn-dollar", + "sowa": "sowa-ai", + "swk": "sowaka", + "soy": "soyjak-2", + "ansem": "soylanamanletcaptainz", + "spaceape": "spaceape", + "spc": "storepay", + "dawgs": "spacedawgs", + "fcon": "spacefalcon", + "hamster": "space-hamster-2", + "spiz": "space-iz", + "$smh": "spacemesh", + "smcw": "space-misfits", + "sn": "spacen", + "spacepi": "spacepi-token", + "xusd": "xusd-babelfish", + "ssx": "spaceshipx-ssx", + "milk2": "spaceswap-milk2", + "shake": "spaceswap-shake", + "svt": "spacevikings", + "sx": "sx-network-2", + "rod": "spacexpanse", + "esp": "spain-coin", + "snft": "suprenft", + "spk": "sparks", + "sparko": "sparko", + "srk": "sparkpoint", + "sfuel": "sparkpoint-fuel", + "spark": "sparkswap", + "spa": "sperax", + "sparta": "spartan-protocol-token", + "cmpt": "spatial-computing", + "dspy": "spdr-s-p-500-etf-trust-defichain", + "smetx": "specialmetalx", + "scl": "spectra-cash", + "spct": "spectra-chain", + "spec": "speculate-dao", + "spectre": "spectre-ai", + "alias": "spectrecoin", + "spr": "spectre-network", + "speth": "spectrum-eth", + "spf": "spectrum-finance", + "sms": "speed-mining-service", + "joc": "speed-star-joc", + "speedy": "speedy", + "speero": "speero", + "spellfire": "spellfire", + "spell": "spell-token", + "usds": "spiceusd", + "sphere": "sphere-finance", + "sxs": "spheresxs", + "sphri": "spherium", + "sph": "spheroid-universe", + "sphn": "spheron-network", + "spider": "spider", + "spdr": "spiderswap", + "spike": "spike-on-eth", + "spillways": "spillways", + "spin": "spintop", + "spinaq": "spinaq", + "$spin": "spin-fi", + "coil": "spiraldao-coil", + "spirit": "spiritswap", + "splash": "splash-trade", + "sps": "splinterlands", + "shopx": "splyt", + "spoody": "spodermen", + "$sponge": "sponge-f08b2fe4-9d9c-47c3-b5a0-84c2ac3bbbff", + "spoof": "spoofify", + "spky": "spookyshiba-2", + "spooky": "spooky-the-phantom", + "spz": "spookyz", + "spool": "spool-dao-token", + "spore": "spore", + "spo": "spores-network", + "spork": "sporkdao", + "sport": "sport", + "sprt": "sportium", + "sports-ai": "sports-artificial", + "sbet": "sports-bet", + "$icons": "sportsicon", + "spring": "spring", + "sprink": "sprink", + "sprx": "sprint-coin", + "spritzmoon": "spritzmoon-crypto", + "spume": "spume", + "spdx": "spurdex", + "spurdo": "spurdo-sparde-on-eth", + "spx": "spx6900", + "spyro": "spyrolana", + "sqd": "subsquid", + "sqgl": "sqgl-vault-nftx", + "sqrb": "sqrbit", + "sqrcat": "sqrcat", + "sqts": "sqts-ordinals", + "squad": "squadswap", + "squidgrow": "squidgrow", + "$sqg": "squidtg", + "squirry": "squirry", + "sgm": "srcgame", + "srune": "srune", + "ssv": "ssv-network", + "stbz": "stabilize", + "stable": "usdfi-stable", + "scomp": "stablecomp", + "stack": "stack", + "$stack": "stacker-ai", + "ststx": "stacking-dao", + "sfx": "stackos", + "stsw": "stackswap", + "dsla": "stacktical", + "bnbx": "stader-bnbx", + "ethx": "stader-ethx", + "maticx": "stader-maticx", + "nearx": "stader-nearx", + "sftmx": "stader-sftmx", + "fis": "stafi", + "ratom": "stafi-staked-atom", + "rbnb": "stafi-staked-bnb", + "rmatic": "stafi-staked-matic", + "rsol": "stafi-staked-sol", + "rswth": "stafi-staked-swth", + "acc": "stage-0", + "stik": "staika", + "sbt": "stakebooster-token", + "standard": "stakeborg-dao", + "stakesol": "stake-city-staked-sol", + "stkabpt": "staked-aave-balancer-pool-token", + "steur": "staked-ageur", + "sdcrv": "stake-dao-crv", + "staur": "staked-aurora", + "moobifi": "staked-bifi", + "score": "staked-core", + "steth": "steth-fuse", + "stern": "staked-ethos-reserve-note", + "sfrax": "staked-frax", + "sfrxeth": "staked-frax-ether", + "stfx": "stfx", + "sthope": "staked-hope", + "skcs": "staked-kcs", + "artmetis": "staked-metis-token", + "stnear": "staked-near", + "xogn": "staked-ogn", + "nststrk": "staked-strk", + "xtarot": "staked-tarot", + "sthapt": "staked-thala-apt", + "stlos": "staked-tlos", + "strx": "strikecoin", + "stusdt": "staked-usdt", + "svec": "staked-vector", + "stvlx": "staked-vlx", + "st-ycrv": "staked-yearn-crv-vault", + "st-yeth": "staked-yearn-ether", + "deth": "stakehouse-deth", + "keth": "stakehouse-keth", + "sdl": "stake-link", + "stlink": "stake-link-staked-link", + "stpeth": "stake-together", + "swise": "stakewise", + "osgno": "stakewise-staked-gno-2", + "oseth": "stakewise-v3-oseth", + "stamp": "stamp-2", + "stmap": "stampmap", + "stnd": "standard-protocol", + "tst": "teleport-system-token", + "stan": "stanley-cup-coin", + "bot": "starbots", + "stk": "starck", + "helia": "starecat", + "sfe": "star-fate", + "sean": "starfish-finance", + "stg": "stargate-finance", + "starkinu": "stark-inu", + "smeta": "starkmeta", + "strk": "starknet", + "lay": "starlay-finance", + "starl": "starlink", + "starly": "starly", + "smon": "starmon-token", + "iov": "starname", + "aibang": "starnet", + "srp": "starpad", + "starri": "starri", + "srx": "syrup-finance", + "sss": "super-sushi-samurai", + "starship": "starship-2", + "stship": "starship-4", + "sship": "starship-erc20", + "sslx": "starslax", + "swcat": "star-wars-cat", + "starx": "starworks-global-ecosystem", + "stash": "stash-inu", + "eurs": "stasis-eurs", + "stat": "stat", + "stats": "stats", + "stt": "statter-network", + "steak": "steakhut-finance", + "sdx": "steakd", + "steaklrt": "steakhouse-resteaking-vault", + "deal": "stealth-deals", + "steam": "steam", + "steamx": "steam-exchange", + "steem": "steem", + "sbd": "steem-dollars", + "opple": "steep-jubs", + "sfty": "stella-fantasy-token", + "xlm": "stellar", + "stelai": "stellaryai", + "stella": "stellaswap", + "stdot": "stellaswap-staked-dot", + "xla": "stellite", + "stls": "stelsi", + "stemx": "stemx", + "step": "step-finance", + "fitfi": "step-app-fitfi", + "gmt": "stepn", + "stai": "stereoai", + "$steve": "steve", + "steve": "steve-2", + "stickbug": "stickbug", + "$sticky": "stickman", + "stilt": "stilton", + "stima": "stima", + "stkatom": "stkatom", + "stkd": "stkd-scrt", + "stbu": "stobox-token", + "soh": "stohn-coin", + "zeta": "zetachain", + "ston": "ston-2", + "stoned": "stoned", + "stog": "stooges", + "stopelon": "stopelon", + "wstor": "storagechain", + "storj": "storj", + "stmx": "storm", + "jan": "storm-warfare", + "story": "story", + "blaze": "titan-blaze", + "stpt": "stp-network", + "xidr": "straitsx-indonesia-rupiah", + "strax": "stratis", + "stos": "stratos", + "strat": "stratum-exchange", + "صباح الفر": "strawberry-elephant", + "strch": "strch-token", + "stkc": "streakk-chain", + "strm": "streamer-inu", + "xdata": "streamr-xdata", + "streetdogs": "street-dogs", + "streeth": "streeth", + "srg": "street-runner", + "strelka ai": "strelka-ai", + "strd": "stride", + "statom": "stride-staked-atom", + "stdydx": "stride-staked-dydx", + "stdym": "stride-staked-dym", + "stinj": "stride-staked-injective", + "stislm": "stride-staked-islm", + "stjuno": "stride-staked-juno", + "stosmo": "stride-staked-osmo", + "stsaga": "stride-staked-saga", + "stsomm": "stride-staked-sommelier", + "ststars": "stride-staked-stars", + "sttia": "stride-staked-tia", + "stumee": "stride-staked-umee", + "strike": "strike", + "strip": "stripto", + "strp": "strips-finance", + "strix": "strix", + "strong": "strong", + "strngr": "stronger", + "shnd": "stronghands", + "ishnd": "stronghands-finance", + "strongsol": "stronghold-staked-sol", + "shx": "stronghold-token", + "sne": "strongnode", + "stf": "structure-finance", + "syk": "stryke", + "study": "study", + "strdy": "sturdy", + "style": "style-protocol-2", + "stzil": "stzil", + "subava": "subava-token", + "subi": "subi-network", + "sqt": "subquery-network", + "sub": "substratum", + "sccn": "succession", + "skid": "success-kid", + "sudo": "sudoswap", + "tip": "tiperian", + "sugar": "sugaryield", + "sko": "sugar-kingdom-odyssey", + "sui": "sui", + "suia": "suia", + "sbox": "suiboxer", + "hsui": "suicune-on-sui", + "suip": "suipad", + "suishib": "suishiba", + "sswp": "suiswap", + "table": "suitable", + "zuki": "suizuki", + "skt": "sukhavati-network", + "suku": "suku", + "subtc": "sumer-money-subtc", + "sueth": "sumer-money-sueth", + "suusd": "sumer-money-suusd", + "summon": "summoners-league", + "suki": "sumo-kitty", + "sumo": "sumokoin", + "sun": "sun-token", + "snc": "suncontract", + "sundae": "sundae-the-dog", + "sunny": "sunny-aggregator", + "ssu": "sunnysideup", + "sunc": "sunrise", + "tzu": "sun-tzu", + "supe": "supe-infinity", + "subf": "super-best-friends", + "superbid": "superbid", + "super": "superfarm", + "supr": "superdapp", + "supersol": "superfast-staked-sol", + "superflr": "superflare", + "chfp": "superfrank", + "silkroad": "supermarioporsche911inu", + "rare": "unique-one", + "srbp": "super-rare-ball-shares", + "superseiyan": "super-seiyan", + "superstake": "superstake", + "uscc": "superstate-uscc", + "strump": "super-trump", + "svet": "super-vet", + "grnd": "superwalk", + "walk": "walk", + "sero": "super-zero", + "supra": "supra", + "rmt": "sureremit", + "board": "surfboard", + "surf": "surfexutilitytoken", + "surge": "surge", + "azee": "surrealverse", + "surv": "surveyor-dao", + "yvsusd": "susd-yvault", + "sushi": "sushi", + "$sushi": "sushi-fighter", + "yvsushi": "sushi-yvault", + "set": "sustainable-energy-token", + "suter": "suterusu", + "suv": "suvereno", + "$swag": "swag", + "swag": "swag-coin", + "swamp": "swamp-coin", + "swana": "swana-solana", + "xwp": "swap", + "s315": "swap315", + "sdxb": "swapdex", + "smd": "swapmode", + "swpd": "swapped-finance", + "ppi": "swappi", + "swpr": "swapr", + "sapr": "swaprum", + "swpt": "swaptracker", + "swapz": "swapz-app", + "swm": "swarm", + "bzz": "swarm-bzz", + "swash": "swash", + "sway": "sway-social", + "sweat": "sweatcoin", + "sweep": "sweep-token", + "sweet": "sweet", + "$swts": "sweets", + "swell": "swell-network", + "swply": "sweply", + "swrv": "swerve-dao", + "swerve": "swerve-protocol", + "sweth": "sweth", + "swftc": "swftcoin", + "sbc": "swiftbit", + "swift": "swiftpad", + "sws": "swiftswap", + "swi": "swinca-2", + "swingby": "swingby", + "$swing": "swing-xyz", + "sxp": "swipe", + "swch": "swisscheese", + "swtr": "swisstronik", + "swth": "switcheo", + "switch": "switch-token", + "swop": "swop", + "swo": "sword-and-magic-world", + "swdb": "sword-bsc-token", + "swot": "swot-ai", + "swat": "swtcoin", + "swusd": "swusd", + "swych": "swych", + "swyp": "swyp-foundation", + "sybl": "sybulls", + "sylcm": "sylcm", + "sylo": "sylo", + "sis": "symbiosis-finance", + "xym": "symbol", + "sym": "symverse", + "syn": "syn-dog", + "zksnp": "synapse-network-2", + "synapticai": "synaptic-ai", + "ysol": "synatra-staked-sol", + "sydx": "syncdex", + "scy": "synchrony", + "synh": "synchub", + "slisbnb": "synclub-staked-bnb", + "sync": "syncus", + "synr": "syndicate-2", + "syno": "synonym-finance", + "syntx": "syntax-ai", + "synt": "synternet-synt", + "synthai": "synthai", + "syai": "synth-ai", + "sny": "synthetify-token", + "synth": "synthswap", + "syp": "sypool", + "sys": "syscoin", + "t23": "t23", + "t2t2": "t2t2", + "t2tkn": "t2-tkn", + "trn": "t3rn", + "epos": "tabbypos", + "tabo": "tabo", + "taboo": "taboo-token", + "ttt": "toptrade", + "tacocat": "tacocat", + "tada": "theada", + "taggr": "taggr", + "taho": "taho", + "tkai": "taikai", + "taiko": "taiko", + "tkoswap": "taikoswap", + "tail": "tail", + "taj": "tajcoin", + "tkg": "takamaka-green-coin", + "take": "takepile", + "taki": "taki", + "$talahon": "talahon", + "talax": "talaxeum", + "craft": "talecraft", + "tal": "talki", + "tlr": "taler", + "tome": "toon-of-meme", + "talis": "talis-protocol", + "talk": "talken", + "talys": "talys", + "tama": "tama-finance", + "gotchi": "tamagotchi", + "tslt": "tamkin", + "tang": "tangent", + "tngbl": "tangible", + "tnt": "tierion", + "tnet": "tangle-network-2", + "void": "void-games", + "tango": "tangoswap", + "tpcat": "tang-ping-cat", + "tangyuan": "tangyuan", + "tanks": "tanks", + "tanpin": "tanpin", + "tanuki": "tanuki-coin", + "tanupad": "tanuki-launchpad", + "tas": "tao-accounting-system", + "tbank": "taobank", + "taobot": "tao-bot", + "ceti": "tao-ceti", + "tah": "taoharvest", + "taonu": "tao-inu", + "taolie": "taolie-coin", + "tpad": "trustpad-2-0", + "taop": "taoplay", + "taoshi": "taoshi", + "taoshard": "tao-subnet-sharding", + "utao": "taounity", + "taovm": "taovm", + "taox": "taox", + "xtp": "tap", + "tap": "tap-protocol-ordinals", + "tpx": "tapp-coin", + "taproot": "taproot", + "tara": "taraxa", + "tard": "tard", + "trdg": "tardigrades-finance", + "target": "target-protocol", + "tari": "tari-world", + "tarm": "tarmex-2", + "tarot": "tarot-2", + "tashi": "tashi", + "taste": "tastenft", + "tate": "tate", + "tme": "tate-stop", + "tatsu": "tatsu", + "txt": "textopia", + "tbcc": "tbcc", + "tbtc": "tbtc", + "tcgc": "tcg-verse", + "tdoge": "tdoge", + "tea": "tea-meme-coin", + "th": "team-heretics-fan-token", + "vit": "team-vitality-fan-token", + "tear": "tear", + "tdt": "tech-deck-turtle", + "tmng": "technology-metal-network-global", + "tonic": "tectonic", + "tet": "tectum", + "tbi": "teddy-bear-inu", + "tsd": "teddy-dollar", + "tone": "te-food", + "tgs": "tegisto", + "tgr": "tegro", + "gold 1": "teh-golden-one", + "tun": "teh-upen-netwerg", + "teia": "teia-dao", + "tektias": "tektias", + "tel": "telcoin", + "teleb": "telebucks", + "tcard": "telecard", + "tele": "tonx", + "tnode": "telenode", + "ttn": "teletreon", + "trb": "tellor", + "tlos": "telos", + "tvc": "telos-velocore", + "temco": "temco", + "tem": "temtem", + "temple": "temple", + "tkey": "temple-key", + "tenfi": "ten", + "tnnt": "tenant-messo", + "tbc": "turingbitchain", + "tendy": "tendies-icp", + "teneo": "teneo-protocol", + "tenet": "tenet-1b000f7b-59cb-4e06-89ce-d62b32d362b9", + "10set": "tenset", + "tenshi": "tenshi", + "tnsr": "tensor", + "thub": "tensorhub", + "sttao": "tensorplex-staked-tao", + "tsa": "tensorscan-ai", + "tpu": "tensorspace", + "tup": "tenup", + "tenx": "tenx-2", + "tepe": "tepe", + "tp": "ton-printer", + "teq": "teq-network", + "thz": "terahertz-capital", + "tera": "tera-smart-money", + "trcon": "teratto", + "tori": "tori-the-cat", + "term": "term-structure", + "tern": "ternio", + "luna": "terra-luna-2", + "trr": "terran-coin", + "terra": "terraport", + "ustc": "wrapped-ust", + "ust": "terrausd-wormhole", + "tert": "tert", + "teso": "teso", + "test": "test-token-please-ignore", + "testo": "testo", + "zusdt": "tether-6069e553-7ebb-487e-965e-2896cd21d6ac", + "usdte": "tether-avalanche-bridged-usdt-e", + "t99": "tethereum", + "eurt": "tether-eurt", + "xaut": "tether-gold", + "ceusdt": "tether-usd-celer", + "usdtpo": "tether-usd-pos-wormhole", + "usdtso": "tether-usd-wormhole", + "usdtet": "tether-usd-wormhole-from-ethereum", + "tethys": "tethys-finance", + "tetrap": "tetra", + "tetris": "tetris-2", + "tetu": "tetu", + "tetuqi": "tetuqi", + "texan": "texan", + "xtz": "tezos", + "ted": "tezos-domains", + "tgram": "tg20-tgram", + "tgc": "tg-casino", + "tgdao": "tg-dao", + "txau": "tgold", + "tgd": "tgrade", + "thl": "thala", + "thapt": "thala-apt", + "thales": "thales", + "tfti": "thanks-for-the-invite", + "abyss": "the-abyss", + "society": "the-ape-society", + "$kekec": "the-balkan-dwarf", + "tbd": "the-big-debate", + "grift": "the-big-grift", + "bguy": "the-big-guy", + "$td": "the-big-red", + "killa": "the-bitcoin-killa", + "barc": "the-blu-arctic-water-comp", + "theca": "theca", + "tcc": "the-champcoin", + "citadel": "the-citadel", + "bosscoq": "the-coq-father-boss", + "corgib": "the-corgi-of-polkabridge", + "tcp": "the-crypto-prophecies", + "dare": "the-dare", + "debt": "the-debt-box", + "degens": "the-degensons", + "ear": "the-ear-stays-on", + "emrld": "the-emerald-company", + "abcram": "the-ennead", + "esc": "the-essential-coin", + "elp": "the-everlasting-parachain", + "fooker": "the-fooker", + "fmn": "the-freemoon-token", + "czgoat": "the-goat-cz", + "grt": "the-graph", + "ptgc": "the-grays-currency", + "husl": "the-husl", + "jupcat": "the-jupiter-cat", + "kart": "the-kartel-project", + "kbox": "the-killbox-game", + "tkc": "the-kingdom-coin", + "know": "the-knowers", + "froggo": "the-last-pepe", + "tlcc": "the-love-care-coin", + "mrst": "the-mars", + "the": "the-protocol", + "nems": "the-nemesis", + "tnr": "the-night-riders", + "ogcinu": "the-og-cheems-inu", + "tol": "the-open-league-meme", + "ton": "tontoken", + "theo": "theopetra", + "theos": "theos", + "peep$": "the-people-coin", + "qwan": "the-qwan", + "rpr": "the-reaper", + "$reca": "the-resistance-cat", + "root": "the-root-network", + "trg": "the-rug-game", + "ᚱ": "the-runix-token-runes", + "sharks": "the-sharks-fan-token", + "tso": "thesirion", + "quant": "thesis-cat", + "sdo": "thesolandao", + "euros": "the-standard-euro", + "tdrop": "thetadrop", + "tfuel": "theta-fuel", + "thg": "thetan-arena", + "theta": "theta-token", + "thog": "the-theory-of-gravity", + "ttk": "the-three-kingdoms", + "elsa": "the-ticker-is-elsa", + "imbtc": "the-tokenized-bitcoin", + "spott": "thetopspotonline", + "un": "unit-dao", + "souls": "the-unfettered-souls", + "vsol": "vsolidus", + "tvk": "the-virtua-kolect", + "wnk": "the-winkyverse", + "hrse": "the-winners-circle", + "twd": "the-word", + "w$c": "the-world-state", + "xeno": "xeno", + "timi": "this-is-my-iguana", + "theone": "this-is-the-one", + "thol": "thol-token", + "thor": "thorswap", + "thr": "thorecoin", + "thoreum": "thoreum-v2", + "xrune": "thorstarter", + "tho": "thorus", + "tgt": "thorwallet", + "tht": "thought", + "$three": "three", + "tft": "threefold-token", + "thnd": "three-hundred-ai", + "t": "threshold-network-token", + "thusd": "threshold-usd", + "thn": "throne", + "tpy": "thrupenny", + "thug": "thug-life", + "stflip": "thunderhead-staked-flip", + "thx": "thx-network", + "ticcl": "ticclecat", + "tickstm": "tickerstm", + "tickle": "tickle", + "tico": "tico", + "tidal": "tidal-finance", + "tide": "tidalflats", + "tdfy": "tidefi", + "tdx": "tidex-token", + "tifi": "tifi-token", + "tif": "tif-protocol", + "tking": "tiger-king", + "tgmt": "tiger-meme-token", + "tiger": "ton-tiger", + "tigra": "tigra", + "tigres": "tigres-fan-token", + "tig": "tigris", + "tilly": "tilly-the-killer-whale", + "tcs": "timechain-swap-token", + "$time": "timecoin-2", + "davido": "timeless-davido", + "timepocket": "timepocket", + "timeseries": "timeseries-ai", + "πts": "timespace", + "timmi": "timmi", + "lord": "timothy-dexter", + "tinfa": "tinfa", + "tnkr": "tinkernet", + "tinu": "ton-inu", + "tiny": "tiny-colony", + "tes": "titan-trading-token", + "tipg": "tipg", + "tipja": "tipja", + "$tipsy": "tipsycoin", + "tired": "tired-of-it-all", + "titans": "titanborn", + "tita": "titan-hunters", + "ti": "titanium22", + "titanx": "titanx", + "tiusd": "tiusd", + "tlife": "tlifecoin", + "tlsd": "tlsd-coin", + "tlx": "tlx", + "tmg": "t-mac-dao", + "tmania": "t-mania-sol", + "tn100x": "tn100x", + "$toad": "toad-sol", + "toby": "toby-toadgod", + "toce": "tocen", + "tochi": "tochi-base", + "toding": "toding-protocol", + "toge": "toge", + "toka": "toka-2", + "tkn": "tokencard", + "toke": "tokemak", + "tkb": "tokenbot", + "tct": "tokenclub", + "usx": "token-dforce-usd", + "tec": "token-engineering-commons", + "token": "tokenfi", + "tin": "token-in", + "tkx": "tokenize-xchange", + "lon": "tokenlon", + "tmai": "token-metrics-ai", + "tok": "tokenplace", + "tpt": "token-pocket", + "sentry": "token-sentry-bot", + "tkst": "tokensight", + "eurot": "token-teknoloji-a-s-euro", + "onsg": "token-teknoloji-a-s-ons-gold", + "onss": "token-teknoloji-a-s-ons-silver", + "tkn25": "token-teknoloji-a-s-token-25", + "tdefi": "token-teknoloji-a-s-token-defi", + "tmeta": "token-teknoloji-a-s-token-metaverse", + "tnft": "token-teknoloji-a-s-token-nft", + "tplay": "token-teknoloji-a-s-token-play", + "usdot": "token-teknoloji-a-s-usd", + "tokenwatch": "tokenwatch", + "tokero": "tokero-levelup-token", + "hitt": "tokhit", + "toko": "toko", + "tko": "tokocrypto", + "tkp": "tokpie", + "toku": "toku", + "tkd": "tokuda", + "tokc": "tokyo", + "tokau": "tokyo-au", + "toly": "toly", + "tolycat": "toly-s-cat", + "oppie": "tolys-cat", + "tomb": "tomb", + "tomb+": "tombplus", + "tshare+": "tombplus-tshare-plus", + "tshare": "tomb-shares", + "tomi": "tominet", + "vic": "victory-impact", + "tomoe": "tomoe", + "toms": "tomtomcoin", + "twif": "tomwifhat", + "tcat": "ton-cat", + "tdog": "ton-dog", + "tnx": "tonex", + "tgpu": "tongpu", + "ttc": "tongtong-coin", + "luis": "tongue-cat", + "tonk": "tonk-inu", + "tont": "tonkit", + "1rus": "tonminer", + "tonnel": "tonnel-network", + "tonny": "tonny", + "raff": "ton-raffles", + "tonr": "ton-renaissance", + "ship": "ton-ship", + "tons": "tonsniper", + "tston": "tonstakers", + "tos": "tonstarter", + "tny": "tony", + "tony": "tony-the-duck", + "tooker": "tooker-kurlson", + "tools-fi": "tools-fi", + "topcat": "topcat-in-sol", + "topg": "top-g", + "topj": "top-jeet", + "tmt": "topmanager", + "liqr": "topshelf-finance", + "tora": "tora-inu", + "torg": "torg", + "torn": "tornado-cash", + "toro": "toro", + "tqs": "torq-swap", + "torq": "torque", + "torsy": "torsy", + "trtl": "turtlecoin", + "tapt": "tortuga-staked-aptos", + "xtm": "torum", + "toshi": "toshi-tools", + "tshx": "toshipad", + "ctosi": "tosidrop", + "ttm": "tradetomato", + "toto": "toto", + "totocat": "totocat", + "spurs": "tottenham-hotspur-fc-fan-token", + "bct": "toucan-protocol-base-carbon-tonne", + "toweli": "towelie", + "tower": "tower", + "deer": "toxicdeer-finance", + "txpt": "tplatinum", + "tpro": "tpro", + "tr3": "tr3zor", + "xte": "traaitt", + "tra": "trabzonspor-fan-token", + "trace": "trace-network-labs", + "track": "tracker-ai", + "trt": "trust-ai", + "trackr": "trackr", + "ttf": "track-the-funds-bot", + "onic": "trade-bionic", + "vflow": "tradeflow", + "aigenius": "trade-genius-ai", + "trhub": "tradehub", + "tlf": "trade-leaf", + "trdm": "trademaster-ninja", + "trdc": "traders-coin", + "trw": "traders-wallet", + "$tx": "traderx", + "tsx": "tradestars", + "ttai": "trade-tech-ai", + "cfa": "tradfi-bro", + "tx": "txworx", + "xblaze": "trailblaze", + "trala": "trala-token", + "slice": "tranche-finance", + "tranq": "tranquil-finance", + "trsct": "transactra-finance", + "trava": "trava-finance", + "trv": "travelers-token", + "trax": "trax", + "traxx": "traxx", + "usdtv": "treasuretv", + "tus": "treasure-under-sea", + "dtlt": "treasury-bond-eth-tokenized-stock-defichain", + "treat": "treat-token", + "treeb": "treeb", + "tree": "treeplanting", + "trcl": "treecle", + "treis": "trellis", + "tren": "tren", + "trnd": "trendappend", + "trendguru": "trendguru", + "smm": "trendingtool-io", + "trendx": "trend-x", + "$trepe": "trepe", + "tres": "tres-chain", + "trestle": "trestle", + "wtia": "trestle-wrapped-tia", + "tx20": "trex20", + "tzc": "trezarcoin", + "trl": "triall", + "trias": "trias-token", + "tribl": "tribal-token", + "tribal": "tribal-triballygames", + "tribe": "tribe-token-2", + "haka": "tribeone", + "tribex": "tribe-token", + "tri": "trisolaris", + "psi": "tridentdao", + "tiim": "triipmiles", + "tril": "trillant", + "tlc": "trillioner", + "trilly": "trilly", + "tnq": "trinique", + "tnc": "trinity-network-credit", + "abys": "trinity-of-the-fabled-abyss-fragment", + "triple": "triple", + "xeq": "triton", + "trivia": "trivian", + "trog": "trog-2", + "troll": "trollmuskwifhat", + "troll 2.0": "troll-2-0", + "trx": "tron-bsc", + "trxc": "tronclassic", + "terc": "troneuroperewardcoin", + "tronpad": "tronpad", + "troves": "troves", + "troy": "troy", + "trrxitte": "trrxitte", + "trubgr": "trubadger", + "tru": "truefi", + "tcnh": "truecnh", + "tfbx": "truefeedbackchain", + "pnl": "true-pnl", + "truffi": "truffi", + "truf": "truflation", + "trumatic-matic": "trumatic-matic-stable-pool", + "itrump": "trump-cards-fraction-token", + "djt": "trumpcoin", + "dtc": "trumpcoin-709b1637-4ceb-4e9e-878d-2b137bee017d", + "trumpie": "trumpie", + "$trumaga": "trumpmaga", + "tabby": "trump-s-tender-tabby", + "tbe": "trustbase", + "tfi": "trustfi-network-token", + "trustnft": "trustnft", + "ttg": "trust-trading-group", + "twt": "trust-wallet-token", + "truth": "truth-seekers", + "$truth": "truth-inu", + "trp": "truth-pay", + "trxi": "trxi-tron", + "tryc": "tryc", + "try": "tryhards", + "txag": "tsilver", + "tsubasaut": "tsubasa-utilitiy-token", + "tsuki": "tsuki", + "tkinu": "tsuki-inu", + "tsu": "tsutsuji", + "tc": "ttcoin", + "maro": "ttc-protocol", + "tub": "tub", + "tubes": "tubes", + "tucker": "tucker-carlson", + "tuf": "tuf-token", + "tuit": "tuition-coin", + "tupelo": "tupelothedog", + "turbo": "turbo-wallet", + "tmoon": "turbomoon", + "turbos": "turbos-finance", + "tur": "turing-network", + "tbft": "turkiye-basketbol-federasyonu-token", + "tmft": "turkiye-motosiklet-federasyonu-fan-token", + "tushi": "turk-shiba", + "turt": "turtsat", + "yvtusd": "tusd-yvault", + "tsk": "tuske", + "tut": "tutellus", + "tuxc": "tux-project", + "tuzki": "tuzki", + "tweety": "tweety", + "twelve": "twelve-zodiac", + "twb": "twinby", + "twinny": "twinny", + "twocat": "twotalkingcats", + "twtr": "twtr-fun", + "txa": "txa", + "txn": "txn-club", + "tyche": "tyche-protocol", + "tyc": "tycoon", + "tyo ghoul": "tyo-ghoul", + "type": "typerium", + "tyrel": "tyrel-derpden", + "tyrh": "tyrh", + "tyz": "tyz-token", + "tzbtc": "tzbtc", + "uahg": "uahg", + "ubdn": "ubd-network", + "ube": "ubeswap-2", + "ubq": "ubiq", + "ubit": "ubit", + "ub": "utopia-bot", + "ubx": "ubix-network", + "ubxs": "ubxs-token", + "uca": "uca", + "ucash": "ucash", + "ucit": "ucit", + "ucon": "ucon-social", + "ucm": "ucrowdme", + "ucx": "ucx", + "udao": "udao", + "udi": "udinese-calcio-fan-token", + "uerii": "uerii", + "ufc": "ufc-fan-token", + "ufo": "ufo-gaming", + "fora": "uforika", + "hve2": "uhive", + "ukre": "uk-real-estate", + "ultima": "ultima", + "ulti": "ultiverse", + "uos": "ultra", + "ultra": "ultrasafe", + "ucr": "ultra-clear", + "ulg": "ultragate", + "umc": "ultramoc", + "unft": "ultra-nft", + "upro": "ultrapro", + "ulx": "ultron", + "ultron": "ultron-vault", + "uma": "uma", + "umami": "umami-finance", + "umareum": "umareum", + "umb": "umbrella-network", + "ux": "umee", + "umi": "umi-digital", + "unt": "umi-s-friends-unity", + "umma": "umma-token", + "umja": "umoja", + "ybtc": "umoja-ybtc", + "udai": "unagii-dai", + "ueth": "unagii-eth", + "uusdt": "unagii-tether-usd", + "uusdc": "unagii-usd-coin", + "uwbtc": "unagii-wrapped-bitcoin", + "una": "unagi-token", + "unbnk": "unbanked", + "unb": "unbound-finance", + "u": "uranium3o8", + "uclx": "uncharted-lands-x", + "uncommongoods": "uncommon-goods", + "undead": "undead-blocks", + "uds": "undeads-games", + "udw": "underworld", + "ersdl": "unfederalreserve", + "uibt": "unibit", + "unibot": "unibot", + "ubt": "unibright", + "unice": "unice", + "universe": "unicorn-metaverse", + "unim": "unicorn-milk", + "uni": "uni-the-wonder-dog", + "u2u": "unicorn-ultra", + "uncx": "unicrypt-2", + "unidx": "unidex", + "udx": "unidexai", + "udo": "unido-ep", + "unix": "unix", + "ufarm": "unifarm", + "unifi": "unifi", + "unfi": "unifi-protocol-dao", + "grph": "unigraph-ordinals", + "ulab": "unilab-network", + "union": "union-finance", + "unn": "union-protocol-governance-token", + "unp": "unipoly", + "udc": "uniq-digital-coin", + "unq": "unq", + "unqt": "unique-utility-token", + "unistake": "unistake", + "unitao": "unitao", + "ubps": "united-base-postal", + "$uefn": "united-emirates-of-fun", + "uted": "united-token", + "utn": "uniton-token", + "uls": "units-limited-supply", + "uis": "unitus", + "uts": "unitus-2", + "unitybot": "unitybot", + "ucore": "unitycore", + "umt": "unitymeta-token", + "uv": "unityventures", + "utx": "utix", + "unm": "unium", + "ubi": "universal-basic-income", + "cwf": "universal-contact", + "ulu": "universal-liquidity-union", + "xyz": "universe-xyz", + "uch": "universidad-de-chile-fan-token", + "unw": "uniwhale", + "uniw": "uniwswap", + "yvuni": "uni-yvault", + "zcx": "unizen", + "unleash": "unleashclub", + "uft": "unlend-finance", + "uld": "unlighted", + "udt": "unlock-protocol", + "unlucky": "unlucky-2", + "marsh": "unmarshal", + "undx": "unodex", + "ugt": "unreal-finance", + "unsheth": "unsheth-unsheth", + "nstk": "unstake-fi", + "uns": "uns-token", + "und": "unstoppable-defi", + "nubtc": "unvaxxed-sperm", + "unvaxsperm": "unvaxxed-sperm-2", + "unv": "unvest", + "unwa": "unwa", + "up": "up-token-2", + "mbxn": "upbots", + "upc": "upcx", + "updog": "updog", + "ups": "upfi-network", + "sparklet": "upland", + "upx": "upx", + "lift": "uplift", + "upload": "upload", + "upo": "uponly-token", + "upt": "uprock", + "you": "youwho", + "usdcat": "upsidedowncat-2", + "wewe": "upside-down-meme", + "ustx": "upstabletoken", + "uptos": "uptos", + "upup": "upup-token", + "uqc": "uquid-coin", + "ura": "ura-dex", + "maki": "uramaki", + "urx": "uraniumx", + "anus": "uranus-sol", + "urd": "urdex-finance", + "urqa": "ureeqa", + "urmom": "urmom", + "urub": "urubit", + "urus": "urus-token", + "usd0++": "usd0-liquid-bond", + "usdb": "usdb", + "usdc.z": "usd-coin-bridged-zed20", + "ceusdc": "usd-coin-celer", + "usdcpo": "usd-coin-pos-wormhole", + "usdcarb": "usd-coin-wormhole-arb", + "usdcbnb": "usd-coin-wormhole-bnb", + "usdcet": "usd-coin-wormhole-from-ethereum", + "usdc+": "usdc-plus-overnight", + "yvusdc": "usdc-yvault", + "usdd": "usdd", + "usdebt": "usdebt", + "usdex+": "usdex-8136b88a-eceb-4eaf-b910-9578cbc70136", + "usdfi": "usdfi", + "usdh": "usdollhairs", + "jpm": "usdjpm", + "usdtz": "usdtez", + "usdt+": "usdtplus", + "yvusdt": "usdt-yvault", + "usdv": "vyvo-us-dollar", + "ushark": "ushark", + "ushi": "ushi", + "usm": "usmeme", + "usd0": "usual-usd", + "$banana": "utility-ape", + "ge": "utility-meta-token", + "unc": "utility-net", + "unmd": "utility-nexusmind", + "uw3s": "utility-web3shot", + "uusd": "youves-uusd", + "utk": "utrust", + "utu": "utu-coin", + "utxo": "utxo", + "utya": "utya", + "utyab": "utya-black", + "uwon": "uwon", + "uwu": "uwu-lend", + "uxp": "uxd-protocol-token", + "uxd": "uxd-stablecoin", + "uxlink": "uxlink", + "uzx": "uzxcoin", + "vshare": "v3s-share", + "vab": "vabble", + "vabt": "vabot-ai", + "vader": "vader-protocol", + "vai": "volume-ai", + "vcf": "valencia-cf-fan-token", + "toshe": "valentine-floki", + "vdo": "validao", + "vbit": "valobit", + "valu": "value", + "value": "value-liquidity", + "vanry": "vanar-chain", + "vana": "vana-world", + "dvnq": "vanguard-real-estate-tokenized-stock-defichain", + "dvoo": "vanguard-sp-500-etf-tokenized-stock-defichain", + "bum": "vanilla-2", + "vny": "vanity", + "vape": "vaporfi", + "vpnd": "vapornodes", + "vprm": "vaporum-coin", + "vpr": "vapor-wallet", + "vwave": "vaporwave", + "vrn": "varen", + "vasco": "vasco-da-gama-fan-token", + "vatr": "vatra-inu", + "vcx": "vaultcraft", + "vka": "vaultka", + "$vault": "vaulttech", + "vlabs": "vaxlabs", + "vbswap": "vbswap", + "xvc": "xave-coin", + "vcg": "vcgamers", + "vcore": "vcore", + "veax": "veax", + "vet": "vechain", + "veco": "veco", + "yve-crvdao": "vecrv-dao-yvault", + "veth": "venus-eth", + "vtx": "vector-finance", + "vec": "vector-reserve", + "vxv": "vectorspace", + "sbio": "vector-space-biosciences-inc", + "weve": "vedao", + "vega": "vega-protocol", + "vegas": "vegasino", + "veil": "veil-exchange", + "velar": "velar", + "vlx": "velas", + "vlxpad": "velaspad", + "vela": "vela-token", + "scar": "velhalla", + "velo": "velodrome-finance", + "vext": "veloce-vext", + "vc": "vinuchain", + "vetvc": "velocore-vetvc", + "vex": "vexanium", + "vta": "velta-token", + "vmt": "vemate", + "vemp": "vempire-ddao", + "vdt": "vendetta", + "venium": "venium", + "vno": "veno-finance", + "leth": "veno-finance-staked-eth", + "venom": "venom", + "ltia": "veno-staked-tia", + "vnx": "venox", + "vent": "vent-finance", + "vention": "vention", + "xvs": "venus", + "vbch": "venus-bch", + "vbeth": "venus-beth", + "vbtc": "venus-btc", + "vbusd": "venus-busd", + "vdai": "venus-dai", + "vdoge": "venus-doge", + "vdot": "voucher-dot", + "vfil": "venus-fil", + "vlink": "venus-link", + "vltc": "venus-ltc", + "vrt": "venus-reward-token", + "vsxp": "venus-sxp", + "vusdc": "venus-usdc", + "vusdt": "venus-usdt", + "vxrp": "venus-xrp", + "vxvs": "venus-xvs", + "vera": "vera", + "vro": "veraone", + "vra": "verasity", + "xvg": "verge-eth", + "vda": "verida", + "veri": "veritaseum", + "vts": "veritise", + "vrm": "vrmars", + "$vpad": "veropad", + "vrx": "verox", + "versa": "versagames", + "sity": "versity", + "vso": "verso", + "vsx": "versus-x", + "vtc": "vertcoin", + "vrtk": "vertek", + "vrtx": "vertex-protocol", + "verum": "verum-coin", + "vrsc": "verus-coin", + "vito": "very-special-dragon", + "vsp": "vesper-finance", + "vsta": "vesta-finance", + "vst": "voice-street", + "ves": "vestate", + "vs": "vesync", + "vtho": "vethor-token", + "vetme": "vetme", + "vsl": "vetter-skylabs", + "vetter": "vetter-token", + "veve": "veve", + "vfox": "vfox", + "vibe": "vibe", + "minette": "vibe-cat", + "vib": "viberate", + "vbg": "vibing", + "vcat": "vibing-cat", + "vicat": "vicat", + "vica": "vica-token", + "vcnt": "vicicoin", + "vr": "victoria-vr", + "vtg": "victory-gem", + "vidt": "vidt-dao", + "vdl": "vidulum", + "vidy": "vidy", + "vidya": "vidya", + "vidyx": "vidyx", + "velon": "viking-elon", + "viki": "viking-token-viki", + "vci": "vinci-protocol", + "vd": "vindax-coin", + "vnlnk": "vinlink", + "viper": "viper-2", + "vip": "vip-token", + "vinu": "vita-inu", + "vgo": "virgo", + "vrd": "viridis-network", + "vrc": "virtual-coin", + "virtual": "virtual-protocol", + "vrg": "virtual-reality-glasses", + "vt": "viterium", + "vtr": "virtual-trader", + "vv": "virtual-versions", + "vrl": "virtual-x", + "vb": "virtublock", + "virtu": "virtucloud", + "v": "virtucoin", + "vpp": "virtue-poker", + "vrsw": "virtuswap", + "visa": "visa-meme", + "vish": "vishai", + "vita": "vitality", + "vitalek": "vitalek-buteren", + "vmum": "vitalikmum", + "vsg": "vitalik-smart-gas", + "vital": "vitalxp", + "vitc": "vitamin-coin", + "vitarna": "vitarna", + "vite": "vite", + "vx": "vitex", + "vitra": "vitra-studios", + "wvtrs": "vitreus", + "vnpt": "vitruvian-nexus-protocol", + "$vivx": "vivex", + "vizion": "vizion-protocol", + "vizslaswap": "vizslaswap", + "vpad": "vlaunch-2", + "vmex": "vmex", + "vmpx": "vmpx", + "vndc": "vndc", + "vnst": "vnst-stablecoin", + "veur": "vnx-euro", + "vnxau": "vnx-gold", + "vchf": "vnx-swiss-franc", + "vdr": "vodra", + "vdz": "voidz", + "voip": "voip-finance", + "volr": "volare-network", + "vsui": "volo-staked-sui", + "volta": "volta-protocol", + "volx": "volumex", + "vmint": "volumint", + "ldz": "voodoo", + "vopo": "vopo", + "vp": "vortex-protocol", + "vglmr": "voucher-glmr", + "vksm": "voucher-ksm", + "vmovr": "voucher-movr", + "vow": "vow", + "voxelape": "voxel-ape", + "vxl": "voxel-x-network", + "voxel": "voxies", + "vxr": "vox-royale", + "vxt": "voxto", + "voy": "voy-finance", + "vps": "vps-ai", + "vsys": "v-systems", + "vtrading": "vtrading", + "pyr": "vulcan-forged", + "vpk": "vulture-peak", + "vuzz": "vuzzmind", + "vvs": "vvs-finance", + "vxdefi": "vxdefi", + "vyfi": "vyfinance", + "vsc": "vyvo-smart-chain", + "w3g": "w3gamez-network", + "wabbit": "wabbit-hole", + "🐧": "waddle-waddle-pengu", + "wtk": "wadzpay-token", + "waffles": "waffles", + "wager": "wageron", + "wgr": "wagerr", + "wag": "wagyuswap", + "wagiebot": "wagie-bot", + "wagmi": "wagmi-on-solana", + "hood": "wagmicatgirlkanye420etfmoon1000x", + "wagmigames": "wagmi-game-2", + "wagyu": "wagyu-protocol", + "waifu": "waifu-2", + "wfai": "waifuai", + "flocka": "waka-flocka", + "$walc": "walc", + "wlkn": "walken", + "wkg": "walkmining-governance", + "wut": "wut", + "wdf": "wallet-defi", + "wltk": "walletika", + "wnow": "walletnow", + "wsafu": "wallet-safu", + "bo": "wallet-sniffer", + "wsb": "wsb-coin", + "wsg": "wall-street-games-2", + "wsm": "wall-street-memes", + "wally": "wally-the-whale", + "walter": "walter-dog-solana", + "wtc": "waltonchain", + "wam": "wam", + "wana": "wanaka-farm", + "wanbtc": "wanbtc", + "wan": "wanchain", + "wand": "wand", + "waneth": "waneth", + "🐶": "wanko-manko-rune", + "wanna": "wannaswap", + "wasp": "wanswap-2", + "wanusdc": "wanusdc", + "wanusdt": "wanusdt", + "wanxrp": "wanxrp", + "$wap": "wap-ordinals", + "war": "westarter", + "warp": "warp-cash", + "wome": "war-of-meme", + "warped": "warped-games", + "$warpie": "warpie", + "chaos": "warrior-empires", + "wart": "warthog", + "was": "wasder", + "wasd": "wasd-studios", + "wassie": "wassie", + "waco": "waste-coin", + "wat": "watermelon", + "wdo": "watchdo", + "wai": "wienerai", + "wts": "watchtowers-ai", + "wex": "waultswap", + "wave": "we-are-venom", + "west": "waves-enterprise", + "wx": "weave6", + "wavx": "wavx-exchange", + "wawa": "wawacat", + "gbl": "waweswaps-global-token", + "waxp": "wax", + "waxe": "waxe", + "ww": "wayawolfcoin", + "wicc": "waykichain", + "wgrt": "waykichain-governance-coin", + "wrx": "wazirx", + "wbnb": "wbnb", + "yvwbtc": "wbtc-yvault", + "wcd": "wcdonalds", + "wct": "wctrades", + "wdot": "wdot", + "we2net": "we2net", + "wxm": "weatherxm-network", + "web": "webcash", + "3p": "web3camp-2", + "usd3": "web-3-dollar", + "w3f": "web3frontier", + "wgt": "web3games-com-token", + "w3n": "web3-no-value", + "w3s": "web3shot", + "web3t": "web3tools", + "fps": "web3war", + "w3w": "what-do-you-meme", + "web4": "web4-ai", + "webai": "website-ai", + "mintme": "webchain", + "webfour": "web-four", + "wet": "weble-ecosystem-token", + "wmn": "webmind-network", + "wbs": "white-boy-summer", + "we": "webuy", + "wecan": "wecan", + "wch": "wecashcoin", + "weco": "wecoin", + "wcx": "wecoown", + "wcs": "weecoins", + "wcp": "weecoins-premium", + "wxt": "wirex", + "wefi": "wefi-finance", + "weft": "weft-finance", + "wegro": "wegro", + "weirdo": "weirdo-2", + "weld": "weld", + "$well": "well3", + "wend": "wellnode", + "welsh": "welsh-corgi-coin", + "welups": "welups-blockchain", + "wemix": "wemix-token", + "$wen": "wen-4", + "wen": "wen-token", + "wenis": "weniscoin", + "why": "why", + "wpr": "wepower", + "back": "we-re-so-back", + "wsi": "wesendit", + "wetc": "wetc-hebeswap", + "weth.e": "weth-plenty-bridge-65aa5342-507c-4f67-8634-1f4376ffdf9a", + "yvweth": "weth-yvault", + "wwy": "weway", + "wwry": "wewillrugyou", + "wexo": "wexo", + "wfca": "wfca", + "wfdp": "wfdp", + "whl": "whaleroom", + "wc": "whalescandypls-com", + "whc": "whales-club", + "wit": "witnet", + "$updog": "what-s-updog", + "wtb": "what-the-base", + "what": "what-the-duck", + "wheat": "wheat", + "when": "when", + "wheth": "where-did-the-eth-go-pulsechain", + "whey": "whey-token", + "whine": "whine-coin", + "whirl": "whirl-privacy", + "whisk": "whiskers", + "whiskey": "whiskey", + "wisp": "wispswap", + "wbt": "whitebit", + "wcc": "worldcore-2", + "xwc": "whitecoin", + "white": "whiteheart", + "lotus": "white-lotus", + "wmster": "white-monster", + "wsh": "white-yorkshire", + "wec": "whole-earth-coin", + "wbx": "wibx", + "wik": "wickedbet-casino", + "wcn": "widecoin", + "wife": "wifejak", + "wifedoge": "wifedoge", + "wflm": "wiflama-coin", + "wifpepemog": "wifpepemoginu", + "wigger": "wigger", + "wigo": "wigoswap", + "wkc": "wiki-cat", + "wld": "worldcoin-wld", + "wildcoin": "wildcoin", + "wild": "wildx", + "wgc": "wild-goat-coin-2", + "willy": "willy-2", + "wimpo": "wimpo", + "winamp": "winamp", + "win": "winklink-bsc", + "wft": "windfall-token", + "exe": "windoge98", + "wne": "winee3", + "$wnz": "winerz", + "wine": "wine-shares", + "wing": "wing-finance", + "wrt": "workoutapp", + "wink": "winkhub", + "tw": "winners-coin", + "wnz": "winnerz", + "winr": "winr-protocol", + "wins": "wins", + "winter": "winter", + "wipe": "wipemyass", + "wire": "wireshape", + "wirtual": "wirtual", + "wsdm": "wisdomise", + "wise": "wise-token11", + "wskr": "wiskers", + "wista": "wistaverse", + "witch": "witch-token", + "wizt": "wizard-token-8fc587d7-4b79-4f5a-89c9-475f528c6d47", + "wizard": "wizard-vault-nftx", + "wiz": "wizard-world-wiz", + "scrl": "wizarre-scroll", + "wizzie": "wizzie", + "wjewel": "wjewel", + "wwd": "wlitidao", + "wmatic": "wmatic", + "wmatic.p": "wmatic-plenty-bridge", + "wmetis": "wmetis", + "wmlpv2": "wmlp", + "wodo": "wodo", + "xwgt": "wodo-gaming", + "wojak": "wojak", + "wojak 2.0": "wojak-2-0-coin", + "woj": "wojak-finance", + "wope": "wojakpepe", + "woke": "woke-frens", + "gowoke": "woke-chain", + "wool": "wolf-game-wool", + "wolf inu": "wolf-inu", + "wos": "wolf-of-solana", + "$wolf": "wolf-of-wall-street", + "wolfies": "wolf-pups-2", + "wspp": "wolfsafepoorpeople-polygon", + "ballz": "wolfwifballz", + "wolverinu": "wolverinu-2", + "wyac": "woman-yelling-at-cat", + "wombat": "wombat", + "wom": "wom-token", + "wmx": "wombex", + "wndr": "wonderman-nation", + "wfo": "wooforacle", + "woo": "woo-network", + "woop": "woop", + "wzm": "woozoo-music", + "$workie": "workie", + "wqt": "work-quest-2", + "wdc": "worldcoin", + "wrc": "worldcore", + "wlc": "worldland", + "wmt": "world-mobile-token", + "wod": "world-of-defish", + "wpay": "world-pay-token", + "wpc": "world-peace-coin", + "wtao": "wrapped-tao", + "world": "worldwide", + "wusd": "wusd", + "w": "wormhole", + "wormz": "wormz", + "worth": "wortheum", + "!": "wow", + "wow": "wowswap", + "wowo": "wowo", + "wozx": "wozx", + "wpt": "wpt-investing-corp", + "wacme": "wrapped-accumulate", + "wace": "wrapped-ace", + "wada": "wrapped-ada", + "xalgo": "wrapped-algo", + "wampl": "wrapped-ampleforth", + "warc": "wrappedarc", + "warea": "wrapped-area", + "wastr": "wrapped-astar", + "wavax": "wrapped-avax", + "21avax": "wrapped-avax-21-co", + "waxl": "wrapped-axelar", + "waac": "wrapped-ayeayecoin", + "wban": "wrapped-banano", + "wbasedoge": "wrapped-basedoge", + "wbch": "wrapped-bch", + "wbeth": "wrapped-beacon-eth", + "wbfc": "wrapped-bifrost", + "cewbtc": "wrapped-bitcoin-celer", + "sobtc": "wrapped-bitcoin-sollet", + "xbtc": "xenbitcoin", + "wbrock": "wrapped-bitrock", + "wblt": "wrapped-bmx-liquidity-token", + "21bnb": "wrapped-bnb-21-co", + "cewbnb": "wrapped-bnb-celer", + "wbb": "wrapped-bouncebit", + "21btc": "wrapped-btc-21-co", + "xwbtc": "wrapped-btc-caviarnine", + "wbtt": "wrapped-btt", + "wbusd": "wrapped-busd", + "wcell": "wrapped-cellmates", + "wcfg": "wrapped-centrifuge", + "wchz": "wrapped-chiliz", + "wckb": "wrapped-ckb", + "wcfx": "wrapped-conflux", + "wcro": "wrapped-cro", + "acusd": "wrapped-cusd-allbridge-from-celo", + "wcyba": "wrapped-cybria", + "wdegen": "wrapped-degen", + "wdmt": "wrapped-dmt", + "wehmnd": "wrapped-ehmnd", + "wela": "wrapped-elastos", + "wegld": "wrapped-elrond", + "wnrg": "wrapped-energi", + "weos": "wrapped-eos", + "ceweth": "wrapped-ether-celer", + "soeth": "wrapped-ethereum-sollet", + "ethc": "wrapped-eth-skale", + "wethw": "wrapped-ethw", + "wever": "wrapped-ever", + "wftm": "wrapped-fantom", + "wfil": "wrapped-fil", + "wfio": "wrapped-fio", + "wflr": "wrapped-flare", + "wflow": "wrapped-flow", + "wfrxeth": "wrapped-frxeth", + "wftn": "wrapped-ftn", + "wfuse": "wrapped-fuse", + "wgsys": "wrapped-gsys-bluelotusdao", + "wshec": "wrapped-hec", + "whyp": "wrapped-hyp", + "tensor": "wrapped-hypertensor", + "wicp": "wrapped-icp", + "wimx": "wrapped-immutable", + "wiota": "wrapped-iota", + "wiotx": "wrapped-iotex", + "wjaura": "wrapped-jones-aura", + "wkava": "wrapped-kava", + "wkcs": "wrapped-kcs", + "wklay": "wrapped-klay", + "libertas": "wrapped-libertas-omnibus", + "wlung": "wrapped-lunagens", + "wlyx": "wrapped-lyx-universalswaps", + "wmnt": "wrapped-mantle", + "wmapo": "wrapped-mapo", + "wmas": "wrapped-massa", + "wmemo": "wrapped-memory", + "wbeam": "wrapped-merit-circle", + "mrxb": "wrapped-metrix", + "wmlx": "wrapped-millix", + "wminima": "wrapped-minima", + "wmc": "wrapped-mistcoin", + "wglmr": "wrapped-moonbeam", + "wmoxy": "wrapped-moxy", + "wncg": "wrapped-ncg", + "wnear": "wrapped-near", + "wneon": "wrapped-neon", + "wnyc": "wrapped-newyorkcoin", + "wnxm": "wrapped-nxm", + "wnybc": "wrapped-nybc", + "woas": "wrapped-oas", + "woasys": "wrapped-oasys", + "woeth": "wrapped-oeth", + "wokb": "wrapped-okb", + "womax": "wrapped-omax", + "wone": "wrapped-one", + "woptidoge": "wrapped-optidoge", + "wousd": "wrapped-ousd", + "wpci": "wrapped-paycoin", + "wpepe": "wrapped-pepe", + "wpfil": "wrapped-pfil", + "wrap": "wrapped-platform", + "wpokt": "wrapped-pokt", + "wpom": "wrapped-pom", + "wpls": "wrapped-pulse-wpls", + "wreeth": "wrapped-real-ether", + "wrose": "wrapped-rose", + "wrseth": "wrapped-rseth", + "wruni": "wrapped-runi", + "wsei": "wrapped-sei", + "21sol": "wrapped-sol-21-co", + "wsgb": "wrapped-songbird", + "wstlink": "wrapped-staked-link", + "wstusdt": "wrapped-staked-usdt", + "wsta": "wrapped-statera", + "wstbtc": "wrapped-stbtc", + "wstx": "wrapped-stx-velar", + "wsys": "wrapped-syscoin", + "wtlos": "wrapped-telos", + "wxtz": "wrapped-tezos", + "wtpokt": "wrapped-thunderpokt", + "wtt": "wrapped-thunder-token", + "wtomo": "wrapped-tomo", + "wtai": "wrapped-trade-ai", + "wtrx": "wrapped-tron", + "wtrtl": "wrapped-turtlecoin", + "xusdc": "wrapped-usdc-caviarnine", + "wusdm": "wrapped-usdm", + "wusdr": "wrapped-usdr", + "wvlx": "wrapped-velas", + "wvenom": "wrapped-venom", + "wvg0": "wrapped-virgin-gen-0-cryptokitties", + "wvtru": "wrapped-vtru", + "wwan": "wrapped-wan", + "wwdoge": "wrapped-wdoge", + "wxdc": "wrapped-xdc", + "wxfi": "wrapped-xfi", + "wxrp": "wrapped-xrp", + "wzedx": "wrapped-zedxion", + "wzeta": "wrapped-zetachain", + "wwe": "wrestling-shiba", + "wrinkle": "wrinkle-the-duck", + "wsbc": "wsb-classic", + "wuf": "wuffi", + "wynd": "wynd", + "wys": "wyscale", + "x0": "x0", + "x2y2": "x2y2", + "x42": "x42-protocol", + "x7dao": "x7dao", + "x7r": "x7r", + "x8x": "x8-project", + "xact": "xactrewards", + "xah": "xahau", + "xaigrok": "xaigrok", + "xakt": "xakt_astrovault", + "xalpha": "xalpha-ai", + "xeta": "xana", + "xaur": "xaurum", + "xav": "xave-token", + "xb": "xblue-finance", + "xbcna": "xbcna_astrovault", + "xbear": "xbear-network", + "xbid": "xbid", + "xbt": "xbit", + "xbld": "xbld_astrovault", + "xbomb": "xbomb", + "xbot": "xbot", + "xbtsg": "xbtsg_astrovault", + "silv": "xbullion_silver", + "xcad": "xcad-network", + "xcv": "xcarnival", + "xcash": "x-cash", + "xlrt": "xccelerate", + "xld": "xcel-swap", + "xlab": "xceltoken-plus", + "xcept": "xception", + "xcksm": "xcksm", + "xcmdx": "xcmdx_astrovault", + "xco": "x-coin-2", + "xcrx": "xcrx", + "xcudos": "xcudos_astrovault", + "xcusdt": "xcusdt", + "xdai": "xdai", + "xcomb": "xdai-native-comb", + "stake": "xdai-stake", + "xdao": "xdao", + "xdc": "xdce-crowd-sale", + "xdec": "xdec-astrovault", + "xdefi": "xdefi", + "xdoge": "xdoge-3", + "xd": "xdoge-4", + "xdog": "x-dog-finance", + "xdvpn": "xdvpn_astrovault", + "xdx": "xdx", + "xel": "xelis", + "xels": "xels", + "xen": "xen-crypto", + "bxen": "xen-crypto-bsc", + "fmxen": "xen-crypto-fantom", + "mxen": "xen-crypto-matic", + "pxen": "xen-crypto-pulsechain", + "bxnf": "xenify-bxnf-bnb-chain", + "ysl": "xenify-ysl", + "xnc": "xenios", + "xwave": "xenowave", + "xsei": "xensei", + "xeon": "xeon-protocol", + "xeroai": "xero-ai", + "xert": "xertinet", + "xfit": "xfit", + "x-file": "xfile", + "xet": "xfinite-entertainment-token", + "xfish": "xfish", + "xflix": "xflix_astrovault", + "xfund": "xfund", + "xgold": "xgold-coin", + "xgpt": "x-gpt", + "xgpu": "xgpu-ai", + "xgrav": "xgrav_astrovault", + "xtag": "xhashtag", + "xhp": "xhype", + "xiao": "xiaojie", + "ida": "xidar", + "xden": "xiden", + "xido": "xido-finance", + "xiii": "xiiicoin", + "xinu": "xinu-eth", + "xio": "xio", + "xion": "xion-2", + "xgt": "xion-finance", + "xi": "xi-token", + "xjewel": "xjewel", + "xlh": "xlauncher", + "xlbully": "xl-bully", + "abtc": "xlink-bridged-btc-stacks", + "xlist": "xlist", + "xlsd": "xlsd-coin", + "xmry": "xmas-santa-rally", + "xmatic": "xmatic", + "xmx": "xmax", + "xmp": "x-metapol", + "xmon": "xmon", + "xmpwr": "xmpwr_astrovault", + "xnf": "xnf", + "xnft": "xnft", + "xnj": "xninja-tech-token", + "xodex": "xodex", + "xolo": "xolo-2", + "xosmo": "xosmo_astrovault", + "xvr": "xover", + "xox": "xox-labs", + "xoxno": "xoxno", + "xp": "xp-3", + "t3xp": "xp-2", + "xpp": "xpad-pro", + "xps": "xpansion-game", + "xpasg": "xpasg_astrovault", + "xpnd": "xpendium", + "xpe": "xpense-2", + "xperp": "xperp", + "xpet": "xpet-tech", + "bpet": "xpet-tech-bpet", + "xpla": "xpla", + "xplq": "xplq_astrovault", + "xpai": "xplus-ai", + "xpnet": "xp-network", + "apow": "xpowermine-com-apow", + "xpow": "xpowermine-com-xpow", + "xers": "x-project-erc", + "xptp": "xptp", + "xquok": "xquok", + "xqwoyn": "xqwoyn_astrovault", + "xr": "xraders", + "xraid": "xraid", + "xrai": "x-ratio-ai", + "xrdoge": "xrdoge", + "xrgb": "xrgb", + "xrs": "xrius", + "xrock": "xrocket", + "xrootai": "xrootai", + "xrow": "xrow", + "xrp20": "xrp20", + "xrpaynet": "xrpaynet", + "xce": "xrpcashone", + "xrpc": "xrp-classic-new", + "xrph": "xrp-healthcare", + "xrps": "xrps", + "xsauce": "xsauce", + "xsgd": "xsgd", + "syl": "xsl-labs", + "xsp": "xswap-protocol", + "xspectar": "xspectar", + "xsushi": "xsushi", + "xswap": "xswap-2", + "xtt": "xswap-treasure", + "xtt-b20": "xtblock-token", + "xt": "xtcom-token", + "xtb": "xthebot", + "xtk": "xtoken", + "xtai": "xtoolsai", + "xby": "xtrabytes", + "xtrack": "xtrack-ai", + "xtreme": "xtremeverse", + "xtusd": "xtusd", + "xv": "xv", + "xvdl": "xvdl_astrovault", + "xvm": "xvm", + "xwin": "xwin-finance", + "xwg": "x-world-games", + "xx": "xxcoin-2", + "xy": "xy-finance", + "xyo": "xyo-network", + "xyxyx": "xyxyx", + "xzk": "xzk", + "yai": "y", + "y2k": "y2k-2", + "y8u": "y8u", + "yacht": "yachtingverse-old", + "yda": "yadacoin", + "yak": "yield-yak", + "yaks": "yak-dao", + "yaku": "yaku", + "yam": "yam-2", + "yama": "yama-inu", + "cblp": "yamfore", + "yasha": "yasha-dao", + "yawn": "yawn", + "yaw": "yawww", + "yay": "yay-games", + "yec": "ycash", + "ydr": "ydragon", + "ycrv": "yearn-crv", + "yeth": "yeth", + "yfi": "yearn-finance", + "yearn": "yearntogether", + "yprisma": "yearn-yprisma", + "yod": "year-of-the-dragon", + "yel": "yel-finance", + "road": "yellow-road", + "yellow": "yellow-team", + "yelo": "yelo-cat", + "ytn": "yenten", + "yertle": "yertle-the-turtle", + "yesgo": "yes-2", + "yes": "yes-token", + "yesbut": "yes-but", + "yon": "yesorno-2", + "yesp": "yesports", + "yeti": "yeti-finance", + "yf-dai": "yfdai-finance", + "yfii": "yfii-finance", + "yfo": "yfione-2", + "yvyfi": "yfi-yvault", + "yfl": "yflink", + "yfx": "yieldfarming-index", + "y24": "yield-24", + "yld": "yield-app", + "ybx": "yieldblox", + "yieldeth": "yieldeth-sommelier", + "yieldx": "yield-finance", + "ygg": "yield-guild-games", + "ydf": "yieldification", + "yldy": "yieldly", + "magnet": "yield-magnet", + "yneth": "yieldnest-restaked-eth", + "$yield": "yieldstone", + "watch": "yieldwatch", + "yyavax": "yield-yak-avax", + "yikes": "yikes-dog", + "yin": "yin-finance", + "yoc": "yocoin", + "yoco": "yocoinyoco", + "jedals": "yoda-coin-swap", + "yode": "yodeswap", + "yok": "yokaiswap", + "yolo": "yolo-games", + "yool": "yooldo", + "yooshi": "yooshi", + "yoshi": "yoshi-exchange", + "yoto": "yotoshi", + "yct": "youclout", + "ybo": "young-boys-fan-token", + "ymii": "young-mids-inspired", + "yourai": "your-ai", + "yks": "yourkiss", + "yourmom": "yourmom", + "yom": "your-open-metaverse", + "yourwallet": "yourwallet", + "xui": "yousui", + "yoyo": "yoyo-market", + "yozi": "yozi-protocol", + "yuge": "yuge-on-eth", + "yukky": "yukky", + "yum": "yum", + "yummi": "yummi-universe", + "yummy": "yummy", + "yunki": "yunki", + "yup": "yup", + "yuri": "yuri", + "yuro": "yuro-2024", + "yusd": "yusd-stablecoin", + "yvboost": "yvboost", + "yvdai": "yvdai", + "yyolo": "yyolo", + "zack": "zack-morris", + "zada": "zada", + "zah": "zahnymous", + "zai": "zeal-ai", + "zaif": "zaif-token", + "zafi": "zakumifi", + "zgd": "zambesigold", + "zam": "zam-io", + "zano": "zano", + "zap": "zapper-protocol", + "zapex": "zapexchange", + "zapi": "zapicorn", + "zrs": "zephyr-protocol-reserve-share", + "zarp": "zarp-stablecoin", + "zusd": "zasset-zusd", + "zaza": "zaza-sol", + "zazu": "zazu", + "zazzles": "zazzles", + "zbit": "zbit-ordinals", + "dplat": "zbyte", + "zec": "zcash", + "zcd": "zchains", + "zcl": "zclassic", + "zcr": "zcore-2", + "zefi": "zcore-finance", + "z3": "z-cubed", + "zbcn": "zebec-network", + "zbc": "zebec-protocol", + "zco": "zebi", + "zeb": "zebradao", + "zebu": "zebu", + "zeck": "zeck-murris", + "zed": "zed-run", + "zedxion": "zedxion", + "zedx": "zedxion-2", + "zbu": "zeebu", + "zwif": "zeekwifhat", + "zpt": "zeepin", + "zeep": "zeepr", + "ztg": "zeitgeist", + "zlda": "zelda-2-0", + "zelix": "zelix", + "erw": "zeloop-eco-reward", + "zlw": "zelwin", + "zen": "zenith-2", + "zent": "zentry", + "zenc": "zenc-coin", + "znx": "zenex", + "zeniq": "zeniq", + "zenith": "zenith-chain", + "zen-ai": "zenithereum", + "zsp": "zenithswap", + "zw": "zenith-wallet", + "zenf": "zenland", + "zlk": "zenlink-network-token", + "zeno": "zenocard", + "znn": "zenon-2", + "$zpc": "zenpandacoin", + "znz": "zenzo", + "zeon": "zeon", + "zeph": "zephyr-protocol", + "zsd": "zephyr-protocol-stable-dollar", + "00": "zer0zer0", + "zer": "zero", + "zsum": "zerosum", + "zee": "zeroswap", + "zrpy": "zerpaay", + "zesh": "zesh", + "zex": "zeta", + "bnb.bsc": "zetachain-bridged-bnb-bsc-zetachain", + "btc.btc": "zetachain-bridged-btc-btc-zetachain", + "usdc.bsc": "zetachain-bridged-usdc-bsc-zetachain", + "usdc.eth": "zetachain-bridged-usdc-eth-zetachain", + "usdt.bsc": "zetachain-bridged-usdt-bsc-zetachain", + "usdt.eth": "zetachain-bridged-usdt-eth-zetachain", + "eth.eth": "zetachain-eth-eth", + "zet": "zetacoin", + "stzeta": "zetaearn-staked-zeta", + "z": "zeta-markets", + "zeth": "zethan", + "zetrix": "zetrix", + "zeus": "zeuspepesdog", + "zsc": "zeusshield", + "zhc": "zhc-zero-hour-cash", + "zibu": "zibu", + "zsh": "ziesha", + "zigap": "zigap", + "zig": "zignaly", + "zz": "zigzag-2", + "zik": "zik-token", + "zillionxo": "zillion-aakar-xo", + "zil": "zilliqa", + "zlp": "zilpay-wallet", + "zilpepe": "zilpepe", + "zwap": "zilswap", + "zion": "zionwallet", + "zmt": "zipmex-token", + "zippysol": "zippy-staked-sol", + "zip": "zipswap", + "zrc": "zircuit", + "ziv4": "ziv4-labs", + "zizle": "zizle", + "zjoe": "zjoe", + "zat": "zkapes-token", + "zkarch": "zkarchive", + "cross": "zkcross-network", + "zcult": "zkcult", + "zkdoge": "zkdoge", + "zkdx": "zkdx", + "zke": "zkera-finance", + "zkevm": "zkevmchain-bsc", + "zkf": "zkfair", + "zkb farm": "zkfarmer-io-zkbud", + "zkgap": "zkgap", + "zkgrok": "zkgrok", + "zkgun": "zkgun", + "zkhive": "zkhive", + "zkin": "zkinfra", + "$zkitty": "zkitty-bot", + "zkpad": "zklaunchpad", + "zend": "zklend-2", + "zkl": "zklink", + "zklk": "zklock", + "zklotto": "zklotto", + "zkml": "zkml", + "zkpepe": "zkpepe-2", + "zkshield": "zkshield", + "zkb": "zkspace", + "zksvm": "zksvm", + "zf": "zkswap-finance", + "zk": "zksync", + "zkid": "zksync-id", + "zao": "zktao", + ":zkt:": "zktsunami", + "$zkx": "zkx", + "zkz": "zkzone", + "zmn": "zmine", + "zoci": "zoci", + "zdcv2": "zodiacsv2", + "zodi": "zodium", + "zpay": "zoid-pay", + "zoink": "zoink", + "zmb": "zombiecoin", + "zinu": "zombie-inu-2", + "zone": "zone", + "zb": "zoobit-finance", + "zoomer": "zoomer-sol", + "zm": "zoomswap", + "zooa": "zoopia", + "zoot": "zoo-token", + "zorksees": "zorksees", + "zorro": "zorro", + "zp": "z-protocol", + "ztx": "ztx", + "zum": "zum-token", + "zuneth": "zunami-eth-2", + "zun": "zunami-governance-token", + "zunusd": "zunami-usd", + "zurf": "zurf", + "zurr": "zurrency", + "zushi": "zushi", + "zuzalu": "zuzalu-inu", + "zuzuai": "zuzuai", + "zuzu": "zuzu-coin", + "zyb": "zyberswap", + "zdai": "zydio-ai", + "zyn": "zynergy", + "zyr": "zyrri", + "zzz": "zzz", + "ᚠ": "z-z-z-z-z-fehu-z-z-z-z-z" +} diff --git a/src/utils/telemetry.ts b/src/utils/telemetry.ts index 7eafb7843..440cff353 100644 --- a/src/utils/telemetry.ts +++ b/src/utils/telemetry.ts @@ -3,6 +3,7 @@ import { Wallet } from "@xlabs-libs/wallet-aggregator-core"; import { CHAINS_BY_ID, isPreview, isProduction, mixpanelToken } from "./consts"; import { ChainId } from "@certusone/wormhole-sdk"; +import coingeckoIdBySymbol from "./coingeckoIdBySymbol.json"; interface TelemetryTxCommon { fromChainId?: ChainId; @@ -11,7 +12,6 @@ interface TelemetryTxCommon { toChain: string; fromTokenSymbol?: string; toTokenSymbol?: string; - sourceAsset?: string; fromTokenAddress?: string; toTokenAddress?: string; route: string; @@ -27,7 +27,7 @@ export type TelemetryTxEvent = Omit< >; type TelemetryTxTrackingProps = Omit< TelemetryTxCommon, - "fromChainId" | "toChainId" | "sourceAsset" + "fromChainId" | "toChainId" >; class Telemetry { @@ -80,15 +80,16 @@ class Telemetry { private getUSDAmount = async ( chain: string, - tokenAddress: string, + tokenSymbol: string, amount: number ): Promise => { - if (![chain, tokenAddress, amount].every(Boolean)) return; + const coingeckoId = (coingeckoIdBySymbol as any)[tokenSymbol] as string; + if (![chain, coingeckoId, amount].every(Boolean)) return; try { const response = await fetch( - `https://api.coingecko.com/api/v3/simple/token_price/${chain.toLowerCase()}?contract_addresses=${tokenAddress}&vs_currencies=usd` + `https://api.coingecko.com/api/v3/simple/price?ids=${coingeckoId}&vs_currencies=usd` ).then((r) => r.json()); - const USDValue = response?.[tokenAddress]?.usd; + const USDValue = response?.[coingeckoId]?.usd; const USDAmount = USDValue * amount; return USDAmount || undefined; } catch {} @@ -107,7 +108,7 @@ class Telemetry { amount: event.amount, USDAmount: await this.getUSDAmount( fromChain, - event.sourceAsset!, + event.toTokenSymbol!, event.amount! ), route: "Manual Bridge",