From d999715286f6444d37055a573997d444d8e2d9a1 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Wed, 17 Jul 2024 14:15:04 -0700 Subject: [PATCH 01/32] created back end for jwts --- main.py | 145 +++++++++++++++++++++++++++++++++++++++++++++++ streamlit_app.py | 111 ------------------------------------ 2 files changed, 145 insertions(+), 111 deletions(-) create mode 100644 main.py delete mode 100644 streamlit_app.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..0cdb813 --- /dev/null +++ b/main.py @@ -0,0 +1,145 @@ +from fastapi import Depends, FastAPI, HTTPException, status +from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm +from pydantic import BaseModel +from datetime import datetime, timedelta +from jose import JWTError, jwt +from passlib.context import CryptContext + +SECRET_KEY = "123secretkey" +ALGORITHM = "HS256" +ACCESS_TOKEN_EXPIRE_MINUTES = 30 + +# fake_db +db = { + "tim": { + "username": "tim", + "full_name": "Tim Lau", + "email": "Tim@gmail.com", + "hashed_password": "$2b$12$jNs9VEELX9MxVTKXmVvsTuSzrnXAi7EbrQo675SaWBUxqW90grLs6", + "disabled": False, + } +} + + +class Token(BaseModel): + access_token: str + token_type: str + + +class TokenData(BaseModel): + username: str or None = None + + +class User(BaseModel): + username: str + email: str or None = None + full_name: str or None = None + disabled: bool or None = None + + +class UserInDB(User): + hashed_password: str + + +pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") +oath2_scheme = OAuth2PasswordBearer(tokenUrl="token") + + + +app = FastAPI() +# to start app run following command in terminal: +# uvicorn main:app --reload + + +def verify_password(plain_password, hashed_password): + return pwd_context.verify(plain_password, hashed_password) + + +def get_password_hash(password): + return pwd_context.hash(password) + + +def get_user(db, username: str): + if username in db: + user_data = db[username] + return UserInDB(**user_data) + + +def authenticate_user(db, username: str, password: str): + user = get_user(db, username) + if not user: + return False + if not verify_password(password, user.hashed_password): + return False + + return user + + +def create_access_token(data: dict, expires_delta: timedelta or None = None): + to_encode = data.copy() + if expires_delta: + expire = datetime.utcnow() + expires_delta + else: + expire = datetime.utcnow() + timedelta(minutes=15) + + to_encode.update({"exp": expire}) + encoded_jwt = jwt.encode(to_encode, key=SECRET_KEY, algorithm=ALGORITHM) + return encoded_jwt + + +async def get_current_user(token: str = Depends(oath2_scheme)): + credential_exception = HTTPException(status_code=status.HTTP_401_UNAUTHORIZED, + detail="Could not validate credentials", + headers={"WWW-Authenticate": "Bearer"} + ) + try: + payload = jwt.decode(token, key=SECRET_KEY, algorithms=[ALGORITHM]) + username:str = payload.get("sub") + if username is None: + raise credential_exception + + token_data = TokenData(username=username) + + except JWTError: + raise credential_exception + + user = get_user(db, username=token_data.username) + if user is None: + raise credential_exception + + return user + + +async def get_current_active_user(current_user: UserInDB = Depends(get_current_user)): + if current_user.disabled: + raise HTTPException(status_code=400, detail="Inactive user") + + return current_user + + +@app.post("/token", response_model=Token) +async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends()): + user = authenticate_user(db, form_data.username, form_data.password) + if not user: + raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED, + detail="Incorrect username or password", + headers={"WWW-Authenticate": "Bearer"} + ) + access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES) + access_token = create_access_token( + data={"sub": user.username}, + expires_delta=access_token_expires + ) + + return {"access_token": access_token, "token_type": "bearer"} + + +@app.get("/users/me/", response_model=User) +async def read_users_me(current_user: User = Depends(get_current_active_user)): + return current_user + + +@app.get("/users/me/items") +async def read_own_items(current_user: User = Depends(get_current_active_user)): + return [{"item_id": 1, "owner": current_user}] + diff --git a/streamlit_app.py b/streamlit_app.py deleted file mode 100644 index 334e721..0000000 --- a/streamlit_app.py +++ /dev/null @@ -1,111 +0,0 @@ -import pandas as pd -import streamlit as st -# import streamlit_authenticator as st_auth -import os -import json - - - -MOCK_DATA = 'data/MOCK_DATA.json' - -# Configures the default settings of the page. -st.set_page_config(page_title="crypto_api", layout="wide") - - -st.title('My Cryptocurrency app') - - -# -- User Auth -- # - - - - - - -st_name = st.sidebar.text_input("Enter your name", 'John') -# st.write(f'Hello {st_name}!') - -st.write("Hello", st_name, '!') - -# What path is the app located -# app_location = os.getcwd() -# st.write("App path: ", app_location) - - -with open(MOCK_DATA, 'r') as file: - data_dict = json.load(file) - -df = pd.DataFrame(data_dict) - - -def dict_to_list(d): - """ - Helper function to convert column of dicts to column lists - """ - return d['price'] - - -# Want to convert the sparklines from dicts to lists -df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) - -# Add column of false values for favorite checkboxes -df.insert(0, 'favorite', False) - -# data_dict = data_dict.iloc[:, 1:] # Drop db _id column -columns_to_keep = [ - 'favorite', - 'market_cap_rank', - 'image', - 'id', - 'current_price', - 'price_change_percentage_24h', - 'market_cap', - 'sparkline_in_7d', -] - -# Only keep columns we care about -df = df[columns_to_keep] - -# Only allow edits for favorite column, used int 'disabled' for data_editor -columns_to_edit = ['favorite'] -columns_all = df.columns.to_list() -columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] - - -st.data_editor( - data=df, - width=None, - use_container_width=False, - height=2000, - disabled=columns_not_to_edit, - column_config={ - "favorite": st.column_config.CheckboxColumn( - "Favorite?", - help="Select your **favorite** currencies.", - default=False - ), - "image": st.column_config.ImageColumn( - "Icon", help="Icons for currencies" - ), - "current_price": st.column_config.NumberColumn( - label="current_price", - format='$%g', - help="USD", - ), - "price_change_percentage_24h": st.column_config.NumberColumn( - label="price_change_percentage_24h", - format="%.2f%%", - ), - "market_cap": st.column_config.NumberColumn( - label="market_cap", - format="$%g", - help="USD", - ), - "sparkline_in_7d": st.column_config.LineChartColumn( - "Last 7 days", - help="Line chart for the last 7 days", - ), - - }, - hide_index=True -) \ No newline at end of file From 97afbca88e769d9a419a387af5114c6d3914e2af Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Thu, 18 Jul 2024 15:35:50 -0700 Subject: [PATCH 02/32] trying to get auth to work on backend --- crypto_api/database.py | 47 ++++- main.py | 57 +++-- poetry.lock | 470 ++++++++++++++++++++++------------------- pyproject.toml | 2 +- 4 files changed, 337 insertions(+), 239 deletions(-) diff --git a/crypto_api/database.py b/crypto_api/database.py index 99f163c..ed412cb 100644 --- a/crypto_api/database.py +++ b/crypto_api/database.py @@ -1,5 +1,7 @@ import json from datetime import datetime +from passlib.context import CryptContext + import pymongo from bson.objectid import ObjectId @@ -8,6 +10,10 @@ from dotenv import load_dotenv + +ALGORITHM = "HS256" +pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") + current_dir = os.path.dirname(__file__) dotenv_path = os.path.join(current_dir, '..', 'env', '.env') load_dotenv(dotenv_path) @@ -40,17 +46,29 @@ def get_all_records(collection): return list(cursor) +# -- Passwords and Hashing -- # +def get_password_hash(password): + return pwd_context.hash(password) + + +def verify_password(plain_password, hashed_password): + return pwd_context.verify(plain_password, hashed_password) + + # -- Users -- # def insert_user(email, first_name, last_name, username, password): try: # Create the document to insert + hashed_password = get_password_hash(password) create_user_timestamp = datetime.now() + disabled_status = False user_data = { "email": email, "first_name": first_name, "last_name": last_name, "username": username, - "password": password, + "hashed_password": hashed_password, + "disabled": disabled_status, "created_at": create_user_timestamp, "updated_at": create_user_timestamp, } @@ -140,7 +158,7 @@ def create_mock_data(): def insert_mock_user(): # email, first_name, last_name, username, password - insert_user("taran123@gmail.com", "Taran", "Lau", 'taran50', "password123") + insert_user("taran123@gmail.com", "Taran", "Lau", 'taran50', "123") def test_get_all_users(): @@ -154,8 +172,29 @@ def test_get_user(): print(user) +def test_password_hash(): + password = "123" + hashed_password = get_password_hash(password) + print(password) + print(hashed_password) + + is_correct = verify_password(password, hashed_password) + print("is correct ", is_correct) + + +def test_password_hash_2(): + print("entering 2nd test_password_hash_2") + password = "123" + hashed_password = "$2b$12$C9CRkEpVv1TW4Ym8ZHR3ReBxZSW6u8Fx.1U0cdnNxhtGEf9OdMIx2" + is_correct = verify_password(password, hashed_password) + print("is correct ", is_correct) + + if __name__ == "__main__": # create_mock_data() - # insert_mock_user() + insert_mock_user() # test_get_all_users() - test_get_user() \ No newline at end of file + # test_get_user() + # test_password_hash() + # test_password_hash_2() + diff --git a/main.py b/main.py index 0cdb813..aad18bb 100644 --- a/main.py +++ b/main.py @@ -5,20 +5,22 @@ from jose import JWTError, jwt from passlib.context import CryptContext +from crypto_api.database import get_user + SECRET_KEY = "123secretkey" ALGORITHM = "HS256" ACCESS_TOKEN_EXPIRE_MINUTES = 30 # fake_db -db = { - "tim": { - "username": "tim", - "full_name": "Tim Lau", - "email": "Tim@gmail.com", - "hashed_password": "$2b$12$jNs9VEELX9MxVTKXmVvsTuSzrnXAi7EbrQo675SaWBUxqW90grLs6", - "disabled": False, - } -} +# db = { +# "tim": { +# "username": "tim", +# "full_name": "Tim Lau", +# "email": "Tim@gmail.com", +# "hashed_password": "$2b$12$jNs9VEELX9MxVTKXmVvsTuSzrnXAi7EbrQo675SaWBUxqW90grLs6", +# "disabled": False, +# } +# } class Token(BaseModel): @@ -33,7 +35,7 @@ class TokenData(BaseModel): class User(BaseModel): username: str email: str or None = None - full_name: str or None = None + # full_name: str or None = None disabled: bool or None = None @@ -59,17 +61,17 @@ def get_password_hash(password): return pwd_context.hash(password) -def get_user(db, username: str): - if username in db: - user_data = db[username] - return UserInDB(**user_data) +# def get_user(db, username: str): +# if username in db: +# user_data = db[username] +# return UserInDB(**user_data) -def authenticate_user(db, username: str, password: str): - user = get_user(db, username) +def authenticate_user(username: str, password: str): + user = get_user(username) if not user: return False - if not verify_password(password, user.hashed_password): + if not verify_password(password, user['hashed_password']): return False return user @@ -88,13 +90,15 @@ def create_access_token(data: dict, expires_delta: timedelta or None = None): async def get_current_user(token: str = Depends(oath2_scheme)): + print("Enter get_current_user: ") credential_exception = HTTPException(status_code=status.HTTP_401_UNAUTHORIZED, detail="Could not validate credentials", headers={"WWW-Authenticate": "Bearer"} ) + try: payload = jwt.decode(token, key=SECRET_KEY, algorithms=[ALGORITHM]) - username:str = payload.get("sub") + username: str = payload.get("sub") if username is None: raise credential_exception @@ -103,7 +107,7 @@ async def get_current_user(token: str = Depends(oath2_scheme)): except JWTError: raise credential_exception - user = get_user(db, username=token_data.username) + user = get_user(username=token_data.username) if user is None: raise credential_exception @@ -119,7 +123,7 @@ async def get_current_active_user(current_user: UserInDB = Depends(get_current_u @app.post("/token", response_model=Token) async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends()): - user = authenticate_user(db, form_data.username, form_data.password) + user = authenticate_user(form_data.username, form_data.password) if not user: raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED, detail="Incorrect username or password", @@ -127,9 +131,10 @@ async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends( ) access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES) access_token = create_access_token( - data={"sub": user.username}, + data={"sub": user['username']}, expires_delta=access_token_expires ) + print("access_token: ", access_token) return {"access_token": access_token, "token_type": "bearer"} @@ -143,3 +148,13 @@ async def read_users_me(current_user: User = Depends(get_current_active_user)): async def read_own_items(current_user: User = Depends(get_current_active_user)): return [{"item_id": 1, "owner": current_user}] + + +# if __name__ == "__main__": +# data = get_user("tim") +# print(data) +# +# data = get_user("taran50") +# print(data) +# if data['email'] == "taran123@gmail.com": +# print("correct email") \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index dd9dac0..95be8b2 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "aiofiles" -version = "23.2.1" +version = "24.1.0" description = "File support for asyncio." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "aiofiles-23.2.1-py3-none-any.whl", hash = "sha256:19297512c647d4b27a2cf7c34caa7e405c0d60b5560618a29a9fe027b18b0107"}, - {file = "aiofiles-23.2.1.tar.gz", hash = "sha256:84ec2218d8419404abcb9f0c02df3f34c6e0a68ed41072acfb1cef5cbc29051a"}, + {file = "aiofiles-24.1.0-py3-none-any.whl", hash = "sha256:b4ec55f4195e3eb5d7abd1bf7e061763e864dd4954231fb8539a0ef8bb8260e5"}, + {file = "aiofiles-24.1.0.tar.gz", hash = "sha256:22a075c9e5a3810f0c2e48f3008c94d68c65d763b9b03857924c99e57355166c"}, ] [[package]] @@ -170,6 +170,40 @@ tests = ["attrs[tests-no-zope]", "zope-interface"] tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +[[package]] +name = "bcrypt" +version = "4.0.1" +description = "Modern password hashing for your software and your servers" +optional = false +python-versions = ">=3.6" +files = [ + {file = "bcrypt-4.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:b1023030aec778185a6c16cf70f359cbb6e0c289fd564a7cfa29e727a1c38f8f"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:08d2947c490093a11416df18043c27abe3921558d2c03e2076ccb28a116cb6d0"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0eaa47d4661c326bfc9d08d16debbc4edf78778e6aaba29c1bc7ce67214d4410"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae88eca3024bb34bb3430f964beab71226e761f51b912de5133470b649d82344"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:a522427293d77e1c29e303fc282e2d71864579527a04ddcfda6d4f8396c6c36a"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:fbdaec13c5105f0c4e5c52614d04f0bca5f5af007910daa8b6b12095edaa67b3"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:ca3204d00d3cb2dfed07f2d74a25f12fc12f73e606fcaa6975d1f7ae69cacbb2"}, + {file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:089098effa1bc35dc055366740a067a2fc76987e8ec75349eb9484061c54f535"}, + {file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:e9a51bbfe7e9802b5f3508687758b564069ba937748ad7b9e890086290d2f79e"}, + {file = "bcrypt-4.0.1-cp36-abi3-win32.whl", hash = "sha256:2caffdae059e06ac23fce178d31b4a702f2a3264c20bfb5ff541b338194d8fab"}, + {file = "bcrypt-4.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:8a68f4341daf7522fe8d73874de8906f3a339048ba406be6ddc1b3ccb16fc0d9"}, + {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf4fa8b2ca74381bb5442c089350f09a3f17797829d958fad058d6e44d9eb83c"}, + {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:67a97e1c405b24f19d08890e7ae0c4f7ce1e56a712a016746c8b2d7732d65d4b"}, + {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b3b85202d95dd568efcb35b53936c5e3b3600c7cdcc6115ba461df3a8e89f38d"}, + {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbb03eec97496166b704ed663a53680ab57c5084b2fc98ef23291987b525cb7d"}, + {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:5ad4d32a28b80c5fa6671ccfb43676e8c1cc232887759d1cd7b6f56ea4355215"}, + {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b57adba8a1444faf784394de3436233728a1ecaeb6e07e8c22c8848f179b893c"}, + {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:705b2cea8a9ed3d55b4491887ceadb0106acf7c6387699fca771af56b1cdeeda"}, + {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:2b3ac11cf45161628f1f3733263e63194f22664bf4d0c0f3ab34099c02134665"}, + {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3100851841186c25f127731b9fa11909ab7b1df6fc4b9f8353f4f1fd952fbf71"}, + {file = "bcrypt-4.0.1.tar.gz", hash = "sha256:27d375903ac8261cfe4047f6709d16f7d18d39b1ec92aaf72af989552a650ebd"}, +] + +[package.extras] +tests = ["pytest (>=3.2.1,!=3.3.0)"] +typecheck = ["mypy"] + [[package]] name = "bidict" version = "0.23.1" @@ -183,13 +217,13 @@ files = [ [[package]] name = "certifi" -version = "2024.6.2" +version = "2024.7.4" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.6.2-py3-none-any.whl", hash = "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56"}, - {file = "certifi-2024.6.2.tar.gz", hash = "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516"}, + {file = "certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90"}, + {file = "certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b"}, ] [[package]] @@ -608,18 +642,19 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "markdown2" -version = "2.4.13" +version = "2.5.0" description = "A fast and complete Python implementation of Markdown" optional = false -python-versions = ">=3.5, <4" +python-versions = "<4,>=3.8" files = [ - {file = "markdown2-2.4.13-py2.py3-none-any.whl", hash = "sha256:855bde5cbcceb9beda7c80efdf7f406c23e6079172c497fcfce22fdce998e892"}, - {file = "markdown2-2.4.13.tar.gz", hash = "sha256:18ceb56590da77f2c22382e55be48c15b3c8f0c71d6398def387275e6c347a9f"}, + {file = "markdown2-2.5.0-py2.py3-none-any.whl", hash = "sha256:300d4429b620ebc974ef512339a9e08bc080473f95135a91f33906e24e8280c1"}, + {file = "markdown2-2.5.0.tar.gz", hash = "sha256:9bff02911f8b617b61eb269c4c1a5f9b2087d7ff051604f66a61b63cab30adc2"}, ] [package.extras] -all = ["pygments (>=2.7.3)", "wavedrom"] +all = ["latex2mathml", "pygments (>=2.7.3)", "wavedrom"] code-syntax-highlighting = ["pygments (>=2.7.3)"] +latex = ["latex2mathml"] wavedrom = ["wavedrom"] [[package]] @@ -830,57 +865,62 @@ sass = ["libsass (>=0.23.0,<0.24.0)"] [[package]] name = "orjson" -version = "3.10.4" +version = "3.10.6" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.10.4-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:afca963f19ca60c7aedadea9979f769139127288dd58ccf3f7c5e8e6dc62cabf"}, - {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42b112eff36ba7ccc7a9d6b87e17b9d6bde4312d05e3ddf66bf5662481dee846"}, - {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02b192eaba048b1039eca9a0cef67863bd5623042f5c441889a9957121d97e14"}, - {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:827c3d0e4fc44242c82bfdb1a773235b8c0575afee99a9fa9a8ce920c14e440f"}, - {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca8ec09724f10ec209244caeb1f9f428b6bb03f2eda9ed5e2c4dd7f2b7fabd44"}, - {file = "orjson-3.10.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8eaa5d531a8fde11993cbcb27e9acf7d9c457ba301adccb7fa3a021bfecab46c"}, - {file = "orjson-3.10.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e112aa7fc4ea67367ec5e86c39a6bb6c5719eddc8f999087b1759e765ddaf2d4"}, - {file = "orjson-3.10.4-cp310-none-win32.whl", hash = "sha256:1538844fb88446c42da3889f8c4ecce95a630b5a5ba18ecdfe5aea596f4dff21"}, - {file = "orjson-3.10.4-cp310-none-win_amd64.whl", hash = "sha256:de02811903a2e434127fba5389c3cc90f689542339a6e52e691ab7f693407b5a"}, - {file = "orjson-3.10.4-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:358afaec75de7237dfea08e6b1b25d226e33a1e3b6dc154fc99eb697f24a1ffa"}, - {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb4e292c3198ab3d93e5f877301d2746be4ca0ba2d9c513da5e10eb90e19ff52"}, - {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c39e57cf6323a39238490092985d5d198a7da4a3be013cc891a33fef13a536e"}, - {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f86df433fc01361ff9270ad27455ce1ad43cd05e46de7152ca6adb405a16b2f6"}, - {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c9966276a2c97e93e6cbe8286537f88b2a071827514f0d9d47a0aefa77db458"}, - {file = "orjson-3.10.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c499a14155a1f5a1e16e0cd31f6cf6f93965ac60a0822bc8340e7e2d3dac1108"}, - {file = "orjson-3.10.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3087023ce904a327c29487eb7e1f2c060070e8dbb9a3991b8e7952a9c6e62f38"}, - {file = "orjson-3.10.4-cp311-none-win32.whl", hash = "sha256:f965893244fe348b59e5ce560693e6dd03368d577ce26849b5d261ce31c70101"}, - {file = "orjson-3.10.4-cp311-none-win_amd64.whl", hash = "sha256:c212f06fad6aa6ce85d5665e91a83b866579f29441a47d3865c57329c0857357"}, - {file = "orjson-3.10.4-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d0965a8b0131959833ca8a65af60285995d57ced0de2fd8f16fc03235975d238"}, - {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27b64695d9f2aef3ae15a0522e370ec95c946aaea7f2c97a1582a62b3bdd9169"}, - {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:867d882ddee6a20be4c8b03ae3d2b0333894d53ad632d32bd9b8123649577171"}, - {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a0667458f8a8ceb6dee5c08fec0b46195f92c474cbbec71dca2a6b7fd5b67b8d"}, - {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3eac9befc4eaec1d1ff3bba6210576be4945332dde194525601c5ddb5c060d3"}, - {file = "orjson-3.10.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4343245443552eae240a33047a6d1bcac7a754ad4b1c57318173c54d7efb9aea"}, - {file = "orjson-3.10.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:30153e269eea43e98918d4d462a36a7065031d9246407dfff2579a4e457515c1"}, - {file = "orjson-3.10.4-cp312-none-win32.whl", hash = "sha256:1a7d092ee043abf3db19c2183115e80676495c9911843fdb3ebd48ca7b73079e"}, - {file = "orjson-3.10.4-cp312-none-win_amd64.whl", hash = "sha256:07a2adbeb8b9efe6d68fc557685954a1f19d9e33f5cc018ae1a89e96647c1b65"}, - {file = "orjson-3.10.4-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f5a746f3d908bce1a1e347b9ca89864047533bdfab5a450066a0315f6566527b"}, - {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:465b4a8a3e459f8d304c19071b4badaa9b267c59207a005a7dd9dfe13d3a423f"}, - {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:35858d260728c434a3d91b60685ab32418318567e8902039837e1c2af2719e0b"}, - {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8a5ba090d40c4460312dd69c232b38c2ff67a823185cfe667e841c9dd5c06841"}, - {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dde86755d064664e62e3612a166c28298aa8dfd35a991553faa58855ae739cc"}, - {file = "orjson-3.10.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:020a9e9001cfec85c156ef3b185ff758b62ef986cefdb8384c4579facd5ce126"}, - {file = "orjson-3.10.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3bf8e6e3388a2e83a86466c912387e0f0a765494c65caa7e865f99969b76ba0d"}, - {file = "orjson-3.10.4-cp38-none-win32.whl", hash = "sha256:c5a1cca6a4a3129db3da68a25dc0a459a62ae58e284e363b35ab304202d9ba9e"}, - {file = "orjson-3.10.4-cp38-none-win_amd64.whl", hash = "sha256:ecd97d98d7bee3e3d51d0b51c92c457f05db4993329eea7c69764f9820e27eb3"}, - {file = "orjson-3.10.4-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:71362daa330a2fc85553a1469185ac448547392a8f83d34e67779f8df3a52743"}, - {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d24b59d1fecb0fd080c177306118a143f7322335309640c55ed9580d2044e363"}, - {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e906670aea5a605b083ebb58d575c35e88cf880fa372f7cedaac3d51e98ff164"}, - {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ce32ed4bc4d632268e4978e595fe5ea07e026b751482b4a0feec48f66a90abc"}, - {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1dcd34286246e0c5edd0e230d1da2daab2c1b465fcb6bac85b8d44057229d40a"}, - {file = "orjson-3.10.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c45d4b8c403e50beedb1d006a8916d9910ed56bceaf2035dc253618b44d0a161"}, - {file = "orjson-3.10.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:aaed3253041b5002a4f5bfdf6f7b5cce657d974472b0699a469d439beba40381"}, - {file = "orjson-3.10.4-cp39-none-win32.whl", hash = "sha256:9a4f41b7dbf7896f8dbf559b9b43dcd99e31e0d49ac1b59d74f52ce51ab10eb9"}, - {file = "orjson-3.10.4-cp39-none-win_amd64.whl", hash = "sha256:6c4eb7d867ed91cb61e6514cb4f457aa01d7b0fd663089df60a69f3d38b69d4c"}, - {file = "orjson-3.10.4.tar.gz", hash = "sha256:c912ed25b787c73fe994a5decd81c3f3b256599b8a87d410d799d5d52013af2a"}, + {file = "orjson-3.10.6-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:fb0ee33124db6eaa517d00890fc1a55c3bfe1cf78ba4a8899d71a06f2d6ff5c7"}, + {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c1c4b53b24a4c06547ce43e5fee6ec4e0d8fe2d597f4647fc033fd205707365"}, + {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eadc8fd310edb4bdbd333374f2c8fec6794bbbae99b592f448d8214a5e4050c0"}, + {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:61272a5aec2b2661f4fa2b37c907ce9701e821b2c1285d5c3ab0207ebd358d38"}, + {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57985ee7e91d6214c837936dc1608f40f330a6b88bb13f5a57ce5257807da143"}, + {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:633a3b31d9d7c9f02d49c4ab4d0a86065c4a6f6adc297d63d272e043472acab5"}, + {file = "orjson-3.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1c680b269d33ec444afe2bdc647c9eb73166fa47a16d9a75ee56a374f4a45f43"}, + {file = "orjson-3.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f759503a97a6ace19e55461395ab0d618b5a117e8d0fbb20e70cfd68a47327f2"}, + {file = "orjson-3.10.6-cp310-none-win32.whl", hash = "sha256:95a0cce17f969fb5391762e5719575217bd10ac5a189d1979442ee54456393f3"}, + {file = "orjson-3.10.6-cp310-none-win_amd64.whl", hash = "sha256:df25d9271270ba2133cc88ee83c318372bdc0f2cd6f32e7a450809a111efc45c"}, + {file = "orjson-3.10.6-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b1ec490e10d2a77c345def52599311849fc063ae0e67cf4f84528073152bb2ba"}, + {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55d43d3feb8f19d07e9f01e5b9be4f28801cf7c60d0fa0d279951b18fae1932b"}, + {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac3045267e98fe749408eee1593a142e02357c5c99be0802185ef2170086a863"}, + {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c27bc6a28ae95923350ab382c57113abd38f3928af3c80be6f2ba7eb8d8db0b0"}, + {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d27456491ca79532d11e507cadca37fb8c9324a3976294f68fb1eff2dc6ced5a"}, + {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05ac3d3916023745aa3b3b388e91b9166be1ca02b7c7e41045da6d12985685f0"}, + {file = "orjson-3.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1335d4ef59ab85cab66fe73fd7a4e881c298ee7f63ede918b7faa1b27cbe5212"}, + {file = "orjson-3.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4bbc6d0af24c1575edc79994c20e1b29e6fb3c6a570371306db0993ecf144dc5"}, + {file = "orjson-3.10.6-cp311-none-win32.whl", hash = "sha256:450e39ab1f7694465060a0550b3f6d328d20297bf2e06aa947b97c21e5241fbd"}, + {file = "orjson-3.10.6-cp311-none-win_amd64.whl", hash = "sha256:227df19441372610b20e05bdb906e1742ec2ad7a66ac8350dcfd29a63014a83b"}, + {file = "orjson-3.10.6-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ea2977b21f8d5d9b758bb3f344a75e55ca78e3ff85595d248eee813ae23ecdfb"}, + {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b6f3d167d13a16ed263b52dbfedff52c962bfd3d270b46b7518365bcc2121eed"}, + {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f710f346e4c44a4e8bdf23daa974faede58f83334289df80bc9cd12fe82573c7"}, + {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7275664f84e027dcb1ad5200b8b18373e9c669b2a9ec33d410c40f5ccf4b257e"}, + {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0943e4c701196b23c240b3d10ed8ecd674f03089198cf503105b474a4f77f21f"}, + {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:446dee5a491b5bc7d8f825d80d9637e7af43f86a331207b9c9610e2f93fee22a"}, + {file = "orjson-3.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:64c81456d2a050d380786413786b057983892db105516639cb5d3ee3c7fd5148"}, + {file = "orjson-3.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:960db0e31c4e52fa0fc3ecbaea5b2d3b58f379e32a95ae6b0ebeaa25b93dfd34"}, + {file = "orjson-3.10.6-cp312-none-win32.whl", hash = "sha256:a6ea7afb5b30b2317e0bee03c8d34c8181bc5a36f2afd4d0952f378972c4efd5"}, + {file = "orjson-3.10.6-cp312-none-win_amd64.whl", hash = "sha256:874ce88264b7e655dde4aeaacdc8fd772a7962faadfb41abe63e2a4861abc3dc"}, + {file = "orjson-3.10.6-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:66680eae4c4e7fc193d91cfc1353ad6d01b4801ae9b5314f17e11ba55e934183"}, + {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:caff75b425db5ef8e8f23af93c80f072f97b4fb3afd4af44482905c9f588da28"}, + {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3722fddb821b6036fd2a3c814f6bd9b57a89dc6337b9924ecd614ebce3271394"}, + {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c2c116072a8533f2fec435fde4d134610f806bdac20188c7bd2081f3e9e0133f"}, + {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6eeb13218c8cf34c61912e9df2de2853f1d009de0e46ea09ccdf3d757896af0a"}, + {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:965a916373382674e323c957d560b953d81d7a8603fbeee26f7b8248638bd48b"}, + {file = "orjson-3.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:03c95484d53ed8e479cade8628c9cea00fd9d67f5554764a1110e0d5aa2de96e"}, + {file = "orjson-3.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e060748a04cccf1e0a6f2358dffea9c080b849a4a68c28b1b907f272b5127e9b"}, + {file = "orjson-3.10.6-cp38-none-win32.whl", hash = "sha256:738dbe3ef909c4b019d69afc19caf6b5ed0e2f1c786b5d6215fbb7539246e4c6"}, + {file = "orjson-3.10.6-cp38-none-win_amd64.whl", hash = "sha256:d40f839dddf6a7d77114fe6b8a70218556408c71d4d6e29413bb5f150a692ff7"}, + {file = "orjson-3.10.6-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:697a35a083c4f834807a6232b3e62c8b280f7a44ad0b759fd4dce748951e70db"}, + {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd502f96bf5ea9a61cbc0b2b5900d0dd68aa0da197179042bdd2be67e51a1e4b"}, + {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f215789fb1667cdc874c1b8af6a84dc939fd802bf293a8334fce185c79cd359b"}, + {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2debd8ddce948a8c0938c8c93ade191d2f4ba4649a54302a7da905a81f00b56"}, + {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5410111d7b6681d4b0d65e0f58a13be588d01b473822483f77f513c7f93bd3b2"}, + {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb1f28a137337fdc18384079fa5726810681055b32b92253fa15ae5656e1dddb"}, + {file = "orjson-3.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bf2fbbce5fe7cd1aa177ea3eab2b8e6a6bc6e8592e4279ed3db2d62e57c0e1b2"}, + {file = "orjson-3.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:79b9b9e33bd4c517445a62b90ca0cc279b0f1f3970655c3df9e608bc3f91741a"}, + {file = "orjson-3.10.6-cp39-none-win32.whl", hash = "sha256:30b0a09a2014e621b1adf66a4f705f0809358350a757508ee80209b2d8dae219"}, + {file = "orjson-3.10.6-cp39-none-win_amd64.whl", hash = "sha256:49e3bc615652617d463069f91b867a4458114c5b104e13b7ae6872e5f79d0844"}, + {file = "orjson-3.10.6.tar.gz", hash = "sha256:e54b63d0a7c6c54a5f5f726bc93a2078111ef060fec4ecbf34c5db800ca3b3a7"}, ] [[package]] @@ -896,109 +936,122 @@ files = [ [[package]] name = "pydantic" -version = "2.7.4" +version = "2.8.2" description = "Data validation using Python type hints" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic-2.7.4-py3-none-any.whl", hash = "sha256:ee8538d41ccb9c0a9ad3e0e5f07bf15ed8015b481ced539a1759d8cc89ae90d0"}, - {file = "pydantic-2.7.4.tar.gz", hash = "sha256:0c84efd9548d545f63ac0060c1e4d39bb9b14db8b3c0652338aecc07b5adec52"}, + {file = "pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8"}, + {file = "pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a"}, ] [package.dependencies] annotated-types = ">=0.4.0" -pydantic-core = "2.18.4" -typing-extensions = ">=4.6.1" +pydantic-core = "2.20.1" +typing-extensions = [ + {version = ">=4.12.2", markers = "python_version >= \"3.13\""}, + {version = ">=4.6.1", markers = "python_version < \"3.13\""}, +] [package.extras] email = ["email-validator (>=2.0.0)"] [[package]] name = "pydantic-core" -version = "2.18.4" +version = "2.20.1" description = "Core functionality for Pydantic validation and serialization" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic_core-2.18.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:f76d0ad001edd426b92233d45c746fd08f467d56100fd8f30e9ace4b005266e4"}, - {file = "pydantic_core-2.18.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:59ff3e89f4eaf14050c8022011862df275b552caef8082e37b542b066ce1ff26"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a55b5b16c839df1070bc113c1f7f94a0af4433fcfa1b41799ce7606e5c79ce0a"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4d0dcc59664fcb8974b356fe0a18a672d6d7cf9f54746c05f43275fc48636851"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8951eee36c57cd128f779e641e21eb40bc5073eb28b2d23f33eb0ef14ffb3f5d"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4701b19f7e3a06ea655513f7938de6f108123bf7c86bbebb1196eb9bd35cf724"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e00a3f196329e08e43d99b79b286d60ce46bed10f2280d25a1718399457e06be"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:97736815b9cc893b2b7f663628e63f436018b75f44854c8027040e05230eeddb"}, - {file = "pydantic_core-2.18.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6891a2ae0e8692679c07728819b6e2b822fb30ca7445f67bbf6509b25a96332c"}, - {file = "pydantic_core-2.18.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bc4ff9805858bd54d1a20efff925ccd89c9d2e7cf4986144b30802bf78091c3e"}, - {file = "pydantic_core-2.18.4-cp310-none-win32.whl", hash = "sha256:1b4de2e51bbcb61fdebd0ab86ef28062704f62c82bbf4addc4e37fa4b00b7cbc"}, - {file = "pydantic_core-2.18.4-cp310-none-win_amd64.whl", hash = "sha256:6a750aec7bf431517a9fd78cb93c97b9b0c496090fee84a47a0d23668976b4b0"}, - {file = "pydantic_core-2.18.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:942ba11e7dfb66dc70f9ae66b33452f51ac7bb90676da39a7345e99ffb55402d"}, - {file = "pydantic_core-2.18.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b2ebef0e0b4454320274f5e83a41844c63438fdc874ea40a8b5b4ecb7693f1c4"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a642295cd0c8df1b86fc3dced1d067874c353a188dc8e0f744626d49e9aa51c4"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f09baa656c904807e832cf9cce799c6460c450c4ad80803517032da0cd062e2"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98906207f29bc2c459ff64fa007afd10a8c8ac080f7e4d5beff4c97086a3dabd"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19894b95aacfa98e7cb093cd7881a0c76f55731efad31073db4521e2b6ff5b7d"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0fbbdc827fe5e42e4d196c746b890b3d72876bdbf160b0eafe9f0334525119c8"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f85d05aa0918283cf29a30b547b4df2fbb56b45b135f9e35b6807cb28bc47951"}, - {file = "pydantic_core-2.18.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e85637bc8fe81ddb73fda9e56bab24560bdddfa98aa64f87aaa4e4b6730c23d2"}, - {file = "pydantic_core-2.18.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2f5966897e5461f818e136b8451d0551a2e77259eb0f73a837027b47dc95dab9"}, - {file = "pydantic_core-2.18.4-cp311-none-win32.whl", hash = "sha256:44c7486a4228413c317952e9d89598bcdfb06399735e49e0f8df643e1ccd0558"}, - {file = "pydantic_core-2.18.4-cp311-none-win_amd64.whl", hash = "sha256:8a7164fe2005d03c64fd3b85649891cd4953a8de53107940bf272500ba8a788b"}, - {file = "pydantic_core-2.18.4-cp311-none-win_arm64.whl", hash = "sha256:4e99bc050fe65c450344421017f98298a97cefc18c53bb2f7b3531eb39bc7805"}, - {file = "pydantic_core-2.18.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:6f5c4d41b2771c730ea1c34e458e781b18cc668d194958e0112455fff4e402b2"}, - {file = "pydantic_core-2.18.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2fdf2156aa3d017fddf8aea5adfba9f777db1d6022d392b682d2a8329e087cef"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4748321b5078216070b151d5271ef3e7cc905ab170bbfd27d5c83ee3ec436695"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:847a35c4d58721c5dc3dba599878ebbdfd96784f3fb8bb2c356e123bdcd73f34"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3c40d4eaad41f78e3bbda31b89edc46a3f3dc6e171bf0ecf097ff7a0ffff7cb1"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:21a5e440dbe315ab9825fcd459b8814bb92b27c974cbc23c3e8baa2b76890077"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01dd777215e2aa86dfd664daed5957704b769e726626393438f9c87690ce78c3"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4b06beb3b3f1479d32befd1f3079cc47b34fa2da62457cdf6c963393340b56e9"}, - {file = "pydantic_core-2.18.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:564d7922e4b13a16b98772441879fcdcbe82ff50daa622d681dd682175ea918c"}, - {file = "pydantic_core-2.18.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:0eb2a4f660fcd8e2b1c90ad566db2b98d7f3f4717c64fe0a83e0adb39766d5b8"}, - {file = "pydantic_core-2.18.4-cp312-none-win32.whl", hash = "sha256:8b8bab4c97248095ae0c4455b5a1cd1cdd96e4e4769306ab19dda135ea4cdb07"}, - {file = "pydantic_core-2.18.4-cp312-none-win_amd64.whl", hash = "sha256:14601cdb733d741b8958224030e2bfe21a4a881fb3dd6fbb21f071cabd48fa0a"}, - {file = "pydantic_core-2.18.4-cp312-none-win_arm64.whl", hash = "sha256:c1322d7dd74713dcc157a2b7898a564ab091ca6c58302d5c7b4c07296e3fd00f"}, - {file = "pydantic_core-2.18.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:823be1deb01793da05ecb0484d6c9e20baebb39bd42b5d72636ae9cf8350dbd2"}, - {file = "pydantic_core-2.18.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ebef0dd9bf9b812bf75bda96743f2a6c5734a02092ae7f721c048d156d5fabae"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae1d6df168efb88d7d522664693607b80b4080be6750c913eefb77e34c12c71a"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f9899c94762343f2cc2fc64c13e7cae4c3cc65cdfc87dd810a31654c9b7358cc"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99457f184ad90235cfe8461c4d70ab7dd2680e28821c29eca00252ba90308c78"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18f469a3d2a2fdafe99296a87e8a4c37748b5080a26b806a707f25a902c040a8"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7cdf28938ac6b8b49ae5e92f2735056a7ba99c9b110a474473fd71185c1af5d"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:938cb21650855054dc54dfd9120a851c974f95450f00683399006aa6e8abb057"}, - {file = "pydantic_core-2.18.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:44cd83ab6a51da80fb5adbd9560e26018e2ac7826f9626bc06ca3dc074cd198b"}, - {file = "pydantic_core-2.18.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:972658f4a72d02b8abfa2581d92d59f59897d2e9f7e708fdabe922f9087773af"}, - {file = "pydantic_core-2.18.4-cp38-none-win32.whl", hash = "sha256:1d886dc848e60cb7666f771e406acae54ab279b9f1e4143babc9c2258213daa2"}, - {file = "pydantic_core-2.18.4-cp38-none-win_amd64.whl", hash = "sha256:bb4462bd43c2460774914b8525f79b00f8f407c945d50881568f294c1d9b4443"}, - {file = "pydantic_core-2.18.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:44a688331d4a4e2129140a8118479443bd6f1905231138971372fcde37e43528"}, - {file = "pydantic_core-2.18.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a2fdd81edd64342c85ac7cf2753ccae0b79bf2dfa063785503cb85a7d3593223"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:86110d7e1907ab36691f80b33eb2da87d780f4739ae773e5fc83fb272f88825f"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:46387e38bd641b3ee5ce247563b60c5ca098da9c56c75c157a05eaa0933ed154"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:123c3cec203e3f5ac7b000bd82235f1a3eced8665b63d18be751f115588fea30"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dc1803ac5c32ec324c5261c7209e8f8ce88e83254c4e1aebdc8b0a39f9ddb443"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:53db086f9f6ab2b4061958d9c276d1dbe3690e8dd727d6abf2321d6cce37fa94"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:abc267fa9837245cc28ea6929f19fa335f3dc330a35d2e45509b6566dc18be23"}, - {file = "pydantic_core-2.18.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a0d829524aaefdebccb869eed855e2d04c21d2d7479b6cada7ace5448416597b"}, - {file = "pydantic_core-2.18.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:509daade3b8649f80d4e5ff21aa5673e4ebe58590b25fe42fac5f0f52c6f034a"}, - {file = "pydantic_core-2.18.4-cp39-none-win32.whl", hash = "sha256:ca26a1e73c48cfc54c4a76ff78df3727b9d9f4ccc8dbee4ae3f73306a591676d"}, - {file = "pydantic_core-2.18.4-cp39-none-win_amd64.whl", hash = "sha256:c67598100338d5d985db1b3d21f3619ef392e185e71b8d52bceacc4a7771ea7e"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:574d92eac874f7f4db0ca653514d823a0d22e2354359d0759e3f6a406db5d55d"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1f4d26ceb5eb9eed4af91bebeae4b06c3fb28966ca3a8fb765208cf6b51102ab"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77450e6d20016ec41f43ca4a6c63e9fdde03f0ae3fe90e7c27bdbeaece8b1ed4"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d323a01da91851a4f17bf592faf46149c9169d68430b3146dcba2bb5e5719abc"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:43d447dd2ae072a0065389092a231283f62d960030ecd27565672bd40746c507"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:578e24f761f3b425834f297b9935e1ce2e30f51400964ce4801002435a1b41ef"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:81b5efb2f126454586d0f40c4d834010979cb80785173d1586df845a632e4e6d"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ab86ce7c8f9bea87b9d12c7f0af71102acbf5ecbc66c17796cff45dae54ef9a5"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:90afc12421df2b1b4dcc975f814e21bc1754640d502a2fbcc6d41e77af5ec312"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:51991a89639a912c17bef4b45c87bd83593aee0437d8102556af4885811d59f5"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:293afe532740370aba8c060882f7d26cfd00c94cae32fd2e212a3a6e3b7bc15e"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b48ece5bde2e768197a2d0f6e925f9d7e3e826f0ad2271120f8144a9db18d5c8"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:eae237477a873ab46e8dd748e515c72c0c804fb380fbe6c85533c7de51f23a8f"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:834b5230b5dfc0c1ec37b2fda433b271cbbc0e507560b5d1588e2cc1148cf1ce"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e858ac0a25074ba4bce653f9b5d0a85b7456eaddadc0ce82d3878c22489fa4ee"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2fd41f6eff4c20778d717af1cc50eca52f5afe7805ee530a4fbd0bae284f16e9"}, - {file = "pydantic_core-2.18.4.tar.gz", hash = "sha256:ec3beeada09ff865c344ff3bc2f427f5e6c26401cc6113d77e372c3fdac73864"}, + {file = "pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3"}, + {file = "pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a"}, + {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a"}, + {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840"}, + {file = "pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250"}, + {file = "pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c"}, + {file = "pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312"}, + {file = "pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b"}, + {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27"}, + {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b"}, + {file = "pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a"}, + {file = "pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2"}, + {file = "pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231"}, + {file = "pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24"}, + {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1"}, + {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd"}, + {file = "pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688"}, + {file = "pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d"}, + {file = "pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686"}, + {file = "pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83"}, + {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203"}, + {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0"}, + {file = "pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e"}, + {file = "pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20"}, + {file = "pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:4745f4ac52cc6686390c40eaa01d48b18997cb130833154801a442323cc78f91"}, + {file = "pydantic_core-2.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a8ad4c766d3f33ba8fd692f9aa297c9058970530a32c728a2c4bfd2616d3358b"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41e81317dd6a0127cabce83c0c9c3fbecceae981c8391e6f1dec88a77c8a569a"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04024d270cf63f586ad41fff13fde4311c4fc13ea74676962c876d9577bcc78f"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eaad4ff2de1c3823fddf82f41121bdf453d922e9a238642b1dedb33c4e4f98ad"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:26ab812fa0c845df815e506be30337e2df27e88399b985d0bb4e3ecfe72df31c"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c5ebac750d9d5f2706654c638c041635c385596caf68f81342011ddfa1e5598"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2aafc5a503855ea5885559eae883978c9b6d8c8993d67766ee73d82e841300dd"}, + {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4868f6bd7c9d98904b748a2653031fc9c2f85b6237009d475b1008bfaeb0a5aa"}, + {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa2f457b4af386254372dfa78a2eda2563680d982422641a85f271c859df1987"}, + {file = "pydantic_core-2.20.1-cp38-none-win32.whl", hash = "sha256:225b67a1f6d602de0ce7f6c1c3ae89a4aa25d3de9be857999e9124f15dab486a"}, + {file = "pydantic_core-2.20.1-cp38-none-win_amd64.whl", hash = "sha256:6b507132dcfc0dea440cce23ee2182c0ce7aba7054576efc65634f080dbe9434"}, + {file = "pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c"}, + {file = "pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1"}, + {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09"}, + {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab"}, + {file = "pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2"}, + {file = "pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7"}, + {file = "pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4"}, ] [package.dependencies] @@ -1020,71 +1073,61 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pymongo" -version = "4.7.3" +version = "4.8.0" description = "Python driver for MongoDB " optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pymongo-4.7.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e9580b4537b3cc5d412070caabd1dabdf73fdce249793598792bac5782ecf2eb"}, - {file = "pymongo-4.7.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:517243b2b189c98004570dd8fc0e89b1a48363d5578b3b99212fa2098b2ea4b8"}, - {file = "pymongo-4.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23b1e9dabd61da1c7deb54d888f952f030e9e35046cebe89309b28223345b3d9"}, - {file = "pymongo-4.7.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03e0f9901ad66c6fb7da0d303461377524d61dab93a4e4e5af44164c5bb4db76"}, - {file = "pymongo-4.7.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9a870824aa54453aee030bac08c77ebcf2fe8999400f0c2a065bebcbcd46b7f8"}, - {file = "pymongo-4.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dfd7b3d3f4261bddbb74a332d87581bc523353e62bb9da4027cc7340f6fcbebc"}, - {file = "pymongo-4.7.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4d719a643ea6da46d215a3ba51dac805a773b611c641319558d8576cbe31cef8"}, - {file = "pymongo-4.7.3-cp310-cp310-win32.whl", hash = "sha256:d8b1e06f361f3c66ee694cb44326e1a2e4f93bc9c3a4849ae8547889fca71154"}, - {file = "pymongo-4.7.3-cp310-cp310-win_amd64.whl", hash = "sha256:c450ab2f9397e2d5caa7fddeb4feb30bf719c47c13ae02c0bbb3b71bf4099c1c"}, - {file = "pymongo-4.7.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79cc6459209e885ba097779eaa0fe7f2fa049db39ab43b1731cf8d065a4650e8"}, - {file = "pymongo-4.7.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6e2287f1e2cc35e73cd74a4867e398a97962c5578a3991c730ef78d276ca8e46"}, - {file = "pymongo-4.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:413506bd48d8c31ee100645192171e4773550d7cb940b594d5175ac29e329ea1"}, - {file = "pymongo-4.7.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cc1febf17646d52b7561caa762f60bdfe2cbdf3f3e70772f62eb624269f9c05"}, - {file = "pymongo-4.7.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8dfcf18a49955d50a16c92b39230bd0668ffc9c164ccdfe9d28805182b48fa72"}, - {file = "pymongo-4.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89872041196c008caddf905eb59d3dc2d292ae6b0282f1138418e76f3abd3ad6"}, - {file = "pymongo-4.7.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3ed97b89de62ea927b672ad524de0d23f3a6b4a01c8d10e3d224abec973fbc3"}, - {file = "pymongo-4.7.3-cp311-cp311-win32.whl", hash = "sha256:d2f52b38151e946011d888a8441d3d75715c663fc5b41a7ade595e924e12a90a"}, - {file = "pymongo-4.7.3-cp311-cp311-win_amd64.whl", hash = "sha256:4a4cc91c28e81c0ce03d3c278e399311b0af44665668a91828aec16527082676"}, - {file = "pymongo-4.7.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cb30c8a78f5ebaca98640943447b6a0afcb146f40b415757c9047bf4a40d07b4"}, - {file = "pymongo-4.7.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9cf2069f5d37c398186453589486ea98bb0312214c439f7d320593b61880dc05"}, - {file = "pymongo-4.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3564f423958fced8a8c90940fd2f543c27adbcd6c7c6ed6715d847053f6200a0"}, - {file = "pymongo-4.7.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7a8af8a38fa6951fff73e6ff955a6188f829b29fed7c5a1b739a306b4aa56fe8"}, - {file = "pymongo-4.7.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3a0e81c8dba6d825272867d487f18764cfed3c736d71d7d4ff5b79642acbed42"}, - {file = "pymongo-4.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88fc1d146feabac4385ea8ddb1323e584922922641303c8bf392fe1c36803463"}, - {file = "pymongo-4.7.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4225100b2c5d1f7393d7c5d256ceb8b20766830eecf869f8ae232776347625a6"}, - {file = "pymongo-4.7.3-cp312-cp312-win32.whl", hash = "sha256:5f3569ed119bf99c0f39ac9962fb5591eff02ca210fe80bb5178d7a1171c1b1e"}, - {file = "pymongo-4.7.3-cp312-cp312-win_amd64.whl", hash = "sha256:eb383c54c0c8ba27e7712b954fcf2a0905fee82a929d277e2e94ad3a5ba3c7db"}, - {file = "pymongo-4.7.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a46cffe91912570151617d866a25d07b9539433a32231ca7e7cf809b6ba1745f"}, - {file = "pymongo-4.7.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c3cba427dac50944c050c96d958c5e643c33a457acee03bae27c8990c5b9c16"}, - {file = "pymongo-4.7.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a5fd893edbeb7fa982f8d44b6dd0186b6cd86c89e23f6ef95049ff72bffe46"}, - {file = "pymongo-4.7.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c168a2fadc8b19071d0a9a4f85fe38f3029fe22163db04b4d5c046041c0b14bd"}, - {file = "pymongo-4.7.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c59c2c9e70f63a7f18a31e367898248c39c068c639b0579623776f637e8f482"}, - {file = "pymongo-4.7.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d08165fd82c89d372e82904c3268bd8fe5de44f92a00e97bb1db1785154397d9"}, - {file = "pymongo-4.7.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:397fed21afec4fdaecf72f9c4344b692e489756030a9c6d864393e00c7e80491"}, - {file = "pymongo-4.7.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:f903075f8625e2d228f1b9b9a0cf1385f1c41e93c03fd7536c91780a0fb2e98f"}, - {file = "pymongo-4.7.3-cp37-cp37m-win32.whl", hash = "sha256:8ed1132f58c38add6b6138b771d0477a3833023c015c455d9a6e26f367f9eb5c"}, - {file = "pymongo-4.7.3-cp37-cp37m-win_amd64.whl", hash = "sha256:8d00a5d8fc1043a4f641cbb321da766699393f1b6f87c70fae8089d61c9c9c54"}, - {file = "pymongo-4.7.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9377b868c38700c7557aac1bc4baae29f47f1d279cc76b60436e547fd643318c"}, - {file = "pymongo-4.7.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:da4a6a7b4f45329bb135aa5096823637bd5f760b44d6224f98190ee367b6b5dd"}, - {file = "pymongo-4.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:487e2f9277f8a63ac89335ec4f1699ae0d96ebd06d239480d69ed25473a71b2c"}, - {file = "pymongo-4.7.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db3d608d541a444c84f0bfc7bad80b0b897e0f4afa580a53f9a944065d9b633"}, - {file = "pymongo-4.7.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e90af2ad3a8a7c295f4d09a2fbcb9a350c76d6865f787c07fe843b79c6e821d1"}, - {file = "pymongo-4.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e28feb18dc559d50ededba27f9054c79f80c4edd70a826cecfe68f3266807b3"}, - {file = "pymongo-4.7.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f21ecddcba2d9132d5aebd8e959de8d318c29892d0718420447baf2b9bccbb19"}, - {file = "pymongo-4.7.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:26140fbb3f6a9a74bd73ed46d0b1f43d5702e87a6e453a31b24fad9c19df9358"}, - {file = "pymongo-4.7.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:94baa5fc7f7d22c3ce2ac7bd92f7e03ba7a6875f2480e3b97a400163d6eaafc9"}, - {file = "pymongo-4.7.3-cp38-cp38-win32.whl", hash = "sha256:92dd247727dd83d1903e495acc743ebd757f030177df289e3ba4ef8a8c561fad"}, - {file = "pymongo-4.7.3-cp38-cp38-win_amd64.whl", hash = "sha256:1c90c848a5e45475731c35097f43026b88ef14a771dfd08f20b67adc160a3f79"}, - {file = "pymongo-4.7.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f598be401b416319a535c386ac84f51df38663f7a9d1071922bda4d491564422"}, - {file = "pymongo-4.7.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:35ba90477fae61c65def6e7d09e8040edfdd3b7fd47c3c258b4edded60c4d625"}, - {file = "pymongo-4.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9aa8735955c70892634d7e61b0ede9b1eefffd3cd09ccabee0ffcf1bdfe62254"}, - {file = "pymongo-4.7.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:82a97d8f7f138586d9d0a0cff804a045cdbbfcfc1cd6bba542b151e284fbbec5"}, - {file = "pymongo-4.7.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de3b9db558930efab5eaef4db46dcad8bf61ac3ddfd5751b3e5ac6084a25e366"}, - {file = "pymongo-4.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0e149217ef62812d3c2401cf0e2852b0c57fd155297ecc4dcd67172c4eca402"}, - {file = "pymongo-4.7.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3a8a1ef4a824f5feb793b3231526d0045eadb5eb01080e38435dfc40a26c3e5"}, - {file = "pymongo-4.7.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d14e5e89a4be1f10efc3d9dcb13eb7a3b2334599cb6bb5d06c6a9281b79c8e22"}, - {file = "pymongo-4.7.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c6bfa29f032fd4fd7b129520f8cdb51ab71d88c2ba0567cccd05d325f963acb5"}, - {file = "pymongo-4.7.3-cp39-cp39-win32.whl", hash = "sha256:1421d0bd2ce629405f5157bd1aaa9b83f12d53a207cf68a43334f4e4ee312b66"}, - {file = "pymongo-4.7.3-cp39-cp39-win_amd64.whl", hash = "sha256:f7ee974f8b9370a998919c55b1050889f43815ab588890212023fecbc0402a6d"}, - {file = "pymongo-4.7.3.tar.gz", hash = "sha256:6354a66b228f2cd399be7429685fb68e07f19110a3679782ecb4fdb68da03831"}, + {file = "pymongo-4.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f2b7bec27e047e84947fbd41c782f07c54c30c76d14f3b8bf0c89f7413fac67a"}, + {file = "pymongo-4.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3c68fe128a171493018ca5c8020fc08675be130d012b7ab3efe9e22698c612a1"}, + {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:920d4f8f157a71b3cb3f39bc09ce070693d6e9648fb0e30d00e2657d1dca4e49"}, + {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52b4108ac9469febba18cea50db972605cc43978bedaa9fea413378877560ef8"}, + {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:180d5eb1dc28b62853e2f88017775c4500b07548ed28c0bd9c005c3d7bc52526"}, + {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aec2b9088cdbceb87e6ca9c639d0ff9b9d083594dda5ca5d3c4f6774f4c81b33"}, + {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d0cf61450feadca81deb1a1489cb1a3ae1e4266efd51adafecec0e503a8dcd84"}, + {file = "pymongo-4.8.0-cp310-cp310-win32.whl", hash = "sha256:8b18c8324809539c79bd6544d00e0607e98ff833ca21953df001510ca25915d1"}, + {file = "pymongo-4.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:e5df28f74002e37bcbdfdc5109799f670e4dfef0fb527c391ff84f078050e7b5"}, + {file = "pymongo-4.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6b50040d9767197b77ed420ada29b3bf18a638f9552d80f2da817b7c4a4c9c68"}, + {file = "pymongo-4.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:417369ce39af2b7c2a9c7152c1ed2393edfd1cbaf2a356ba31eb8bcbd5c98dd7"}, + {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf821bd3befb993a6db17229a2c60c1550e957de02a6ff4dd0af9476637b2e4d"}, + {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9365166aa801c63dff1a3cb96e650be270da06e3464ab106727223123405510f"}, + {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cc8b8582f4209c2459b04b049ac03c72c618e011d3caa5391ff86d1bda0cc486"}, + {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16e5019f75f6827bb5354b6fef8dfc9d6c7446894a27346e03134d290eb9e758"}, + {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b5802151fc2b51cd45492c80ed22b441d20090fb76d1fd53cd7760b340ff554"}, + {file = "pymongo-4.8.0-cp311-cp311-win32.whl", hash = "sha256:4bf58e6825b93da63e499d1a58de7de563c31e575908d4e24876234ccb910eba"}, + {file = "pymongo-4.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:b747c0e257b9d3e6495a018309b9e0c93b7f0d65271d1d62e572747f4ffafc88"}, + {file = "pymongo-4.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e6a720a3d22b54183352dc65f08cd1547204d263e0651b213a0a2e577e838526"}, + {file = "pymongo-4.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:31e4d21201bdf15064cf47ce7b74722d3e1aea2597c6785882244a3bb58c7eab"}, + {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6b804bb4f2d9dc389cc9e827d579fa327272cdb0629a99bfe5b83cb3e269ebf"}, + {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f2fbdb87fe5075c8beb17a5c16348a1ea3c8b282a5cb72d173330be2fecf22f5"}, + {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd39455b7ee70aabee46f7399b32ab38b86b236c069ae559e22be6b46b2bbfc4"}, + {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:940d456774b17814bac5ea7fc28188c7a1338d4a233efbb6ba01de957bded2e8"}, + {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:236bbd7d0aef62e64caf4b24ca200f8c8670d1a6f5ea828c39eccdae423bc2b2"}, + {file = "pymongo-4.8.0-cp312-cp312-win32.whl", hash = "sha256:47ec8c3f0a7b2212dbc9be08d3bf17bc89abd211901093e3ef3f2adea7de7a69"}, + {file = "pymongo-4.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:e84bc7707492f06fbc37a9f215374d2977d21b72e10a67f1b31893ec5a140ad8"}, + {file = "pymongo-4.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:519d1bab2b5e5218c64340b57d555d89c3f6c9d717cecbf826fb9d42415e7750"}, + {file = "pymongo-4.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:87075a1feb1e602e539bdb1ef8f4324a3427eb0d64208c3182e677d2c0718b6f"}, + {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f53429515d2b3e86dcc83dadecf7ff881e538c168d575f3688698a8707b80a"}, + {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fdc20cd1e1141b04696ffcdb7c71e8a4a665db31fe72e51ec706b3bdd2d09f36"}, + {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:284d0717d1a7707744018b0b6ee7801b1b1ff044c42f7be7a01bb013de639470"}, + {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5bf0eb8b6ef40fa22479f09375468c33bebb7fe49d14d9c96c8fd50355188b0"}, + {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2ecd71b9226bd1d49416dc9f999772038e56f415a713be51bf18d8676a0841c8"}, + {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e0061af6e8c5e68b13f1ec9ad5251247726653c5af3c0bbdfbca6cf931e99216"}, + {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:658d0170f27984e0d89c09fe5c42296613b711a3ffd847eb373b0dbb5b648d5f"}, + {file = "pymongo-4.8.0-cp38-cp38-win32.whl", hash = "sha256:3ed1c316718a2836f7efc3d75b4b0ffdd47894090bc697de8385acd13c513a70"}, + {file = "pymongo-4.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:7148419eedfea9ecb940961cfe465efaba90595568a1fb97585fb535ea63fe2b"}, + {file = "pymongo-4.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8400587d594761e5136a3423111f499574be5fd53cf0aefa0d0f05b180710b0"}, + {file = "pymongo-4.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af3e98dd9702b73e4e6fd780f6925352237f5dce8d99405ff1543f3771201704"}, + {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de3a860f037bb51f968de320baef85090ff0bbb42ec4f28ec6a5ddf88be61871"}, + {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0fc18b3a093f3db008c5fea0e980dbd3b743449eee29b5718bc2dc15ab5088bb"}, + {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18c9d8f975dd7194c37193583fd7d1eb9aea0c21ee58955ecf35362239ff31ac"}, + {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:408b2f8fdbeca3c19e4156f28fff1ab11c3efb0407b60687162d49f68075e63c"}, + {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6564780cafd6abeea49759fe661792bd5a67e4f51bca62b88faab497ab5fe89"}, + {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d18d86bc9e103f4d3d4f18b85a0471c0e13ce5b79194e4a0389a224bb70edd53"}, + {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:9097c331577cecf8034422956daaba7ec74c26f7b255d718c584faddd7fa2e3c"}, + {file = "pymongo-4.8.0-cp39-cp39-win32.whl", hash = "sha256:d5428dbcd43d02f6306e1c3c95f692f68b284e6ee5390292242f509004c9e3a8"}, + {file = "pymongo-4.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:ef7225755ed27bfdb18730c68f6cb023d06c28f2b734597480fb4c0e500feb6f"}, + {file = "pymongo-4.8.0.tar.gz", hash = "sha256:454f2295875744dc70f1881e4b2eb99cdad008a33574bc8aaf120530f66c0cde"}, ] [package.dependencies] @@ -1092,6 +1135,7 @@ dnspython = ">=1.16.0,<3.0.0" [package.extras] aws = ["pymongo-auth-aws (>=1.1.0,<2.0.0)"] +docs = ["furo (==2023.9.10)", "readthedocs-sphinx-search (>=0.3,<1.0)", "sphinx (>=5.3,<8)", "sphinx-rtd-theme (>=2,<3)", "sphinxcontrib-shellcheck (>=1,<2)"] encryption = ["certifi", "pymongo-auth-aws (>=1.1.0,<2.0.0)", "pymongocrypt (>=1.6.0,<2.0.0)"] gssapi = ["pykerberos", "winkerberos (>=0.5.0)"] ocsp = ["certifi", "cryptography (>=2.5)", "pyopenssl (>=17.2.0)", "requests (<3.0.0)", "service-identity (>=18.1.0)"] @@ -1148,13 +1192,13 @@ dev = ["atomicwrites (==1.4.1)", "attrs (==23.2.0)", "coverage (==7.4.1)", "hatc [[package]] name = "python-socketio" -version = "5.11.2" +version = "5.11.3" description = "Socket.IO server and client for Python" optional = false python-versions = ">=3.8" files = [ - {file = "python-socketio-5.11.2.tar.gz", hash = "sha256:ae6a1de5c5209ca859dc574dccc8931c4be17ee003e74ce3b8d1306162bb4a37"}, - {file = "python_socketio-5.11.2-py3-none-any.whl", hash = "sha256:b9f22a8ff762d7a6e123d16a43ddb1a27d50f07c3c88ea999334f2f89b0ad52b"}, + {file = "python_socketio-5.11.3-py3-none-any.whl", hash = "sha256:2a923a831ff70664b7c502df093c423eb6aa93c1ce68b8319e840227a26d8b69"}, + {file = "python_socketio-5.11.3.tar.gz", hash = "sha256:194af8cdbb7b0768c2e807ba76c7abc288eb5bb85559b7cddee51a6bc7a65737"}, ] [package.dependencies] @@ -1306,13 +1350,13 @@ files = [ [[package]] name = "urllib3" -version = "2.2.1" +version = "2.2.2" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.8" files = [ - {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"}, - {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"}, + {file = "urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472"}, + {file = "urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168"}, ] [package.extras] @@ -1692,4 +1736,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "e3f40114fb1ede35b48e252d4964b6a9dde00a04106f013044dc9f9a315b7b71" +content-hash = "7dd31278f26af5dfbfa46c847a3015c3d1e22e620a6586692cc60b5fab85b7d9" diff --git a/pyproject.toml b/pyproject.toml index f7ad66f..100df97 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ pymongo = "^4.7.3" fastapi = "0.109.1" uvicorn = "^0.30.1" nicegui = "1.4.27" - +bcrypt = "4.0.1" [build-system] requires = ["poetry-core"] From 306a58729842f17c976d7592d63c58f8aec85978 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Thu, 18 Jul 2024 17:17:41 -0700 Subject: [PATCH 03/32] auth works with db now --- main.py | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/main.py b/main.py index aad18bb..57723e7 100644 --- a/main.py +++ b/main.py @@ -67,11 +67,16 @@ def get_password_hash(password): # return UserInDB(**user_data) +def get_user_db(username: str): + user_data = get_user(username) + return UserInDB(**user_data) + + def authenticate_user(username: str, password: str): - user = get_user(username) + user = get_user_db(username) if not user: return False - if not verify_password(password, user['hashed_password']): + if not verify_password(password, user.hashed_password): return False return user @@ -90,7 +95,6 @@ def create_access_token(data: dict, expires_delta: timedelta or None = None): async def get_current_user(token: str = Depends(oath2_scheme)): - print("Enter get_current_user: ") credential_exception = HTTPException(status_code=status.HTTP_401_UNAUTHORIZED, detail="Could not validate credentials", headers={"WWW-Authenticate": "Bearer"} @@ -107,7 +111,7 @@ async def get_current_user(token: str = Depends(oath2_scheme)): except JWTError: raise credential_exception - user = get_user(username=token_data.username) + user = get_user_db(username=token_data.username) if user is None: raise credential_exception @@ -131,7 +135,7 @@ async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends( ) access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES) access_token = create_access_token( - data={"sub": user['username']}, + data={"sub": user.username}, expires_delta=access_token_expires ) print("access_token: ", access_token) @@ -140,6 +144,7 @@ async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends( @app.get("/users/me/", response_model=User) +# make sure to sign in via the "Authorize" button first async def read_users_me(current_user: User = Depends(get_current_active_user)): return current_user @@ -150,11 +155,6 @@ async def read_own_items(current_user: User = Depends(get_current_active_user)): -# if __name__ == "__main__": -# data = get_user("tim") -# print(data) -# -# data = get_user("taran50") -# print(data) -# if data['email'] == "taran123@gmail.com": -# print("correct email") \ No newline at end of file +if __name__ == "__main__": + test = get_user_db("taran50") + print(test) \ No newline at end of file From 6b166cd0ab3091b4517eaa7b0863e6e752083384 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Thu, 18 Jul 2024 17:49:12 -0700 Subject: [PATCH 04/32] going to try to connect my fast_api backend to streamlit front end --- streamlit_app.py | 111 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 streamlit_app.py diff --git a/streamlit_app.py b/streamlit_app.py new file mode 100644 index 0000000..334e721 --- /dev/null +++ b/streamlit_app.py @@ -0,0 +1,111 @@ +import pandas as pd +import streamlit as st +# import streamlit_authenticator as st_auth +import os +import json + + + +MOCK_DATA = 'data/MOCK_DATA.json' + +# Configures the default settings of the page. +st.set_page_config(page_title="crypto_api", layout="wide") + + +st.title('My Cryptocurrency app') + + +# -- User Auth -- # + + + + + + +st_name = st.sidebar.text_input("Enter your name", 'John') +# st.write(f'Hello {st_name}!') + +st.write("Hello", st_name, '!') + +# What path is the app located +# app_location = os.getcwd() +# st.write("App path: ", app_location) + + +with open(MOCK_DATA, 'r') as file: + data_dict = json.load(file) + +df = pd.DataFrame(data_dict) + + +def dict_to_list(d): + """ + Helper function to convert column of dicts to column lists + """ + return d['price'] + + +# Want to convert the sparklines from dicts to lists +df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) + +# Add column of false values for favorite checkboxes +df.insert(0, 'favorite', False) + +# data_dict = data_dict.iloc[:, 1:] # Drop db _id column +columns_to_keep = [ + 'favorite', + 'market_cap_rank', + 'image', + 'id', + 'current_price', + 'price_change_percentage_24h', + 'market_cap', + 'sparkline_in_7d', +] + +# Only keep columns we care about +df = df[columns_to_keep] + +# Only allow edits for favorite column, used int 'disabled' for data_editor +columns_to_edit = ['favorite'] +columns_all = df.columns.to_list() +columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] + + +st.data_editor( + data=df, + width=None, + use_container_width=False, + height=2000, + disabled=columns_not_to_edit, + column_config={ + "favorite": st.column_config.CheckboxColumn( + "Favorite?", + help="Select your **favorite** currencies.", + default=False + ), + "image": st.column_config.ImageColumn( + "Icon", help="Icons for currencies" + ), + "current_price": st.column_config.NumberColumn( + label="current_price", + format='$%g', + help="USD", + ), + "price_change_percentage_24h": st.column_config.NumberColumn( + label="price_change_percentage_24h", + format="%.2f%%", + ), + "market_cap": st.column_config.NumberColumn( + label="market_cap", + format="$%g", + help="USD", + ), + "sparkline_in_7d": st.column_config.LineChartColumn( + "Last 7 days", + help="Line chart for the last 7 days", + ), + + }, + hide_index=True +) \ No newline at end of file From 0fa088c1397db8a12ba8fb481ab962086c8e59fe Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Thu, 18 Jul 2024 18:00:33 -0700 Subject: [PATCH 05/32] we can now log in users to allow them to access secure endpoints --- streamlit_app.py | 240 ++++++++++++++++++++++++++--------------------- 1 file changed, 134 insertions(+), 106 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index 334e721..b380f41 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -3,109 +3,137 @@ # import streamlit_authenticator as st_auth import os import json - - - -MOCK_DATA = 'data/MOCK_DATA.json' - -# Configures the default settings of the page. -st.set_page_config(page_title="crypto_api", layout="wide") - - -st.title('My Cryptocurrency app') - - -# -- User Auth -- # - - - - - - -st_name = st.sidebar.text_input("Enter your name", 'John') -# st.write(f'Hello {st_name}!') - -st.write("Hello", st_name, '!') - -# What path is the app located -# app_location = os.getcwd() -# st.write("App path: ", app_location) - - -with open(MOCK_DATA, 'r') as file: - data_dict = json.load(file) - -df = pd.DataFrame(data_dict) - - -def dict_to_list(d): - """ - Helper function to convert column of dicts to column lists - """ - return d['price'] - - -# Want to convert the sparklines from dicts to lists -df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) - -# Add column of false values for favorite checkboxes -df.insert(0, 'favorite', False) - -# data_dict = data_dict.iloc[:, 1:] # Drop db _id column -columns_to_keep = [ - 'favorite', - 'market_cap_rank', - 'image', - 'id', - 'current_price', - 'price_change_percentage_24h', - 'market_cap', - 'sparkline_in_7d', -] - -# Only keep columns we care about -df = df[columns_to_keep] - -# Only allow edits for favorite column, used int 'disabled' for data_editor -columns_to_edit = ['favorite'] -columns_all = df.columns.to_list() -columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] - - -st.data_editor( - data=df, - width=None, - use_container_width=False, - height=2000, - disabled=columns_not_to_edit, - column_config={ - "favorite": st.column_config.CheckboxColumn( - "Favorite?", - help="Select your **favorite** currencies.", - default=False - ), - "image": st.column_config.ImageColumn( - "Icon", help="Icons for currencies" - ), - "current_price": st.column_config.NumberColumn( - label="current_price", - format='$%g', - help="USD", - ), - "price_change_percentage_24h": st.column_config.NumberColumn( - label="price_change_percentage_24h", - format="%.2f%%", - ), - "market_cap": st.column_config.NumberColumn( - label="market_cap", - format="$%g", - help="USD", - ), - "sparkline_in_7d": st.column_config.LineChartColumn( - "Last 7 days", - help="Line chart for the last 7 days", - ), - - }, - hide_index=True -) \ No newline at end of file +import requests + +# Streamlit login form +st.title("Login") + +username = st.text_input("Username") +password = st.text_input("Password", type="password") + +if st.button("Login"): + response = requests.post("http://localhost:8000/token", data={"username": username, "password": password}) + if response.status_code == 200: + token = response.json().get("access_token") + st.session_state.token = token + st.success("Logged in successfully!") + else: + st.error("Login failed") + +if "token" in st.session_state: + headers = {"Authorization": f"Bearer {st.session_state.token}"} + response = requests.get("http://localhost:8000/users/me/", headers=headers) + + if response.status_code == 200: + data = response.json() + st.write(data) + else: + st.error("Unauthorized access") + + +# -- UNCOMMENT EVERYTHING BELOW WHEN DONE TESTING -- ## +# MOCK_DATA = 'data/MOCK_DATA.json' +# +# # Configures the default settings of the page. +# st.set_page_config(page_title="crypto_api", layout="wide") +# +# +# st.title('My Cryptocurrency app') +# +# +# + +# # -- User Auth -- # +# +# +# +# +# +# +# st_name = st.sidebar.text_input("Enter your name", 'John') +# # st.write(f'Hello {st_name}!') +# +# st.write("Hello", st_name, '!') +# +# # What path is the app located +# # app_location = os.getcwd() +# # st.write("App path: ", app_location) +# +# +# with open(MOCK_DATA, 'r') as file: +# data_dict = json.load(file) +# +# df = pd.DataFrame(data_dict) +# +# +# def dict_to_list(d): +# """ +# Helper function to convert column of dicts to column lists +# """ +# return d['price'] +# +# +# # Want to convert the sparklines from dicts to lists +# df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) +# +# # Add column of false values for favorite checkboxes +# df.insert(0, 'favorite', False) +# +# # data_dict = data_dict.iloc[:, 1:] # Drop db _id column +# columns_to_keep = [ +# 'favorite', +# 'market_cap_rank', +# 'image', +# 'id', +# 'current_price', +# 'price_change_percentage_24h', +# 'market_cap', +# 'sparkline_in_7d', +# ] +# +# # Only keep columns we care about +# df = df[columns_to_keep] +# +# # Only allow edits for favorite column, used int 'disabled' for data_editor +# columns_to_edit = ['favorite'] +# columns_all = df.columns.to_list() +# columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] +# +# +# st.data_editor( +# data=df, +# width=None, +# use_container_width=False, +# height=2000, +# disabled=columns_not_to_edit, +# column_config={ +# "favorite": st.column_config.CheckboxColumn( +# "Favorite?", +# help="Select your **favorite** currencies.", +# default=False +# ), +# "image": st.column_config.ImageColumn( +# "Icon", help="Icons for currencies" +# ), +# "current_price": st.column_config.NumberColumn( +# label="current_price", +# format='$%g', +# help="USD", +# ), +# "price_change_percentage_24h": st.column_config.NumberColumn( +# label="price_change_percentage_24h", +# format="%.2f%%", +# ), +# "market_cap": st.column_config.NumberColumn( +# label="market_cap", +# format="$%g", +# help="USD", +# ), +# "sparkline_in_7d": st.column_config.LineChartColumn( +# "Last 7 days", +# help="Line chart for the last 7 days", +# ), +# +# }, +# hide_index=True +# ) \ No newline at end of file From 88d05849195980dcb1986eca08757c20ad8a83c5 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Fri, 19 Jul 2024 12:00:03 -0700 Subject: [PATCH 06/32] working on adding sign up button --- streamlit_app.py | 178 +++++++++++++++++++++++++---------------------- 1 file changed, 96 insertions(+), 82 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index b380f41..7b4d8e3 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -5,13 +5,16 @@ import json import requests + +# # Configures the default settings of the page. +st.set_page_config(page_title="crypto_api", layout="wide") # Streamlit login form st.title("Login") -username = st.text_input("Username") -password = st.text_input("Password", type="password") +username = st.sidebar.text_input("Username") +password = st.sidebar.text_input("Password", type="password") -if st.button("Login"): +if st.sidebar.button("Login"): response = requests.post("http://localhost:8000/token", data={"username": username, "password": password}) if response.status_code == 200: token = response.json().get("access_token") @@ -21,6 +24,8 @@ st.error("Login failed") if "token" in st.session_state: + st.markdown("### Logged in") + headers = {"Authorization": f"Bearer {st.session_state.token}"} response = requests.get("http://localhost:8000/users/me/", headers=headers) @@ -30,15 +35,24 @@ else: st.error("Unauthorized access") + if st.sidebar.button("Logout"): + del st.session_state.token + st.success("Logged out successfully!") + +else: + st.markdown("### Not logged in") + + st.sidebar.button("Sign up") + # -- UNCOMMENT EVERYTHING BELOW WHEN DONE TESTING -- ## -# MOCK_DATA = 'data/MOCK_DATA.json' +MOCK_DATA = 'data/MOCK_DATA.json' # # # Configures the default settings of the page. # st.set_page_config(page_title="crypto_api", layout="wide") # # -# st.title('My Cryptocurrency app') +st.title('My Cryptocurrency app') # # # @@ -60,80 +74,80 @@ # # st.write("App path: ", app_location) # # -# with open(MOCK_DATA, 'r') as file: -# data_dict = json.load(file) -# -# df = pd.DataFrame(data_dict) -# -# -# def dict_to_list(d): -# """ -# Helper function to convert column of dicts to column lists -# """ -# return d['price'] -# -# -# # Want to convert the sparklines from dicts to lists -# df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) -# -# # Add column of false values for favorite checkboxes -# df.insert(0, 'favorite', False) -# -# # data_dict = data_dict.iloc[:, 1:] # Drop db _id column -# columns_to_keep = [ -# 'favorite', -# 'market_cap_rank', -# 'image', -# 'id', -# 'current_price', -# 'price_change_percentage_24h', -# 'market_cap', -# 'sparkline_in_7d', -# ] -# -# # Only keep columns we care about -# df = df[columns_to_keep] -# -# # Only allow edits for favorite column, used int 'disabled' for data_editor -# columns_to_edit = ['favorite'] -# columns_all = df.columns.to_list() -# columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] -# -# -# st.data_editor( -# data=df, -# width=None, -# use_container_width=False, -# height=2000, -# disabled=columns_not_to_edit, -# column_config={ -# "favorite": st.column_config.CheckboxColumn( -# "Favorite?", -# help="Select your **favorite** currencies.", -# default=False -# ), -# "image": st.column_config.ImageColumn( -# "Icon", help="Icons for currencies" -# ), -# "current_price": st.column_config.NumberColumn( -# label="current_price", -# format='$%g', -# help="USD", -# ), -# "price_change_percentage_24h": st.column_config.NumberColumn( -# label="price_change_percentage_24h", -# format="%.2f%%", -# ), -# "market_cap": st.column_config.NumberColumn( -# label="market_cap", -# format="$%g", -# help="USD", -# ), -# "sparkline_in_7d": st.column_config.LineChartColumn( -# "Last 7 days", -# help="Line chart for the last 7 days", -# ), -# -# }, -# hide_index=True -# ) \ No newline at end of file +with open(MOCK_DATA, 'r') as file: + data_dict = json.load(file) + +df = pd.DataFrame(data_dict) + + +def dict_to_list(d): + """ + Helper function to convert column of dicts to column lists + """ + return d['price'] + + +# Want to convert the sparklines from dicts to lists +df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) + +# Add column of false values for favorite checkboxes +df.insert(0, 'favorite', False) + +# data_dict = data_dict.iloc[:, 1:] # Drop db _id column +columns_to_keep = [ + 'favorite', + 'market_cap_rank', + 'image', + 'id', + 'current_price', + 'price_change_percentage_24h', + 'market_cap', + 'sparkline_in_7d', +] + +# Only keep columns we care about +df = df[columns_to_keep] + +# Only allow edits for favorite column, used int 'disabled' for data_editor +columns_to_edit = ['favorite'] +columns_all = df.columns.to_list() +columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] + + +st.data_editor( + data=df, + width=None, + use_container_width=False, + height=2000, + disabled=columns_not_to_edit, + column_config={ + "favorite": st.column_config.CheckboxColumn( + "Favorite?", + help="Select your **favorite** currencies.", + default=False + ), + "image": st.column_config.ImageColumn( + "Icon", help="Icons for currencies" + ), + "current_price": st.column_config.NumberColumn( + label="current_price", + format='$%g', + help="USD", + ), + "price_change_percentage_24h": st.column_config.NumberColumn( + label="price_change_percentage_24h", + format="%.2f%%", + ), + "market_cap": st.column_config.NumberColumn( + label="market_cap", + format="$%g", + help="USD", + ), + "sparkline_in_7d": st.column_config.LineChartColumn( + "Last 7 days", + help="Line chart for the last 7 days", + ), + + }, + hide_index=True +) \ No newline at end of file From 173e2270234254549c1b446945095ff291d456e9 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Fri, 19 Jul 2024 14:49:53 -0700 Subject: [PATCH 07/32] sign in and sign up modal forms created and working --- crypto_api/database.py | 12 +++-- main.py | 50 ++++++++++++++++---- streamlit_app.py | 104 ++++++++++++++++++++++++++++------------- 3 files changed, 122 insertions(+), 44 deletions(-) diff --git a/crypto_api/database.py b/crypto_api/database.py index ed412cb..4e5d06e 100644 --- a/crypto_api/database.py +++ b/crypto_api/database.py @@ -84,11 +84,17 @@ def insert_user(email, first_name, last_name, username, password): print("Insert failed.") return False + except pymongo.errors.DuplicateKeyError as e: + # Handle duplicate key error specifically + print(f"Duplicate key error: {e}") + return "Duplicate key error" except pymongo.errors.PyMongoError as e: + # Handle other MongoDB errors print(f"An error occurred: {e}") - return False - finally: - db_client.close() + return "Database error" + # finally: + # # Close client if it's a local client + # db_client.close() def get_all_users(): diff --git a/main.py b/main.py index 57723e7..f0956be 100644 --- a/main.py +++ b/main.py @@ -1,11 +1,12 @@ -from fastapi import Depends, FastAPI, HTTPException, status +from typing import Annotated +from fastapi import Depends, FastAPI, HTTPException, status, Form from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm from pydantic import BaseModel from datetime import datetime, timedelta from jose import JWTError, jwt from passlib.context import CryptContext -from crypto_api.database import get_user +from crypto_api.database import get_user, insert_user SECRET_KEY = "123secretkey" ALGORITHM = "HS256" @@ -39,6 +40,11 @@ class User(BaseModel): disabled: bool or None = None +class SignUpResponse(BaseModel): + success: bool + message: str + + class UserInDB(User): hashed_password: str @@ -61,12 +67,6 @@ def get_password_hash(password): return pwd_context.hash(password) -# def get_user(db, username: str): -# if username in db: -# user_data = db[username] -# return UserInDB(**user_data) - - def get_user_db(username: str): user_data = get_user(username) return UserInDB(**user_data) @@ -143,6 +143,39 @@ async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends( return {"access_token": access_token, "token_type": "bearer"} +@app.post("/signup", response_model=SignUpResponse) +async def sign_up( + email: Annotated[str, Form()], + first_name: Annotated[str, Form()], + last_name: Annotated[str, Form()], + username: Annotated[str, Form()], + plain_password: Annotated[str, Form()], +): + try: + result = insert_user(email, first_name, last_name, username, plain_password) + if result == True: + return SignUpResponse(success=True, message="User successfully signed registered.") + elif result == "Duplicate key error": + raise HTTPException( + status_code=status.HTTP_409_CONFLICT, + detail="Email or username already registered." + ) + else: + raise HTTPException( + status_code=status.HTTP_500_INTERNAL_SERVER_ERROR, + detail="User registration failed due to a database error." + ) + except HTTPException as e: + # Re-raise HTTPException to return the correct status code + raise e + except Exception as e: + # Handle unexpected errors + raise HTTPException( + status_code=status.HTTP_500_INTERNAL_SERVER_ERROR, + detail=f"An unexpected error occurred: {str(e)}" + ) + + @app.get("/users/me/", response_model=User) # make sure to sign in via the "Authorize" button first async def read_users_me(current_user: User = Depends(get_current_active_user)): @@ -154,7 +187,6 @@ async def read_own_items(current_user: User = Depends(get_current_active_user)): return [{"item_id": 1, "owner": current_user}] - if __name__ == "__main__": test = get_user_db("taran50") print(test) \ No newline at end of file diff --git a/streamlit_app.py b/streamlit_app.py index 7b4d8e3..57d4ddd 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -11,38 +11,78 @@ # Streamlit login form st.title("Login") -username = st.sidebar.text_input("Username") -password = st.sidebar.text_input("Password", type="password") - -if st.sidebar.button("Login"): - response = requests.post("http://localhost:8000/token", data={"username": username, "password": password}) - if response.status_code == 200: - token = response.json().get("access_token") - st.session_state.token = token - st.success("Logged in successfully!") - else: - st.error("Login failed") - -if "token" in st.session_state: - st.markdown("### Logged in") - - headers = {"Authorization": f"Bearer {st.session_state.token}"} - response = requests.get("http://localhost:8000/users/me/", headers=headers) - - if response.status_code == 200: - data = response.json() - st.write(data) - else: - st.error("Unauthorized access") - - if st.sidebar.button("Logout"): - del st.session_state.token - st.success("Logged out successfully!") - -else: - st.markdown("### Not logged in") - - st.sidebar.button("Sign up") + + + +# if "token" in st.session_state: + # st.markdown("### Logged in") + # + # headers = {"Authorization": f"Bearer {st.session_state.token}"} + # response = requests.get("http://localhost:8000/users/me/", headers=headers) + + # if response.status_code == 200: + # data = response.json() + # st.write(data) + # else: + # st.error("Unauthorized access") + # + # if st.sidebar.button("Logout"): + # del st.session_state.token + # st.rerun() + # st.success("Logged out successfully!") + + + +with st.popover("Sign In"): + with st.form("Signin Form", clear_on_submit=True): + username = st.text_input("username") + plain_password = st.text_input("Password") + submitted = st.form_submit_button("Submit") + + response = requests.post("http://localhost:8000/token", data={"username": username, "password": plain_password}) + + if submitted: + if response.status_code == 200: + token = response.json().get("access_token") + st.session_state.token = token + if st.session_state.token: + st.success("Logged in successfully!") + else: + st.error("Login failed") + + +with st.popover("Sign Up"): + with st.form("Signup Form", clear_on_submit=True): + email = st.text_input("Email") + first_name = st.text_input("First Name") + last_name = st.text_input("Last Name") + username = st.text_input("Username") + plain_password = st.text_input("Password") + submitted = st.form_submit_button("Submit") + + response = requests.post("http://localhost:8000/signup", data={"email": email, "first_name": first_name, + "last_name": last_name, + "username": username, + "plain_password": plain_password, + }) + + if submitted: + if response.status_code == 200: + st.success("Successfully registered.") + + response = requests.post("http://localhost:8000/token", + data={"username": username, "password": plain_password}) + if submitted: + if response.status_code == 200: + token = response.json().get("access_token") + st.session_state.token = token + if st.session_state.token: + st.success("Logged in successfully!") + else: + st.error("Login failed") + + else: + st.error("Registration failed") # -- UNCOMMENT EVERYTHING BELOW WHEN DONE TESTING -- ## From 591f0daa25fe03f93f5d710672321178c6bb1056 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Fri, 19 Jul 2024 15:04:04 -0700 Subject: [PATCH 08/32] logout works now too --- streamlit_app.py | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index 57d4ddd..fb59f47 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -32,7 +32,6 @@ # st.success("Logged out successfully!") - with st.popover("Sign In"): with st.form("Signin Form", clear_on_submit=True): username = st.text_input("username") @@ -45,8 +44,7 @@ if response.status_code == 200: token = response.json().get("access_token") st.session_state.token = token - if st.session_state.token: - st.success("Logged in successfully!") + st.success("Logged in successfully!") else: st.error("Login failed") @@ -60,11 +58,14 @@ plain_password = st.text_input("Password") submitted = st.form_submit_button("Submit") - response = requests.post("http://localhost:8000/signup", data={"email": email, "first_name": first_name, - "last_name": last_name, - "username": username, - "plain_password": plain_password, - }) + response = requests.post(url="http://localhost:8000/signup", + data={"email": email, + "first_name": first_name, + "last_name": last_name, + "username": username, + "plain_password": plain_password, + } + ) if submitted: if response.status_code == 200: @@ -84,6 +85,16 @@ else: st.error("Registration failed") +if "token" in st.session_state: + with st.popover("Log out"): + with st.form("Logout Form"): + submitted = st.form_submit_button("Log out") + + if submitted: + st.success("Logged out successfully!") + del st.session_state.token + st.rerun() + # -- UNCOMMENT EVERYTHING BELOW WHEN DONE TESTING -- ## MOCK_DATA = 'data/MOCK_DATA.json' From aad9d13ad2c92ae9189b21fdbabbb17955e99368 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Fri, 19 Jul 2024 15:49:51 -0700 Subject: [PATCH 09/32] can now update each user's list of favorite currencies --- crypto_api/database.py | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/crypto_api/database.py b/crypto_api/database.py index 4e5d06e..53cf0e9 100644 --- a/crypto_api/database.py +++ b/crypto_api/database.py @@ -129,6 +129,16 @@ def insert_price_history(data): return price_history.insert_one(data) +# -- Favorites -- # +def insert_to_portfolio(username: str, add_to_favorites: list): + portfolios.update_one( + { "_id": username }, + { "$push": { "favorites": { "$each": add_to_favorites} } }, + upsert=True + ) + + +# -- Refreshing -- # def fetch_and_store_current_data(): """ replaces data in current_only collection in database with fresh data @@ -147,9 +157,6 @@ def fetch_and_store_current_data(): # schedule.every(5).minutes.do(fetch_and_store_current_data) - - - def save_to_file(file_name, data): with open(file_name, 'w') as file: json.dump(data, file, indent=2, default=str) @@ -196,11 +203,18 @@ def test_password_hash_2(): print("is correct ", is_correct) +def test_insert_to_portfolio(): + username = "taran50" + add_to_favorites = ['example 1', 'example 2'] + insert_to_portfolio(username, add_to_favorites) + + if __name__ == "__main__": # create_mock_data() - insert_mock_user() + # insert_mock_user() # test_get_all_users() # test_get_user() # test_password_hash() # test_password_hash_2() + test_insert_to_portfolio() From a75950e641f53599407cf43ad3c2f947d6a27226 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Fri, 19 Jul 2024 17:55:38 -0700 Subject: [PATCH 10/32] able to access user favorites at the front by pulling from backend --- crypto_api/database.py | 24 ++++++++++++++++++++-- main.py | 23 +++++++++++++++++++-- streamlit_app.py | 46 +++++++++++++++++------------------------- 3 files changed, 61 insertions(+), 32 deletions(-) diff --git a/crypto_api/database.py b/crypto_api/database.py index 53cf0e9..642e708 100644 --- a/crypto_api/database.py +++ b/crypto_api/database.py @@ -138,6 +138,20 @@ def insert_to_portfolio(username: str, add_to_favorites: list): ) +def get_user_portfolio(username: str): + """ + + :param username: + :return: {'favorites': ['example 1', 'example 2', ... ]} + """ + + favorites_data = portfolios.find_one( + { "_id": username }, + { "favorites": 1 , "_id": 0} + ) + return favorites_data + + # -- Refreshing -- # def fetch_and_store_current_data(): """ @@ -209,6 +223,12 @@ def test_insert_to_portfolio(): insert_to_portfolio(username, add_to_favorites) +def test_get_user_portfolio(): + username = "taran50" + print(get_user_portfolio(username)) + + + if __name__ == "__main__": # create_mock_data() # insert_mock_user() @@ -216,5 +236,5 @@ def test_insert_to_portfolio(): # test_get_user() # test_password_hash() # test_password_hash_2() - test_insert_to_portfolio() - + # test_insert_to_portfolio() + test_get_user_portfolio() diff --git a/main.py b/main.py index f0956be..ff01890 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,4 @@ -from typing import Annotated +from typing import Annotated, List from fastapi import Depends, FastAPI, HTTPException, status, Form from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm from pydantic import BaseModel @@ -6,7 +6,7 @@ from jose import JWTError, jwt from passlib.context import CryptContext -from crypto_api.database import get_user, insert_user +from crypto_api.database import get_user, insert_user, get_user_portfolio SECRET_KEY = "123secretkey" ALGORITHM = "HS256" @@ -23,6 +23,12 @@ # } # } +# -- Response Models -- # + + +class FavoritesResponse(BaseModel): + favorites: List[str] + class Token(BaseModel): access_token: str @@ -187,6 +193,19 @@ async def read_own_items(current_user: User = Depends(get_current_active_user)): return [{"item_id": 1, "owner": current_user}] +@app.get("/users/me/favorites") +async def read_favorites(current_user: User = Depends(get_current_active_user)): + """ + Retrieves the favorites field from the user's portfolio. + :param current_user: + :return: A list of favorite items. Returns an empty list if the user or the favorites field is not found. + """ + result = get_user_portfolio(current_user.username) + if result: + return result.get("favorites", []) + return [] + + if __name__ == "__main__": test = get_user_db("taran50") print(test) \ No newline at end of file diff --git a/streamlit_app.py b/streamlit_app.py index fb59f47..8939a2b 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -32,6 +32,8 @@ # st.success("Logged out successfully!") +# -- User Auth Portion of App -- # + with st.popover("Sign In"): with st.form("Signin Form", clear_on_submit=True): username = st.text_input("username") @@ -44,6 +46,8 @@ if response.status_code == 200: token = response.json().get("access_token") st.session_state.token = token + st.session_state.username = username + headers = {"Authorization": f"Bearer {st.session_state.token}"} st.success("Logged in successfully!") else: st.error("Login failed") @@ -77,6 +81,8 @@ if response.status_code == 200: token = response.json().get("access_token") st.session_state.token = token + st.session_state.username = username + headers = {"Authorization": f"Bearer {st.session_state.token}"} if st.session_state.token: st.success("Logged in successfully!") else: @@ -96,35 +102,19 @@ st.rerun() -# -- UNCOMMENT EVERYTHING BELOW WHEN DONE TESTING -- ## -MOCK_DATA = 'data/MOCK_DATA.json' -# -# # Configures the default settings of the page. -# st.set_page_config(page_title="crypto_api", layout="wide") -# -# +# if user is logged in get their favorites portfolio +if "token" in st.session_state and st.session_state.username: + st.write(st.session_state.token) + response = requests.get("http://localhost:8000/users/me/favorites", + data={"username": username}, + headers = {"Authorization": f"Bearer {st.session_state.token}"}) + data = response.json() + st.write(data) + +# -- Crypto portion of app -- # st.title('My Cryptocurrency app') -# -# -# - -# # -- User Auth -- # -# -# -# -# -# -# -# st_name = st.sidebar.text_input("Enter your name", 'John') -# # st.write(f'Hello {st_name}!') -# -# st.write("Hello", st_name, '!') -# -# # What path is the app located -# # app_location = os.getcwd() -# # st.write("App path: ", app_location) -# -# + +MOCK_DATA = 'data/MOCK_DATA.json' with open(MOCK_DATA, 'r') as file: data_dict = json.load(file) From fb049f5d473a3817358f54fc22e5aafc87055dc9 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Fri, 19 Jul 2024 19:37:59 -0700 Subject: [PATCH 11/32] changes to favorites list now interact with database live --- crypto_api/database.py | 15 ++++++++------- main.py | 10 +++++++++- streamlit_app.py | 43 +++++++++++++++++++++++++++++++----------- 3 files changed, 49 insertions(+), 19 deletions(-) diff --git a/crypto_api/database.py b/crypto_api/database.py index 642e708..fc102bc 100644 --- a/crypto_api/database.py +++ b/crypto_api/database.py @@ -130,10 +130,11 @@ def insert_price_history(data): # -- Favorites -- # -def insert_to_portfolio(username: str, add_to_favorites: list): +def update_portfolio(username: str, set_favorites: list): portfolios.update_one( { "_id": username }, - { "$push": { "favorites": { "$each": add_to_favorites} } }, + # { "$push": { "favorites": { "$each": add_to_favorites} } }, + {"$set": {"favorites": set_favorites}}, upsert=True ) @@ -217,10 +218,10 @@ def test_password_hash_2(): print("is correct ", is_correct) -def test_insert_to_portfolio(): +def test_update_portfolio(): username = "taran50" - add_to_favorites = ['example 1', 'example 2'] - insert_to_portfolio(username, add_to_favorites) + add_to_favorites = ['bitcoin', 'ethereum'] + update_portfolio(username, add_to_favorites) def test_get_user_portfolio(): @@ -236,5 +237,5 @@ def test_get_user_portfolio(): # test_get_user() # test_password_hash() # test_password_hash_2() - # test_insert_to_portfolio() - test_get_user_portfolio() + test_update_portfolio() + # test_get_user_portfolio() diff --git a/main.py b/main.py index ff01890..0cae30b 100644 --- a/main.py +++ b/main.py @@ -6,7 +6,7 @@ from jose import JWTError, jwt from passlib.context import CryptContext -from crypto_api.database import get_user, insert_user, get_user_portfolio +from crypto_api.database import get_user, insert_user, get_user_portfolio, update_portfolio SECRET_KEY = "123secretkey" ALGORITHM = "HS256" @@ -182,6 +182,14 @@ async def sign_up( ) +@app.post("/users/me/favorites/add") +async def set_favorites( + favorites: Annotated[list, Form()], + current_user: User = Depends(get_current_active_user), + ): + update_portfolio(username=current_user.username, set_favorites=favorites) + + @app.get("/users/me/", response_model=User) # make sure to sign in via the "Authorize" button first async def read_users_me(current_user: User = Depends(get_current_active_user)): diff --git a/streamlit_app.py b/streamlit_app.py index 8939a2b..9c3e94b 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -102,14 +102,7 @@ st.rerun() -# if user is logged in get their favorites portfolio -if "token" in st.session_state and st.session_state.username: - st.write(st.session_state.token) - response = requests.get("http://localhost:8000/users/me/favorites", - data={"username": username}, - headers = {"Authorization": f"Bearer {st.session_state.token}"}) - data = response.json() - st.write(data) + # -- Crypto portion of app -- # st.title('My Cryptocurrency app') @@ -134,6 +127,16 @@ def dict_to_list(d): # Add column of false values for favorite checkboxes df.insert(0, 'favorite', False) +# if user is logged in set favorites to match their portfolio +if "token" in st.session_state and st.session_state.username: + # st.write(st.session_state.token) + response = requests.get("http://localhost:8000/users/me/favorites", + data={"username": username}, + headers={"Authorization": f"Bearer {st.session_state.token}"}) + favorites = response.json() + # st.write(favorites) + df['favorite'] = df['id'].apply(lambda x: 1 if x in favorites else 0) + # data_dict = data_dict.iloc[:, 1:] # Drop db _id column columns_to_keep = [ 'favorite', @@ -154,8 +157,10 @@ def dict_to_list(d): columns_all = df.columns.to_list() columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] +if st.button("Save Favorites"): + st.rerun() -st.data_editor( +edited_df = st.data_editor( data=df, width=None, use_container_width=False, @@ -190,5 +195,21 @@ def dict_to_list(d): ), }, - hide_index=True -) \ No newline at end of file + hide_index=True, + # on_change=st.rerun() +) + +updated_favorites = edited_df.loc[edited_df['favorite'] == 1, 'id'] +updated_favorites_list = updated_favorites.squeeze().tolist() + +st.write(type(updated_favorites_list)) +st.write(updated_favorites_list) + + +if "token" in st.session_state and st.session_state.username: + # st.write(st.session_state.token) + response = requests.post("http://localhost:8000/users/me/favorites/add", + data={"favorites": updated_favorites_list, "username": username, }, + # data={"favorites": ['example1', 'example2'], "username": username, }, + headers={"Authorization": f"Bearer {st.session_state.token}"}) + From fc934c89470b3f4357c042d3bed8a67cfc87bc88 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Fri, 19 Jul 2024 19:49:05 -0700 Subject: [PATCH 12/32] variable name changes --- streamlit_app.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index 9c3e94b..db3c863 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -157,7 +157,7 @@ def dict_to_list(d): columns_all = df.columns.to_list() columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] -if st.button("Save Favorites"): +if st.button("Save Selected Favorites"): st.rerun() edited_df = st.data_editor( @@ -168,7 +168,7 @@ def dict_to_list(d): disabled=columns_not_to_edit, column_config={ "favorite": st.column_config.CheckboxColumn( - "Favorite?", + "Select Favorites", help="Select your **favorite** currencies.", default=False ), @@ -202,8 +202,6 @@ def dict_to_list(d): updated_favorites = edited_df.loc[edited_df['favorite'] == 1, 'id'] updated_favorites_list = updated_favorites.squeeze().tolist() -st.write(type(updated_favorites_list)) -st.write(updated_favorites_list) if "token" in st.session_state and st.session_state.username: From 286c728fd9557ca6c02941d1bd87565c5b742fec Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Fri, 19 Jul 2024 21:24:46 -0700 Subject: [PATCH 13/32] app is now fully using db data --- crypto_api/database.py | 31 +++++++++++++++++++++---------- main.py | 14 +++++++++++++- streamlit_app.py | 19 ++++++++++++------- 3 files changed, 46 insertions(+), 18 deletions(-) diff --git a/crypto_api/database.py b/crypto_api/database.py index fc102bc..b73327f 100644 --- a/crypto_api/database.py +++ b/crypto_api/database.py @@ -108,9 +108,6 @@ def get_user(username): return users.find_one({"username": username}) - - - # -- Cryptocurrencies -- # def insert_cryptocurrency(data): @@ -125,6 +122,15 @@ def get_all_cryptocurrencies(): return cryptocurrencies.find() +def get_all_current_only(): + cursor = current_only.find( + {}, + { "_id": 0}, + ) + documents = list(cursor) + return documents + + def insert_price_history(data): return price_history.insert_one(data) @@ -154,22 +160,26 @@ def get_user_portfolio(username: str): # -- Refreshing -- # -def fetch_and_store_current_data(): +def update_current_only_data(): """ replaces data in current_only collection in database with fresh data :return: """ + print("Inside fetch_and_store") # Clear collection + # print(get_all_records(current_only)) current_only.delete_many({}) + # print(get_all_records(current_only)) # Get new data from api market_data = cg_client.get_cryptocurrencies(sparkline=True) - print(market_data) + # print(market_data) # Insert new data into collection current_only.insert_many(market_data) + # print(get_all_records(current_only)) -# schedule.every(5).minutes.do(fetch_and_store_current_data) +# schedule.every(5).minutes.do(update_current_only_data) def save_to_file(file_name, data): @@ -179,9 +189,9 @@ def save_to_file(file_name, data): # -- Testing -- # def create_mock_data(): - fetch_and_store_current_data() + update_current_only_data() currencies = get_all_records(current_only) - save_to_file("../src/MOCK_DATA.json", currencies) + save_to_file("../data/MOCK_DATA_2.json", currencies) def insert_mock_user(): @@ -229,13 +239,14 @@ def test_get_user_portfolio(): print(get_user_portfolio(username)) - if __name__ == "__main__": + print(get_all_current_only()) + # update_current_only_data() # create_mock_data() # insert_mock_user() # test_get_all_users() # test_get_user() # test_password_hash() # test_password_hash_2() - test_update_portfolio() + # test_update_portfolio() # test_get_user_portfolio() diff --git a/main.py b/main.py index 0cae30b..07564af 100644 --- a/main.py +++ b/main.py @@ -6,7 +6,8 @@ from jose import JWTError, jwt from passlib.context import CryptContext -from crypto_api.database import get_user, insert_user, get_user_portfolio, update_portfolio +from crypto_api.database import (get_user, insert_user, get_user_portfolio, update_portfolio, update_current_only_data, + get_all_current_only) SECRET_KEY = "123secretkey" ALGORITHM = "HS256" @@ -190,6 +191,17 @@ async def set_favorites( update_portfolio(username=current_user.username, set_favorites=favorites) +@app.post("/crypto/current_only/update_db") +async def current_only_update_db(): + update_current_only_data() + + +@app.get("/crypto/current_only/from_db") +async def current_only_from_db(): + data = get_all_current_only() + return data + + @app.get("/users/me/", response_model=User) # make sure to sign in via the "Authorize" button first async def read_users_me(current_user: User = Depends(get_current_active_user)): diff --git a/streamlit_app.py b/streamlit_app.py index db3c863..ba78e93 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -107,11 +107,16 @@ # -- Crypto portion of app -- # st.title('My Cryptocurrency app') -MOCK_DATA = 'data/MOCK_DATA.json' -with open(MOCK_DATA, 'r') as file: - data_dict = json.load(file) -df = pd.DataFrame(data_dict) +# Use Test Data +# MOCK_DATA = 'data/MOCK_DATA.json' +# with open(MOCK_DATA, 'r') as file: +# data = json.load(file) + +# Use Data from DB +response = requests.get("http://localhost:8000/crypto/current_only/from_db") +data = response.json() +df = pd.DataFrame(data) def dict_to_list(d): @@ -121,10 +126,10 @@ def dict_to_list(d): return d['price'] -# Want to convert the sparklines from dicts to lists +# Convert the sparklines from dicts to lists df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) -# Add column of false values for favorite checkboxes +# Default values for favorites df.insert(0, 'favorite', False) # if user is logged in set favorites to match their portfolio @@ -137,7 +142,7 @@ def dict_to_list(d): # st.write(favorites) df['favorite'] = df['id'].apply(lambda x: 1 if x in favorites else 0) -# data_dict = data_dict.iloc[:, 1:] # Drop db _id column +# Columns to display in data_editor columns_to_keep = [ 'favorite', 'market_cap_rank', From a7d951293a4a587b924b6f77467e73d1ec7a355a Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Fri, 19 Jul 2024 21:36:42 -0700 Subject: [PATCH 14/32] sorting display to show favorites at the top --- streamlit_app.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/streamlit_app.py b/streamlit_app.py index ba78e93..b7d3259 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -157,6 +157,9 @@ def dict_to_list(d): # Only keep columns we care about df = df[columns_to_keep] +# Sort by favorites and market_cap_rank for default +df = df.sort_values(by=['favorite', 'market_cap_rank'], ascending=[False, True]) + # Only allow edits for favorite column, used int 'disabled' for data_editor columns_to_edit = ['favorite'] columns_all = df.columns.to_list() From e556a13dc71757d33ef3b7f0cb5bccf449cdcdd9 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Mon, 22 Jul 2024 20:06:29 -0700 Subject: [PATCH 15/32] connecting to cloud database --- env/.env | 3 +++ remote_db_test.py | 35 +++++++++++++++++++++++++++++++++++ streamlit_app.py | 32 +++++--------------------------- 3 files changed, 43 insertions(+), 27 deletions(-) create mode 100644 remote_db_test.py diff --git a/env/.env b/env/.env index fc5ec03..f44c4e2 100644 --- a/env/.env +++ b/env/.env @@ -1,4 +1,7 @@ API_KEY = CG-EZs9uG6mk8NzWQynCABzxxh4 MONGO_URI = mongodb://localhost:27017/ +atlas_uri = "mongodb+srv://taran:@cluster0.83a7lsv.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0" +atlas_username = taran +atlas_password = erQBFNiwzV88zX4J DATABASE_NAME = crypto_api_db JWT_SECRET_KEY = replace_this_key \ No newline at end of file diff --git a/remote_db_test.py b/remote_db_test.py new file mode 100644 index 0000000..19f0b97 --- /dev/null +++ b/remote_db_test.py @@ -0,0 +1,35 @@ +from pymongo.mongo_client import MongoClient +from pymongo.server_api import ServerApi + +import pymongo + +import os +from dotenv import load_dotenv +current_dir = os.path.dirname(__file__) +dotenv_path = os.path.join(current_dir, 'env', '.env') +load_dotenv(dotenv_path) + +DB_USERNAME = os.getenv('atlas_username') +DB_PASSWORD = os.getenv('atlas_password') + + +uri = f"mongodb+srv://{DB_USERNAME}:{DB_PASSWORD}@cluster0.83a7lsv.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0" +# Create a new client and connect to the server +client = MongoClient(uri, server_api=ServerApi('1')) +# Send a ping to confirm a successful connection +try: + client.admin.command('ping') + print("Pinged your deployment. You successfully connected to MongoDB!") +except Exception as e: + print(e) + + +try: + print('trying to grab example data') + db = client.get_database('sample_analytics') + customers = db['customers'] + data = customers.find_one() + print(data) +except Exception as e: + print(e) + diff --git a/streamlit_app.py b/streamlit_app.py index b7d3259..aa866e5 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -12,28 +12,7 @@ st.title("Login") - - -# if "token" in st.session_state: - # st.markdown("### Logged in") - # - # headers = {"Authorization": f"Bearer {st.session_state.token}"} - # response = requests.get("http://localhost:8000/users/me/", headers=headers) - - # if response.status_code == 200: - # data = response.json() - # st.write(data) - # else: - # st.error("Unauthorized access") - # - # if st.sidebar.button("Logout"): - # del st.session_state.token - # st.rerun() - # st.success("Logged out successfully!") - - # -- User Auth Portion of App -- # - with st.popover("Sign In"): with st.form("Signin Form", clear_on_submit=True): username = st.text_input("username") @@ -102,18 +81,17 @@ st.rerun() - - # -- Crypto portion of app -- # st.title('My Cryptocurrency app') - - -# Use Test Data +# Using Test Data # MOCK_DATA = 'data/MOCK_DATA.json' # with open(MOCK_DATA, 'r') as file: # data = json.load(file) -# Use Data from DB +# Update DB data +requests.post("http://localhost:8000/crypto/current_only/update_db") + +# Using Data from DB response = requests.get("http://localhost:8000/crypto/current_only/from_db") data = response.json() df = pd.DataFrame(data) From ee2bd0c21cc98f5bb1482eebffe04c51b5066e4f Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Mon, 22 Jul 2024 20:21:17 -0700 Subject: [PATCH 16/32] preparing env values for cloud --- env/.env | 19 +++++++++++++++---- main.py | 19 +++++++++++++++++-- 2 files changed, 32 insertions(+), 6 deletions(-) diff --git a/env/.env b/env/.env index f44c4e2..42e4f41 100644 --- a/env/.env +++ b/env/.env @@ -1,7 +1,18 @@ +; coingecko key API_KEY = CG-EZs9uG6mk8NzWQynCABzxxh4 + +; localhost db MONGO_URI = mongodb://localhost:27017/ -atlas_uri = "mongodb+srv://taran:@cluster0.83a7lsv.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0" -atlas_username = taran -atlas_password = erQBFNiwzV88zX4J DATABASE_NAME = crypto_api_db -JWT_SECRET_KEY = replace_this_key \ No newline at end of file + +; cloud db +ATLAS_URI = "mongodb+srv://taran:@cluster0.83a7lsv.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0" +ATLAS_USERNAME = taran +ATLAS_PASSWORD = erQBFNiwzV88zX4J +ATLAS_DB_NAME = crypto_db + + +; encryption +; JWT_SECRET_KEY = replace_this_key +SECRET_KEY = "123secretkey" +ALGORITHM = "HS256" \ No newline at end of file diff --git a/main.py b/main.py index 07564af..6b83a75 100644 --- a/main.py +++ b/main.py @@ -5,14 +5,29 @@ from datetime import datetime, timedelta from jose import JWTError, jwt from passlib.context import CryptContext +import os + + from crypto_api.database import (get_user, insert_user, get_user_portfolio, update_portfolio, update_current_only_data, get_all_current_only) -SECRET_KEY = "123secretkey" -ALGORITHM = "HS256" + + +from dotenv import load_dotenv +current_dir = os.path.dirname(__file__) +dotenv_path = os.path.join(current_dir, 'env', '.env') +load_dotenv(dotenv_path) + +SECRET_KEY = os.getenv('SECRET_KEY') +ALGORITHM = os.getenv('ALGORITHM') ACCESS_TOKEN_EXPIRE_MINUTES = 30 + +# SECRET_KEY = "123secretkey" +# ALGORITHM = "HS256" +# ACCESS_TOKEN_EXPIRE_MINUTES = 30 + # fake_db # db = { # "tim": { From 35f2e1fe6d7a9dc31e4af16099a044df9074ba98 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Mon, 22 Jul 2024 20:43:15 -0700 Subject: [PATCH 17/32] using cloud db to sign users in and update crypto data --- crypto_api/database.py | 8 ++++---- env/.env | 12 ++++++------ main.py | 30 ++++++++++-------------------- 3 files changed, 20 insertions(+), 30 deletions(-) diff --git a/crypto_api/database.py b/crypto_api/database.py index b73327f..0bf6825 100644 --- a/crypto_api/database.py +++ b/crypto_api/database.py @@ -19,8 +19,8 @@ load_dotenv(dotenv_path) API_KEY = os.getenv('API_KEY') -MONGO_URI = os.getenv('MONGO_URI') -DATABASE_NAME = os.getenv('DATABASE_NAME') +MONGO_URI = os.getenv('ATLAS_URI') +DATABASE_NAME = os.getenv('ATLAS_DB_NAME') # MongoDB connection @@ -240,10 +240,10 @@ def test_get_user_portfolio(): if __name__ == "__main__": - print(get_all_current_only()) + # print(get_all_current_only()) # update_current_only_data() # create_mock_data() - # insert_mock_user() + insert_mock_user() # test_get_all_users() # test_get_user() # test_password_hash() diff --git a/env/.env b/env/.env index 42e4f41..1de911b 100644 --- a/env/.env +++ b/env/.env @@ -1,18 +1,18 @@ -; coingecko key +# coingecko key API_KEY = CG-EZs9uG6mk8NzWQynCABzxxh4 -; localhost db +# localhost db MONGO_URI = mongodb://localhost:27017/ DATABASE_NAME = crypto_api_db -; cloud db -ATLAS_URI = "mongodb+srv://taran:@cluster0.83a7lsv.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0" +# cloud db +ATLAS_URI = "mongodb+srv://taran:erQBFNiwzV88zX4J@cluster0.83a7lsv.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0" ATLAS_USERNAME = taran ATLAS_PASSWORD = erQBFNiwzV88zX4J ATLAS_DB_NAME = crypto_db -; encryption -; JWT_SECRET_KEY = replace_this_key +# encryption +# JWT_SECRET_KEY = replace_this_key SECRET_KEY = "123secretkey" ALGORITHM = "HS256" \ No newline at end of file diff --git a/main.py b/main.py index 6b83a75..ef180ef 100644 --- a/main.py +++ b/main.py @@ -8,40 +8,29 @@ import os - from crypto_api.database import (get_user, insert_user, get_user_portfolio, update_portfolio, update_current_only_data, get_all_current_only) - from dotenv import load_dotenv current_dir = os.path.dirname(__file__) dotenv_path = os.path.join(current_dir, 'env', '.env') load_dotenv(dotenv_path) + +# -- DB Connections -- # +# Cloud db SECRET_KEY = os.getenv('SECRET_KEY') ALGORITHM = os.getenv('ALGORITHM') ACCESS_TOKEN_EXPIRE_MINUTES = 30 - +# Local db # SECRET_KEY = "123secretkey" # ALGORITHM = "HS256" # ACCESS_TOKEN_EXPIRE_MINUTES = 30 -# fake_db -# db = { -# "tim": { -# "username": "tim", -# "full_name": "Tim Lau", -# "email": "Tim@gmail.com", -# "hashed_password": "$2b$12$jNs9VEELX9MxVTKXmVvsTuSzrnXAi7EbrQo675SaWBUxqW90grLs6", -# "disabled": False, -# } -# } # -- Response Models -- # - - class FavoritesResponse(BaseModel): favorites: List[str] @@ -71,16 +60,16 @@ class UserInDB(User): hashed_password: str -pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") -oath2_scheme = OAuth2PasswordBearer(tokenUrl="token") - - - app = FastAPI() # to start app run following command in terminal: # uvicorn main:app --reload +# -- Encryption and User Auth -- # +pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") +oath2_scheme = OAuth2PasswordBearer(tokenUrl="token") + + def verify_password(plain_password, hashed_password): return pwd_context.verify(plain_password, hashed_password) @@ -147,6 +136,7 @@ async def get_current_active_user(current_user: UserInDB = Depends(get_current_u return current_user +# -- Routes -- # @app.post("/token", response_model=Token) async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends()): user = authenticate_user(form_data.username, form_data.password) From a93e740edff78a6975aa7768e443c16c9d523c8f Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Mon, 22 Jul 2024 21:12:34 -0700 Subject: [PATCH 18/32] deleted dev files. Preparing to host on Render --- config/__init__.py | 0 config/config.py | 0 crypto_api/current_only_gui.py | 6 - crypto_api/routes.py | 66 - data/MOCK_DATA.json | 20171 ----- data/bitcoin_data.json | 4868 -- data/bitcoin_historic_data.json | 265 - data/bitcoin_recent_data.json | 3464 - data/bitcoin_ticker.json | 3205 - data/coins.json | 69202 ----------------- data/exchanges.json | 4226 - data/market_data.json | 2866 - data/market_list.json | 90 - data/trending_data.json | 1946 - get_data.py | 0 main.py | 3 + my_api_key | 1 - remote_db_test.py | 35 - scratch_scripts/data_base_scratch_1.py | 14 - scratch_scripts/data_base_scratch_2.py | 0 scratch_scripts/enviroment_vars_scratch_1.py | 15 - scratch_scripts/reading_through_docs.py | 364 - setup.py | 0 tests/__init__.py | 0 tests/test_database_1.py | 52 - 25 files changed, 3 insertions(+), 110856 deletions(-) delete mode 100644 config/__init__.py delete mode 100644 config/config.py delete mode 100644 crypto_api/current_only_gui.py delete mode 100644 crypto_api/routes.py delete mode 100644 data/MOCK_DATA.json delete mode 100644 data/bitcoin_data.json delete mode 100644 data/bitcoin_historic_data.json delete mode 100644 data/bitcoin_recent_data.json delete mode 100644 data/bitcoin_ticker.json delete mode 100644 data/coins.json delete mode 100644 data/exchanges.json delete mode 100644 data/market_data.json delete mode 100644 data/market_list.json delete mode 100644 data/trending_data.json delete mode 100644 get_data.py delete mode 100644 my_api_key delete mode 100644 remote_db_test.py delete mode 100644 scratch_scripts/data_base_scratch_1.py delete mode 100644 scratch_scripts/data_base_scratch_2.py delete mode 100644 scratch_scripts/enviroment_vars_scratch_1.py delete mode 100644 scratch_scripts/reading_through_docs.py delete mode 100644 setup.py delete mode 100644 tests/__init__.py delete mode 100644 tests/test_database_1.py diff --git a/config/__init__.py b/config/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/config/config.py b/config/config.py deleted file mode 100644 index e69de29..0000000 diff --git a/crypto_api/current_only_gui.py b/crypto_api/current_only_gui.py deleted file mode 100644 index 4a55522..0000000 --- a/crypto_api/current_only_gui.py +++ /dev/null @@ -1,6 +0,0 @@ -from nicegui import ui -from crypto_api import database - -currencies = database.get_all_records(database.current_only) - - diff --git a/crypto_api/routes.py b/crypto_api/routes.py deleted file mode 100644 index 4bab6e8..0000000 --- a/crypto_api/routes.py +++ /dev/null @@ -1,66 +0,0 @@ -from bson import ObjectId -from fastapi import FastAPI, HTTPException -from crypto_api import database -from fastapi.encoders import jsonable_encoder -from pydantic import BaseModel -from typing import List - - -app = FastAPI() - - -class CryptoCurrency(BaseModel): - name: str - symbol: str - image_url: str - - -# Example endpoint to get cryptocurrency by ID -@app.get('/api/cryptocurrency/{crypto_id}') -async def get_cryptocurrency(crypto_id: str): - # Convert crypto_id to ObjectId if needed (example assuming MongoDB) - try: - crypto_data = database.get_cryptocurrency_by_id(ObjectId(crypto_id)) - # Convert ObjectId to string for JSON serialization - crypto_data['_id'] = str(crypto_data['_id']) - print(f'crypto_data: {crypto_data}') - except Exception as e: - raise HTTPException(status_code=404, detail="Cryptocurrency not found") - - if crypto_data: - return crypto_data - else: - raise HTTPException(status_code=404, detail="Cryptocurrency not found") - - -@app.get('/api/cryptocurrencies') -async def get_all_cryptocurrencies(): - all_cryptocurrencies = [] - collection = database.get_all_cryptocurrencies() - for item in collection: - all_cryptocurrencies.append(CryptoCurrency(**item)) - if not all_cryptocurrencies: - raise HTTPException(status_code=404, detail="No items found") - return all_cryptocurrencies - - -@app.post('/api/cryptocurrency') -async def insert_cryptocurrency(crypto_currency: CryptoCurrency): - crypto_data = crypto_currency.dict() - result = database.insert_cryptocurrency(crypto_data) - if result: - return {"message": "Cryptocurrency created successfully"} - else: - raise HTTPException(status_code=500, detail="Failed to create cryptocurrency") - - -@app.get('/api/test') -async def test_endpoint(): - return {"message": "FastAPI is working!"} - - -# Run the application if this script is executed directly -# RUN THIS IN TERMINAL: uvicorn crypto_api.routes:app --host 127.0.0.1 --port 8000 -if __name__ == "__main__": - import uvicorn - uvicorn.run(app, host="127.0.0.1", port=8000) \ No newline at end of file diff --git a/data/MOCK_DATA.json b/data/MOCK_DATA.json deleted file mode 100644 index 8c0edaf..0000000 --- a/data/MOCK_DATA.json +++ /dev/null @@ -1,20171 +0,0 @@ -[ - { - "_id": "666b1cc59f53aa7ab39492d6", - "id": "bitcoin", - "symbol": "btc", - "name": "Bitcoin", - "image": "https://coin-images.coingecko.com/coins/images/1/large/bitcoin.png?1696501400", - "current_price": 66628, - "market_cap": 1313764378887, - "market_cap_rank": 1, - "fully_diluted_valuation": 1399621422454, - "total_volume": 37484399816, - "high_24h": 69847, - "low_24h": 66426, - "price_change_24h": -3035.57598413284, - "price_change_percentage_24h": -4.3575, - "market_cap_change_24h": -59860724894.42139, - "market_cap_change_percentage_24h": -4.35786, - "circulating_supply": 19711796.0, - "total_supply": 21000000.0, - "max_supply": 21000000.0, - "ath": 73738, - "ath_change_percentage": -9.99743, - "ath_date": "2024-03-14T07:10:36.635Z", - "atl": 67.81, - "atl_change_percentage": 97772.01749, - "atl_date": "2013-07-06T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:27.297Z", - "sparkline_in_7d": { - "price": [ - 71085.53126834088, - 71173.32805060249, - 71207.59435524222, - 71469.15438887932, - 71238.06260323075, - 70768.22344988026, - 71138.39580214774, - 71069.18929010618, - 70429.80683094825, - 70730.16396597322, - 70704.28903677444, - 70897.66575927468, - 70773.74598776827, - 70858.3516640106, - 70863.98433867987, - 70823.64754475745, - 71094.45975791331, - 71218.7556793813, - 71336.03392792157, - 71280.68092471165, - 71095.85098124442, - 71080.68182932476, - 71273.51614831026, - 71327.90048172572, - 71643.88933000261, - 71186.33669913492, - 71355.1403021001, - 71341.85799237363, - 70950.07816989005, - 70768.04687954747, - 69678.62142097896, - 69123.85740127321, - 69096.92925087264, - 69228.75408533507, - 69218.12095730139, - 69461.03394002216, - 69260.21173528439, - 69382.28142333424, - 69425.41471694803, - 69409.18581526849, - 69392.79120773365, - 69308.10284340921, - 69288.12202319676, - 69308.1573604734, - 69503.48114691078, - 69391.17587185616, - 69422.0549280154, - 69432.25588125558, - 69258.72930891113, - 69337.60341855812, - 69410.6900283224, - 69443.1469916804, - 69405.63763463982, - 69361.46134430173, - 69439.96089497658, - 69487.75689863384, - 69449.81437968381, - 69359.75273517056, - 69396.27529521167, - 69311.00170202478, - 69305.38413230315, - 69271.82967363774, - 69294.7352566043, - 69189.27484588115, - 69255.12336023682, - 69268.84907656063, - 69301.42826402026, - 69402.31338469898, - 69288.40380070929, - 69341.41547524066, - 69358.75947957805, - 69355.05403630743, - 69359.77053101533, - 69739.25483618052, - 69464.54727961162, - 69489.02263323929, - 69512.58598901884, - 69636.44792486633, - 69658.46681164297, - 69737.12919334027, - 69649.06870027601, - 69681.23501022052, - 69705.3147840307, - 69616.31203554032, - 69600.84597186842, - 69556.82634403778, - 69601.3025268636, - 69699.90448151037, - 69593.50742064392, - 69668.47016488576, - 69532.87864605538, - 69400.28705440945, - 69371.00641265, - 69384.4040382232, - 69425.34660664776, - 69432.85832587274, - 69407.0113316572, - 69284.76519309687, - 69330.06966003006, - 69642.34736119978, - 70026.23809524855, - 69968.38351995572, - 69934.87931158906, - 69829.51073238786, - 69475.94363136594, - 69640.9896417372, - 69561.62253408604, - 69423.4148910535, - 69520.05675455675, - 69395.59653070327, - 68827.08484158927, - 68213.80907831456, - 68330.4618363228, - 68013.57309307026, - 67920.32667797514, - 67650.89683227673, - 67524.03717788108, - 67484.76797541087, - 67086.01859024228, - 66844.25684843837, - 66814.40984036, - 66810.50640112838, - 66846.88705655902, - 66758.62077298097, - 66254.14061582841, - 66474.94542818003, - 66830.13875787533, - 67230.3700391561, - 67431.20073597411, - 67227.8746725209, - 67397.0999298549, - 67466.83152899473, - 67336.41055827447, - 67171.5388816894, - 67160.23533723527, - 67414.173786596, - 67434.90403570062, - 67396.24856877846, - 67278.74840126628, - 67272.5695891375, - 67440.38268459926, - 67358.17998505192, - 67636.13241496615, - 67993.04494689683, - 67715.6077126721, - 69340.41314522336, - 69297.52737419421, - 69945.14621307769, - 69790.07963852314, - 69626.23070267307, - 69823.7294495425, - 68832.9155346005, - 67535.69694984893, - 68179.72245168686, - 68541.90232619926, - 68290.58767446288, - 68250.38321594121, - 68321.9049609974, - 68024.77996346737, - 67661.7799275531, - 67631.34568285926, - 67367.55758142112, - 67595.67645197612, - 67507.75592997254, - 67722.72066980373, - 67562.60288421059, - 67431.86283458596, - 67864.29441928043 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492d7", - "id": "ethereum", - "symbol": "eth", - "name": "Ethereum", - "image": "https://coin-images.coingecko.com/coins/images/279/large/ethereum.png?1696501628", - "current_price": 3449.41, - "market_cap": 414608260131, - "market_cap_rank": 2, - "fully_diluted_valuation": 414608260131, - "total_volume": 17874691109, - "high_24h": 3621.25, - "low_24h": 3434.52, - "price_change_24h": -170.55049849068928, - "price_change_percentage_24h": -4.71139, - "market_cap_change_24h": -20109415412.648743, - "market_cap_change_percentage_24h": -4.62586, - "circulating_supply": 120152589.951489, - "total_supply": 120152589.951489, - "max_supply": null, - "ath": 4878.26, - "ath_change_percentage": -29.58868, - "ath_date": "2021-11-10T14:24:19.604Z", - "atl": 0.432979, - "atl_change_percentage": 793206.08204, - "atl_date": "2015-10-20T00:00:00.000Z", - "roi": { - "times": 68.25932842474292, - "currency": "btc", - "percentage": 6825.932842474292 - }, - "last_updated": "2024-06-13T16:12:45.416Z", - "sparkline_in_7d": { - "price": [ - 3850.719196989676, - 3841.5885900681915, - 3837.2819527075408, - 3843.118056758693, - 3839.949492912661, - 3832.5364418067506, - 3830.7904042307423, - 3833.1602776214095, - 3786.1610453824105, - 3798.925397369809, - 3799.5581756013744, - 3809.173942080789, - 3812.0377994069945, - 3807.0104867513605, - 3806.511202508232, - 3799.523095178337, - 3806.4933889349318, - 3816.030684853944, - 3817.6401957964167, - 3815.421535814782, - 3815.826541051245, - 3810.0330179709804, - 3811.255412858479, - 3808.382640274494, - 3844.3984021157626, - 3786.2734299795065, - 3809.8341901435087, - 3813.4925270312983, - 3797.3490049786437, - 3778.5388732443294, - 3725.027099040289, - 3677.175352929016, - 3676.6884174028, - 3692.45678408744, - 3689.129115514381, - 3691.5721576442434, - 3678.1256843787687, - 3685.182235047298, - 3688.7793642512233, - 3686.071092553386, - 3686.588913240838, - 3677.0551237450873, - 3681.294674101118, - 3683.9365655980123, - 3708.692270497185, - 3695.0218024503874, - 3693.6751863703557, - 3694.996001372199, - 3684.5698206476377, - 3681.6608572935384, - 3682.864428772828, - 3694.772002485206, - 3686.735731572639, - 3682.2900172561476, - 3685.9522983680204, - 3691.698774366973, - 3682.596518856575, - 3670.970531008336, - 3678.072826550999, - 3675.450445904108, - 3679.973464571686, - 3679.899412104622, - 3681.7077212920867, - 3670.197790589913, - 3674.050025817919, - 3672.939493761998, - 3681.702538632289, - 3689.1884020931416, - 3685.6729255343184, - 3687.676084840575, - 3689.1296639840884, - 3687.586667225691, - 3692.435003679762, - 3706.116425405577, - 3689.0401398390786, - 3692.3899243333017, - 3690.4076173005205, - 3698.734244856525, - 3700.0392534600883, - 3706.0025623263627, - 3701.0402764672235, - 3699.9331619395352, - 3712.7727295492964, - 3706.536529758592, - 3705.988099499812, - 3695.0563047953046, - 3691.24585070036, - 3689.969541399155, - 3682.563645911587, - 3688.462914483765, - 3683.1058626893287, - 3670.227093930465, - 3654.864974432358, - 3667.4953602154364, - 3672.1688154695566, - 3674.938996382594, - 3673.498171630861, - 3671.9268046146985, - 3670.6584055600606, - 3679.002483146653, - 3701.971297988615, - 3686.939602409292, - 3695.817452423995, - 3685.8683358645953, - 3663.847917444406, - 3672.658026859438, - 3671.778245346204, - 3673.1333803076677, - 3667.6961000436036, - 3661.5161710373213, - 3604.5375327937386, - 3600.628360394358, - 3590.2986433203127, - 3563.966679335961, - 3559.490464356457, - 3536.406772201946, - 3527.91881858646, - 3532.2382030417452, - 3520.5336240614297, - 3524.7179031228534, - 3524.654022532719, - 3533.93130640169, - 3525.782190408578, - 3513.047467781244, - 3448.293048627973, - 3452.6776119222823, - 3472.994261645385, - 3491.993089702245, - 3495.2163466905217, - 3486.2369585342612, - 3502.0119637210933, - 3504.6349838176993, - 3501.0155359942314, - 3491.74990355875, - 3478.9916069295605, - 3498.45178780966, - 3510.5272854167924, - 3515.89070284712, - 3508.8406158899725, - 3516.0557596501594, - 3525.5247179666035, - 3520.2157001120427, - 3540.0965248694924, - 3544.489069312293, - 3534.9600347223204, - 3640.094013333202, - 3615.2646241353186, - 3636.6553272384813, - 3620.5387435416155, - 3617.8200836689616, - 3621.247600802887, - 3564.875209773729, - 3528.1432704832937, - 3561.3310930684106, - 3565.5347422440427, - 3570.291792512787, - 3560.1460352456793, - 3558.133092940005, - 3536.100304449187, - 3511.0353987064404, - 3512.7307894999262, - 3495.4692285375627, - 3505.570561012234, - 3486.1050934429954, - 3507.3385637270744, - 3500.9168421331556, - 3489.829710565568, - 3505.486229317829 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492d8", - "id": "tether", - "symbol": "usdt", - "name": "Tether", - "image": "https://coin-images.coingecko.com/coins/images/325/large/Tether.png?1696501661", - "current_price": 1.001, - "market_cap": 112411745195, - "market_cap_rank": 3, - "fully_diluted_valuation": 112411745195, - "total_volume": 54492595889, - "high_24h": 1.002, - "low_24h": 0.992334, - "price_change_24h": 0.00125056, - "price_change_percentage_24h": 0.12511, - "market_cap_change_24h": -121590115.25900269, - "market_cap_change_percentage_24h": -0.10805, - "circulating_supply": 112544030567.115, - "total_supply": 112544030567.115, - "max_supply": null, - "ath": 1.32, - "ath_change_percentage": -24.44917, - "ath_date": "2018-07-24T00:00:00.000Z", - "atl": 0.572521, - "atl_change_percentage": 74.59788, - "atl_date": "2015-03-02T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:10:37.268Z", - "sparkline_in_7d": { - "price": [ - 0.9996812844902289, - 1.000341510888713, - 1.0000919367725396, - 1.000190587537527, - 0.9992878014734015, - 1.0001782991183559, - 0.9999813259400738, - 0.9995189908449292, - 0.9978470616093134, - 0.999879522744761, - 0.9995543594534491, - 1.0004607015721134, - 0.9995565348406867, - 0.9996413106420934, - 0.9996364307184131, - 0.9998703933559971, - 1.0002225517940104, - 1.0000908696402089, - 0.9998753510675791, - 0.9998873943765176, - 0.9997728877926664, - 0.9993863619199868, - 0.9997245797099061, - 0.9994471886408208, - 1.0006259193482314, - 1.0022244823829085, - 0.9991639898904038, - 0.9990115478423611, - 0.9989043393603703, - 0.9983878998920714, - 0.9987872322046059, - 0.9992869952875945, - 0.9992297593239087, - 1.0002390317555452, - 0.9997707837277987, - 0.9997428256762697, - 0.9996568419253433, - 0.999540921277303, - 0.9997166404954633, - 0.9994033088780288, - 0.9994799244085362, - 0.9989732230736308, - 0.9995845572892937, - 0.9996258829376222, - 0.9995224126739338, - 0.9995306954683777, - 0.9996005650707978, - 0.999565585516504, - 0.9997231065023071, - 0.9996193315147677, - 0.9991404224997672, - 0.9999341121391899, - 0.9995970745931055, - 0.9998858893234981, - 0.9999719631962725, - 1.0000514362145592, - 0.9998884086992322, - 0.9998522218496332, - 0.9999242658803934, - 0.9997862885334347, - 0.9999016521037538, - 0.9997325966771766, - 0.9997592719723807, - 1.0001721587503531, - 0.9998560347251889, - 0.9999564989703292, - 1.0000036269202257, - 0.9999164539986962, - 0.9999114835202234, - 0.9998482778770613, - 0.9997124136816805, - 0.9999205441556184, - 0.9999039656648537, - 1.000109647231771, - 1.0002048410235307, - 1.0000383801106474, - 0.9999142743400734, - 1.0004371675915815, - 1.0000004612998878, - 0.9999980714327604, - 0.9997267985467151, - 0.9999837948344417, - 0.9996130900831691, - 0.9996648939225862, - 0.9999584434284847, - 1.0001075489729216, - 0.9996343192486005, - 0.9996949886984089, - 0.9996921835837337, - 0.9997970757370076, - 0.9996595990521557, - 0.9996241038416726, - 0.9993497404921892, - 0.9997060848286978, - 0.9998346033796841, - 1.0000561310420748, - 0.9996574019834213, - 0.9983727709385207, - 0.9997077569952532, - 1.0000993413741552, - 0.9992186952610033, - 0.9997473748274394, - 0.9997829424086494, - 0.9993681663015291, - 1.000007770017599, - 1.000080114308546, - 0.9997112106712448, - 0.9994214413619643, - 0.999818327088535, - 0.9993365556045162, - 0.9955670853396474, - 0.9997912716085814, - 0.9999110889298901, - 0.9994797935394094, - 0.9999529256541179, - 0.9994748303228789, - 0.9991626163642141, - 0.9990673026387764, - 1.0005916340140988, - 0.9981913447426869, - 0.9986230924120056, - 0.9991235966497455, - 0.9988704793352555, - 0.9995053042991837, - 0.9994069708978389, - 0.999913405909812, - 1.0002484018813111, - 0.9999143352803304, - 0.9992943974875477, - 1.0001587612036398, - 1.0003249782342147, - 0.9999185014436283, - 0.9999344019805638, - 0.9997666232676501, - 0.9999818507938478, - 0.9998064378965604, - 1.000054028107907, - 0.9994488907515181, - 0.9994973741929594, - 0.9998143159332707, - 1.0002808338110332, - 0.9997750132155735, - 1.000596259410739, - 1.0000248821075843, - 0.9999489234733271, - 1.0015958216672707, - 1.0000201331578689, - 1.0003617787945918, - 1.0007044400572531, - 1.0001155417048544, - 1.0005657917847899, - 0.9998702463994847, - 0.9995841940631776, - 0.9997318400797855, - 0.9993960758580577, - 0.9995569937885116, - 0.9996372500993125, - 1.000252155195332, - 0.9996341117972924, - 0.999688714365703, - 1.0000182524434469, - 0.9997926781644972, - 0.999803264835631, - 0.9998015869283939, - 1.0004442895952796, - 1.0000327334657173, - 1.0005683677086035, - 1.0003394241711379 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492d9", - "id": "binancecoin", - "symbol": "bnb", - "name": "BNB", - "image": "https://coin-images.coingecko.com/coins/images/825/large/bnb-icon2_2x.png?1696501970", - "current_price": 598.96, - "market_cap": 92163481589, - "market_cap_rank": 4, - "fully_diluted_valuation": 92163481589, - "total_volume": 1475217922, - "high_24h": 632.48, - "low_24h": 596.3, - "price_change_24h": -29.88570538252202, - "price_change_percentage_24h": -4.75248, - "market_cap_change_24h": -4502978185.679565, - "market_cap_change_percentage_24h": -4.65826, - "circulating_supply": 153856150.0, - "total_supply": 153856150.0, - "max_supply": 200000000.0, - "ath": 717.48, - "ath_change_percentage": -16.89618, - "ath_date": "2024-06-06T14:10:59.816Z", - "atl": 0.0398177, - "atl_change_percentage": 1497348.24523, - "atl_date": "2017-10-19T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:42.090Z", - "sparkline_in_7d": { - "price": [ - 705.0007988695285, - 703.760758926094, - 716.6247022108079, - 713.7453916381994, - 706.1291213116336, - 701.4074975285196, - 704.8626743362269, - 706.7484501217044, - 704.0070020641788, - 707.096289816477, - 705.5004877837952, - 711.2756082478052, - 710.5671614038251, - 706.2059685221935, - 703.6492261364824, - 701.9217962100417, - 704.247047096779, - 707.2285761920118, - 708.7246880111991, - 706.1932004844548, - 698.0278454341881, - 701.4257224763728, - 702.6826741969202, - 701.5772040457268, - 704.7657766926735, - 704.2998380805311, - 702.2909495764685, - 702.1612818457755, - 699.8001358890288, - 696.8650945066755, - 687.3506151158838, - 677.52378911461, - 679.8443252379597, - 681.7444321815202, - 681.0788951778936, - 684.7023199187836, - 681.4735311331538, - 681.4226132810874, - 684.3019869565957, - 681.8424362816988, - 681.4488045216627, - 683.0945374267654, - 686.3204128411476, - 688.5348980498659, - 694.0113431759976, - 692.9664276387674, - 692.2155082506379, - 687.5973007950006, - 683.9416662134406, - 683.2315896510028, - 683.9351601102568, - 686.9890209067462, - 686.2392877169335, - 683.2471633635223, - 683.9725917513534, - 685.744617334889, - 686.0031500207913, - 685.5477957253919, - 685.6300943401876, - 682.6254539241498, - 682.7594134041645, - 681.2013478998666, - 681.9041951545768, - 674.055344293227, - 674.7353160235808, - 675.4018894599228, - 678.4038612335406, - 679.4824782684219, - 679.651604147119, - 682.5848093901745, - 680.3952167055272, - 678.5565467487309, - 679.3012359368659, - 684.483330459478, - 681.174835701664, - 680.0618368845954, - 677.4238472214344, - 676.8437631949266, - 676.8267886624453, - 678.0751636960338, - 676.2929997654268, - 672.9563642135929, - 671.9811852800564, - 673.2371582103348, - 672.1280801375517, - 672.4518723865614, - 672.4817568368823, - 672.3702562968965, - 668.8847590576542, - 667.8405671949301, - 663.6648934598348, - 648.9987227109953, - 642.3025615038815, - 646.42808932765, - 645.9072093563715, - 643.0547466223578, - 639.9577714662174, - 642.7016113109447, - 644.6266112672811, - 646.0597575854541, - 651.1578912020952, - 646.8812105889842, - 649.5285030162306, - 652.1141637476774, - 647.8005839742185, - 619.8478267917699, - 619.3879280421725, - 617.2970302268324, - 625.3259430571945, - 623.8346212288153, - 615.0091434965688, - 625.7655254327309, - 623.9168798955994, - 619.4561348921429, - 618.9506818846271, - 613.7461261682441, - 612.0713853592689, - 611.8249478517135, - 610.8334982857555, - 608.9859845272887, - 605.4852416688914, - 608.2633128785881, - 607.6994791881309, - 608.8240029890611, - 598.216035632158, - 601.4358358642627, - 603.3584014986178, - 607.8409210170827, - 608.4736703410321, - 605.8316674733486, - 607.9042429527674, - 603.3993388889286, - 601.7639501781492, - 599.6161975543271, - 594.6611955705113, - 602.8280981116102, - 607.5736963440906, - 609.0296126615847, - 609.6845796243396, - 610.2007260930042, - 614.1303679684497, - 612.5736401848881, - 616.3307887174093, - 615.5067919322568, - 610.9939316980023, - 626.9624493958659, - 627.3346849447165, - 633.1198573405595, - 628.5526633957776, - 631.0521844301848, - 627.309727159859, - 621.5562815728505, - 612.2423873238263, - 619.3803878368682, - 619.5222482693216, - 619.2881228364813, - 619.0847530182656, - 618.885313028025, - 611.7188855248814, - 609.3282850866007, - 607.996686209645, - 606.8487598761047, - 608.5207160834136, - 603.6929954720382, - 607.7249268596813, - 607.8336714921958, - 605.5176870391659, - 608.2905295678972 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492da", - "id": "solana", - "symbol": "sol", - "name": "Solana", - "image": "https://coin-images.coingecko.com/coins/images/4128/large/solana.png?1696504756", - "current_price": 147.11, - "market_cap": 67911584459, - "market_cap_rank": 5, - "fully_diluted_valuation": 85048166669, - "total_volume": 2902359032, - "high_24h": 159.63, - "low_24h": 146.39, - "price_change_24h": -12.05238394727678, - "price_change_percentage_24h": -7.57248, - "market_cap_change_24h": -5486606372.475746, - "market_cap_change_percentage_24h": -7.47512, - "circulating_supply": 461544359.549457, - "total_supply": 578008920.405976, - "max_supply": null, - "ath": 259.96, - "ath_change_percentage": -43.57935, - "ath_date": "2021-11-06T21:54:35.825Z", - "atl": 0.500801, - "atl_change_percentage": 29187.21075, - "atl_date": "2020-05-11T19:35:23.449Z", - "roi": null, - "last_updated": "2024-06-13T16:12:21.863Z", - "sparkline_in_7d": { - "price": [ - 172.99693727724608, - 172.8837992505803, - 172.5493879431701, - 173.21860737066416, - 172.94421010189572, - 171.64381583540668, - 171.72341134864342, - 171.03336103335798, - 167.90810704170536, - 170.56298359832005, - 169.96610475910924, - 170.389837605188, - 170.12464304825198, - 170.2730147618539, - 170.08474639905293, - 169.94662291144664, - 170.73730047818898, - 172.0126777216607, - 172.11533056000815, - 172.2672347415634, - 172.04314706421775, - 172.17548179981503, - 171.58411019099722, - 171.38343925666163, - 172.0380744661062, - 171.17512558215088, - 171.2725727812786, - 171.2397288264338, - 169.82505932864478, - 168.67553617175426, - 165.28636590241132, - 160.99545512976667, - 161.62355532854883, - 162.80768334365072, - 162.4867628389733, - 162.97318320690377, - 162.1957946708492, - 162.0065039004484, - 162.98743882601016, - 162.57883110346035, - 162.55882554276553, - 162.04417461022987, - 162.4653920824014, - 162.48014651450612, - 163.32007106085572, - 162.7594946687059, - 162.2016207098364, - 162.11635245430222, - 160.64831971621868, - 159.90248149662105, - 160.09676655592747, - 161.10234233566612, - 160.0149432877856, - 159.67767678575817, - 160.0726676010152, - 160.1235813744451, - 159.84100087168252, - 159.28572583415544, - 158.89724555175724, - 158.41688722668428, - 157.8767810263088, - 158.13686144444281, - 158.49081023139365, - 157.331681546893, - 157.81727852772772, - 157.9426079298267, - 158.75380467961165, - 159.3531801784241, - 158.98754694947863, - 159.47143109240633, - 159.48377298101096, - 159.11012175665618, - 159.43896766952426, - 161.19917231172923, - 160.43561709867038, - 161.34611791420883, - 161.61508702219874, - 161.2833604685939, - 160.7945334067462, - 162.29886526673607, - 162.38478232691546, - 161.547312432603, - 161.68981822476943, - 161.88020539201156, - 161.75626599330164, - 161.15521711330229, - 161.14248898667395, - 160.98136176396014, - 159.7802084339209, - 160.3672805473675, - 159.84942660081344, - 159.09377684407298, - 157.80700893205048, - 159.25757991875216, - 160.05800323398486, - 159.87728303711256, - 159.20443039603347, - 158.39457272440384, - 158.76692049487195, - 159.81455204487264, - 162.4250664270779, - 161.4134166270254, - 162.50432986488184, - 161.87627401911845, - 160.14184045275334, - 160.11357797092072, - 159.25130253677244, - 159.20887237387237, - 159.13446853837337, - 158.81507894954967, - 155.18143648098092, - 156.55568538901292, - 155.8201041064478, - 154.351937596855, - 154.370340137535, - 153.43613903356834, - 153.04759378250122, - 153.95570693103758, - 154.0997148083497, - 154.19732599736273, - 153.49035346925703, - 153.84547413281737, - 151.183194703858, - 151.85521349237, - 149.24994140954408, - 147.7073834534297, - 147.64631978775088, - 148.82424837934516, - 149.15834113606013, - 148.38749528596972, - 149.358372761262, - 149.57264506437238, - 149.30184393721757, - 148.32811079002693, - 147.06278805926624, - 149.59602364259234, - 149.6153729572104, - 151.14361512127067, - 150.1417897047293, - 150.8865097290824, - 151.64850193547116, - 151.27187713063367, - 152.41315313060989, - 152.8681066912942, - 151.92291071399217, - 158.64400904688196, - 159.22875317209795, - 160.08709390477517, - 158.79355802985742, - 158.96824405848406, - 159.59136256193148, - 156.14723027403318, - 152.5233641188741, - 154.85827218414985, - 154.8562922312914, - 155.2667265150623, - 155.01702039615654, - 154.62797919898483, - 152.38246019889738, - 151.72764948407342, - 151.7055354661909, - 152.23171149664094, - 152.17296281744137, - 151.22222424962743, - 152.10564635690466, - 151.78975120047093, - 151.15289302871182, - 151.65723850770544 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492db", - "id": "staked-ether", - "symbol": "steth", - "name": "Lido Staked Ether", - "image": "https://coin-images.coingecko.com/coins/images/13442/large/steth_logo.png?1696513206", - "current_price": 3445.5, - "market_cap": 32767243525, - "market_cap_rank": 6, - "fully_diluted_valuation": 32767243525, - "total_volume": 94715255, - "high_24h": 3621.29, - "low_24h": 3437.16, - "price_change_24h": -170.34022023990656, - "price_change_percentage_24h": -4.71094, - "market_cap_change_24h": -1637134130.5231514, - "market_cap_change_percentage_24h": -4.75851, - "circulating_supply": 9509331.79835068, - "total_supply": 9509331.79835068, - "max_supply": null, - "ath": 4829.57, - "ath_change_percentage": -28.76287, - "ath_date": "2021-11-10T14:40:47.256Z", - "atl": 482.9, - "atl_change_percentage": 612.46103, - "atl_date": "2020-12-22T04:08:21.854Z", - "roi": null, - "last_updated": "2024-06-13T16:12:30.256Z", - "sparkline_in_7d": { - "price": [ - 3847.566459349681, - 3840.04088504695, - 3830.5854967098203, - 3838.9667419292928, - 3847.4214866307025, - 3825.619367350704, - 3835.429351323624, - 3824.0505204461274, - 3785.233606225647, - 3798.158313432371, - 3799.00520418947, - 3813.6534628406785, - 3808.0505483869747, - 3801.0062388656647, - 3803.3911740997555, - 3796.592776781931, - 3811.9540297459293, - 3810.4515180669164, - 3817.5262873900956, - 3814.0623980982764, - 3811.7157000709485, - 3804.478218384451, - 3807.4248074391153, - 3808.443905105413, - 3833.485446323821, - 3796.9959588079623, - 3807.921308565215, - 3811.9807665072426, - 3793.0797407262885, - 3777.2475175995214, - 3608.022130640815, - 3662.4036344177075, - 3672.5490734605933, - 3681.9255780669127, - 3688.5716545999658, - 3687.1656105461457, - 3676.17852135109, - 3684.5698375673064, - 3685.8189941040014, - 3684.2929669980876, - 3685.6225895011794, - 3675.9892138261566, - 3676.761554333348, - 3683.9998835730003, - 3699.3636392494363, - 3689.7712847689545, - 3691.23955586804, - 3692.3042689394706, - 3677.052762076006, - 3679.4007959278756, - 3682.335997854892, - 3690.3385309185705, - 3688.901280454295, - 3681.7575356363186, - 3687.204555873579, - 3689.9520049094235, - 3680.2606570182256, - 3670.1995184554776, - 3676.8141694696087, - 3673.9532123564654, - 3677.699454105244, - 3679.241431074675, - 3680.7612113074206, - 3669.520973786085, - 3671.198808722374, - 3670.0726261660698, - 3681.47304872908, - 3687.2756361432007, - 3682.4739962231615, - 3687.4939087945672, - 3687.9427626147008, - 3686.7806604069197, - 3690.9821116985318, - 3699.96902161085, - 3689.499391613829, - 3690.949268499394, - 3688.767617100297, - 3696.8896493109964, - 3695.984144951191, - 3704.4267759606437, - 3698.812018562222, - 3700.5254113814485, - 3710.244470007775, - 3705.8199825711836, - 3700.1874624095285, - 3691.736894334796, - 3689.7894189680133, - 3688.186878117273, - 3679.616604715499, - 3686.3284389642663, - 3679.418064459331, - 3667.10878682412, - 3659.873920665779, - 3666.4880871013356, - 3673.562415836085, - 3673.149703714074, - 3669.002594398929, - 3667.8610086382196, - 3671.149981545821, - 3677.2378437609805, - 3695.1777451122352, - 3688.192539045432, - 3689.801851250922, - 3679.536822323623, - 3664.766181280711, - 3668.951224718761, - 3665.5282935056875, - 3671.4853503998643, - 3665.101176957974, - 3658.367068127204, - 3618.165688116266, - 3602.829636273576, - 3581.810782448258, - 3555.0291766751957, - 3561.0280836145666, - 3540.3933060093686, - 3533.2001468973885, - 3531.9992121449945, - 3522.885192629964, - 3524.1343399282114, - 3523.829516909762, - 3525.532545675818, - 3522.9432912231705, - 3519.6383167691774, - 3473.1440530352033, - 3455.0856005477863, - 3467.222020264099, - 3491.558979566945, - 3489.900722027895, - 3486.9852916104674, - 3502.8299301361762, - 3506.391573179109, - 3498.893430952877, - 3492.9019229464316, - 3481.87715852467, - 3498.588914803448, - 3509.2847787702094, - 3515.519421185431, - 3511.975449819787, - 3516.031408412961, - 3525.4757701899484, - 3516.985063220574, - 3546.6901427118846, - 3537.057875846472, - 3534.010056609709, - 3650.349174377638, - 3619.4075059550846, - 3637.437369766574, - 3615.367529303797, - 3607.288714796328, - 3584.3557286066107, - 3577.601194122154, - 3526.097378715964, - 3556.8949271923457, - 3561.0257414340495, - 3562.3747424183894, - 3545.2115865393407, - 3552.486824108923, - 3534.6491804901643, - 3511.5437141389857, - 3510.5110914315464, - 3506.970259041852, - 3502.1210100392345, - 3485.564864805282, - 3506.637466766671, - 3498.348983222358, - 3487.336956612436, - 3503.406032902855 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492dc", - "id": "usd-coin", - "symbol": "usdc", - "name": "USDC", - "image": "https://coin-images.coingecko.com/coins/images/6319/large/usdc.png?1696506694", - "current_price": 1.0, - "market_cap": 32598630312, - "market_cap_rank": 7, - "fully_diluted_valuation": 32598727398, - "total_volume": 7847185760, - "high_24h": 1.002, - "low_24h": 0.991259, - "price_change_24h": 0.00071158, - "price_change_percentage_24h": 0.07118, - "market_cap_change_24h": 347167508, - "market_cap_change_percentage_24h": 1.07644, - "circulating_supply": 32571445221.0687, - "total_supply": 32571542226.0704, - "max_supply": null, - "ath": 1.17, - "ath_change_percentage": -14.83303, - "ath_date": "2019-05-08T00:40:28.300Z", - "atl": 0.877647, - "atl_change_percentage": 13.7996, - "atl_date": "2023-03-11T08:02:13.981Z", - "roi": null, - "last_updated": "2024-06-13T16:12:39.844Z", - "sparkline_in_7d": { - "price": [ - 1.000851084688569, - 1.0006681837338456, - 0.9988999743906383, - 1.0002681604646995, - 1.0001099162656104, - 1.0003261133998236, - 1.0001897604548224, - 0.999991293529089, - 0.9981860585854818, - 1.0002370386824047, - 0.9996972537385732, - 1.0000154470713536, - 0.9998680310183459, - 0.9998898097683939, - 0.9999399250275658, - 1.000024116446286, - 1.000182280620719, - 1.0000745344512207, - 1.0002011393385453, - 0.9997777904251914, - 0.9998165087962894, - 0.999650157556086, - 1.000617831873567, - 0.9999795250065694, - 1.0015097094292775, - 1.0033218374684991, - 0.9992850591385234, - 0.9998759118714372, - 1.0000594125491713, - 0.9989452334238828, - 0.9958871351960583, - 0.9999015041979571, - 0.999782204149966, - 1.0005555965644295, - 0.9998507203747488, - 0.9999485155857637, - 0.9999784240472596, - 0.999973388056953, - 1.0000367969498238, - 0.9997707552547779, - 0.9995756496931201, - 1.000162381765916, - 1.0000871435761662, - 1.0000296612958801, - 0.9999919077080917, - 0.9997892997255059, - 0.9999992091660737, - 0.9999747677938933, - 0.9994791560996222, - 0.9998982644083552, - 1.0004472433854459, - 1.000137949629329, - 0.9999125042578889, - 1.0002480119514843, - 1.0001457529240474, - 1.0000843737831173, - 0.9998994669580301, - 1.0000062153700007, - 1.0003436955415872, - 0.9999941041006233, - 0.9999891264249399, - 0.9999059027402386, - 1.000121662278934, - 1.000137633520076, - 1.0000216990687487, - 1.0000515653262194, - 0.9998792763712787, - 1.0003151582977647, - 0.9999720169202905, - 1.0001089782726436, - 0.9999574441653157, - 1.000000349180047, - 0.999941349956223, - 1.0002680321326178, - 1.0002857897748554, - 1.0000228896115948, - 0.999912302290175, - 1.0004026679595788, - 1.0000846359701447, - 1.0002473997754915, - 1.0000088965387421, - 1.0000770413277347, - 0.9998355420672606, - 0.9997332853330627, - 1.0000957117427847, - 1.0002668742625693, - 0.9997123494774798, - 0.9997667113665233, - 0.9997388578093529, - 1.0002221213930342, - 0.9997632383304221, - 0.9998176304936653, - 1.0005769542557068, - 0.9994775914327857, - 0.9997178971542117, - 0.9998275612007762, - 0.9998531260089082, - 0.9985200817366291, - 1.0006751252342387, - 1.000407411895989, - 0.99964529092473, - 0.9999546416593116, - 0.9994220769739695, - 0.9992777944369111, - 0.9997777605043814, - 1.000012082016089, - 0.9999606860865528, - 0.9999756352763748, - 1.0003392402948126, - 0.9996521878046958, - 1.0004081787052783, - 1.0002960594006811, - 1.0004939547630114, - 0.9995096998673416, - 1.0008619404189218, - 0.9999864801550502, - 0.9997798828175265, - 0.9996479299207995, - 0.999079499427298, - 0.9985767302935903, - 0.9993613397985257, - 0.9984511187013745, - 1.0010239255561506, - 0.9986621169426728, - 1.0000518453216307, - 1.0002935060279243, - 1.0009226893156682, - 0.9998796011667966, - 1.001525822574979, - 1.0000784379318617, - 1.000057240861873, - 1.000194791337139, - 0.9995102452534065, - 0.9998961513960708, - 1.0004771878082044, - 1.0002418504419532, - 1.000463254306595, - 0.9994124880058598, - 1.0007237792114139, - 1.0000256925174575, - 1.0003761579266657, - 0.9997962428025285, - 1.001300716426306, - 1.0001913802750924, - 1.00032398708563, - 1.0026743245433063, - 1.0006835439589825, - 1.003133667146165, - 1.0020996484083406, - 0.999953978522948, - 1.0010979780218459, - 1.0006742033600589, - 1.0003641963522991, - 1.0006965502351868, - 1.0003001652122119, - 0.9999295388482162, - 1.0002040694800516, - 0.9997664526099045, - 0.9992625449817633, - 0.999010235711838, - 1.000571189593684, - 0.9998821817921378, - 0.9987606680457486, - 0.9993276233842053, - 1.0004840747031116, - 0.9998753800997433, - 0.9999367719388224, - 1.00028274462689 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492dd", - "id": "ripple", - "symbol": "xrp", - "name": "XRP", - "image": "https://coin-images.coingecko.com/coins/images/44/large/xrp-symbol-white-128.png?1696501442", - "current_price": 0.4815, - "market_cap": 26726190931, - "market_cap_rank": 8, - "fully_diluted_valuation": 48143963335, - "total_volume": 1048726640, - "high_24h": 0.496801, - "low_24h": 0.480029, - "price_change_24h": -0.01527604468242816, - "price_change_percentage_24h": -3.07504, - "market_cap_change_24h": -835070570.9914322, - "market_cap_change_percentage_24h": -3.02987, - "circulating_supply": 55506158411.0, - "total_supply": 99987553871.0, - "max_supply": 100000000000.0, - "ath": 3.4, - "ath_change_percentage": -85.88239, - "ath_date": "2018-01-07T00:00:00.000Z", - "atl": 0.00268621, - "atl_change_percentage": 17760.86575, - "atl_date": "2014-05-22T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:20.975Z", - "sparkline_in_7d": { - "price": [ - 0.5262169357322064, - 0.5260206496397066, - 0.525694699481107, - 0.5274816782906928, - 0.5262115757215411, - 0.5256434250966813, - 0.5256287547713833, - 0.5230910799495646, - 0.5194098472298646, - 0.520938786547996, - 0.5203832682870959, - 0.5221681299950351, - 0.5215636976741215, - 0.5214436150194798, - 0.5218460656196018, - 0.5217243039140538, - 0.5226305488353975, - 0.5247059740593868, - 0.5239441227322741, - 0.5233627244405953, - 0.5250433164563368, - 0.5237717459359273, - 0.5228739216028554, - 0.5261799505008437, - 0.5281021586936359, - 0.5262815808111014, - 0.5254467374908575, - 0.5266698306116481, - 0.5238759261161233, - 0.5192381891201328, - 0.5146399135381002, - 0.487372470686061, - 0.49194287869035175, - 0.49974548368995714, - 0.4984074949137373, - 0.4998381192561133, - 0.49788160709821655, - 0.4980496004129636, - 0.49941273658527213, - 0.4998028085008634, - 0.4998091026494703, - 0.49894986175883843, - 0.4991741466215396, - 0.499360866832291, - 0.5002064240866021, - 0.49885386003569987, - 0.4979465747497927, - 0.49743994365026273, - 0.4933973119055409, - 0.4942740633267604, - 0.49371306366801715, - 0.4952663108165386, - 0.4938589869271059, - 0.4920827552713749, - 0.49356341622193267, - 0.4941059330850229, - 0.49312653393310074, - 0.49294366830710556, - 0.49432556227561014, - 0.49331946675363064, - 0.49257928425583425, - 0.4939033000018972, - 0.4941770422567625, - 0.4922129874287115, - 0.4931761735033484, - 0.49342911109555193, - 0.4939647784272211, - 0.4941195820516617, - 0.4939597283723958, - 0.49419231546837, - 0.4949035591058491, - 0.494803359961017, - 0.4945471670913157, - 0.4968863906435458, - 0.49564306166007016, - 0.4951402906214375, - 0.4952075389419545, - 0.4963097067074328, - 0.49603309385088024, - 0.49686673910845724, - 0.49740888083511015, - 0.49811956908279575, - 0.49849093895506463, - 0.49809934489967966, - 0.49837216612933427, - 0.4975434713835928, - 0.4992686780509005, - 0.49903405322503025, - 0.5007511171287486, - 0.4989285281188004, - 0.49737944206037216, - 0.4950930097951704, - 0.49423144477910036, - 0.495739192543952, - 0.49695727260114775, - 0.49820538739436493, - 0.4968720683172069, - 0.49705375283909947, - 0.4977722763170445, - 0.5026828142286369, - 0.5039774984845278, - 0.5028955217376223, - 0.5005188866634013, - 0.498629519311585, - 0.49601915350551445, - 0.4962031071899927, - 0.4956459716064522, - 0.49666663883105266, - 0.4967495907518382, - 0.4951932671669714, - 0.4851717134336718, - 0.48893552721174716, - 0.4882690767835519, - 0.4873176332509148, - 0.48711701094891413, - 0.4853262101990982, - 0.48503744152532113, - 0.48557512400982555, - 0.4843858216926557, - 0.4855605005400593, - 0.48328553430603666, - 0.4841830385943594, - 0.4815504036850609, - 0.48217116343522576, - 0.47669202620215023, - 0.4757201510655642, - 0.4787356851644107, - 0.4817758267812748, - 0.47882555513251335, - 0.4805946670995628, - 0.4811933917301321, - 0.4801892316413097, - 0.4807112687850236, - 0.47874842501366655, - 0.4780249281628921, - 0.4809496242333286, - 0.48130591848815946, - 0.4813261666791105, - 0.4807730789668877, - 0.48034987211648045, - 0.48102034677733796, - 0.4805259708654552, - 0.4840740642411945, - 0.48420335052737784, - 0.4829606611221641, - 0.4946510703582025, - 0.49382093333958604, - 0.4975055248545937, - 0.4971255991680537, - 0.49470285558133337, - 0.4917351514917574, - 0.4916798924761982, - 0.48394445546012826, - 0.4893440161852261, - 0.49127089969459076, - 0.4909435800416336, - 0.49149044520206464, - 0.4905230452185211, - 0.48730156711047856, - 0.4863925872096999, - 0.4863093760328493, - 0.486909238980402, - 0.4864829510168943, - 0.4836908329831032, - 0.48817980258322324, - 0.48746219850440636, - 0.4845784717015488, - 0.48766570436444723 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492de", - "id": "dogecoin", - "symbol": "doge", - "name": "Dogecoin", - "image": "https://coin-images.coingecko.com/coins/images/5/large/dogecoin.png?1696501409", - "current_price": 0.14129, - "market_cap": 20436784918, - "market_cap_rank": 9, - "fully_diluted_valuation": 20438461588, - "total_volume": 1105847991, - "high_24h": 0.149972, - "low_24h": 0.140717, - "price_change_24h": -0.007772380516563899, - "price_change_percentage_24h": -5.21419, - "market_cap_change_24h": -1149743537.3036385, - "market_cap_change_percentage_24h": -5.32621, - "circulating_supply": 144682346383.705, - "total_supply": 144694216383.705, - "max_supply": null, - "ath": 0.731578, - "ath_change_percentage": -80.7493, - "ath_date": "2021-05-08T05:08:23.458Z", - "atl": 8.69e-05, - "atl_change_percentage": 161957.29188, - "atl_date": "2015-05-06T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:15.635Z", - "sparkline_in_7d": { - "price": [ - 0.16330302321221843, - 0.16311037466120457, - 0.16299944095026955, - 0.1636379001258341, - 0.1629643869826545, - 0.161597436288682, - 0.1617041393082288, - 0.1613038064338793, - 0.1594629128836946, - 0.16087312284618027, - 0.16036912105658852, - 0.16053590004843563, - 0.16016794653977254, - 0.16034896135467386, - 0.16049610698835814, - 0.16034198609126052, - 0.16095342523665865, - 0.16164582692029056, - 0.16181655030602077, - 0.16159386409218363, - 0.1608760899921671, - 0.1607820009476764, - 0.16097993815762648, - 0.16041548003706946, - 0.16116111811581507, - 0.15979072983089612, - 0.15993569957519413, - 0.160166293646064, - 0.1600969874867203, - 0.15859688884061537, - 0.1566965160141568, - 0.14694101252133832, - 0.14826918803065017, - 0.14873179422961005, - 0.14895369093317418, - 0.14850776261891152, - 0.14821256751286954, - 0.14800424724015984, - 0.1484555209005149, - 0.14804508016274218, - 0.1482116055077613, - 0.14797965319012643, - 0.14800516332992525, - 0.14771088364221263, - 0.1480743818135834, - 0.1476341727236814, - 0.1474272332427691, - 0.147406870209624, - 0.14567724142141503, - 0.1456582116564918, - 0.1456519638340693, - 0.14671233151301988, - 0.14630198146751766, - 0.14537007355339265, - 0.1457545171651291, - 0.14596359287662533, - 0.14622358588804182, - 0.14582816277942381, - 0.14623220834280992, - 0.14573123189158987, - 0.14590479886123556, - 0.146450387915893, - 0.1470439551588656, - 0.14544778112575243, - 0.14569770334071902, - 0.14559722401225922, - 0.14620029054470549, - 0.14603918035048302, - 0.14560946717037218, - 0.146055281587424, - 0.14605550396194303, - 0.14556107443980382, - 0.14603039884976543, - 0.14722763861356006, - 0.14619313913995816, - 0.14677130151792248, - 0.14688075262977152, - 0.14749833150960778, - 0.14737855047995602, - 0.14840419420159714, - 0.14789052818469162, - 0.14716463184967193, - 0.14687927099995535, - 0.14679930873546088, - 0.14679016169355624, - 0.14615070453019516, - 0.14620276763868237, - 0.1462947807151911, - 0.1459256048410694, - 0.1460183547569519, - 0.14538728015677113, - 0.14418576542280057, - 0.14401390357540658, - 0.1447054530192575, - 0.1451972457208246, - 0.14494426924238624, - 0.14494707876676782, - 0.14470633486771228, - 0.14436193446222922, - 0.1451767925881658, - 0.14682717673451964, - 0.14576313367559665, - 0.14608213729272712, - 0.14573398722703912, - 0.1442788712125849, - 0.14417182752214064, - 0.14405699072437755, - 0.14445386582609154, - 0.14479457301352902, - 0.1444677794177647, - 0.14312351384582134, - 0.142048407044082, - 0.14199901352124444, - 0.14131368555153415, - 0.14148876914732234, - 0.14058869921862996, - 0.14119102119180446, - 0.14104797457607873, - 0.14114084047111883, - 0.14148297795943562, - 0.14117636524663518, - 0.1403260142419448, - 0.1384658932172644, - 0.13841585925014688, - 0.1366552071528174, - 0.13702836438672594, - 0.13667853302815383, - 0.13784141845171505, - 0.13765345191461847, - 0.13800898672297512, - 0.13889420918631815, - 0.13850323327310984, - 0.13812155150156064, - 0.13705760673496376, - 0.13596036968179465, - 0.13819103909423772, - 0.13875938791278808, - 0.13926036655817214, - 0.13900284943820573, - 0.13961785393855702, - 0.13992840446953603, - 0.13978927757102713, - 0.14053376033331832, - 0.1406161493339828, - 0.13951925389180528, - 0.14535879966845722, - 0.14583492646345203, - 0.14819811373276923, - 0.1492354707816232, - 0.14949431018339074, - 0.14996947354301932, - 0.14723610717568952, - 0.1440712686535975, - 0.1456092201192013, - 0.14611837982043988, - 0.14623788246867478, - 0.14560944883639718, - 0.14612566792557335, - 0.14372512184468675, - 0.1430094646581035, - 0.14315152619395613, - 0.14302207848068282, - 0.14358866344241497, - 0.14285552662798903, - 0.14396985427283954, - 0.14386285197131268, - 0.14396233724333637, - 0.14438665301600898 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492df", - "id": "the-open-network", - "symbol": "ton", - "name": "Toncoin", - "image": "https://coin-images.coingecko.com/coins/images/17980/large/ton_symbol.png?1696517498", - "current_price": 7.39, - "market_cap": 17971551254, - "market_cap_rank": 10, - "fully_diluted_valuation": 37730090948, - "total_volume": 697629140, - "high_24h": 7.66, - "low_24h": 7.18, - "price_change_24h": 0.02841704, - "price_change_percentage_24h": 0.3859, - "market_cap_change_24h": 38621089, - "market_cap_change_percentage_24h": 0.21536, - "circulating_supply": 2432816845.568, - "total_supply": 5107539107.01387, - "max_supply": null, - "ath": 7.76, - "ath_change_percentage": -5.36865, - "ath_date": "2024-06-05T03:11:15.262Z", - "atl": 0.519364, - "atl_change_percentage": 1313.52564, - "atl_date": "2021-09-21T00:33:11.092Z", - "roi": null, - "last_updated": "2024-06-13T16:12:44.845Z", - "sparkline_in_7d": { - "price": [ - 7.3201833217962955, - 7.276020736409329, - 7.322348868225564, - 7.345231664264712, - 7.36516925506805, - 7.299735867414984, - 7.392140801578196, - 7.384240528980427, - 7.327074657938582, - 7.354373793412895, - 7.357124543084217, - 7.477118262064321, - 7.531571321326853, - 7.546585936052664, - 7.543179244334835, - 7.5943570311960675, - 7.627539443820485, - 7.676101901978739, - 7.676347178444069, - 7.632217610862165, - 7.492982880317989, - 7.51771423556694, - 7.527732186567706, - 7.502289060503157, - 7.497248129024825, - 7.4349425324567004, - 7.434324985680807, - 7.5024029565302826, - 7.541484559412011, - 7.52958854858011, - 7.373595973977336, - 7.228596676790883, - 7.203139633687491, - 7.217356841590535, - 7.282936750631695, - 7.267525116792244, - 7.2098872852741085, - 7.268871045724039, - 7.305542836171805, - 7.3296044887661695, - 7.336048538772465, - 7.305973930907181, - 7.371865930815124, - 7.3830470039652125, - 7.411740441984794, - 7.39784575615932, - 7.374684499410503, - 7.371244237481846, - 7.233992586824615, - 7.1887576325995255, - 7.172857577929319, - 7.224351749699919, - 7.165354901856854, - 7.077138664866092, - 7.08957561535203, - 7.093340100935118, - 7.030652158755361, - 7.047681413654127, - 7.020834164789679, - 6.970834935245915, - 7.006343115274938, - 6.9963683116745425, - 6.983101529664444, - 6.907560780504785, - 6.955444173384995, - 6.863414483190805, - 6.962267334206287, - 7.078256675452365, - 7.098572731558397, - 7.126754529750518, - 7.1075853804067135, - 7.130230948437893, - 7.143528258368485, - 7.16233423140388, - 7.166801618294448, - 7.182120749034582, - 7.12232210951444, - 7.110384459639917, - 7.092049261510689, - 7.1423698606938215, - 7.105800971684124, - 7.089335914544556, - 7.0753450373083515, - 7.1199907923633825, - 7.09947889423202, - 7.161526811864253, - 7.130950253548294, - 7.089710955884232, - 7.103796215397385, - 7.111965588509337, - 7.105239829004857, - 7.043721653662729, - 7.03684332733471, - 7.089575916255291, - 7.108189521349441, - 7.097938570646325, - 7.101387081313291, - 7.06989043773911, - 7.0622013450367405, - 7.16812910518092, - 7.190655374144663, - 7.183872407466035, - 7.187838641127257, - 7.180650154915083, - 7.1433918187834875, - 7.1790902968084, - 7.181099273498509, - 7.189665783156278, - 7.225963248953443, - 7.184634883035489, - 7.018895643626312, - 7.026529368958911, - 6.984932700882664, - 6.964571138570858, - 6.921713142767981, - 6.869013973648745, - 6.928522500818528, - 6.901575658032783, - 6.863643619656733, - 6.856456013506459, - 6.820813328032487, - 6.8291344033437555, - 6.771425897377466, - 6.863868781186944, - 6.867442126389267, - 6.853598754806071, - 6.892522157677624, - 6.924745507127141, - 6.928291111264499, - 6.950675222034747, - 6.980773509090146, - 6.9465508567483445, - 6.938190041416986, - 6.974761401927748, - 6.922456543414082, - 6.998788134581719, - 7.057653611369367, - 7.044631413103164, - 7.02734351491722, - 7.0623889793813746, - 7.098544327441884, - 7.126661542048009, - 7.10936584394738, - 7.094436962957735, - 7.081539857794067, - 7.18199499851194, - 7.226407570443434, - 7.334914493936871, - 7.334154407712634, - 7.465829003932739, - 7.498035690318617, - 7.372977623508301, - 7.234504857110914, - 7.335154381755014, - 7.357725039433122, - 7.412994873709509, - 7.447846475984664, - 7.583597097999549, - 7.538151543271687, - 7.556370692763223, - 7.585218369680902, - 7.619414967746522, - 7.628594531978176, - 7.538202753426942, - 7.627643950171835, - 7.607371289953604, - 7.59533366222344, - 7.586830374865501 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e0", - "id": "cardano", - "symbol": "ada", - "name": "Cardano", - "image": "https://coin-images.coingecko.com/coins/images/975/large/cardano.png?1696502090", - "current_price": 0.42181, - "market_cap": 14933560689, - "market_cap_rank": 11, - "fully_diluted_valuation": 18981951973, - "total_volume": 485615076, - "high_24h": 0.444111, - "low_24h": 0.42034, - "price_change_24h": -0.020035606695062547, - "price_change_percentage_24h": -4.53453, - "market_cap_change_24h": -685847359.3009319, - "market_cap_change_percentage_24h": -4.39099, - "circulating_supply": 35402588310.7697, - "total_supply": 45000000000.0, - "max_supply": 45000000000.0, - "ath": 3.09, - "ath_change_percentage": -86.39305, - "ath_date": "2021-09-02T06:00:10.474Z", - "atl": 0.01925275, - "atl_change_percentage": 2081.68513, - "atl_date": "2020-03-13T02:22:55.044Z", - "roi": null, - "last_updated": "2024-06-13T16:12:23.151Z", - "sparkline_in_7d": { - "price": [ - 0.45906871022667817, - 0.4589683279395989, - 0.4601129199025205, - 0.4615662093473219, - 0.45992168492010105, - 0.45893032331885336, - 0.4584386921060877, - 0.45790820756511624, - 0.45349776652491436, - 0.456919909117547, - 0.4554942038222707, - 0.45679659496111574, - 0.4579952103069966, - 0.4603164342918285, - 0.4584593490193402, - 0.4580144028542926, - 0.45797058701014676, - 0.4606678411355175, - 0.46173572207545927, - 0.46177960791753225, - 0.4616087445562036, - 0.4642027138490401, - 0.468000026920569, - 0.47833812005662707, - 0.4860419883912547, - 0.4795149354394897, - 0.4873846878617844, - 0.48699097093795884, - 0.4789688668632618, - 0.4745249369488196, - 0.46807704935990596, - 0.4436284954635717, - 0.44897313207211964, - 0.4505872110797081, - 0.44985729861831264, - 0.4507766277422341, - 0.4478905149394469, - 0.4442578129639865, - 0.4460189553513314, - 0.44649625676338045, - 0.4465058823956439, - 0.4452774290301975, - 0.44457904659341557, - 0.44390080041947677, - 0.44498321628238013, - 0.440329400575688, - 0.4416417522024501, - 0.4399487147474104, - 0.4350906932174467, - 0.43534965974419826, - 0.4363455609831282, - 0.4380732753974736, - 0.43591268245807624, - 0.4342300183920561, - 0.43539327544519335, - 0.43444485397629107, - 0.43437262919314407, - 0.4348653633818853, - 0.4349407805373997, - 0.4355277978440294, - 0.43640565298402784, - 0.4366599568777146, - 0.437939558987924, - 0.4348422939846334, - 0.43543005664192286, - 0.4340481022403035, - 0.43511486134012767, - 0.4370432994005573, - 0.4379552141808075, - 0.4399708264058358, - 0.4403401172834525, - 0.442625886758045, - 0.4402582598603359, - 0.4412392541530838, - 0.43911186586471035, - 0.4401358086972512, - 0.43993514082799734, - 0.4410153389720465, - 0.44230946529244214, - 0.4433070716750211, - 0.4454580354454417, - 0.44486931483513814, - 0.443946773304738, - 0.44385465582555433, - 0.44416394802793885, - 0.4427250224373382, - 0.44319132457528315, - 0.44323911751097006, - 0.4411297507989752, - 0.4412706863848842, - 0.4408571934893342, - 0.4377477822617692, - 0.4366137147860549, - 0.43911399622404285, - 0.4496728679231936, - 0.44753728660797454, - 0.4462986097473103, - 0.4442651083406326, - 0.4404623191137133, - 0.44287501378201755, - 0.4473989370159953, - 0.44535920518379934, - 0.44422826920379854, - 0.4435168299677126, - 0.4399061219083689, - 0.4391934001090445, - 0.4398359973102125, - 0.4405337087224209, - 0.4406365821789237, - 0.4386681406628048, - 0.43151731086235207, - 0.434721170353085, - 0.43487280048641924, - 0.4329042829865195, - 0.433416699488342, - 0.42987830311330055, - 0.43300401292563434, - 0.4314149039382492, - 0.42901227598890873, - 0.4318874524485123, - 0.42843561128831525, - 0.42879913453039303, - 0.4235885619979414, - 0.42620863493158434, - 0.419281739467332, - 0.41818858184237323, - 0.419558921482782, - 0.422112936093195, - 0.4212802253188397, - 0.42224026331238457, - 0.42259523920762726, - 0.4217926941581237, - 0.42191492361417987, - 0.42123687589907216, - 0.41781144676436505, - 0.4218286754396928, - 0.42456797675184355, - 0.4249744845847702, - 0.42467590556862206, - 0.42458704978941186, - 0.42549604553490505, - 0.42524546949792, - 0.42706914192287504, - 0.42759069755294676, - 0.42535494958620634, - 0.4405299494185968, - 0.43906942089474016, - 0.44263282347882976, - 0.4415326351320118, - 0.4415908755250489, - 0.4381440479112345, - 0.43905464049619225, - 0.43310131145769604, - 0.43659978201341776, - 0.4382413989591924, - 0.4383669569170793, - 0.4370277244653933, - 0.4379479323930446, - 0.43525249300784885, - 0.4315974691925406, - 0.43121997132238976, - 0.43121888689366045, - 0.43263760007227176, - 0.43020148903847466, - 0.43131915630086437, - 0.43285584063600363, - 0.43078768338187795, - 0.4317578404957255 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e1", - "id": "shiba-inu", - "symbol": "shib", - "name": "Shiba Inu", - "image": "https://coin-images.coingecko.com/coins/images/11939/large/shiba.png?1696511800", - "current_price": 2.114e-05, - "market_cap": 12456720215, - "market_cap_rank": 12, - "fully_diluted_valuation": 21139131908, - "total_volume": 567350805, - "high_24h": 2.309e-05, - "low_24h": 2.104e-05, - "price_change_24h": -1.896324581001e-06, - "price_change_percentage_24h": -8.23205, - "market_cap_change_24h": -1092448396.1170692, - "market_cap_change_percentage_24h": -8.06284, - "circulating_supply": 589262627898598.0, - "total_supply": 999982355273008.0, - "max_supply": null, - "ath": 8.616e-05, - "ath_change_percentage": -75.56117, - "ath_date": "2021-10-28T03:54:55.568Z", - "atl": 5.6366e-11, - "atl_change_percentage": 37355851.59884, - "atl_date": "2020-11-28T11:26:25.838Z", - "roi": null, - "last_updated": "2024-06-13T16:12:18.990Z", - "sparkline_in_7d": { - "price": [ - 2.577491449906896e-05, - 2.5787342014926016e-05, - 2.5666248644582904e-05, - 2.5656689756329997e-05, - 2.5627741631141397e-05, - 2.5387978580925212e-05, - 2.5505962285981815e-05, - 2.542906016059097e-05, - 2.507296956317552e-05, - 2.5372532885278557e-05, - 2.5278705934083095e-05, - 2.531982642302256e-05, - 2.522227057222094e-05, - 2.5184060113317984e-05, - 2.5133548116623132e-05, - 2.503620222519788e-05, - 2.5108541433474705e-05, - 2.5290251732552724e-05, - 2.5401603867394155e-05, - 2.5287008753551263e-05, - 2.5282522449334608e-05, - 2.525858418238084e-05, - 2.5162003343061895e-05, - 2.514890906757104e-05, - 2.5328340926395915e-05, - 2.5078545341364073e-05, - 2.504795481124443e-05, - 2.5205648790996784e-05, - 2.5009055275637936e-05, - 2.471342907545737e-05, - 2.313097116668298e-05, - 2.3198967103856772e-05, - 2.342170808813791e-05, - 2.361029474310165e-05, - 2.3674447545767672e-05, - 2.373601894325255e-05, - 2.369164126237728e-05, - 2.3940960077606958e-05, - 2.3964954412765368e-05, - 2.3912374580448078e-05, - 2.388792546430414e-05, - 2.405069031471118e-05, - 2.3955109603500108e-05, - 2.394870836410367e-05, - 2.400268882812773e-05, - 2.3926963787637417e-05, - 2.3796605159601694e-05, - 2.368566510831915e-05, - 2.3338864704353164e-05, - 2.3333229370618224e-05, - 2.3385433604172215e-05, - 2.343516194099949e-05, - 2.338169785049255e-05, - 2.3202448964805043e-05, - 2.3292706635367906e-05, - 2.3315682157193454e-05, - 2.3274982896818177e-05, - 2.3210107939933236e-05, - 2.329885183445532e-05, - 2.3223553675138917e-05, - 2.3207758224189587e-05, - 2.3217802510668648e-05, - 2.3239975598083855e-05, - 2.3046027312533304e-05, - 2.30525391100974e-05, - 2.3098454721497728e-05, - 2.3160279092704065e-05, - 2.3224180803660993e-05, - 2.3158616603555345e-05, - 2.3194403826276938e-05, - 2.3168731473895607e-05, - 2.312668716571879e-05, - 2.316857227069393e-05, - 2.3406840991176176e-05, - 2.3210974295554292e-05, - 2.3374408472733316e-05, - 2.3258814617138993e-05, - 2.340231310890609e-05, - 2.337837486994113e-05, - 2.349305305927445e-05, - 2.353763988962515e-05, - 2.350082768630481e-05, - 2.356374354226022e-05, - 2.350351794615392e-05, - 2.346075817279114e-05, - 2.3389765930980297e-05, - 2.3400725153334745e-05, - 2.3336828507101014e-05, - 2.3293612860984725e-05, - 2.335821838233371e-05, - 2.3181769044546517e-05, - 2.306608565483312e-05, - 2.2791205980682827e-05, - 2.3102161623993818e-05, - 2.3256808484456604e-05, - 2.3231915695162133e-05, - 2.3184717201637035e-05, - 2.3058383566076424e-05, - 2.3003093511868885e-05, - 2.3119674115390042e-05, - 2.340370225447841e-05, - 2.3320109612156917e-05, - 2.3233663724702172e-05, - 2.3152974898975385e-05, - 2.291122471759521e-05, - 2.290103766289451e-05, - 2.2931711936433263e-05, - 2.286868808388322e-05, - 2.291790657401469e-05, - 2.287448324566785e-05, - 2.232361408358819e-05, - 2.2533318888608373e-05, - 2.2612939756677607e-05, - 2.2528394430288203e-05, - 2.251372573156921e-05, - 2.2380293555528433e-05, - 2.235676514092058e-05, - 2.2380092087213603e-05, - 2.216027008041654e-05, - 2.221476959108953e-05, - 2.212444242635956e-05, - 2.208116480361798e-05, - 2.1837580822931564e-05, - 2.1951599830812397e-05, - 2.172617483389764e-05, - 2.1605752139808315e-05, - 2.1483222983302633e-05, - 2.153956118334709e-05, - 2.173475012744602e-05, - 2.176401193819793e-05, - 2.1876511016519978e-05, - 2.188944832369825e-05, - 2.161964952572808e-05, - 2.1419953128885227e-05, - 2.1399418023727442e-05, - 2.1752550544277563e-05, - 2.187741585011323e-05, - 2.1892706078039803e-05, - 2.1985087683191776e-05, - 2.206740611637378e-05, - 2.214306358358615e-05, - 2.2124036662575896e-05, - 2.2205907031878823e-05, - 2.2040968542847475e-05, - 2.1839832196849178e-05, - 2.240428890865881e-05, - 2.2631586395897145e-05, - 2.2996039394659682e-05, - 2.2998907950143803e-05, - 2.2789622125207187e-05, - 2.2712769918929645e-05, - 2.2480379798603237e-05, - 2.1986801442320948e-05, - 2.2129556690162654e-05, - 2.2165281077171807e-05, - 2.215396672267584e-05, - 2.2071740663210508e-05, - 2.213186263231733e-05, - 2.1901400916080708e-05, - 2.158361889495303e-05, - 2.1571967962666456e-05, - 2.1627507310871414e-05, - 2.172488356615403e-05, - 2.162475579502192e-05, - 2.174313614595447e-05, - 2.1690975124672877e-05, - 2.168358275581533e-05, - 2.1631817729230405e-05 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e2", - "id": "avalanche-2", - "symbol": "avax", - "name": "Avalanche", - "image": "https://coin-images.coingecko.com/coins/images/12559/large/Avalanche_Circle_RedWhite_Trans.png?1696512369", - "current_price": 31.37, - "market_cap": 12336039858, - "market_cap_rank": 13, - "fully_diluted_valuation": 13883858858, - "total_volume": 400631566, - "high_24h": 33.92, - "low_24h": 31.22, - "price_change_24h": -2.2115923010240586, - "price_change_percentage_24h": -6.5859, - "market_cap_change_24h": -853680003.0690613, - "market_cap_change_percentage_24h": -6.47231, - "circulating_supply": 393288095.792132, - "total_supply": 442634465.792132, - "max_supply": 720000000.0, - "ath": 144.96, - "ath_change_percentage": -78.40094, - "ath_date": "2021-11-21T14:18:56.538Z", - "atl": 2.8, - "atl_change_percentage": 1017.79878, - "atl_date": "2020-12-31T13:15:21.540Z", - "roi": null, - "last_updated": "2024-06-13T16:12:08.288Z", - "sparkline_in_7d": { - "price": [ - 36.79641717348617, - 36.68410979660247, - 36.6771460983031, - 36.90048879267944, - 36.92037388824774, - 36.55106349523502, - 36.590959226648884, - 36.49297241809167, - 36.00745445261844, - 36.20065946476613, - 36.04543663869076, - 36.0725609681287, - 35.876900847552896, - 35.9280498238891, - 35.91375252426685, - 35.68459672173492, - 35.76893507683061, - 35.97513966603996, - 36.00651092156832, - 36.00118138010926, - 35.96780918321721, - 35.991725943402024, - 35.93507175410891, - 36.01277429624623, - 36.498793615897384, - 36.059867852650726, - 36.49607771750619, - 36.66631269087007, - 36.23966977033856, - 35.85085934824656, - 32.84120556418251, - 32.97542695384339, - 33.324042392674315, - 33.472020377444, - 33.591437193216905, - 33.654677877155486, - 33.51351228644148, - 33.38308288377218, - 33.62948346869839, - 33.50565938626758, - 33.600748176675125, - 33.63612467236573, - 33.597220653498454, - 33.48649952795666, - 33.55144712602306, - 33.399502303074485, - 33.277568910206185, - 33.09827284594471, - 32.73144172780417, - 32.506017490283355, - 32.53452485554117, - 32.658777018943766, - 32.47188612396496, - 32.396068022199564, - 32.42281623300861, - 32.4606045970453, - 32.26202036081569, - 32.186264560058184, - 32.29077813608087, - 32.18457252283369, - 32.28753884151476, - 32.22643105241184, - 32.46501280797681, - 32.10071352871953, - 32.27606134290574, - 32.32494631091454, - 32.38938582270163, - 32.41836894091093, - 32.443638497169154, - 32.49559628204491, - 32.48412144564168, - 32.391666379788596, - 32.319973021521896, - 32.574354210831636, - 32.3518194326206, - 32.499287205306494, - 32.456500391006564, - 32.595090576814115, - 32.6336873046921, - 32.87870526425297, - 32.89481201705793, - 32.79628795376823, - 32.87200387864327, - 32.87056564351809, - 32.964594391392076, - 32.953164489116816, - 33.25409820405088, - 33.26784216829242, - 32.99174487046676, - 32.90250277555153, - 32.68538295448128, - 32.41363473363381, - 32.12954804267814, - 32.556982140775176, - 32.73983492530872, - 32.70393161133859, - 32.69767063816333, - 32.53804681847593, - 32.513347552202156, - 32.677150529817226, - 33.00344855748194, - 32.88142805950023, - 32.80814074994772, - 32.79090616811804, - 32.54788352843789, - 32.471961509569375, - 32.372386900096664, - 32.46038826251462, - 32.28994347969455, - 32.15917471926712, - 31.58405391067497, - 32.041706524029884, - 32.1754970985055, - 32.12856533530451, - 32.210335898236615, - 32.0467195149819, - 32.128403275076934, - 32.164947555067066, - 32.0610289633325, - 31.925650626845634, - 31.957656017314793, - 31.660219569279338, - 31.388251993343445, - 31.568771324228155, - 31.103695488502485, - 31.12410660927707, - 31.104833520651685, - 31.520644388193027, - 31.54095069353261, - 31.571211232381476, - 31.578323571764113, - 31.55337701427656, - 31.523256232111773, - 31.32982671226109, - 31.088697248945532, - 31.478624810748105, - 31.587200690974477, - 31.808860274319446, - 31.757988902222305, - 31.982879046006104, - 32.18593602878563, - 32.06094398209641, - 32.22605608826008, - 32.10852019523954, - 31.908229507347343, - 33.28227517221924, - 33.17310684198888, - 33.629588367519254, - 33.51235188852577, - 33.66866815059355, - 33.919805379053464, - 33.29008977816115, - 32.58704978362071, - 33.15997710921095, - 33.14623290835212, - 33.28856804600406, - 33.14883327673528, - 33.31572616602874, - 32.90441830239353, - 32.70720277675876, - 32.50277930626974, - 32.80064239993714, - 32.61841544999852, - 32.27058445747969, - 32.42680118757773, - 32.21358469822336, - 32.10284175194236, - 32.15262636283782 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e3", - "id": "wrapped-bitcoin", - "symbol": "wbtc", - "name": "Wrapped Bitcoin", - "image": "https://coin-images.coingecko.com/coins/images/7598/large/wrapped_bitcoin_wbtc.png?1696507857", - "current_price": 66618, - "market_cap": 10193576873, - "market_cap_rank": 14, - "fully_diluted_valuation": 10193576873, - "total_volume": 255926806, - "high_24h": 69784, - "low_24h": 66558, - "price_change_24h": -3165.904319931433, - "price_change_percentage_24h": -4.53674, - "market_cap_change_24h": -476903059.3773842, - "market_cap_change_percentage_24h": -4.46937, - "circulating_supply": 153024.10916775, - "total_supply": 153024.10916775, - "max_supply": 153024.10916775, - "ath": 73505, - "ath_change_percentage": -9.28546, - "ath_date": "2024-03-14T07:10:23.403Z", - "atl": 3139.17, - "atl_change_percentage": 2024.13155, - "atl_date": "2019-04-02T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:25.660Z", - "sparkline_in_7d": { - "price": [ - 71192.66956998517, - 71210.43805544497, - 71223.99228494412, - 71407.65206912003, - 71481.65785031437, - 70921.35091426311, - 71175.18172699648, - 71030.56176348223, - 70717.2902862413, - 70806.33341751386, - 70823.31969444483, - 71006.08346369042, - 70867.36648505628, - 70783.47274059705, - 70825.29216371356, - 70767.66042086895, - 71113.70056999638, - 71151.18452280205, - 71324.97924444817, - 71228.09500259525, - 71098.08730621196, - 71106.35629569305, - 71230.44766671187, - 71337.78480316745, - 71826.97182668313, - 71126.40202708774, - 71419.43075428226, - 71298.98862624548, - 71029.77132913416, - 70798.9752761622, - 68813.95676656808, - 68913.789033884, - 69097.4200680681, - 69217.13198384881, - 69294.76257225728, - 69427.76155119247, - 69320.77030691325, - 69451.84593486252, - 69441.0452562792, - 69434.89182805004, - 69473.01987274512, - 69309.9491459696, - 69342.1568779624, - 69425.64456921838, - 69601.4772399938, - 69414.9007250587, - 69533.72898656607, - 69512.05871128797, - 69321.2421870322, - 69309.43912732053, - 69442.32453515958, - 69563.92922454112, - 69535.07315484872, - 69508.07620593828, - 69524.77918721904, - 69498.74148483861, - 69467.76112111413, - 69326.07409080511, - 69444.59533284347, - 69373.30584820561, - 69293.98504168619, - 69395.7119850797, - 69403.28443995933, - 69246.5402684641, - 69302.31941041812, - 69280.44056184727, - 69275.9144554084, - 69417.29807571434, - 69304.51717541987, - 69367.79966167102, - 69390.32192399217, - 69364.46615501193, - 69392.34058543835, - 69579.90223569791, - 69462.63718156575, - 69471.71410195033, - 69504.98466165274, - 69574.86014619212, - 69576.12198336858, - 69752.77025393923, - 69633.09774874854, - 69689.76234979322, - 69717.8872345898, - 69650.26346497516, - 69620.70944846896, - 69567.08359915658, - 69686.06977257652, - 69669.95077112962, - 69597.07261269429, - 69557.96812910974, - 69505.08706454506, - 69416.05060184855, - 69461.82706663881, - 69442.08087249391, - 69507.10658548055, - 69376.86794312892, - 69383.26879572507, - 69268.48734311856, - 69334.23379007277, - 69550.30296164217, - 69893.56568170572, - 69884.36673054469, - 69818.29307865055, - 69733.82360573606, - 69467.68025154705, - 69517.76779896449, - 69542.08901916677, - 69554.43278264512, - 69525.60601323957, - 69441.78072754989, - 68920.3682102825, - 68281.31606504296, - 68216.72137855236, - 67934.12253154014, - 67890.35252558776, - 67694.37879830299, - 67575.93569304796, - 67516.14405065493, - 67137.57957089036, - 66935.33422780728, - 66787.92289518836, - 67155.74700156518, - 66854.62678568753, - 67046.85396720357, - 66638.09740155128, - 66402.26331331683, - 66580.57001292387, - 67091.6074529234, - 67185.00140864284, - 67325.70088166565, - 67405.54598673644, - 67445.13367942694, - 67374.93679284593, - 67289.71895881696, - 67205.1177667891, - 67442.65380443887, - 67403.68769084064, - 67346.38331983074, - 67349.92996051739, - 67269.3746701813, - 67463.00112140889, - 67434.90700992304, - 67710.61451239324, - 67548.70244211717, - 67848.55431249653, - 69212.24685520158, - 69570.6317310227, - 69830.08469637443, - 69756.4056431768, - 69489.94956844948, - 69271.50759372964, - 68926.54451244614, - 67723.5676431227, - 68273.08616187544, - 68501.89891953525, - 68304.25381391133, - 68107.98632659222, - 68280.47770917349, - 67894.80473143562, - 67657.60055646297, - 67553.28099809277, - 67478.91789813784, - 67405.70884355051, - 67396.94683761189, - 67787.56620657025, - 67526.22798347319, - 67372.02167410115, - 67740.62345525081 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e4", - "id": "tron", - "symbol": "trx", - "name": "TRON", - "image": "https://coin-images.coingecko.com/coins/images/1094/large/tron-logo.png?1696502193", - "current_price": 0.116532, - "market_cap": 10181028021, - "market_cap_rank": 15, - "fully_diluted_valuation": 10181036914, - "total_volume": 404582093, - "high_24h": 0.11785, - "low_24h": 0.115612, - "price_change_24h": -0.000995139013446791, - "price_change_percentage_24h": -0.84673, - "market_cap_change_24h": -79035093.43829536, - "market_cap_change_percentage_24h": -0.77032, - "circulating_supply": 87295152486.1209, - "total_supply": 87295228738.0036, - "max_supply": null, - "ath": 0.231673, - "ath_change_percentage": -49.86611, - "ath_date": "2018-01-05T00:00:00.000Z", - "atl": 0.00180434, - "atl_change_percentage": 6337.06065, - "atl_date": "2017-11-12T00:00:00.000Z", - "roi": { - "times": 60.33261904154942, - "currency": "usd", - "percentage": 6033.261904154942 - }, - "last_updated": "2024-06-13T16:12:16.731Z", - "sparkline_in_7d": { - "price": [ - 0.1148564737067988, - 0.1149515134537571, - 0.11492320160110489, - 0.11491254133296035, - 0.11474313952966661, - 0.11490106376542945, - 0.11485611859476062, - 0.11477985704765145, - 0.11426509845207788, - 0.11473984765522291, - 0.11457163251262518, - 0.11480735418554176, - 0.11471291365659761, - 0.11473267709961874, - 0.11472659412973106, - 0.11444935186709485, - 0.11385258809064912, - 0.11397908988162127, - 0.11395110175549761, - 0.1139646442384428, - 0.11397475343112157, - 0.11404566758278625, - 0.1145044789912688, - 0.11444626476541629, - 0.11455101409806882, - 0.1143629098679429, - 0.11455010484663543, - 0.11486501450179075, - 0.1148138537352627, - 0.1147173805748953, - 0.11189778786237697, - 0.11291052825457573, - 0.11247352269094307, - 0.11262700619295232, - 0.11260036108331521, - 0.11270262714760568, - 0.11270664443667062, - 0.11259857339655827, - 0.11275565908867025, - 0.11278834795063482, - 0.11240973629395147, - 0.11259969189148843, - 0.1126490451330744, - 0.1126989659175737, - 0.11306595661081695, - 0.11323331285403807, - 0.11346546717362858, - 0.11300081676419135, - 0.11290254925899255, - 0.11294998951388763, - 0.11331805637958116, - 0.11363048177453834, - 0.11400669840800234, - 0.11404156729386403, - 0.11442141821048897, - 0.11472305842210921, - 0.11478644787110319, - 0.11487618273130132, - 0.11512856422088501, - 0.11484920743043697, - 0.11474653486735206, - 0.11488757266744652, - 0.11479115755366948, - 0.11399506407476846, - 0.11409947764022736, - 0.11444642237299016, - 0.11452347531954056, - 0.11474792772634834, - 0.11492228487006462, - 0.11552336880143153, - 0.11569148053051508, - 0.11615907399679425, - 0.11632253097798417, - 0.11625091510588136, - 0.11646297423913937, - 0.11663620011755857, - 0.1165718654872611, - 0.11668799468224995, - 0.11670895766814846, - 0.11686721696897824, - 0.11661177980819114, - 0.11684956170482194, - 0.11675600622220808, - 0.11672915252800008, - 0.11685572595538365, - 0.11641175527704684, - 0.11666300128067991, - 0.11675953401665086, - 0.11695049736919458, - 0.11743401707390609, - 0.11744474528277284, - 0.11643957528937517, - 0.11615062605236377, - 0.11619260209164607, - 0.11623700688983049, - 0.11636512371845871, - 0.11637112427872147, - 0.11636114018546416, - 0.11627820603197639, - 0.11679566983488938, - 0.1170877195841707, - 0.11743114531007219, - 0.11744227135946243, - 0.11732883460241228, - 0.11768989253883397, - 0.11754215637515952, - 0.11742712305063234, - 0.11759334796323569, - 0.11764803370987127, - 0.11783330278985432, - 0.11663486698093406, - 0.11770760737443982, - 0.11729600328149756, - 0.11619012606109597, - 0.11654595281816409, - 0.11669536367849892, - 0.1167567278879402, - 0.11684255236129393, - 0.11716258234739343, - 0.11728924409685978, - 0.11713496515806474, - 0.11712950743570726, - 0.11710974436328259, - 0.11677390952042353, - 0.11649500760441793, - 0.11651851988035693, - 0.1164727344280187, - 0.11666385869060261, - 0.11653460763751086, - 0.11646238788438742, - 0.11669754309217974, - 0.11676461043099781, - 0.11653946047972424, - 0.11656051378229963, - 0.11668530801939539, - 0.11701509976622623, - 0.11721117879712546, - 0.11633706142051459, - 0.11680486420667346, - 0.11672597347589686, - 0.11693435952567166, - 0.11701936147962977, - 0.11681362447171162, - 0.11661934979403737, - 0.11640965415442421, - 0.11687113215424925, - 0.1170137070088226, - 0.11751192542184706, - 0.11759720710509265, - 0.11764748480924814, - 0.11778733969078811, - 0.11709281173792767, - 0.11615412950062146, - 0.11655386940115041, - 0.11667979676786434, - 0.11662225678198468, - 0.11646791431273601, - 0.11679873405040905, - 0.11656458934498665, - 0.11648254206599393, - 0.11674043880609919, - 0.11666765832682206, - 0.11690817180571768, - 0.11593940151799123, - 0.11634343178488359, - 0.1163327865366392, - 0.11639436060621627, - 0.1165041428298041 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e5", - "id": "chainlink", - "symbol": "link", - "name": "Chainlink", - "image": "https://coin-images.coingecko.com/coins/images/877/large/chainlink-new-logo.png?1696502009", - "current_price": 15.16, - "market_cap": 8902894959, - "market_cap_rank": 16, - "fully_diluted_valuation": 15164189055, - "total_volume": 466998501, - "high_24h": 16.22, - "low_24h": 15.08, - "price_change_24h": -0.9775020815860955, - "price_change_percentage_24h": -6.05557, - "market_cap_change_24h": -552339051.6168671, - "market_cap_change_percentage_24h": -5.84162, - "circulating_supply": 587099971.3083414, - "total_supply": 1000000000.0, - "max_supply": 1000000000.0, - "ath": 52.7, - "ath_change_percentage": -71.34184, - "ath_date": "2021-05-10T00:13:57.214Z", - "atl": 0.148183, - "atl_change_percentage": 10091.35497, - "atl_date": "2017-11-29T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:29.715Z", - "sparkline_in_7d": { - "price": [ - 17.379946361708527, - 17.365340627457773, - 17.38066892425186, - 17.489864879123573, - 17.449566687043824, - 17.360590844596, - 17.374664318869424, - 17.353858369694333, - 17.22687379256209, - 17.396340485226546, - 17.38304293714035, - 17.352366260722988, - 17.255613114238063, - 17.26776703334099, - 17.296488901516504, - 17.317667937007116, - 17.398984532343643, - 17.447817736559706, - 17.523603401767105, - 17.513276361559264, - 17.49038604806954, - 17.46633262500224, - 17.467859595255185, - 17.46780527798377, - 17.597693808955807, - 17.47490297695814, - 17.495728715738554, - 17.583227882172096, - 17.580437674296267, - 17.417204040248272, - 17.114113038589682, - 16.169695099692966, - 16.286989037363874, - 16.306230573215053, - 16.348398591411367, - 16.32943187204677, - 16.323311011160193, - 16.25561520821208, - 16.300700249232197, - 16.243810092611206, - 16.30465232138206, - 16.332532470655767, - 16.388217488186203, - 16.2934706075046, - 16.293270912307644, - 16.2084300841248, - 16.12562866976468, - 16.06389049081052, - 15.905108914047462, - 15.830370463045499, - 15.87959355325788, - 15.92821289929852, - 15.95010530925018, - 15.824569099609196, - 15.836632830323552, - 15.860069368412239, - 15.808096427226426, - 15.805779699942214, - 15.834630152940498, - 15.839903621911903, - 15.922194303614539, - 16.00545932382786, - 16.05393967703448, - 15.963058584479608, - 16.04045396125171, - 15.991945785350287, - 16.03138344849503, - 16.042332264026722, - 16.018700870372722, - 16.08002802476228, - 16.045077202863983, - 15.98809966331421, - 16.003610655413212, - 16.094780842571538, - 16.031893814840277, - 16.0603618123373, - 16.012985300913307, - 16.027462426671065, - 16.064056688119525, - 16.099459589893627, - 16.169898276992416, - 16.202130626108765, - 16.26798263781888, - 16.326094859728787, - 16.37146423202879, - 16.21588182690101, - 16.188427274999086, - 16.16786258749154, - 16.12163492163807, - 16.175394179437223, - 16.052619459089676, - 15.934892896728938, - 15.905117485402002, - 15.9689802300053, - 16.038496658073967, - 15.987567226761499, - 15.97187101312379, - 15.918019034334234, - 15.880045438462124, - 16.004170086580782, - 16.16295773497777, - 16.084989788642645, - 16.02984025718268, - 15.961892430655956, - 15.861864396620197, - 15.864801232749734, - 15.857465072736716, - 15.90467475199985, - 15.890070613001175, - 15.790850814619946, - 15.680485678090776, - 15.663494290497121, - 15.696403591816559, - 15.635454724095737, - 15.707677145325627, - 15.512117439094611, - 15.474929325642618, - 15.530485333189269, - 15.467719423998606, - 15.434049877605311, - 15.39631403566868, - 15.315349172572294, - 15.3156795657001, - 15.291304600790903, - 14.877220331100169, - 14.868541700186238, - 14.919536125222425, - 15.018153525089264, - 15.058510882041354, - 15.065811035081314, - 15.030318497268308, - 15.02824438695832, - 14.991920257963761, - 14.96248746780352, - 14.978834349681696, - 15.102367760016467, - 15.172822816875643, - 15.249789709701265, - 15.215262258955947, - 15.226959161184134, - 15.260779640596205, - 15.278058751898426, - 15.458052659444999, - 15.399559095030442, - 15.209700518297531, - 15.89476309096288, - 15.895921457730724, - 16.10985455003201, - 16.083855895095507, - 16.167336708346113, - 16.211422461036857, - 16.038822106787062, - 15.697822692256596, - 15.935289314623748, - 16.00209390198101, - 15.997234413681007, - 15.950285774358434, - 15.973904201311962, - 15.788553153406003, - 15.562578436342534, - 15.515949431473048, - 15.572773446347355, - 15.620882699615875, - 15.573717096594784, - 15.5170466945545, - 15.454888076037841, - 15.407343162277709, - 15.448563361664386 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e6", - "id": "polkadot", - "symbol": "dot", - "name": "Polkadot", - "image": "https://coin-images.coingecko.com/coins/images/12171/large/polkadot.png?1696512008", - "current_price": 6.39, - "market_cap": 8796463669, - "market_cap_rank": 17, - "fully_diluted_valuation": 9314248043, - "total_volume": 292082979, - "high_24h": 6.91, - "low_24h": 6.37, - "price_change_24h": -0.32234976203097165, - "price_change_percentage_24h": -4.79925, - "market_cap_change_24h": -433990061.64655304, - "market_cap_change_percentage_24h": -4.70172, - "circulating_supply": 1375664193.26796, - "total_supply": 1456639622.73933, - "max_supply": null, - "ath": 54.98, - "ath_change_percentage": -88.38737, - "ath_date": "2021-11-04T14:10:09.301Z", - "atl": 2.7, - "atl_change_percentage": 136.69452, - "atl_date": "2020-08-20T05:48:11.359Z", - "roi": null, - "last_updated": "2024-06-13T16:12:12.724Z", - "sparkline_in_7d": { - "price": [ - 7.2158183701792, - 7.205578247336658, - 7.216708820897308, - 7.280020496233092, - 7.253007432649044, - 7.22772720427525, - 7.226958009465198, - 7.204438728147573, - 7.120663113952022, - 7.143044825181063, - 7.120779903472367, - 7.137075852118937, - 7.14166758912784, - 7.132216767131299, - 7.098950667861725, - 7.093535317647064, - 7.097224504310377, - 7.163805921691471, - 7.171551534651735, - 7.177220815563254, - 7.15022518133256, - 7.136149786016502, - 7.140484239974922, - 7.195622602400675, - 7.267288842462569, - 7.140957602628061, - 7.209652386763208, - 7.241523540315624, - 7.205027919391556, - 7.112291539447896, - 7.008681033225969, - 6.536046976376014, - 6.578699912807596, - 6.658457789173462, - 6.619727705614281, - 6.650357803773569, - 6.65804439440238, - 6.642938354988882, - 6.661923495673887, - 6.623847378710922, - 6.621846729903165, - 6.612390032806387, - 6.627220050486479, - 6.614204555036978, - 6.613268692493264, - 6.58115626750832, - 6.553021487796138, - 6.5438402758492025, - 6.429591512229877, - 6.415062846605451, - 6.439595235736179, - 6.4675971938175145, - 6.465895781882311, - 6.439515840189276, - 6.454909725165201, - 6.413758393758256, - 6.394153834098477, - 6.382153664660276, - 6.3990627590993725, - 6.3798222813795995, - 6.38494186184319, - 6.392066757731466, - 6.427969596810459, - 6.392601044546113, - 6.425813889166119, - 6.414496104517734, - 6.419132103911447, - 6.426431942939986, - 6.422132096762351, - 6.468189810544184, - 6.4857805165332865, - 6.48488819703415, - 6.460868410655143, - 6.4797719182839035, - 6.456603515945362, - 6.4890494520241955, - 6.472738968365874, - 6.476808915556344, - 6.4831294382629965, - 6.510509431486213, - 6.523328502217617, - 6.505331228759672, - 6.52147939342136, - 6.518656847925018, - 6.524276286841784, - 6.5309232209489005, - 6.506245916548093, - 6.506529100302875, - 6.45971416807483, - 6.46244503553003, - 6.445032921845993, - 6.41912551866863, - 6.390535432829111, - 6.451497992695137, - 6.51401491014122, - 6.492876925121894, - 6.479076816104539, - 6.450900359278311, - 6.443931396113169, - 6.5002880827322285, - 6.55906028327373, - 6.515369582004899, - 6.534560869626222, - 6.543876652835323, - 6.498417875135266, - 6.516225875397567, - 6.511244304475052, - 6.503058649886263, - 6.507712577403564, - 6.472835439358408, - 6.444597149099796, - 6.429715815295909, - 6.4415377191870515, - 6.438583153290354, - 6.438374590179058, - 6.376342426410263, - 6.350895644140931, - 6.381777016486789, - 6.376881638298022, - 6.381826737226803, - 6.355290853268616, - 6.289761387070451, - 6.238949321404724, - 6.270037273235404, - 6.300394038832854, - 6.32837445443273, - 6.409242772627452, - 6.456047879691963, - 6.411398936290168, - 6.390628542019932, - 6.376057220361473, - 6.382092432276942, - 6.390730873762841, - 6.350815140133205, - 6.323591406527014, - 6.4059437351618636, - 6.410562492663111, - 6.401073994674333, - 6.398709455705786, - 6.398293374627665, - 6.399832714458417, - 6.382750773073711, - 6.411970013986188, - 6.420624570444404, - 6.382197537663161, - 6.606860508383084, - 6.638491786878329, - 6.679468023659704, - 6.705574641774703, - 6.733993639091692, - 6.684649859065835, - 6.863318562031398, - 6.704843344134499, - 6.793388351951778, - 6.750758845229138, - 6.734038769718515, - 6.740837147895722, - 6.702728207197538, - 6.607199853469666, - 6.562544004212757, - 6.545992634285373, - 6.565977745392985, - 6.566052576124106, - 6.517932520057684, - 6.523675864185963, - 6.495961058278123, - 6.478976631959559, - 6.515357347194848 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e7", - "id": "bitcoin-cash", - "symbol": "bch", - "name": "Bitcoin Cash", - "image": "https://coin-images.coingecko.com/coins/images/780/large/bitcoin-cash-circle.png?1696501932", - "current_price": 436.56, - "market_cap": 8615996409, - "market_cap_rank": 18, - "fully_diluted_valuation": 9175768877, - "total_volume": 293349511, - "high_24h": 465.6, - "low_24h": 434.84, - "price_change_24h": -27.59903638702275, - "price_change_percentage_24h": -5.94597, - "market_cap_change_24h": -523360021.0471039, - "market_cap_change_percentage_24h": -5.72644, - "circulating_supply": 19718884.2716508, - "total_supply": 21000000.0, - "max_supply": 21000000.0, - "ath": 3785.82, - "ath_change_percentage": -88.50119, - "ath_date": "2017-12-20T00:00:00.000Z", - "atl": 76.93, - "atl_change_percentage": 465.83517, - "atl_date": "2018-12-16T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:05.719Z", - "sparkline_in_7d": { - "price": [ - 496.59987785146507, - 494.037874459774, - 494.57079129253657, - 498.47304130382764, - 498.38787795754473, - 494.65785034288314, - 496.1798560059568, - 493.72308525299457, - 488.1125703676584, - 493.49543295070663, - 496.10613045705077, - 494.2861275980283, - 496.3255807925996, - 495.10006290940095, - 494.64253638097955, - 497.0416356996276, - 499.93949790761, - 511.1941475421107, - 516.7014672679564, - 511.4635000368087, - 512.0207886298334, - 511.974573288188, - 515.3157338940584, - 514.2359383113181, - 517.7538533586569, - 512.8280684241157, - 513.5388964059463, - 513.5626257722947, - 512.183843279251, - 513.0739761929292, - 479.23195996945486, - 476.15231788355896, - 482.45483759701614, - 481.29212772313804, - 481.6071842388287, - 480.5637122191431, - 475.8512041469072, - 475.1310719686542, - 480.1276619897946, - 482.7374719381199, - 482.66316399936755, - 480.5711293352605, - 482.79377512501316, - 481.29838525523087, - 481.28771651715044, - 480.15049303451775, - 477.92902860417337, - 477.60918989591744, - 467.9333012782786, - 472.0176375151904, - 473.0906011604542, - 474.0529602876343, - 467.9193064581275, - 468.2733929724903, - 470.46624250753575, - 470.2662290693254, - 470.6622397432956, - 468.37858701877303, - 471.02661600069763, - 469.11229630650826, - 469.42325441300693, - 470.8593553462998, - 470.7550978910467, - 466.7239828437622, - 466.1220179409784, - 466.3069796662091, - 467.44867829289643, - 468.6043957439907, - 466.96620369486857, - 469.10361756185057, - 468.5960156998271, - 467.7736795704863, - 467.56302916371436, - 471.0651473885133, - 473.144749089591, - 471.8175997696106, - 470.19846041762526, - 470.7497009127442, - 470.72116612725074, - 473.92458449591334, - 473.77255665905346, - 474.9965575380957, - 474.1642469353776, - 473.88219327637404, - 474.1917768262562, - 473.91669869515243, - 472.9633908339895, - 471.213400008747, - 470.0049051336051, - 469.2681633239359, - 466.81891784487146, - 464.6608526654643, - 463.996757765741, - 464.64918245523086, - 466.75315197293037, - 465.28964361506735, - 465.3283698882801, - 465.26434938924837, - 466.13747516902066, - 469.4593042435411, - 472.4305132369818, - 470.80228183971764, - 471.53663545269546, - 470.5728632756358, - 470.35471421817124, - 470.5669827449598, - 468.30651772783824, - 469.34805225720845, - 468.8013935627516, - 466.6672603218926, - 459.058153585661, - 459.0088926067877, - 459.34947814676036, - 458.28182019187074, - 455.56918369147127, - 454.22239562657256, - 453.70725864250284, - 454.9016571941401, - 452.81408274809405, - 450.92399107885814, - 448.069330161191, - 445.70059712279505, - 442.73727166531125, - 443.90867408565816, - 442.2652743184123, - 437.30727469965893, - 440.13673609841834, - 446.4688281727811, - 446.28537467383853, - 447.15750003669655, - 447.35958217777437, - 447.514045607407, - 446.5591790945321, - 444.8785838158734, - 445.2008868656484, - 445.92522071949435, - 445.97623833590166, - 442.3413604219558, - 442.4180267264119, - 444.20467843942606, - 445.1173875198804, - 445.69305650767046, - 448.2350791717812, - 447.7966133875653, - 446.59656963286506, - 462.20991530130874, - 460.6957034128049, - 465.0569453960222, - 463.4280169757995, - 462.05949416416195, - 459.32105495856786, - 460.78381614482345, - 449.0453920415754, - 454.9150731276059, - 454.0421557079863, - 454.80553167389144, - 454.0236949754572, - 455.43855522506664, - 451.41472156277933, - 447.42494722643653, - 448.8066168636677, - 449.2567228327468, - 445.2325837245685, - 444.08358587169204, - 447.26720452892704, - 446.6679808902883, - 445.8357538903818, - 446.64186052886737 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e8", - "id": "uniswap", - "symbol": "uni", - "name": "Uniswap", - "image": "https://coin-images.coingecko.com/coins/images/12504/large/uni.jpg?1696512319", - "current_price": 9.89, - "market_cap": 7445121518, - "market_cap_rank": 19, - "fully_diluted_valuation": 9877223076, - "total_volume": 317768338, - "high_24h": 10.3, - "low_24h": 9.68, - "price_change_24h": -0.34705858336407047, - "price_change_percentage_24h": -3.38888, - "market_cap_change_24h": -279152766.01777744, - "market_cap_change_percentage_24h": -3.61397, - "circulating_supply": 753766667.0, - "total_supply": 1000000000.0, - "max_supply": 1000000000.0, - "ath": 44.92, - "ath_change_percentage": -78.14669, - "ath_date": "2021-05-03T05:25:04.822Z", - "atl": 1.03, - "atl_change_percentage": 852.85958, - "atl_date": "2020-09-17T01:20:38.214Z", - "roi": null, - "last_updated": "2024-06-13T16:12:37.741Z", - "sparkline_in_7d": { - "price": [ - 10.679367780160506, - 10.739223292629868, - 10.735893338010259, - 10.707921250817373, - 10.759823650424668, - 10.666005056042684, - 10.67965943681322, - 10.606839253765969, - 10.511223964347536, - 10.62210599557374, - 10.600084586627261, - 10.675907508838103, - 10.632689402638297, - 10.640810201143822, - 10.64231693916666, - 10.64151400566319, - 10.667015081419438, - 10.68799557703199, - 10.714938424706576, - 10.684710462909958, - 10.679233429962192, - 10.617945903552057, - 10.623333077947706, - 10.472347676788726, - 10.58624023292665, - 10.393195476911467, - 10.47464263174338, - 10.50808249886687, - 10.388665122880658, - 10.31508956140265, - 9.520514070318052, - 9.694573718490936, - 9.760054743009086, - 9.772813770744037, - 9.803911634871943, - 9.795203144059089, - 9.808884176300127, - 9.838325361389794, - 9.907130050910485, - 9.901222703631179, - 9.897528393826201, - 9.911478285606059, - 9.953759457909714, - 9.948414455853015, - 10.033714362377172, - 9.978042542219185, - 9.990667428982444, - 9.95391110468762, - 9.826175172589322, - 9.875672070050065, - 9.877235237926394, - 9.933221798711179, - 9.987877579495457, - 10.08552827831684, - 10.010570689527704, - 9.982680088501272, - 9.934649179371132, - 9.920739449683147, - 9.941438530447568, - 9.967742674593662, - 10.014686041701468, - 10.030786736829448, - 9.968547983493718, - 9.924936575275842, - 9.957112735666101, - 9.944239800705844, - 9.96181725691792, - 10.023739606256774, - 9.97641478047443, - 9.929612485390695, - 9.913465545720822, - 9.870744082232525, - 9.881940467682915, - 9.935930440207349, - 9.863193873743914, - 9.80584303902844, - 9.77418217226053, - 9.836805008017189, - 9.805964140792769, - 9.854520718505082, - 9.830998793322948, - 9.8176962747766, - 9.821576929084799, - 9.807669278341645, - 9.804185431131478, - 9.763556382893256, - 9.794239746692728, - 9.781429630653477, - 9.731177431233949, - 9.792547609600339, - 9.7267162143667, - 9.635906632885606, - 9.687087664216824, - 9.75392554267795, - 9.90847159862096, - 9.902101838131037, - 9.859119750123947, - 9.843779579756301, - 9.992374822640885, - 10.089588001572176, - 10.614572620342107, - 10.419241557429796, - 10.404210236017935, - 10.350363408127626, - 10.272603082343075, - 10.356085352918369, - 10.279225009519402, - 10.306692390627996, - 10.358201684120383, - 10.305711881656341, - 10.136277220794254, - 9.917338501777232, - 9.808202185351082, - 9.690631801542, - 9.618763172711729, - 9.447350849233796, - 9.410683253521317, - 9.384611690916442, - 9.383661439784719, - 9.36464388992725, - 9.277141923917705, - 9.28281540548318, - 9.178544828327162, - 9.052218777173357, - 9.026136646757632, - 8.918621199245145, - 8.940449639345903, - 9.030575389256745, - 9.003707829759774, - 9.015171599005017, - 8.97757390648403, - 8.97989240493041, - 8.958860262347587, - 8.977154119026068, - 8.918047749620895, - 9.054827575320042, - 9.188318940285512, - 9.20581601547009, - 9.255665689113322, - 9.384812903369086, - 9.493718123599846, - 9.53013306693891, - 9.673520300052543, - 9.705451539109859, - 9.721906375502071, - 10.286789231432827, - 10.141872335441922, - 10.134390853026034, - 10.236404997173342, - 10.21107195727491, - 10.12657702685474, - 10.141863464973492, - 9.83061475089639, - 9.954853606986713, - 9.998737685553932, - 10.062262421555763, - 10.048496638684252, - 10.083105240262087, - 9.948515888842014, - 9.705958580501617, - 9.872251694647488, - 9.87081694837854, - 9.845674569231663, - 9.788434017414186, - 9.865535240855065, - 9.821280330347484, - 9.913584458532924, - 9.942960869683029 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492e9", - "id": "near", - "symbol": "near", - "name": "NEAR Protocol", - "image": "https://coin-images.coingecko.com/coins/images/10365/large/near.jpg?1696510367", - "current_price": 6.08, - "market_cap": 6617524765, - "market_cap_rank": 20, - "fully_diluted_valuation": 7196907695, - "total_volume": 394113964, - "high_24h": 6.62, - "low_24h": 6.04, - "price_change_24h": -0.5310555954507032, - "price_change_percentage_24h": -8.02976, - "market_cap_change_24h": -549343713.3281479, - "market_cap_change_percentage_24h": -7.66505, - "circulating_supply": 1087989615.73636, - "total_supply": 1183246170.6779, - "max_supply": null, - "ath": 20.44, - "ath_change_percentage": -70.34315, - "ath_date": "2022-01-16T22:09:45.873Z", - "atl": 0.526762, - "atl_change_percentage": 1050.67108, - "atl_date": "2020-11-04T16:09:15.137Z", - "roi": null, - "last_updated": "2024-06-13T16:12:26.112Z", - "sparkline_in_7d": { - "price": [ - 7.535346614120322, - 7.508839247900011, - 7.518463812853645, - 7.517523030781377, - 7.482229971546088, - 7.426809275498099, - 7.435577171793074, - 7.404140471801711, - 7.257758842492827, - 7.335420203983672, - 7.301036272362523, - 7.337140923118617, - 7.328718712274992, - 7.329869732528723, - 7.315882057131656, - 7.3082030298080225, - 7.307067002316488, - 7.380244889859768, - 7.408308132120056, - 7.432215827512272, - 7.416343685712841, - 7.427256815326366, - 7.379374182845957, - 7.330707411581692, - 7.41340307049425, - 7.341387376779397, - 7.422049512937037, - 7.37131341178234, - 7.290259490503009, - 7.239498883297873, - 6.662493722689308, - 6.666252710025911, - 6.685041058057321, - 6.766096079753369, - 6.85258115591307, - 6.858213327659777, - 6.874016564357217, - 6.820612877671341, - 6.847372626362306, - 6.854816979315095, - 6.872699595386059, - 6.823963849961129, - 6.83282405868146, - 6.849001174769132, - 6.866760255796278, - 6.831961081241616, - 6.823138434754577, - 6.796698756857247, - 6.704925729805385, - 6.672226337526318, - 6.6883254269591506, - 6.70046577232736, - 6.641717373329054, - 6.587824354478994, - 6.559711446388008, - 6.579289549319952, - 6.551800082191365, - 6.560888095605004, - 6.543940065464309, - 6.548002011733169, - 6.565352038854276, - 6.651462092377845, - 6.636336674362444, - 6.575026252127307, - 6.606961947275671, - 6.5992447527786595, - 6.643429491599923, - 6.624755627586643, - 6.6270417441563545, - 6.649094012441386, - 6.613521095132553, - 6.567255872295584, - 6.547406371625353, - 6.592842756683131, - 6.546245642544682, - 6.581027832851488, - 6.578452792309023, - 6.60173347667867, - 6.593393395375665, - 6.621082194009298, - 6.614345855017986, - 6.599125652927788, - 6.618748467780755, - 6.589016200475581, - 6.581795716943671, - 6.545033910357788, - 6.533957633107062, - 6.518906892276289, - 6.4840791047865665, - 6.492862108512542, - 6.453617554002935, - 6.444698744225424, - 6.363691823860974, - 6.458008366154014, - 6.472334823813882, - 6.458359758252319, - 6.43950272822709, - 6.387863412838983, - 6.410208875061975, - 6.444960756923864, - 6.6082508847707375, - 6.557364588106493, - 6.555944124559887, - 6.534220898804673, - 6.391072876583743, - 6.401866110527434, - 6.366128497899724, - 6.387671762627822, - 6.401243249405846, - 6.357609473814106, - 6.191107104045914, - 6.240807126500205, - 6.20842232310238, - 6.176327755239046, - 6.2454059386365754, - 6.20453249010802, - 6.206792687227189, - 6.228094078998109, - 6.192485826913598, - 6.181910136042109, - 6.166716647058562, - 6.159200718869592, - 6.095085728318727, - 6.1457076116083655, - 6.072593861865103, - 6.0835067627140145, - 6.115302487889654, - 6.133706681455447, - 6.112031829061159, - 6.1369815234401806, - 6.159234691125064, - 6.105683932318749, - 6.065993440449659, - 6.021145162288948, - 5.956924697207204, - 6.067815166104472, - 6.101690560309786, - 6.143809986692858, - 6.147462831854813, - 6.148484617062432, - 6.1779336106934535, - 6.158722061259639, - 6.189871747263052, - 6.2446223262946665, - 6.192260967438404, - 6.633228649248327, - 6.595603674338835, - 6.656750557625433, - 6.59678078226113, - 6.572261915695318, - 6.501241494613221, - 6.451798953916045, - 6.329803401759957, - 6.412642433844701, - 6.33931537035205, - 6.38927383227717, - 6.3495973644611325, - 6.357806351055083, - 6.281347265435304, - 6.171984088362432, - 6.165099219715043, - 6.180434513599492, - 6.200150750924437, - 6.139633322889923, - 6.152559791613707, - 6.1476390926243685, - 6.124905997741833, - 6.158901660126972 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492ea", - "id": "litecoin", - "symbol": "ltc", - "name": "Litecoin", - "image": "https://coin-images.coingecko.com/coins/images/2/large/litecoin.png?1696501400", - "current_price": 78.14, - "market_cap": 5834506501, - "market_cap_rank": 21, - "fully_diluted_valuation": 6566309853, - "total_volume": 405759975, - "high_24h": 79.56, - "low_24h": 77.28, - "price_change_24h": -0.63991779123225, - "price_change_percentage_24h": -0.8123, - "market_cap_change_24h": -39937626.55436993, - "market_cap_change_percentage_24h": -0.67985, - "circulating_supply": 74638351.9834713, - "total_supply": 84000000.0, - "max_supply": 84000000.0, - "ath": 410.26, - "ath_change_percentage": -80.99416, - "ath_date": "2021-05-10T03:13:07.904Z", - "atl": 1.15, - "atl_change_percentage": 6687.1201, - "atl_date": "2015-01-14T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:15.600Z", - "sparkline_in_7d": { - "price": [ - 85.32088166896818, - 85.04999164133766, - 85.19269459189857, - 85.523310442959, - 85.48648231831136, - 85.29282725084015, - 85.48377218518849, - 85.66304820034637, - 84.4425210602249, - 85.02734860954513, - 84.47970311873081, - 84.48280463165986, - 84.16931102143144, - 84.03584312505076, - 84.24822375508887, - 84.119015868878, - 84.15984475610296, - 84.58182362190743, - 84.45327117688204, - 84.21691375715679, - 83.99302201790294, - 83.82696137885071, - 83.99991415464206, - 84.13908862751157, - 84.3722532040078, - 83.87656630379053, - 83.93347056704438, - 83.74485268968449, - 83.47394090253913, - 83.30325140685794, - 82.43019558306881, - 78.57401674573877, - 79.40805511580359, - 80.04197688830617, - 79.92935002168004, - 80.23010550206087, - 79.98322284574375, - 80.20567511258221, - 80.34971034044099, - 80.31924987252818, - 80.27400699112927, - 80.21807400399888, - 80.32027934286214, - 80.03938607553444, - 80.15723274346786, - 79.87465507704924, - 79.91841068873802, - 79.99215940387109, - 79.4897789750087, - 79.37327090488861, - 79.63319569434384, - 79.79225234621535, - 79.45113230245502, - 79.51398221701248, - 79.68418776239702, - 79.72394307407262, - 79.55677635836567, - 79.62018365835152, - 79.83184535745558, - 79.97165885065122, - 79.98113344815053, - 79.97587057536425, - 79.93475252504511, - 79.71201922507187, - 79.71535637102976, - 79.69457863966349, - 79.76343216758936, - 79.92925827562692, - 79.82568275350964, - 79.90418815227302, - 79.90103041555555, - 79.96818698433353, - 80.10611727961992, - 80.37637649593002, - 80.22489191070352, - 80.4706064681123, - 80.50919478366467, - 80.62333752736178, - 80.44816906537454, - 80.45655152381087, - 80.4626666469631, - 80.51668533272372, - 80.54624944305338, - 80.46491499674232, - 80.42177069724556, - 80.34077836808217, - 80.16622008241707, - 79.85928918328794, - 79.66485900427652, - 79.83137202378227, - 79.7556587822552, - 79.36522737798161, - 79.39896223194822, - 79.40342319556316, - 79.48180038469938, - 79.32422329977875, - 79.11569579020173, - 79.2357368078912, - 79.2068026411919, - 79.67202856475777, - 80.31063345888401, - 79.99530164198353, - 79.99963681369682, - 79.709371294919, - 79.8042378271325, - 79.81034387538506, - 79.46010097464759, - 79.4845372496825, - 79.62047357560438, - 79.12864861426408, - 78.24040258112906, - 78.1875983927319, - 78.00833851045239, - 77.77642489456319, - 77.72609261843812, - 77.7471286005991, - 78.06440241585281, - 78.45153302473892, - 78.8831193317115, - 79.00770965737084, - 78.83257558039627, - 78.15702544435779, - 77.14651724237494, - 77.11490459025372, - 76.88501459167094, - 76.77301495264392, - 77.0804994455143, - 77.0514964503023, - 77.12370894240583, - 77.14346924479474, - 77.47899069037096, - 77.41174692965129, - 77.40920799593373, - 77.01435923896584, - 76.97556493739175, - 77.19425912398847, - 77.59408041437321, - 77.22984373492253, - 77.2377986920044, - 77.2867349057756, - 77.42912683535197, - 77.4170927744947, - 77.52932857466762, - 77.65261658420441, - 76.93582043086012, - 78.89109576890804, - 78.32604811647127, - 79.12105775654092, - 78.76430122110743, - 78.9245548266674, - 78.39465323245759, - 78.54179885643039, - 77.35624050836626, - 78.35756559572478, - 78.43297995689404, - 78.58238578107668, - 78.29688188471843, - 78.46102385941835, - 78.07620926536227, - 77.93401995267081, - 77.97059409557987, - 78.22767689750233, - 78.15487531443704, - 77.97686885181318, - 78.46027593252498, - 78.3310833951844, - 78.73843463482534, - 79.12579499307498 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492eb", - "id": "matic-network", - "symbol": "matic", - "name": "Polygon", - "image": "https://coin-images.coingecko.com/coins/images/4713/large/polygon.png?1698233745", - "current_price": 0.610742, - "market_cap": 5670240606, - "market_cap_rank": 22, - "fully_diluted_valuation": 6108235568, - "total_volume": 378742066, - "high_24h": 0.650051, - "low_24h": 0.608395, - "price_change_24h": -0.038334505410520525, - "price_change_percentage_24h": -5.906, - "market_cap_change_24h": -347704696.4983702, - "market_cap_change_percentage_24h": -5.7778, - "circulating_supply": 9282943566.203985, - "total_supply": 10000000000.0, - "max_supply": 10000000000.0, - "ath": 2.92, - "ath_change_percentage": -79.09766, - "ath_date": "2021-12-27T02:08:34.307Z", - "atl": 0.00314376, - "atl_change_percentage": 19289.74995, - "atl_date": "2019-05-10T00:00:00.000Z", - "roi": { - "times": 231.2214159705934, - "currency": "usd", - "percentage": 23122.141597059337 - }, - "last_updated": "2024-06-13T16:12:22.561Z", - "sparkline_in_7d": { - "price": [ - 0.7176591059752325, - 0.7238503747647071, - 0.7239098697821391, - 0.7366940333610092, - 0.7319290702575134, - 0.7353126429885594, - 0.7364008958936386, - 0.7341799622632259, - 0.722509205947687, - 0.7288531940238814, - 0.7270401465881823, - 0.7279994971131011, - 0.7262150662302624, - 0.7270649612318897, - 0.7244650629622986, - 0.7215677364941174, - 0.7225253256155748, - 0.7240855647797123, - 0.7250819712304573, - 0.7228108210492217, - 0.7177398987664816, - 0.7136474640708044, - 0.7139467157096525, - 0.7133973100193682, - 0.719257626373507, - 0.7147598488850518, - 0.7156017373058722, - 0.7166874559866975, - 0.714595977127475, - 0.7094300844208211, - 0.6601040925166723, - 0.6611518634697929, - 0.6618193204518972, - 0.6662544343722901, - 0.6668116483887798, - 0.6678606781281813, - 0.6668500066800203, - 0.6655373029623942, - 0.6680864029341509, - 0.6671749056416999, - 0.6670745565225289, - 0.6662283514429118, - 0.6656010654016187, - 0.6663619764989368, - 0.6664378524831667, - 0.661656611822727, - 0.661552433361518, - 0.6592504356542898, - 0.6493571693248386, - 0.6493852241340712, - 0.6499076253083934, - 0.6494585510518648, - 0.6487474682936454, - 0.6452571106063282, - 0.6487593683771855, - 0.651285258916886, - 0.650341246869471, - 0.6478896600545051, - 0.6493751967847237, - 0.648573225411652, - 0.6499949406635417, - 0.6498559269260002, - 0.6511763074419312, - 0.6453934969629219, - 0.6487000131572803, - 0.6480165692497354, - 0.6515801284985425, - 0.6518703441445166, - 0.6523582180643712, - 0.6547630909247465, - 0.6559540153828162, - 0.6539283077835665, - 0.6523778405184925, - 0.6552053608067806, - 0.6501926214666759, - 0.6518774686964279, - 0.6502316922114482, - 0.6522431896932532, - 0.6518081763252892, - 0.6545639380058048, - 0.6556812632263, - 0.6544092373360366, - 0.6557192880425491, - 0.6549975656486915, - 0.6549338613146736, - 0.6515899643113201, - 0.6516012115812635, - 0.6500485464497986, - 0.6474941533074033, - 0.6463110005975762, - 0.6448030481365772, - 0.6397371128735647, - 0.6380884469944066, - 0.6451403939198069, - 0.6467869858492288, - 0.6476625244927042, - 0.6475207733345653, - 0.6447145455868554, - 0.6451781279711757, - 0.6497999831358479, - 0.6544252274789749, - 0.6524048264297296, - 0.6546608109781862, - 0.6586830348156065, - 0.6499490793554941, - 0.6496629240905575, - 0.6471876119148774, - 0.6491763337618282, - 0.6502847275291358, - 0.6470746730219032, - 0.6339069826228032, - 0.6427311399149386, - 0.6446959101871093, - 0.6460431466668852, - 0.6463878558979628, - 0.6389167306958413, - 0.6402586446354517, - 0.6421220967750559, - 0.6422411049815456, - 0.6397932016528051, - 0.6370232530363054, - 0.6283845190311821, - 0.6244741695680726, - 0.6280693279830755, - 0.6173713973327178, - 0.6193988303243706, - 0.6218040537824799, - 0.6248472361737958, - 0.621971638461396, - 0.6224367650617004, - 0.6215252141135419, - 0.6186825082840812, - 0.6176374467364523, - 0.6163697043807053, - 0.6095914632559695, - 0.6208670660304874, - 0.6230528503671107, - 0.6245675999782, - 0.6239780199579956, - 0.6250407476593239, - 0.6259786385953625, - 0.6238654738504593, - 0.6256209066178328, - 0.6259457979963653, - 0.6216618072195395, - 0.6445454500590426, - 0.6398096225649761, - 0.648148378215285, - 0.6485227808464082, - 0.6463564681349797, - 0.6422322397697592, - 0.6422254413322671, - 0.6312353983343724, - 0.6411056878433654, - 0.6423257939763274, - 0.6443468545895776, - 0.6416560194022526, - 0.644805409999706, - 0.6383262890518415, - 0.6342939895895848, - 0.6322791745074852, - 0.633280748577841, - 0.6324022243653212, - 0.6297091533954657, - 0.6302649447308939, - 0.6282921361369795, - 0.6264502790440178, - 0.6279709220552788 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492ec", - "id": "wrapped-eeth", - "symbol": "weeth", - "name": "Wrapped eETH", - "image": "https://coin-images.coingecko.com/coins/images/33033/large/weETH.png?1701438396", - "current_price": 3583.82, - "market_cap": 5280397384, - "market_cap_rank": 23, - "fully_diluted_valuation": 5280397384, - "total_volume": 22018847, - "high_24h": 3762.53, - "low_24h": 3577.08, - "price_change_24h": -178.456512101302, - "price_change_percentage_24h": -4.74331, - "market_cap_change_24h": -274552870.4156866, - "market_cap_change_percentage_24h": -4.94249, - "circulating_supply": 1475849.24702774, - "total_supply": 1475849.24702774, - "max_supply": null, - "ath": 4196.87, - "ath_change_percentage": -14.78246, - "ath_date": "2024-03-13T08:29:59.938Z", - "atl": 2231.18, - "atl_change_percentage": 60.29537, - "atl_date": "2024-01-08T03:35:28.624Z", - "roi": null, - "last_updated": "2024-06-13T16:11:47.914Z", - "sparkline_in_7d": { - "price": [ - 4001.9096142372555, - 3995.3631714144713, - 3984.228996256888, - 3994.1312191252455, - 3997.405233496805, - 3976.8007778359465, - 3985.727493908491, - 3978.3424637269386, - 3925.783219569524, - 3949.8359375353275, - 3951.315019578988, - 3961.687408881827, - 3957.142417822729, - 3954.5915286848935, - 3953.6931352260817, - 3950.6932554505934, - 3960.063960283753, - 3961.6608888764017, - 3967.7344051211617, - 3963.8261242787758, - 3964.781675976435, - 3960.1252136729645, - 3958.8331425144743, - 3958.8720739879404, - 3986.9400331798697, - 3950.558313668221, - 3957.4776891995625, - 3966.485101599586, - 3943.7351318482797, - 3923.4944786361216, - 3738.784533693263, - 3809.988879745192, - 3821.7605839886014, - 3831.663599592226, - 3835.9108093440645, - 3835.369126237903, - 3822.2038278600467, - 3830.358801526244, - 3831.2919775900364, - 3830.4720256419128, - 3835.2678100064923, - 3822.319755158545, - 3824.6901456058476, - 3830.0442996677643, - 3849.031397569466, - 3838.960095142711, - 3838.9708116701054, - 3837.963591856303, - 3824.3697731668785, - 3825.943032261981, - 3827.250345297293, - 3837.8478257162274, - 3836.7829741415558, - 3829.2534649479035, - 3833.844188189913, - 3838.535212709502, - 3828.410795368142, - 3818.942590390563, - 3823.540701213207, - 3822.3391779444287, - 3823.735606616507, - 3823.8733656509185, - 3829.0379039746695, - 3817.669251495106, - 3817.342284137798, - 3818.2808629915367, - 3826.44071724641, - 3833.3572442323893, - 3830.836142102174, - 3832.642647278916, - 3834.146325569152, - 3830.3640049145306, - 3836.9158789364737, - 3848.022378182071, - 3837.848704807137, - 3838.1583141816727, - 3836.4423332411207, - 3845.0906400583717, - 3843.1604186946774, - 3851.4910606434296, - 3847.2759277267705, - 3846.3427625026807, - 3856.2747298899662, - 3856.7789616213777, - 3853.2519629614403, - 3842.612466874171, - 3837.572945148119, - 3834.195856953061, - 3832.304275736722, - 3833.1984535301476, - 3825.0520242575562, - 3814.307590839043, - 3806.5418397267786, - 3812.2194147879113, - 3815.3269765777054, - 3817.8563399759278, - 3816.782997591575, - 3815.7292529805395, - 3811.49736863174, - 3826.5056220733472, - 3841.209597647652, - 3838.5149248117928, - 3836.2840689235554, - 3828.743575288939, - 3820.135731387476, - 3814.9048609078523, - 3811.8983211756727, - 3822.0361993316565, - 3813.869153670461, - 3804.5800921727823, - 3775.1524156271084, - 3744.429034660921, - 3725.965809855188, - 3702.7008309499784, - 3701.9613574267123, - 3685.037194900484, - 3678.7595409573005, - 3673.424870298171, - 3661.6666323634745, - 3666.328438615726, - 3667.6926271365655, - 3682.968384874619, - 3664.0802600319935, - 3658.56008134139, - 3604.949759322129, - 3587.489278795296, - 3604.692381126938, - 3626.18901529695, - 3626.649157321435, - 3625.1535565750182, - 3641.0703950724064, - 3643.1334533533213, - 3637.3145656125835, - 3631.6857547494196, - 3620.507978326687, - 3627.551807760537, - 3648.1251581737197, - 3655.204341945988, - 3650.91246614799, - 3638.7843085007894, - 3665.1259005189972, - 3657.9088523219198, - 3685.079112750438, - 3673.6765094518514, - 3672.072085598266, - 3783.9925127701317, - 3769.1861123490207, - 3774.7771092846815, - 3762.4527059610646, - 3755.2628600617295, - 3735.945331351348, - 3718.3333992409393, - 3669.0862690558474, - 3696.681702672273, - 3699.3509156269574, - 3701.4989706248816, - 3689.0939330065194, - 3698.6317478375795, - 3675.7792812882903, - 3647.5257727011626, - 3649.4664608591756, - 3644.2285504139218, - 3637.700454156058, - 3623.624236178792, - 3651.522308809951, - 3644.3161026873727, - 3623.906268938618, - 3642.0026746541043 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492ed", - "id": "dai", - "symbol": "dai", - "name": "Dai", - "image": "https://coin-images.coingecko.com/coins/images/9956/large/Badge_Dai.png?1696509996", - "current_price": 1.001, - "market_cap": 5278380433, - "market_cap_rank": 24, - "fully_diluted_valuation": 5278380433, - "total_volume": 332687689, - "high_24h": 1.007, - "low_24h": 0.993198, - "price_change_24h": 0.00062804, - "price_change_percentage_24h": 0.0628, - "market_cap_change_24h": -18840078.481866837, - "market_cap_change_percentage_24h": -0.35566, - "circulating_supply": 5274650670.71488, - "total_supply": 5274650670.71488, - "max_supply": null, - "ath": 1.22, - "ath_change_percentage": -18.03911, - "ath_date": "2020-03-13T03:02:50.373Z", - "atl": 0.88196, - "atl_change_percentage": 13.27571, - "atl_date": "2023-03-11T07:50:50.514Z", - "roi": null, - "last_updated": "2024-06-13T16:10:30.898Z", - "sparkline_in_7d": { - "price": [ - 0.9992003935857768, - 0.9998802927990309, - 0.9989313178656674, - 0.9997399355282596, - 0.9994928319553452, - 0.9992378191354676, - 0.999848925965398, - 0.9993852879920815, - 0.9981731390866202, - 0.9994314698347332, - 0.9997164753183551, - 1.0005761712607493, - 0.9987007279852337, - 0.9995943713379006, - 1.000005173638157, - 1.000008175128173, - 1.000273471788507, - 1.0000284186716464, - 0.9995623008092348, - 0.9997826865451566, - 0.9993193641256324, - 0.9988812666274595, - 0.9999309193248654, - 0.9990416776654916, - 1.0000693997009413, - 0.9988708612385524, - 0.9992485992151728, - 0.99980786923587, - 0.9995286053421542, - 0.9984927900638, - 0.9966840656774651, - 0.9978402923838573, - 0.9990025763767162, - 0.9996779960821232, - 1.0000478728881395, - 0.9994627984457264, - 0.9995809658023825, - 0.9996857829978568, - 0.9986617101982234, - 1.0005518573452006, - 0.9996954026633019, - 1.0021170741915177, - 1.0001007994567332, - 1.001794591054332, - 1.0003414808646158, - 1.0013359631581147, - 1.0013915713680355, - 0.9996659232001187, - 0.9989097845084154, - 0.9985618631254174, - 0.998485512637504, - 0.9986301262281888, - 1.0012121958659124, - 1.000562021792373, - 0.9998138872496792, - 0.999142223948974, - 1.0000447758905595, - 0.9989948108488157, - 0.9995655018147181, - 0.9994693162927887, - 1.000095146027126, - 1.0002512097220704, - 0.9987942997566717, - 1.0004199305675492, - 1.0003647781651392, - 0.9997465303264831, - 0.999722812484162, - 0.9994856474592217, - 0.9995458871160835, - 0.9988634196019116, - 0.9989756118125823, - 0.9996361706069454, - 1.0004024768959336, - 0.9999206211831655, - 0.9995899254915448, - 0.9990161218944223, - 0.999353762118151, - 0.998817558375928, - 0.9991763675713778, - 0.9988796426159667, - 0.9993719319466736, - 0.9994684724035009, - 0.9984957907181077, - 0.9993787040331111, - 0.9991599766251685, - 1.0001227843974079, - 0.9995932603182317, - 0.9994604945393122, - 0.9998912374552004, - 0.999873739278772, - 0.9992742116075457, - 0.9993239218418247, - 0.9994718373973379, - 0.9993606844329829, - 0.9995656421414882, - 0.999393355707525, - 0.9994409171933849, - 0.9990859330251662, - 0.9997338485709282, - 0.9998564539761499, - 0.9994541346668278, - 0.9979489154732255, - 0.9997316398943358, - 0.9995109527368375, - 0.9998740479330729, - 0.999806258137162, - 0.9993027861978213, - 1.000307635947075, - 1.0000958495371364, - 0.9997153597903689, - 0.9977828462381091, - 1.0000270558501956, - 0.9994857497931525, - 0.9995891051769387, - 1.0000106091577947, - 0.99980062561141, - 0.9998454154863121, - 0.9995397004474061, - 0.9986940064286169, - 0.9995973542077922, - 0.9990450946944452, - 1.0007586256730425, - 1.0006601532961026, - 0.9983848334957882, - 1.003422072576134, - 0.9989744042336813, - 1.0001381985852316, - 1.001194654036614, - 1.0000320126729154, - 1.0003690635577427, - 1.0006214661757988, - 1.0011031867302294, - 1.0002061378955371, - 1.0006883773105264, - 1.0012552246450528, - 1.001219765044868, - 1.0007190360186606, - 0.9993878022718128, - 1.0006903953221855, - 0.9997968465215616, - 1.0015854101479011, - 1.0001548077488465, - 1.0041514651179175, - 1.0003952321177862, - 1.001097641139687, - 1.0030577154580085, - 1.003020629174603, - 1.0027241184323366, - 1.001151598553841, - 1.0001366909760037, - 0.9987649832116905, - 1.0017482208682835, - 1.000116596033366, - 1.0013778507750533, - 0.9995286978665503, - 0.9995202368483197, - 1.0000694602192786, - 0.9998007155470456, - 1.0002821618839923, - 1.0000266486945917, - 1.0012110710603193, - 0.9998342767014452, - 1.0000780814879517, - 0.9999493666483414, - 1.0001620924759584, - 0.999886990514509, - 1.0000970780870149, - 1.0004850926753148 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492ee", - "id": "leo-token", - "symbol": "leo", - "name": "LEO Token", - "image": "https://coin-images.coingecko.com/coins/images/8418/large/leo-token.png?1696508607", - "current_price": 5.6, - "market_cap": 5194913254, - "market_cap_rank": 25, - "fully_diluted_valuation": 5525940523, - "total_volume": 4094043, - "high_24h": 5.93, - "low_24h": 5.58, - "price_change_24h": -0.2988760952474676, - "price_change_percentage_24h": -5.06727, - "market_cap_change_24h": -270531574.8154783, - "market_cap_change_percentage_24h": -4.94985, - "circulating_supply": 926219479.9, - "total_supply": 985239504.0, - "max_supply": null, - "ath": 8.14, - "ath_change_percentage": -31.21827, - "ath_date": "2022-02-08T17:40:10.285Z", - "atl": 0.799859, - "atl_change_percentage": 599.57693, - "atl_date": "2019-12-24T15:14:35.376Z", - "roi": null, - "last_updated": "2024-06-13T16:12:40.187Z", - "sparkline_in_7d": { - "price": [ - 5.981108712850153, - 5.97134639441518, - 5.977860344534921, - 5.986307928869437, - 5.974680285772771, - 5.9774525591255765, - 5.986773620603647, - 5.985856705594951, - 5.985052376809501, - 5.989673696325935, - 5.974292363145562, - 5.987816131381445, - 5.986231440930313, - 5.975116122337559, - 5.972721912049816, - 5.958052073396345, - 5.98045400339879, - 5.979958325943456, - 5.996580904959236, - 5.998090730871857, - 5.997340677184561, - 5.997056950995896, - 5.992573088338173, - 6.0021085337233195, - 6.014831987581579, - 6.032179761160726, - 6.0060949165116995, - 6.006663700845355, - 6.013632477530054, - 6.0056158959184005, - 5.976329964191623, - 6.023307175295583, - 6.026188756437079, - 6.0071664926210095, - 6.011431453651814, - 6.007991998421992, - 5.975931042613012, - 5.989301654806223, - 5.992616567241481, - 5.991858335641123, - 5.961242428197198, - 5.9666638303229185, - 5.964182128464848, - 5.984773007199353, - 6.009149836086063, - 5.998776903103466, - 5.9652267882170475, - 5.967188734813683, - 5.965174637246814, - 5.968984794738295, - 5.947231306850122, - 5.823893254388802, - 5.822976435135019, - 5.789009143502582, - 5.8379835572637635, - 5.809096134100535, - 5.784486627107466, - 5.7787351755358625, - 5.809696014941354, - 5.795902758065686, - 5.792152815344375, - 5.797417317387251, - 5.809336746928623, - 5.807249545510276, - 5.790799512065289, - 5.808208514015436, - 5.807559923231475, - 5.81052755492609, - 5.811413054339149, - 5.816903463404767, - 5.813368792588872, - 5.812733897443573, - 5.824497679453062, - 5.832750500055254, - 5.8296160699424595, - 5.824642251644798, - 5.8361136387859585, - 5.843136616922006, - 5.840869855373648, - 5.839935520895738, - 5.85790201077684, - 5.867628757498029, - 5.8671153805798255, - 5.891033505448114, - 5.869576826688135, - 5.8559252321093, - 5.867629177136408, - 5.867356590740196, - 5.887065454159581, - 5.86968582323987, - 5.870943981979142, - 5.869254612086387, - 5.854485067387255, - 5.838727592192115, - 5.827600468396606, - 5.795785817123761, - 5.804428371235943, - 5.800356068128654, - 5.840424423075344, - 5.848933772104517, - 5.8757093294421505, - 5.8671085540919545, - 5.8604888421250685, - 5.874970183808804, - 5.8591620334698264, - 5.844834747360322, - 5.857087611279818, - 5.860893067606488, - 5.862087734897424, - 5.858971826517417, - 5.848620152384379, - 5.852213268179759, - 5.865237556355167, - 5.860230752611722, - 5.8681775441567545, - 5.863123743440301, - 5.851879155682699, - 5.85243207308726, - 5.8603544335403495, - 5.874139058944481, - 5.878356390858075, - 5.8786664559510715, - 5.878257524757446, - 5.877209794734614, - 5.927895445330851, - 5.910166579621301, - 5.9265216539063985, - 5.84930289029959, - 5.897333900418488, - 5.91541477870649, - 5.91848468539542, - 5.932164803874434, - 5.932511374998881, - 5.923639375435303, - 5.906306718094333, - 5.91830448778013, - 5.9203715145265665, - 5.9274692198207894, - 5.921003936864655, - 5.92036116156294, - 5.924180230986548, - 5.922177353807668, - 5.910454549253704, - 5.914684021053048, - 5.91035782705351, - 5.890666310237325, - 5.902359484030141, - 5.910059322146226, - 5.89612324689784, - 5.907956656117465, - 5.92605196794835, - 5.903145457703704, - 5.91698873578655, - 5.9195501135983815, - 5.9216894998445895, - 5.918427740030333, - 5.920101488065655, - 5.916934900056798, - 5.855874954303254, - 5.850303070637089, - 5.812255459253239, - 5.809780058189727, - 5.810051178508202, - 5.812434471817688, - 5.811890476904034, - 5.632400847115147, - 5.614188221875891, - 5.5954149987105195 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492ef", - "id": "pepe", - "symbol": "pepe", - "name": "Pepe", - "image": "https://coin-images.coingecko.com/coins/images/29850/large/pepe-token.jpeg?1696528776", - "current_price": 1.191e-05, - "market_cap": 4984155913, - "market_cap_rank": 26, - "fully_diluted_valuation": 4984155913, - "total_volume": 1096062172, - "high_24h": 1.366e-05, - "low_24h": 1.184e-05, - "price_change_24h": -1.726173123232e-06, - "price_change_percentage_24h": -12.66259, - "market_cap_change_24h": -748358785.8872452, - "market_cap_change_percentage_24h": -13.05463, - "circulating_supply": 420690000000000.0, - "total_supply": 420690000000000.0, - "max_supply": 420690000000000.0, - "ath": 1.717e-05, - "ath_change_percentage": -31.11028, - "ath_date": "2024-05-27T08:30:07.709Z", - "atl": 5.5142e-08, - "atl_change_percentage": 21345.79393, - "atl_date": "2023-04-18T02:14:41.591Z", - "roi": null, - "last_updated": "2024-06-13T16:12:19.362Z", - "sparkline_in_7d": { - "price": [ - 1.4848489437688948e-05, - 1.4716838982682899e-05, - 1.4633702245066824e-05, - 1.4625192288145279e-05, - 1.4604493909616637e-05, - 1.439967280092231e-05, - 1.448720911207738e-05, - 1.4412835119297028e-05, - 1.4320455653443187e-05, - 1.449879781956192e-05, - 1.4399570509276904e-05, - 1.4396120997535714e-05, - 1.436705632577774e-05, - 1.437022044973537e-05, - 1.425525991978196e-05, - 1.4217841773456554e-05, - 1.4319454222938809e-05, - 1.4445895905554399e-05, - 1.4424958732153301e-05, - 1.4433065814235176e-05, - 1.442730987871318e-05, - 1.4352512142199725e-05, - 1.4292136867036037e-05, - 1.4250310536527219e-05, - 1.4373873596455654e-05, - 1.3818994279930479e-05, - 1.4162142946801305e-05, - 1.4218982567021464e-05, - 1.406473181490543e-05, - 1.3810050802641848e-05, - 1.308419583429492e-05, - 1.2621259073502661e-05, - 1.2767862199891283e-05, - 1.2784787307411326e-05, - 1.2844128003909072e-05, - 1.2865970839285357e-05, - 1.2811204188210722e-05, - 1.2911856734339117e-05, - 1.3114532981671703e-05, - 1.3014705231917268e-05, - 1.3077358081949672e-05, - 1.297148896118778e-05, - 1.3001490297121984e-05, - 1.3036135871707628e-05, - 1.3200868741771946e-05, - 1.300077253787313e-05, - 1.2913112118633376e-05, - 1.2912914750153128e-05, - 1.269142828559352e-05, - 1.2579094725300292e-05, - 1.25300359418593e-05, - 1.2598351640036603e-05, - 1.2551099444031976e-05, - 1.2314091685770827e-05, - 1.2312269590682657e-05, - 1.2363404174311956e-05, - 1.2425881680082205e-05, - 1.2249660153916515e-05, - 1.2254169592668195e-05, - 1.2115323435566271e-05, - 1.2129736052991439e-05, - 1.213308864770693e-05, - 1.2280747649465973e-05, - 1.1977985889048682e-05, - 1.2187057183316825e-05, - 1.2114088021093777e-05, - 1.2282449135470469e-05, - 1.2340142556964958e-05, - 1.2290979677603031e-05, - 1.2340740854264811e-05, - 1.2300946832674882e-05, - 1.223419200345527e-05, - 1.2355851701300914e-05, - 1.2547250201235597e-05, - 1.2405845269515803e-05, - 1.2666619992789254e-05, - 1.2567168832336402e-05, - 1.2671306221240557e-05, - 1.260114883033877e-05, - 1.2779168367725814e-05, - 1.2778737041641957e-05, - 1.2758246640564848e-05, - 1.2773238637889424e-05, - 1.279705526688933e-05, - 1.2733643203683054e-05, - 1.2647787918122385e-05, - 1.2793945191316919e-05, - 1.2754699300120154e-05, - 1.267928245816287e-05, - 1.2744078848910716e-05, - 1.2630173617529573e-05, - 1.2505763368132796e-05, - 1.2293516055429398e-05, - 1.2478148334376662e-05, - 1.2623152826163585e-05, - 1.2644076119417088e-05, - 1.2594038250870858e-05, - 1.23721658572173e-05, - 1.2367239156620648e-05, - 1.249385237707721e-05, - 1.287328503187726e-05, - 1.2805567428172603e-05, - 1.2746222395287893e-05, - 1.2721294274669308e-05, - 1.2515163496685484e-05, - 1.2451425346524995e-05, - 1.2237830786863396e-05, - 1.22276818519286e-05, - 1.2084489724601237e-05, - 1.215700482661294e-05, - 1.17369970968129e-05, - 1.1691524372023727e-05, - 1.1674256084312352e-05, - 1.1634729862462108e-05, - 1.1798940186170909e-05, - 1.1791417976963275e-05, - 1.193401249222983e-05, - 1.2225752133511164e-05, - 1.2247935083158362e-05, - 1.2392097233703191e-05, - 1.229682044491755e-05, - 1.2212516547793408e-05, - 1.2024569156671615e-05, - 1.2056530188557182e-05, - 1.2059352413981675e-05, - 1.2336011953637214e-05, - 1.2395846050934154e-05, - 1.2593464867608796e-05, - 1.277145383695649e-05, - 1.272702407212079e-05, - 1.2853290196507704e-05, - 1.29692676927415e-05, - 1.2760895137592552e-05, - 1.2542578517735108e-05, - 1.2289529244165994e-05, - 1.2559378943116369e-05, - 1.2749773700678257e-05, - 1.2874806126963094e-05, - 1.2856161307852577e-05, - 1.2858565987604306e-05, - 1.3045845844824832e-05, - 1.3184619614445194e-05, - 1.3243186250616977e-05, - 1.3218288394083142e-05, - 1.2953819411171316e-05, - 1.3719959807963251e-05, - 1.3625657977252182e-05, - 1.3647032047513889e-05, - 1.3620021163056071e-05, - 1.3498864083938995e-05, - 1.3574872776237066e-05, - 1.3177834584419998e-05, - 1.2844794225474382e-05, - 1.290863214842651e-05, - 1.30882453543934e-05, - 1.3244397005339831e-05, - 1.3188961388741328e-05, - 1.317896761607771e-05, - 1.3067226204841181e-05, - 1.2807521697026697e-05, - 1.2819558534077492e-05, - 1.2687519099580643e-05, - 1.2686538151034354e-05, - 1.2508140762751593e-05, - 1.2585485857450164e-05, - 1.274073144699456e-05, - 1.2640092025841062e-05, - 1.2701434178634664e-05 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f0", - "id": "internet-computer", - "symbol": "icp", - "name": "Internet Computer", - "image": "https://coin-images.coingecko.com/coins/images/14495/large/Internet_Computer_logo.png?1696514180", - "current_price": 9.76, - "market_cap": 4539430204, - "market_cap_rank": 27, - "fully_diluted_valuation": 5072752715, - "total_volume": 118003539, - "high_24h": 10.81, - "low_24h": 9.71, - "price_change_24h": -1.0305052944228752, - "price_change_percentage_24h": -9.55082, - "market_cap_change_24h": -477223157.972805, - "market_cap_change_percentage_24h": -9.51278, - "circulating_supply": 464944638.018901, - "total_supply": 519569432.574776, - "max_supply": null, - "ath": 700.65, - "ath_change_percentage": -98.61239, - "ath_date": "2021-05-10T16:05:53.653Z", - "atl": 2.87, - "atl_change_percentage": 239.34193, - "atl_date": "2023-09-22T00:29:57.369Z", - "roi": null, - "last_updated": "2024-06-13T16:12:37.531Z", - "sparkline_in_7d": { - "price": [ - 12.211604535192004, - 12.204257664819686, - 12.153345854769006, - 12.21790556225964, - 12.21615685522974, - 12.140744629882057, - 12.088207430355915, - 12.101354156884247, - 11.952128533965976, - 12.085768699158065, - 12.080788475989182, - 12.09567623571712, - 12.081906410480082, - 12.078235409634885, - 12.069727596385691, - 12.007211258858696, - 12.031469523507637, - 12.064048227973137, - 12.028773779301801, - 12.04355615770591, - 12.048279008907748, - 12.060345832179193, - 12.068162971421767, - 12.217184726986636, - 12.718292405902128, - 12.551845816066095, - 12.661671216951829, - 12.768273068559441, - 12.664378927354914, - 12.503561163130739, - 12.333751136019997, - 11.581559371933716, - 11.549620812890952, - 11.577278759113453, - 11.529917130659033, - 11.487407696324839, - 11.517448456812954, - 11.427341987033195, - 11.550213219240723, - 11.504175846567929, - 11.48548616869642, - 11.471338865319488, - 11.42378789209109, - 11.441855588195189, - 11.458523840971353, - 11.36104574363643, - 11.306718484690903, - 11.245274761498647, - 11.091954379811934, - 10.986749563173854, - 10.949503318565924, - 11.067151018913576, - 10.981491127785231, - 10.92058554813693, - 10.9520071048755, - 11.011196221946436, - 10.968615811810887, - 10.896234153000307, - 10.928977032151877, - 10.904592884121104, - 10.878876824106259, - 10.908944600887098, - 10.97519938791965, - 10.85648448601261, - 10.926167466290176, - 10.860865465592122, - 10.939912418312264, - 10.931720909336065, - 10.932018019491117, - 10.935346029541883, - 10.912935423967946, - 10.895519545173974, - 10.93222772266801, - 11.012729893339943, - 10.913481581111535, - 10.886850631230814, - 10.85553043621009, - 10.899012876277165, - 10.908908872300385, - 11.027921063525783, - 11.032982212051696, - 11.010904616982845, - 10.96535474813945, - 11.024737866709664, - 11.0274638457348, - 11.017300251287395, - 11.000684044429427, - 10.968681143897086, - 10.93352456359751, - 10.938833521588455, - 10.906096964179628, - 10.785897084081345, - 10.638321046799, - 10.805199890862326, - 10.904132547776266, - 10.927368846745859, - 10.8819780687477, - 10.742313457359405, - 10.69482851680917, - 10.979310339810274, - 11.056636519067116, - 10.92614021476137, - 11.046281261900562, - 11.164727298451009, - 11.107432711577134, - 11.052232434038048, - 11.072367017390736, - 11.084484228658262, - 11.137780041456734, - 11.146030219473474, - 10.854906356365024, - 10.799078093686747, - 10.733363256921479, - 10.681395779791405, - 10.660768530715279, - 10.520371449051627, - 10.523319077028669, - 10.470397628833151, - 10.423895777487596, - 10.278694015367394, - 10.249553558757457, - 10.236264330929119, - 10.062231252926084, - 10.18510388912558, - 9.985249920328823, - 9.962652350237095, - 10.048812316378953, - 10.181646305598072, - 10.153096589477858, - 10.127186931372227, - 10.187331088386305, - 10.125904502268707, - 10.079047328298184, - 9.994979793134178, - 9.973333452421292, - 10.135070076179867, - 10.283479353076679, - 10.192304091336979, - 10.23699163842979, - 10.337298344778544, - 10.298701136768582, - 10.13983180180212, - 10.340241570220732, - 10.278841741887602, - 10.17597266561901, - 10.552330585339654, - 10.612659392702174, - 10.837009435571257, - 10.763699536631522, - 10.7634219255237, - 10.812027375197218, - 10.594000224256682, - 10.340187956372882, - 10.535393084928495, - 10.542245873286422, - 10.558323271921195, - 10.506240940911482, - 10.482236375551118, - 10.295509270564672, - 10.04392534864139, - 10.127697050087132, - 10.108327257934329, - 10.084973723339452, - 10.06679061762677, - 10.095653153726001, - 10.04524065631647, - 9.996951850979721, - 9.986313491394355 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f1", - "id": "fetch-ai", - "symbol": "fet", - "name": "Fetch.ai", - "image": "https://coin-images.coingecko.com/coins/images/5681/large/Fetch.jpg?1696506140", - "current_price": 1.59, - "market_cap": 4004890823, - "market_cap_rank": 28, - "fully_diluted_valuation": 4178898218, - "total_volume": 191652045, - "high_24h": 1.75, - "low_24h": 1.58, - "price_change_24h": -0.14316474665301882, - "price_change_percentage_24h": -8.2621, - "market_cap_change_24h": -361084197.8722682, - "market_cap_change_percentage_24h": -8.27041, - "circulating_supply": 2521012371.0, - "total_supply": 2630547141.0, - "max_supply": 2630547141.0, - "ath": 3.45, - "ath_change_percentage": -54.07674, - "ath_date": "2024-03-28T17:21:18.050Z", - "atl": 0.00816959, - "atl_change_percentage": 19316.60412, - "atl_date": "2020-03-13T02:24:18.347Z", - "roi": { - "times": 17.334762138667173, - "currency": "usd", - "percentage": 1733.4762138667174 - }, - "last_updated": "2024-06-13T16:12:47.714Z", - "sparkline_in_7d": { - "price": [ - 2.1069187662301587, - 2.1059236760399878, - 2.1011792134358207, - 2.1018774723602642, - 2.106061166285346, - 2.0873211102875042, - 2.0859963319440005, - 2.077966369375634, - 2.0519775238797044, - 2.053796141270595, - 2.0466953095870073, - 2.04898771677694, - 2.0433671444911905, - 2.036682579461192, - 2.0210538534443234, - 2.0092495767312535, - 2.0233874207779574, - 2.041616853273119, - 2.0501052756333107, - 2.0391404360864156, - 2.0243844892221725, - 2.0364178105145982, - 2.038051814604469, - 2.0242859006105918, - 2.032637752821397, - 1.9994844642819363, - 2.0190119702656837, - 2.004952781512573, - 1.9967748766022606, - 1.9144142579741652, - 1.7469532979361768, - 1.8007233284591126, - 1.8056903340113821, - 1.8471995466797908, - 1.8355196346073834, - 1.8379106079851142, - 1.850957761326503, - 1.8407755445919174, - 1.8441447136978606, - 1.8375391497644915, - 1.8472199798816928, - 1.8324199911053414, - 1.8209251704612173, - 1.8265698343059664, - 1.8296693794333327, - 1.8217540852374308, - 1.8112390415526187, - 1.8061602282515499, - 1.7606211900224011, - 1.743077700093059, - 1.7389528288452125, - 1.7687950326570645, - 1.7450375385276462, - 1.7193344504984769, - 1.7241582245601577, - 1.7432379684976957, - 1.7385465672555005, - 1.7384159857054926, - 1.7340284697897541, - 1.7351903542524654, - 1.7477732783596682, - 1.7369421096751736, - 1.7472832415742798, - 1.7207815624160496, - 1.7413275759413436, - 1.7467360488808115, - 1.7559970612764477, - 1.7668585231673362, - 1.7508226313043678, - 1.7415373876461178, - 1.7390808475236643, - 1.7353345953488815, - 1.73153432550141, - 1.7454409995896762, - 1.7294189810025735, - 1.7475551660078312, - 1.7379021200014702, - 1.7513543483969436, - 1.7473812300353653, - 1.7555638589519402, - 1.7555530793047305, - 1.7531292524120403, - 1.7378828935104031, - 1.7404413003057047, - 1.7357697260159424, - 1.7235895054851218, - 1.725564305259757, - 1.7203175418144072, - 1.7008318090725618, - 1.6998735808290262, - 1.6755752542783784, - 1.6649204136750035, - 1.637442926576252, - 1.6788011791464823, - 1.7129970375631725, - 1.7231999156983624, - 1.7032292235439592, - 1.6856154867799673, - 1.6873398683529772, - 1.7139271516442836, - 1.7389018352178789, - 1.7142857967122813, - 1.7181933460091334, - 1.708341545238328, - 1.6907557850192847, - 1.679863288419504, - 1.661990219237471, - 1.6652986227515238, - 1.6578331468780714, - 1.6631142862164559, - 1.6279191067337466, - 1.6406918174590397, - 1.648161814841403, - 1.6334713622991675, - 1.629398720347453, - 1.6199352435597876, - 1.674386176446402, - 1.6939848700711908, - 1.6679642091049693, - 1.6836184581685416, - 1.682392173562869, - 1.6530132802827322, - 1.649918428924897, - 1.6316622782945385, - 1.5539824798804511, - 1.5506843785969289, - 1.5482708293144705, - 1.581069170753567, - 1.5795327279318632, - 1.5656843847300292, - 1.556945146456813, - 1.5465418867016052, - 1.5377173220817073, - 1.5243409967561101, - 1.5024650434420828, - 1.5301624072647755, - 1.5510037291901106, - 1.5545503116269566, - 1.542720142059015, - 1.5406521908931197, - 1.540417438854493, - 1.5613917231643535, - 1.5934996227164877, - 1.6136523247090613, - 1.6235899186157128, - 1.7346139556756435, - 1.7072462682035645, - 1.7333092585789427, - 1.7301286027087717, - 1.7211645404744786, - 1.7346645118867516, - 1.7063822109290387, - 1.6600251540907536, - 1.6850428116625251, - 1.702615369589136, - 1.7195799232071296, - 1.701919766642504, - 1.71814150072016, - 1.6900796360750492, - 1.6505055392430892, - 1.642117612045167, - 1.6633632294233003, - 1.6525803240753725, - 1.6301870149349873, - 1.6364591835203186, - 1.638217394483886, - 1.6421264885081694, - 1.6540332149788588 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f2", - "id": "kaspa", - "symbol": "kas", - "name": "Kaspa", - "image": "https://coin-images.coingecko.com/coins/images/25751/large/kaspa-icon-exchanges.png?1696524837", - "current_price": 0.163761, - "market_cap": 3915629664, - "market_cap_rank": 29, - "fully_diluted_valuation": 3916851344, - "total_volume": 78674948, - "high_24h": 0.178817, - "low_24h": 0.162635, - "price_change_24h": -0.0149933867070777, - "price_change_percentage_24h": -8.38772, - "market_cap_change_24h": -345142732.4910464, - "market_cap_change_percentage_24h": -8.10047, - "circulating_supply": 23905911626.3863, - "total_supply": 23913370293.2834, - "max_supply": 28704026601.0, - "ath": 0.19164, - "ath_change_percentage": -15.13539, - "ath_date": "2024-06-05T12:00:21.573Z", - "atl": 0.00017105, - "atl_change_percentage": 94980.42952, - "atl_date": "2022-05-26T14:42:59.316Z", - "roi": null, - "last_updated": "2024-06-13T16:12:45.637Z", - "sparkline_in_7d": { - "price": [ - 0.1797330215066034, - 0.17969565849453434, - 0.1775677031038945, - 0.18199246440783376, - 0.17892627108573206, - 0.17708185523537914, - 0.1758567046930414, - 0.17540893058583637, - 0.17325029762371616, - 0.17430194611416444, - 0.17234618778939395, - 0.17324758361533468, - 0.17211364751050634, - 0.17725711505973638, - 0.17586837503644856, - 0.17519622340574428, - 0.17234310796058377, - 0.17326993656113482, - 0.1715022174031767, - 0.1722252472569582, - 0.1732365466211698, - 0.17664937590257376, - 0.17684375523904233, - 0.173097059537899, - 0.17393902947076167, - 0.17472687630843356, - 0.1717291144614594, - 0.17130552413871536, - 0.1713430622763449, - 0.1704796746682705, - 0.15960166271835852, - 0.16699580457064642, - 0.16420389585605746, - 0.16344484681638222, - 0.1658209061211156, - 0.16399236142312915, - 0.16361602457675958, - 0.1671649131813823, - 0.16728701034808555, - 0.16687310580675388, - 0.168868087034044, - 0.16836189289587244, - 0.16625265134075232, - 0.1657115365528977, - 0.16626863980581041, - 0.1666546797089458, - 0.1672124860494315, - 0.16648610869490266, - 0.16192932671839258, - 0.1608474938806389, - 0.15945599070056976, - 0.16049758246003248, - 0.16075940721243323, - 0.16159432757090642, - 0.16103480902849318, - 0.15958364496768593, - 0.1587874173439417, - 0.15968349649693148, - 0.1588923548690856, - 0.1575003276316678, - 0.1562957510299218, - 0.16115893728763206, - 0.16394467478308264, - 0.1591558910713137, - 0.16112535418169407, - 0.1605620147626216, - 0.15856411146160793, - 0.15776799037182115, - 0.15868925694270736, - 0.15716213996258585, - 0.15580830873469192, - 0.15940795750544842, - 0.1588947402225835, - 0.16119378667857331, - 0.16273702660983047, - 0.1620877295914379, - 0.16180061709732435, - 0.16228833570917325, - 0.16226553181004275, - 0.16772603718169707, - 0.16488820249214237, - 0.16579052237566017, - 0.1669258939513492, - 0.16677951295998092, - 0.16955647100406554, - 0.16861829632576064, - 0.16951810467177125, - 0.16818759838748917, - 0.16599227966163269, - 0.16510429931008885, - 0.16381344830315203, - 0.16170905227915744, - 0.1617476493543135, - 0.16367892014271224, - 0.16317678118949852, - 0.16522519798301552, - 0.16363176785399408, - 0.1635165165519102, - 0.16312766748241234, - 0.16156611800338222, - 0.1660346285016456, - 0.1672408848159227, - 0.1691976553524909, - 0.16639536848033387, - 0.16558145776943078, - 0.1642871853681039, - 0.16339118616448148, - 0.16205293951326208, - 0.16244849216257443, - 0.16337929757713474, - 0.16112477447054468, - 0.1600336766761905, - 0.1594437556118135, - 0.1580894391566751, - 0.15986603882367337, - 0.15844499428866174, - 0.1577008268823203, - 0.15747918341021092, - 0.15765004962129592, - 0.15706693974051103, - 0.15730665994418555, - 0.15788210688518156, - 0.15645165505727746, - 0.15989096534177058, - 0.15700356595575682, - 0.15899580026572255, - 0.16003744970913764, - 0.16361894219960807, - 0.164497329178511, - 0.16380033687459739, - 0.16342693047979584, - 0.16477157748570798, - 0.16377661129677656, - 0.16389755194838898, - 0.16166033530071283, - 0.1638494175220642, - 0.16399913693159915, - 0.16471531447650017, - 0.16274173014794616, - 0.16325384906864798, - 0.16421129796129944, - 0.16393841697507164, - 0.1663653745852727, - 0.1692938159799999, - 0.16906266104805168, - 0.17510246083933265, - 0.17508931137673936, - 0.18008624795901285, - 0.17774858159052395, - 0.17506400838839906, - 0.17443708604762134, - 0.17072990285239895, - 0.16812896050318243, - 0.17165309074790314, - 0.17071640446730277, - 0.17087159618231487, - 0.1706413649726181, - 0.17320528903350127, - 0.171815876415707, - 0.16988757894495118, - 0.16878309927057533, - 0.16766758654946434, - 0.17028849570974441, - 0.1689384493344323, - 0.17107733613850845, - 0.17303673376756462, - 0.17167426175809777, - 0.17104571644729807 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f3", - "id": "ethereum-classic", - "symbol": "etc", - "name": "Ethereum Classic", - "image": "https://coin-images.coingecko.com/coins/images/453/large/ethereum-classic-logo.png?1696501717", - "current_price": 25.26, - "market_cap": 3724161460, - "market_cap_rank": 30, - "fully_diluted_valuation": 5319686629, - "total_volume": 149715225, - "high_24h": 26.66, - "low_24h": 25.13, - "price_change_24h": -1.3208827553321782, - "price_change_percentage_24h": -4.96918, - "market_cap_change_24h": -193581511.44747305, - "market_cap_change_percentage_24h": -4.94115, - "circulating_supply": 147505083.338432, - "total_supply": 210700000.0, - "max_supply": 210700000.0, - "ath": 167.09, - "ath_change_percentage": -84.92744, - "ath_date": "2021-05-06T18:34:22.133Z", - "atl": 0.615038, - "atl_change_percentage": 3994.71447, - "atl_date": "2016-07-25T00:00:00.000Z", - "roi": { - "times": 55.13467834539658, - "currency": "usd", - "percentage": 5513.467834539658 - }, - "last_updated": "2024-06-13T16:12:11.307Z", - "sparkline_in_7d": { - "price": [ - 29.492074483707345, - 29.454468062022684, - 29.381765754067445, - 29.44003881430244, - 29.46388514248363, - 29.32150426713488, - 29.40770648138163, - 29.306363034752188, - 28.995605214654606, - 29.11923733424222, - 28.9529601254628, - 29.110967521786254, - 29.05206518940302, - 29.02790785212149, - 29.00979864055105, - 28.944601146331244, - 28.995822295166285, - 29.0685276213144, - 29.158541869371312, - 29.130635456901786, - 29.076913822421993, - 29.021168562673424, - 29.013653342330525, - 29.09175545477998, - 29.4056014351385, - 29.086178106114485, - 29.16470765272479, - 29.27526419274552, - 29.062427483771728, - 28.871231729096596, - 28.738703404587433, - 26.642256714504455, - 26.78774480424206, - 26.93917067498175, - 27.08373825806451, - 27.08638633594704, - 27.022933868341642, - 27.005150856412726, - 27.115240817373774, - 27.089373124572898, - 27.132244120987718, - 27.084551447627398, - 27.14369299561665, - 27.098988216562475, - 27.13325639282101, - 26.968127532523752, - 26.914380515557824, - 26.955064056228444, - 26.58170271760033, - 26.60782881717635, - 26.699878947950804, - 26.792882760651214, - 26.78525130198876, - 26.6746660848598, - 26.800558434562543, - 26.972026437082135, - 26.887104685890858, - 26.817871618438254, - 26.87838650134524, - 26.797275147835144, - 26.80436522369991, - 26.829842463690756, - 26.938944800602478, - 26.808837563497843, - 26.82823292886147, - 26.87117498174556, - 26.983827027376908, - 26.946509604912322, - 26.90017520674479, - 26.911916475071656, - 26.956517282535543, - 26.89412299493702, - 26.963441801014824, - 27.03847948742362, - 26.947533590041697, - 27.018206706036953, - 27.013638275284983, - 26.99231492972555, - 26.934274997236045, - 26.981549202275385, - 26.901777015841304, - 26.9205370902569, - 26.9519969109995, - 26.93891173372279, - 26.962056429454886, - 26.891085995404783, - 26.89957915136727, - 26.860427863849665, - 26.770514066083695, - 26.751368627980078, - 26.69450285410648, - 26.56942637420705, - 26.38367178619164, - 26.601284999579736, - 26.9291077235592, - 26.82445257443849, - 26.837525597052927, - 26.780756386353023, - 26.768753263398427, - 26.751010767499285, - 27.002890750655325, - 26.849088204644175, - 26.77062283941941, - 26.80563803792942, - 26.600957877844618, - 26.608420371478598, - 26.510408785018548, - 26.61839264758325, - 26.620540269217376, - 26.477831043352104, - 26.019961122043266, - 26.113922898766333, - 26.173493273965065, - 26.030011846196437, - 26.035253804511395, - 25.914674336692315, - 25.907311554546766, - 26.016085474243873, - 25.80388064677836, - 25.952923618844526, - 25.87722085101221, - 25.587203516328742, - 25.546662485640415, - 25.623438971972714, - 25.249151080847103, - 25.35501446349755, - 25.542117936972648, - 25.637176791774067, - 25.683793566301635, - 25.695069964923043, - 25.72930315576279, - 25.699295055899128, - 25.691483729393255, - 25.631438196570866, - 25.448358038458167, - 25.617287009283036, - 25.70044583748596, - 25.811656912315726, - 25.76486932283052, - 25.891016308257257, - 25.887667574263258, - 25.82527598354856, - 25.965193618789474, - 25.99528149988698, - 25.65535242513609, - 26.515898056480307, - 26.4764318290966, - 26.69822147589862, - 26.56653985040895, - 26.591466397221087, - 26.6567291505403, - 26.39511082914228, - 25.782490024899353, - 26.044124200157587, - 26.13572517282503, - 26.199238776076722, - 26.113608491075784, - 26.111863585755902, - 25.943214164527625, - 25.690130879803824, - 25.718665186039864, - 25.75216178506894, - 25.657995280072385, - 25.55287663648926, - 25.628061150801322, - 25.596129797488242, - 25.601504808088993, - 25.668324884576478 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f4", - "id": "aptos", - "symbol": "apt", - "name": "Aptos", - "image": "https://coin-images.coingecko.com/coins/images/26455/large/aptos_round.png?1696525528", - "current_price": 7.84, - "market_cap": 3529149825, - "market_cap_rank": 31, - "fully_diluted_valuation": 8629769697, - "total_volume": 227595282, - "high_24h": 8.52, - "low_24h": 7.82, - "price_change_24h": -0.6787521989692227, - "price_change_percentage_24h": -7.96753, - "market_cap_change_24h": -206564881.16367817, - "market_cap_change_percentage_24h": -5.52946, - "circulating_supply": 450133775.129075, - "total_supply": 1100704420.13493, - "max_supply": null, - "ath": 19.92, - "ath_change_percentage": -60.79385, - "ath_date": "2023-01-26T14:25:17.390Z", - "atl": 3.08, - "atl_change_percentage": 153.58893, - "atl_date": "2022-12-29T21:35:14.796Z", - "roi": null, - "last_updated": "2024-06-13T16:12:18.571Z", - "sparkline_in_7d": { - "price": [ - 9.21088248864707, - 9.199500222479003, - 9.254050350828646, - 9.255901945604164, - 9.194834196651499, - 9.2006183007532, - 9.146818449869077, - 9.076472837928685, - 9.069253076610007, - 9.082435358682737, - 9.142211848101596, - 9.09521161832339, - 9.086857570243478, - 9.066518560783727, - 9.0607567379124, - 9.022303194594661, - 9.135595990958596, - 9.193110400874422, - 9.175533561320831, - 9.152118904836895, - 9.154530605544274, - 9.109245735066825, - 9.16382518540609, - 9.280637932309585, - 9.176691057502653, - 9.293914150312622, - 9.337446029222512, - 9.288605754905573, - 9.19516389666499, - 9.124085120903484, - 8.430693531087895, - 8.51707272356322, - 8.528629446843544, - 8.552033747325003, - 8.615908517111517, - 8.579530509581433, - 8.49935231206043, - 8.559141985048258, - 8.504968119316374, - 8.507154424340197, - 8.47574059487247, - 8.486996067445281, - 8.497497514790656, - 8.511113012413018, - 8.452896842623309, - 8.441848352604994, - 8.39747850802982, - 8.267542375230468, - 8.140018869131753, - 8.159075682629075, - 8.203234096068167, - 8.17794987716793, - 8.13066189364492, - 8.095578700642092, - 8.153241804567648, - 8.15045546902957, - 8.108694534282279, - 8.139622211226698, - 8.099228523404847, - 8.12633868664173, - 8.110665835585023, - 8.170489586181988, - 8.054647227763036, - 8.07682680948096, - 8.14421897618544, - 8.182791857497172, - 8.229298255353813, - 8.240282233237437, - 8.259694522749145, - 8.27942129354352, - 8.320608577635753, - 8.315297740764008, - 8.365015226264982, - 8.368437864998144, - 8.457031673257754, - 8.489092432053967, - 8.448137299958455, - 8.46903853634648, - 8.544309110623963, - 8.55546386525403, - 8.52176065038274, - 8.563248125487279, - 8.553399376929043, - 8.555301205376896, - 8.538129279619255, - 8.513861290139486, - 8.524032503862502, - 8.4749300229433, - 8.461530149539524, - 8.424197786871787, - 8.373129317867795, - 8.272256561483042, - 8.364749898665366, - 8.425038807005196, - 8.438274015001207, - 8.456824249545889, - 8.360066469882335, - 8.4371833458235, - 8.441146776086013, - 8.486908334784166, - 8.426818621094538, - 8.467326000138712, - 8.416731329457525, - 8.33613474377771, - 8.303483472434868, - 8.274061679932514, - 8.280920634686634, - 8.272406980356644, - 8.256904361317366, - 8.201824295443002, - 8.20389294776279, - 8.142751233407616, - 8.114062533517798, - 8.108827741245959, - 7.97282469061124, - 8.003197487220918, - 8.013229283120848, - 8.01832927963816, - 8.080679792292097, - 8.105806993031685, - 8.007784694204522, - 7.935966717790842, - 8.045301913612324, - 7.859352140147201, - 7.846282687494548, - 7.907261728236255, - 8.016779032356274, - 7.991196651943013, - 7.983238282866419, - 8.003433313504912, - 7.9602263001878315, - 7.961518564102469, - 7.944138187133951, - 7.915592477565117, - 8.0510941224531, - 8.02781332078669, - 8.027880139783994, - 7.989571905472498, - 7.996061211412698, - 8.008493107443654, - 8.009465273509084, - 8.11107498550149, - 8.075532380621999, - 8.027024566305048, - 8.350045245584596, - 8.38456527128046, - 8.537600766140983, - 8.469033199523551, - 8.512172073527793, - 8.52221545783908, - 8.34648544852026, - 8.164776815999314, - 8.249368538135597, - 8.249864920173627, - 8.253579390617906, - 8.213235002158054, - 8.217768984222888, - 8.128056303590297, - 8.022017803493604, - 8.018063075282848, - 8.074494434991623, - 8.02900346678738, - 7.954886654925979, - 7.994037375339623, - 7.9967863942776445, - 7.993741961566068, - 8.036054114344457 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f5", - "id": "ethena-usde", - "symbol": "usde", - "name": "Ethena USDe", - "image": "https://coin-images.coingecko.com/coins/images/33613/large/USDE.png?1716355685", - "current_price": 1.002, - "market_cap": 3488365702, - "market_cap_rank": 32, - "fully_diluted_valuation": 3488365702, - "total_volume": 155907379, - "high_24h": 1.008, - "low_24h": 0.994254, - "price_change_24h": -0.000365297470390269, - "price_change_percentage_24h": -0.03645, - "market_cap_change_24h": 36069499, - "market_cap_change_percentage_24h": 1.0448, - "circulating_supply": 3485179280.47405, - "total_supply": 3485678767.11005, - "max_supply": null, - "ath": 1.032, - "ath_change_percentage": -2.90724, - "ath_date": "2023-12-20T15:38:34.596Z", - "atl": 0.965354, - "atl_change_percentage": 3.80407, - "atl_date": "2024-04-13T20:11:19.603Z", - "roi": null, - "last_updated": "2024-06-13T16:11:26.851Z", - "sparkline_in_7d": { - "price": [ - 1.0014942724332216, - 1.0020495408202732, - 1.000774074241052, - 1.0005773912607385, - 1.0017849677646573, - 1.0019001655711748, - 1.000991498251307, - 1.0011434382814866, - 1.0009303785316832, - 1.0010114797664178, - 1.0010976717735536, - 1.000747540239204, - 1.0009279958101875, - 1.0010469092904135, - 1.0013094629839023, - 1.0017347569873343, - 1.0015995004849503, - 1.0015418913664802, - 1.001196721755616, - 1.0009534815671532, - 1.0006916517603246, - 1.0013076934550693, - 1.000932850481037, - 1.0005819547894192, - 0.9995820936665225, - 0.9996728480700995, - 1.0005649605786786, - 1.000665612037869, - 0.9993386276624128, - 0.9952136053092494, - 1.000453975100719, - 1.0004314590495833, - 1.0010807171650047, - 1.001043232063605, - 1.0007941844358197, - 1.0007027599186422, - 1.0010193046143128, - 1.0006468129164463, - 1.0009528108942514, - 1.00024959360533, - 1.0008309666410842, - 1.000602263861548, - 1.000949685091132, - 1.0005738817408907, - 1.0004820809808164, - 1.0007397136193943, - 1.0015094738762784, - 1.0008782586322917, - 1.0005859299783528, - 1.0001934001036914, - 1.0008919474203528, - 1.0013328870242721, - 1.0014104332222602, - 1.0015271645716017, - 1.0014580805759068, - 1.0011249800953983, - 1.00011997458593, - 1.00091658921534, - 1.0014886396765195, - 1.00076667438074, - 1.0008219600107386, - 1.001070997224764, - 1.0008035159025621, - 1.0012169131211093, - 1.001103606059767, - 1.0010355866505645, - 1.0016681236343936, - 1.001119119761008, - 1.0008847612232936, - 1.0010277916370067, - 1.001079890059077, - 1.001058524714303, - 1.0014658863173824, - 1.0016484050861614, - 1.0013769281889924, - 1.000749180625292, - 1.0010142762973897, - 1.0004530110721812, - 1.0015041449864401, - 1.0018090698600473, - 1.001554700452876, - 1.000092303904084, - 1.0012119056639361, - 1.0001493790595244, - 1.0012839808663188, - 1.0006432639656497, - 0.9996572705620331, - 1.000525450511916, - 1.000634552497325, - 1.0009983280697088, - 1.0007608393711054, - 1.000520121211626, - 1.0001758362837467, - 1.0011509626916058, - 1.001023249102655, - 1.0004899971354009, - 0.9988027208701987, - 1.0000277829628095, - 0.999934588736829, - 0.998936867621981, - 0.9999105550912538, - 1.0002402254883223, - 0.9997244633889996, - 0.9994945364960987, - 1.0008352811442232, - 1.0006998154205717, - 1.0006296684703222, - 1.000918005872376, - 1.0004460369628745, - 0.9936969284928209, - 0.9998245814211761, - 1.0008312442972636, - 0.9993724583718842, - 1.0004903738065651, - 1.0005838822318767, - 1.0001212460741196, - 1.0000764561971163, - 1.0020106820752204, - 0.9983774966067926, - 1.000124941751523, - 0.9998431525869415, - 1.0022151223732094, - 1.0010162163109102, - 1.0008050927077552, - 1.0013404636140018, - 1.0018739860582258, - 1.0004249957942926, - 0.9993492892576838, - 1.0014960593841078, - 1.0020639984698492, - 1.0010512818319697, - 1.0007427886084304, - 1.0003145514514822, - 1.00144780774877, - 1.0005887758404222, - 1.0004672791640528, - 0.9996117621352746, - 1.0008145327893008, - 1.0006541568036158, - 1.001373252198467, - 1.0007472862833529, - 1.0024111375932274, - 1.0021560477026694, - 1.0010590262855248, - 1.0056411226451767, - 1.0019819573838387, - 1.0020562122609113, - 1.0022974052087303, - 1.001221458795032, - 1.001419695030172, - 1.000268785761274, - 1.0018710490802796, - 1.0010536761607662, - 1.0016008884411127, - 1.0011873412405514, - 1.0002415031741578, - 1.0005497747851282, - 1.0008314265166478, - 0.9997225857796822, - 1.0010520458228043, - 1.0006061537741808, - 1.0003807060897225, - 1.0010335152837293, - 1.0013207036034693, - 1.0007829653688336, - 1.002337313040641, - 1.003823776747234, - 0.9999770115898757 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f6", - "id": "renzo-restaked-eth", - "symbol": "ezeth", - "name": "Renzo Restaked ETH", - "image": "https://coin-images.coingecko.com/coins/images/34753/large/Ezeth_logo_circle.png?1713496404", - "current_price": 3458.6, - "market_cap": 3441959251, - "market_cap_rank": 33, - "fully_diluted_valuation": 3452454902, - "total_volume": 32051670, - "high_24h": 3614.67, - "low_24h": 3433.9, - "price_change_24h": -156.06971436343247, - "price_change_percentage_24h": -4.31768, - "market_cap_change_24h": -170076436.62128925, - "market_cap_change_percentage_24h": -4.7086, - "circulating_supply": 996928.060599325, - "total_supply": 999968.017915635, - "max_supply": null, - "ath": 4106.74, - "ath_change_percentage": -16.35325, - "ath_date": "2024-03-12T00:44:29.429Z", - "atl": 2198.04, - "atl_change_percentage": 56.28273, - "atl_date": "2024-01-26T08:09:59.848Z", - "roi": null, - "last_updated": "2024-06-13T16:12:28.017Z", - "sparkline_in_7d": { - "price": [ - 3798.8430919094653, - 3798.833055373194, - 3793.084155545868, - 3801.2503644805465, - 3801.008452760888, - 3782.1360717356843, - 3789.920564110199, - 3789.9259387712227, - 3748.1346526315874, - 3769.0928587811327, - 3767.530074873004, - 3775.254868514605, - 3771.7673103313664, - 3773.223594608468, - 3769.91224638641, - 3766.0514642868566, - 3772.480482997896, - 3773.422552706823, - 3783.1552530645863, - 3772.0744963616467, - 3777.059821194282, - 3767.829740185593, - 3767.2190081655203, - 3766.80177212743, - 3798.6830454197097, - 3759.0655711467766, - 3773.8364780794773, - 3774.1077701658915, - 3755.645547114808, - 3734.5565318154668, - 3626.8081898012515, - 3624.2720722713043, - 3642.063733669998, - 3647.385978200897, - 3649.4066408466238, - 3650.708947614278, - 3638.5404176948787, - 3647.06805216985, - 3655.400362683428, - 3649.4563644090604, - 3652.0646200596743, - 3642.7724342343604, - 3643.799207158181, - 3648.6213634462256, - 3663.470732112995, - 3658.8987017517793, - 3657.0048381888264, - 3653.09604821278, - 3640.7517508018686, - 3644.570058885051, - 3651.9983554295086, - 3659.358660828798, - 3659.631269023743, - 3652.9620616609986, - 3656.89132200348, - 3659.108590048235, - 3653.298216844398, - 3648.931710147839, - 3651.296526507572, - 3649.099885255161, - 3653.7997350617757, - 3654.2587463629934, - 3664.9241361240875, - 3653.825346784081, - 3657.917880089722, - 3657.7899449438837, - 3667.0634614535534, - 3677.4315281115237, - 3668.2961914721845, - 3669.8942071411498, - 3670.374701849814, - 3670.504723461594, - 3682.3072554752835, - 3687.9283945707266, - 3681.724393376126, - 3682.3372671489715, - 3675.8902431803317, - 3688.6023338145783, - 3687.532466473026, - 3695.0194153330644, - 3688.813115300123, - 3691.3066608353665, - 3695.6773089438857, - 3696.8983615765183, - 3696.12764701998, - 3684.7519116968742, - 3688.083479415375, - 3685.3828015403415, - 3680.677444510368, - 3672.3500901231696, - 3670.162546788166, - 3662.807972849184, - 3658.051686035265, - 3657.0096975184283, - 3660.3138958041563, - 3663.8559510393525, - 3662.0303620494783, - 3664.176433926226, - 3667.911997231929, - 3672.0573125839887, - 3686.9585178111765, - 3683.2343782916514, - 3682.416286883925, - 3675.1947734895225, - 3664.554363012973, - 3656.934722802348, - 3655.3336453343227, - 3669.7589656069504, - 3666.7918516985874, - 3660.891486447764, - 3629.22093187068, - 3597.0594152799745, - 3584.5902203261726, - 3560.2067505889536, - 3562.848534426471, - 3537.941728033391, - 3527.78107731962, - 3531.1890087429842, - 3513.385050635592, - 3524.747527020235, - 3517.8143905608385, - 3517.257167251426, - 3519.5941678077975, - 3501.315518788657, - 3461.0163065613865, - 3445.653507655992, - 3451.5977438765913, - 3480.9587321523127, - 3480.4077787858837, - 3478.953695778198, - 3489.269283078534, - 3493.3764631412632, - 3488.8519901530294, - 3481.989903876361, - 3463.720058576081, - 3477.3465209375695, - 3498.127408247129, - 3506.670287982878, - 3502.580831151992, - 3506.930493152755, - 3513.509218789195, - 3508.6878641118133, - 3536.864672711693, - 3529.9682186653044, - 3529.6937661116926, - 3616.5480739961545, - 3616.9099039178927, - 3628.091178288331, - 3620.3660163030395, - 3606.4639844970648, - 3588.9783270700073, - 3580.827176562167, - 3520.949740077923, - 3548.4283017666016, - 3549.374751379345, - 3553.2115485381005, - 3541.6197215087323, - 3552.5190731314515, - 3531.6272173675493, - 3488.7572498873674, - 3502.3090023179225, - 3500.7493704716403, - 3492.1551499241705, - 3480.108099686969, - 3500.4802211625756, - 3495.289500545298, - 3479.2340273823115, - 3498.107622080602 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f7", - "id": "render-token", - "symbol": "rndr", - "name": "Render", - "image": "https://coin-images.coingecko.com/coins/images/11636/large/rndr.png?1696511529", - "current_price": 8.32, - "market_cap": 3236839539, - "market_cap_rank": 34, - "fully_diluted_valuation": 4431369234, - "total_volume": 284992597, - "high_24h": 9.44, - "low_24h": 8.29, - "price_change_24h": -0.9872536581938238, - "price_change_percentage_24h": -10.60179, - "market_cap_change_24h": -372874542.9331918, - "market_cap_change_percentage_24h": -10.32975, - "circulating_supply": 388646672.474413, - "total_supply": 532073612.754413, - "max_supply": 532073612.754413, - "ath": 13.53, - "ath_change_percentage": -38.49394, - "ath_date": "2024-03-17T16:30:24.636Z", - "atl": 0.03665669, - "atl_change_percentage": 22609.78547, - "atl_date": "2020-06-16T13:22:25.900Z", - "roi": null, - "last_updated": "2024-06-13T16:12:29.813Z", - "sparkline_in_7d": { - "price": [ - 10.63583666963867, - 10.633663997321841, - 10.62240019783503, - 10.704993860599934, - 10.65830826120474, - 10.582347702339428, - 10.627624967206698, - 10.600222825559303, - 10.340378622846655, - 10.484768176459031, - 10.412682943852834, - 10.424524812437896, - 10.370250989015812, - 10.381594433883334, - 10.32312530889735, - 10.255364111263967, - 10.314176068639934, - 10.40749497587328, - 10.439857175549063, - 10.4278249983441, - 10.406155531062678, - 10.383446706924753, - 10.359482853812786, - 10.357957808225338, - 10.43609719956485, - 10.270726512361636, - 10.311037654336861, - 10.391507019424381, - 10.269379965326742, - 10.114190964009051, - 9.379348230531626, - 9.335661747848496, - 9.474324982623996, - 9.561518311709102, - 9.594163320907123, - 9.59840913160161, - 9.58979727115478, - 9.635111016121519, - 9.703273401983525, - 9.591847415972875, - 9.542992582565285, - 9.470271924994046, - 9.50599934710173, - 9.519122969057022, - 9.5453232956794, - 9.500660009954812, - 9.462079513482648, - 9.311809802358342, - 9.075442397960582, - 9.099370640804732, - 9.225601320373725, - 9.266701589259487, - 9.163702684890934, - 9.15285109907826, - 9.179553729614298, - 9.255778701428772, - 9.199016783468416, - 9.181009235842847, - 9.168019598414071, - 9.121451730598721, - 9.139707188784223, - 9.094682496784824, - 9.120325503484857, - 8.967117379046298, - 9.040144733113333, - 9.020183893263825, - 9.106412293717339, - 9.114510171761598, - 9.134293249062344, - 9.15154642399706, - 9.133944211315365, - 9.15859227464926, - 9.143751512046792, - 9.22462667225669, - 9.10487190809498, - 9.157159589212334, - 9.122406485164902, - 9.150716574908571, - 9.116958391102628, - 9.133254125947698, - 9.142269402869067, - 9.165849926505071, - 9.11989847769546, - 9.162114845470873, - 9.196345667095594, - 9.212377651391396, - 9.149517137091582, - 9.122275521049902, - 9.047964705891358, - 9.065167818471613, - 8.986784367182418, - 8.86387825066262, - 8.7925525519442, - 8.905637892930548, - 9.091501119875977, - 9.05016140366093, - 9.041635773479099, - 8.957613567436061, - 8.999846466860216, - 9.087307684057905, - 9.218225475749115, - 9.17878895176834, - 9.16162707035119, - 8.904029134424416, - 8.742856949147532, - 8.694084744975036, - 8.725458842232594, - 8.683818619807115, - 8.640658754825623, - 8.596856804200533, - 8.446903469945369, - 8.467896186911435, - 8.41333126338177, - 8.369359256033894, - 8.405585227400172, - 8.333307568702171, - 8.348668095194935, - 8.3681839268507, - 8.31293542473448, - 8.342352429386485, - 8.286553137554622, - 8.185899654427024, - 8.112731224461623, - 8.127235752890318, - 8.098162953521497, - 8.196299603569848, - 8.28095086270976, - 8.265242183731003, - 8.323920606764467, - 8.309337733689713, - 8.286884617549914, - 8.233021560731547, - 8.193523314812403, - 8.109965559839482, - 8.103857667418382, - 8.248743125574869, - 8.345106522930298, - 8.343079049986677, - 8.349968656268233, - 8.378390418605495, - 8.45994885418627, - 8.447149633077562, - 8.56773221677774, - 8.717381977094329, - 8.633555278949391, - 9.178933080915328, - 9.186507523262573, - 9.37947267546023, - 9.287340591450985, - 9.303504997310922, - 9.432124595185662, - 9.088108802760928, - 8.89060394906208, - 9.09418986594894, - 9.16476146503531, - 9.260624824021987, - 9.268200069793401, - 9.2668726448423, - 9.045632030893305, - 8.907691921592862, - 8.871146332995938, - 8.865672495338114, - 8.774650760932431, - 8.66371192688744, - 8.77722362828617, - 8.73128012259748, - 8.702772042301925, - 8.679606526883111, - 8.635887198362948 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f8", - "id": "monero", - "symbol": "xmr", - "name": "Monero", - "image": "https://coin-images.coingecko.com/coins/images/69/large/monero_logo.png?1696501460", - "current_price": 174.5, - "market_cap": 3216095685, - "market_cap_rank": 35, - "fully_diluted_valuation": null, - "total_volume": 95917201, - "high_24h": 181.54, - "low_24h": 173.14, - "price_change_24h": -4.852396318411309, - "price_change_percentage_24h": -2.70558, - "market_cap_change_24h": -86710504.72721195, - "market_cap_change_percentage_24h": -2.62536, - "circulating_supply": 18445342.6021475, - "total_supply": 18444108.0, - "max_supply": null, - "ath": 542.33, - "ath_change_percentage": -67.99183, - "ath_date": "2018-01-09T00:00:00.000Z", - "atl": 0.216177, - "atl_change_percentage": 80199.36772, - "atl_date": "2015-01-14T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:23.142Z", - "sparkline_in_7d": { - "price": [ - 163.75379338669597, - 163.43823273077027, - 163.61706797862482, - 163.70193568591242, - 164.58461730821622, - 163.39705964610067, - 163.18416371347374, - 163.84535744462616, - 163.88244958993397, - 164.37932104956838, - 164.80150183748515, - 165.090737169715, - 165.0299385852023, - 165.1517107398566, - 166.32880561266387, - 166.79921120108673, - 166.75232663485758, - 167.17346457122915, - 168.55733944011217, - 170.72027311381163, - 172.7575250205381, - 172.93485338931544, - 174.44032778952948, - 173.2868877408289, - 172.86830844212685, - 169.19846369080074, - 167.08950505977882, - 166.06576328186708, - 163.86030578873573, - 162.20273065677551, - 156.2090063249013, - 160.47694479252362, - 158.5284702777716, - 157.23632912216684, - 158.57328490769558, - 156.4983751596551, - 154.26548703706192, - 157.50950683758072, - 158.64690450134245, - 159.67656831211036, - 161.66543247064132, - 162.45114242683093, - 163.54022861684084, - 163.174565789039, - 163.62840165721826, - 164.27585207587768, - 163.41151881781778, - 163.5954995652191, - 163.97132880046965, - 164.91100278404073, - 165.36497759224872, - 166.86285090711306, - 167.04450339050126, - 166.14738589375074, - 165.53037948590094, - 165.7223797883905, - 165.2201242585878, - 166.35200312487822, - 166.04477336363044, - 166.16596111418562, - 169.0499749205231, - 171.16406866467173, - 173.05482169387855, - 170.8617898760014, - 174.60780329323222, - 172.9021892577496, - 171.67743725413396, - 170.87026283121088, - 171.2974356316989, - 170.07997007082633, - 170.93447535533795, - 170.68231442022872, - 169.1631315024542, - 169.5271813875532, - 169.43933697602617, - 168.56107008660493, - 168.51378276007708, - 166.9834833886218, - 166.99693935640295, - 167.40364907373103, - 170.32487744502905, - 172.0928251246735, - 172.99130249745488, - 173.91817578022656, - 174.1250988099565, - 174.83849218934967, - 175.61101399074303, - 176.36936922520943, - 176.82261421208162, - 177.2976708749952, - 178.8277457962021, - 179.22318612260676, - 178.0530652114695, - 178.09331393255763, - 177.2528424422044, - 178.88930888691584, - 176.80306596485576, - 177.46413250260017, - 178.88321154518312, - 177.0916761981324, - 180.33250937038915, - 180.32111331991086, - 179.90854092548955, - 177.53003651480816, - 179.02475383873687, - 178.2290031560105, - 177.9571855248843, - 178.61815050079736, - 178.84450882324975, - 179.01520914447403, - 177.591616499764, - 177.27203238610608, - 177.7720484330427, - 178.27399538498142, - 177.33211652845756, - 176.42339108857, - 176.4478314710612, - 175.1845300435268, - 178.48235903953076, - 177.27812970308574, - 175.58459474525927, - 175.31459614197493, - 174.03112352255516, - 172.86339522683667, - 172.3691846628416, - 173.60204115206582, - 172.87162587398026, - 168.39183702872535, - 170.57236054362028, - 172.86917192704303, - 173.08064564326145, - 174.03521414516607, - 174.3589186526964, - 175.2285042989862, - 177.2232149463251, - 177.3164856506607, - 176.55505669223774, - 177.01469336976666, - 177.71335895385718, - 178.1142687355552, - 177.49122299883444, - 175.3582642419896, - 177.88729549601175, - 176.13179089224232, - 175.63288407661165, - 175.49058577992736, - 176.11117643211153, - 179.5875254331993, - 179.4238440939864, - 178.76583050624507, - 178.9909134006183, - 180.05256252413622, - 178.71289235865942, - 178.4245739366038, - 179.84816856352097, - 180.04885774011436, - 180.36442469140323, - 179.68704569695637, - 177.32385089173823, - 173.71059084876143, - 174.0524460762212, - 173.5015839324846, - 173.80589224938984, - 175.7943592646507, - 177.76565490158077, - 179.6391128645133, - 177.51652373776125, - 177.15760654585253 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492f9", - "id": "blockstack", - "symbol": "stx", - "name": "Stacks", - "image": "https://coin-images.coingecko.com/coins/images/2069/large/Stacks_Logo_png.png?1709979332", - "current_price": 2.17, - "market_cap": 3177661013, - "market_cap_rank": 36, - "fully_diluted_valuation": 3938083832, - "total_volume": 137788086, - "high_24h": 2.47, - "low_24h": 2.17, - "price_change_24h": -0.2291059459124125, - "price_change_percentage_24h": -9.56388, - "market_cap_change_24h": -339382257.36645603, - "market_cap_change_percentage_24h": -9.64965, - "circulating_supply": 1466953972.77728, - "total_supply": 1818000000.0, - "max_supply": 1818000000.0, - "ath": 3.86, - "ath_change_percentage": -43.927, - "ath_date": "2024-04-01T12:34:58.342Z", - "atl": 0.04559639, - "atl_change_percentage": 4652.22084, - "atl_date": "2020-03-13T02:29:26.415Z", - "roi": { - "times": 17.053554312366682, - "currency": "usd", - "percentage": 1705.3554312366684 - }, - "last_updated": "2024-06-13T16:12:16.395Z", - "sparkline_in_7d": { - "price": [ - 2.3779598153462804, - 2.3669807804013088, - 2.2727287308536974, - 2.2931451186804113, - 2.336131349939449, - 2.3059194465567967, - 2.3364809359798935, - 2.3175962529830594, - 2.284431209966926, - 2.308466451825396, - 2.3228592072225784, - 2.3048656018507967, - 2.3027561079646164, - 2.3409156287864503, - 2.373614670260795, - 2.3663677478122565, - 2.3574586514244347, - 2.3736358943685087, - 2.376581053266887, - 2.378173965804417, - 2.380983293203562, - 2.382303717277917, - 2.3788420112092097, - 2.4314736411884117, - 2.4886133677216415, - 2.41403950612303, - 2.4465759968033485, - 2.4029064298058955, - 2.353746116874339, - 2.3435372148599414, - 2.288755103133966, - 2.17425474485729, - 2.176832944092542, - 2.169339517185932, - 2.1862918251000805, - 2.165881433295297, - 2.1502785903102892, - 2.2155569954152186, - 2.250104752570707, - 2.2473650239442287, - 2.250575296997485, - 2.3192644895968884, - 2.343953250511358, - 2.3268178486249287, - 2.3278473317357187, - 2.3196974078388872, - 2.347069883185082, - 2.316515479845028, - 2.2506057080958577, - 2.2634530227572514, - 2.2706499603132473, - 2.292543031474417, - 2.2748937264766167, - 2.280365983013358, - 2.251564173512843, - 2.235118897343938, - 2.219994894173748, - 2.210635404802493, - 2.2258140538234077, - 2.2195136337212475, - 2.236477465277101, - 2.253512172011861, - 2.2482851913956607, - 2.1915881489575777, - 2.2120787532578166, - 2.2216590539910257, - 2.2375707445921162, - 2.2488966647746915, - 2.259113433881387, - 2.2641915168858775, - 2.236173299772845, - 2.236136838078933, - 2.22471056077058, - 2.32272997244445, - 2.2675324624536883, - 2.2531691899723065, - 2.2755046995587462, - 2.2415283585288215, - 2.241841957900125, - 2.239935323759503, - 2.223255348076674, - 2.230725142744445, - 2.2482137758861467, - 2.2700366901350524, - 2.263508185129984, - 2.248810269018132, - 2.2728544565772975, - 2.2792231895314132, - 2.252215861515941, - 2.2592594760230384, - 2.2258622983586127, - 2.1915966268351603, - 2.1531070125426646, - 2.1775200414116695, - 2.1803949512803626, - 2.185749744057398, - 2.2170707632382034, - 2.2131341963515507, - 2.208713457857288, - 2.2060979753674124, - 2.301273421350707, - 2.263177502126225, - 2.234341898213151, - 2.201881276912157, - 2.1688098009311294, - 2.2011516436820124, - 2.2283920105926893, - 2.226447788916467, - 2.223618426734251, - 2.2153905736854482, - 2.2073588535402684, - 2.166542754896135, - 2.1495224815174927, - 2.1169202814945614, - 2.1041406864869896, - 2.0651762369701654, - 2.0818115327015936, - 2.1149652853133496, - 2.1109288695125277, - 2.1352290000040712, - 2.142502615163669, - 2.149497038992073, - 2.1281938409051966, - 2.142322568491629, - 2.1361596074306934, - 2.142636771893062, - 2.13818145392344, - 2.194069587001277, - 2.19663541780904, - 2.193086828056672, - 2.1987266858042314, - 2.200229374554528, - 2.185484970064319, - 2.1669348241422615, - 2.14712484038004, - 2.167429256705933, - 2.181260209528688, - 2.2043834666306816, - 2.1580996922999103, - 2.1703383991487004, - 2.16880687775944, - 2.1583208263313827, - 2.1721783812800295, - 2.2092632961469265, - 2.182374203716136, - 2.4064151222396273, - 2.3963437385646715, - 2.447053938202661, - 2.4138232809298295, - 2.410979919802674, - 2.4289383708211587, - 2.439527284015381, - 2.3306305546654684, - 2.360553382260426, - 2.386695141707414, - 2.394540151285719, - 2.3971402018057426, - 2.3888337352391105, - 2.3305771686410166, - 2.310482519593367, - 2.302664014844171, - 2.3054838460573683, - 2.3209541150332256, - 2.3041026399525197, - 2.317860851968415, - 2.306236869436686, - 2.3025863874537014, - 2.333023740615465 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492fa", - "id": "hedera-hashgraph", - "symbol": "hbar", - "name": "Hedera", - "image": "https://coin-images.coingecko.com/coins/images/3688/large/hbar.png?1696504364", - "current_price": 0.088091, - "market_cap": 3148443392, - "market_cap_rank": 37, - "fully_diluted_valuation": 4403205107, - "total_volume": 77387370, - "high_24h": 0.093043, - "low_24h": 0.087542, - "price_change_24h": -0.004825573827826877, - "price_change_percentage_24h": -5.19347, - "market_cap_change_24h": -166985332.51434278, - "market_cap_change_percentage_24h": -5.03661, - "circulating_supply": 35751723073.042, - "total_supply": 50000000000.0, - "max_supply": 50000000000.0, - "ath": 0.569229, - "ath_change_percentage": -84.57897, - "ath_date": "2021-09-15T10:40:28.318Z", - "atl": 0.00986111, - "atl_change_percentage": 790.17331, - "atl_date": "2020-01-02T17:30:24.852Z", - "roi": null, - "last_updated": "2024-06-13T16:12:19.974Z", - "sparkline_in_7d": { - "price": [ - 0.10343284640425053, - 0.10318981559000226, - 0.10303898374607308, - 0.10316838211779003, - 0.10298808371422337, - 0.10220945969159365, - 0.10253949455085734, - 0.10209400809896765, - 0.10076787718317066, - 0.10129003073445013, - 0.10134832059890023, - 0.1016546710339426, - 0.10134711322561821, - 0.1010022079196014, - 0.1007799312559124, - 0.1009150575769472, - 0.10084441676542544, - 0.1014294677743435, - 0.10174133709013262, - 0.10116169036777001, - 0.10103103035054897, - 0.10099608544591654, - 0.10090960057698145, - 0.10095862344480849, - 0.10142762438231888, - 0.10085112180430639, - 0.10114596942481409, - 0.10149671244090065, - 0.10046558086786435, - 0.09886433210727957, - 0.09773016191321583, - 0.09268098308713388, - 0.09325633529862427, - 0.09452662953641691, - 0.0942125646052224, - 0.0942395688093649, - 0.09396100564757345, - 0.09404932629318241, - 0.09374961174038682, - 0.09353793711095702, - 0.09392823117820044, - 0.09327774991929848, - 0.09310084688413754, - 0.09322445011005935, - 0.09346316014863545, - 0.0928423599704344, - 0.0923478910864277, - 0.09212853847539221, - 0.0900134964863076, - 0.09039597709530352, - 0.09046499581451214, - 0.09098241449609722, - 0.09019812081616681, - 0.09001393645773943, - 0.08998176919915743, - 0.09011843646434575, - 0.08969959986278603, - 0.08958846931848419, - 0.0900909686572477, - 0.08996786800981173, - 0.090214215629473, - 0.09035632401046402, - 0.09040989520223913, - 0.08927931073423073, - 0.08985316903513411, - 0.08986371377147885, - 0.0902744253904424, - 0.0904845164338192, - 0.09069354104216773, - 0.09076128429748016, - 0.09064367012868109, - 0.0903167929765993, - 0.09031357957409139, - 0.09116127604931748, - 0.09061449547352492, - 0.0903885330932486, - 0.08991783947325586, - 0.09037441694719056, - 0.09018453723426939, - 0.09056975707378305, - 0.09077702568309627, - 0.09087688851885252, - 0.09124382412769633, - 0.09137908644076934, - 0.09143192023822089, - 0.09117096991864641, - 0.09117862710722331, - 0.09085549767981985, - 0.09078641738117299, - 0.09064737869093265, - 0.08988384886991233, - 0.08904603101036629, - 0.0887783772545026, - 0.08955271768859857, - 0.09032009442256729, - 0.0901353486190494, - 0.08993229677972195, - 0.08902799494300584, - 0.08910767719293473, - 0.09004273146485305, - 0.0909601137486464, - 0.09032605980737166, - 0.09052978870662079, - 0.08998291541417108, - 0.08911802441101703, - 0.0890769230490197, - 0.08920407945646106, - 0.08933094626329055, - 0.08913284350906713, - 0.08926982191842169, - 0.08855381841602904, - 0.08891491905220131, - 0.08866846897655004, - 0.0887639910760986, - 0.08886093909925767, - 0.08805484002658544, - 0.08756091943559732, - 0.0879081010393648, - 0.08790709553081738, - 0.08767258575735326, - 0.08721208338926185, - 0.08646218569254348, - 0.08550015826397547, - 0.08583660581343244, - 0.08508256147728611, - 0.08572656006718661, - 0.08639623066829985, - 0.08727194501028544, - 0.0869266988108161, - 0.08711337493181825, - 0.08769952052739835, - 0.08761733259543172, - 0.08731214328538998, - 0.08696372606535961, - 0.08664164635777015, - 0.08787249655778333, - 0.08726645788729044, - 0.08728213790500343, - 0.08710929952854495, - 0.08792689402405804, - 0.08829295876063958, - 0.08830113669187596, - 0.08903563942716829, - 0.08952523853569773, - 0.08924708028279713, - 0.09324626628286455, - 0.09240925666326529, - 0.09370307103791467, - 0.09279995596621421, - 0.09268417383526209, - 0.0919479129028761, - 0.09181085098549208, - 0.09074333690113535, - 0.09183659446368285, - 0.0919176475316408, - 0.09157256893228691, - 0.09171993565242935, - 0.09209572260223668, - 0.09114702680135356, - 0.08958931429501946, - 0.09003856577830223, - 0.08990465421361024, - 0.08931157068827004, - 0.0887377607801841, - 0.08951665353479812, - 0.08964583239237989, - 0.08961588693606258, - 0.08999627133198729 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492fb", - "id": "filecoin", - "symbol": "fil", - "name": "Filecoin", - "image": "https://coin-images.coingecko.com/coins/images/12817/large/filecoin.png?1696512609", - "current_price": 5.35, - "market_cap": 3008468047, - "market_cap_rank": 38, - "fully_diluted_valuation": 10471453633, - "total_volume": 239174059, - "high_24h": 5.73, - "low_24h": 5.32, - "price_change_24h": -0.37423062267884166, - "price_change_percentage_24h": -6.5431, - "market_cap_change_24h": -206556816.66632318, - "market_cap_change_percentage_24h": -6.42473, - "circulating_supply": 563166367.0, - "total_supply": 1960190505.0, - "max_supply": 1960190543.0, - "ath": 236.84, - "ath_change_percentage": -97.75093, - "ath_date": "2021-04-01T13:29:41.564Z", - "atl": 2.64, - "atl_change_percentage": 101.69516, - "atl_date": "2022-12-16T22:45:28.552Z", - "roi": null, - "last_updated": "2024-06-13T16:12:06.749Z", - "sparkline_in_7d": { - "price": [ - 6.037295940920159, - 6.0217917423516, - 6.00787574566398, - 6.043863971601868, - 6.0116954840209145, - 5.967589311069397, - 5.986188568370827, - 5.973248275766844, - 5.892696675413818, - 5.925056020319114, - 5.922131576858604, - 5.947710577673144, - 5.957380493458162, - 5.948072057272118, - 5.9342727436119675, - 5.923851935160348, - 5.935087905304266, - 5.936711953767147, - 5.980858699123317, - 6.014648486305681, - 5.987166440204634, - 5.990016982337323, - 6.100368020887318, - 6.453631319116129, - 6.384239840682118, - 6.42753018786906, - 6.627612538763241, - 6.690422673645512, - 6.6755100706790556, - 6.546791718272519, - 5.984731067657634, - 6.0187826887512825, - 6.053908212241406, - 6.068809232491073, - 6.034500960495128, - 6.1109665885956, - 6.100333113752466, - 6.154964269244813, - 6.378410495011072, - 6.353004054225242, - 6.314114813155175, - 6.346480519898714, - 6.3825578779791865, - 6.324285739253822, - 6.440907608926555, - 6.311202982147733, - 6.2721561581892935, - 6.251081389662644, - 6.13177408289996, - 6.105440703279961, - 6.0891474226156, - 6.1240360682889206, - 6.149613989892459, - 6.118729938023831, - 6.130215247011687, - 6.150070950826663, - 6.1289385792060616, - 6.1143788768098535, - 6.127174546231404, - 6.053578781842483, - 6.048532834628117, - 6.120934516099138, - 6.1732911205661, - 6.119374481901438, - 6.258669753300662, - 6.216696718289018, - 6.1911651284015985, - 6.219959487281681, - 6.187918824893295, - 6.280676920294835, - 6.256116162537637, - 6.27937577196747, - 6.322832923017739, - 6.289951576342983, - 6.237108977007905, - 6.2229023767381495, - 6.218872936011348, - 6.227903208845536, - 6.219970578516415, - 6.226166319698739, - 6.1859303307584685, - 6.115839196275291, - 6.10557974360832, - 6.11942670565658, - 6.128911919355387, - 6.133792617080671, - 6.113214309984055, - 6.1316368423943866, - 6.082811955013403, - 6.094824036100052, - 6.0262516070443235, - 5.937817767927482, - 5.844536052337002, - 5.888817820673854, - 5.90964952256772, - 5.882515270134427, - 5.866371175728418, - 5.855375475772451, - 5.830365573598137, - 5.891480977691265, - 5.928836355401321, - 5.888765223358508, - 5.904249352970262, - 5.899596504207021, - 5.835553999866848, - 5.818744948691279, - 5.782755502817782, - 5.79488424420046, - 5.7975982220753535, - 5.800492188275358, - 5.603527494578583, - 5.657780368332249, - 5.65239352286063, - 5.616614986562484, - 5.638013090226839, - 5.585514473479865, - 5.605868327360236, - 5.6203434392070415, - 5.579604045508335, - 5.604393199516841, - 5.601647391499942, - 5.556044239390732, - 5.5222176414087425, - 5.54159938107404, - 5.420893524872145, - 5.404910280156914, - 5.416251092006027, - 5.441968265864406, - 5.4265702420395, - 5.406372690406959, - 5.435936787085849, - 5.404849840952997, - 5.3826042050839416, - 5.35440580728808, - 5.291253676357589, - 5.402909137587178, - 5.4207740832200955, - 5.43384395791926, - 5.434800408938456, - 5.427656482360011, - 5.442984124378363, - 5.416197958475803, - 5.445221393683314, - 5.445336204316619, - 5.394561428911308, - 5.657352770754395, - 5.61004818038153, - 5.691738186633751, - 5.685273364878048, - 5.679943346722333, - 5.673886803038748, - 5.623980849987543, - 5.480152401472629, - 5.603697061772147, - 5.582131608304585, - 5.6055403258304555, - 5.652594469285176, - 5.6755446669338765, - 5.569854190611392, - 5.515204356581468, - 5.459882241896996, - 5.484790879598443, - 5.451941353155085, - 5.4249006433189155, - 5.465824151359041, - 5.445240530893983, - 5.425856089303887, - 5.449446121609852 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492fc", - "id": "cosmos", - "symbol": "atom", - "name": "Cosmos Hub", - "image": "https://coin-images.coingecko.com/coins/images/1481/large/cosmos_hub.png?1696502525", - "current_price": 7.45, - "market_cap": 2910429616, - "market_cap_rank": 39, - "fully_diluted_valuation": 2912229899, - "total_volume": 195917936, - "high_24h": 7.89, - "low_24h": 7.41, - "price_change_24h": -0.3932778798097498, - "price_change_percentage_24h": -5.01362, - "market_cap_change_24h": -153552099.0216403, - "market_cap_change_percentage_24h": -5.01152, - "circulating_supply": 390688369.813272, - "total_supply": 390930035.085365, - "max_supply": null, - "ath": 44.45, - "ath_change_percentage": -83.25891, - "ath_date": "2022-01-17T00:34:41.497Z", - "atl": 1.16, - "atl_change_percentage": 541.44029, - "atl_date": "2020-03-13T02:27:44.591Z", - "roi": { - "times": 73.50915859208585, - "currency": "usd", - "percentage": 7350.915859208585 - }, - "last_updated": "2024-06-13T16:12:41.682Z", - "sparkline_in_7d": { - "price": [ - 8.610206392921551, - 8.612427191904768, - 8.619184742544624, - 8.744647534591744, - 8.728358557660568, - 8.698018785019487, - 8.779212693150019, - 8.75808636247317, - 8.651721961435777, - 8.663549362875651, - 8.593098802589827, - 8.619114098063541, - 8.616764861971216, - 8.613923950583096, - 8.596488159740288, - 8.56076836350029, - 8.572719160069521, - 8.626012457475566, - 8.644221339487045, - 8.666659923231576, - 8.668477737457799, - 8.60723491608363, - 8.601537200334624, - 8.537672585844808, - 8.609534259437961, - 8.513734723691755, - 8.67951421941834, - 8.657914311426088, - 8.639715543107123, - 8.561997109770875, - 8.464424535022346, - 7.976552814548904, - 8.024766083474178, - 8.088310072170628, - 8.102147789103961, - 8.104684731439653, - 8.099346035428027, - 8.06152588796107, - 8.083235920526608, - 8.027280364197647, - 8.02753512214248, - 8.007272880573778, - 8.017911995157665, - 8.00654659217295, - 8.102564922221232, - 8.084942218434902, - 8.048854832176866, - 8.035323570645906, - 7.927451069524459, - 7.886357359774645, - 7.886742364167385, - 7.855945432302867, - 7.816251814800283, - 7.784664492807712, - 7.804170891398761, - 7.786665488647643, - 7.769276596248053, - 7.75918325340078, - 7.789006882693465, - 7.737186407121216, - 7.746350440114091, - 7.768419869943059, - 7.799000700476798, - 7.73659432045739, - 7.770713984871652, - 7.767149650273289, - 7.779771337399496, - 7.794616456171203, - 7.780157661261206, - 7.792429016205396, - 7.797284639158609, - 7.788741706937478, - 7.830790047525913, - 7.886808622001854, - 7.84593270564339, - 7.893697048792164, - 7.885911367673668, - 7.891979897628523, - 7.873270911957596, - 7.912650848177702, - 7.920732065160539, - 7.898175499693189, - 7.892536130139586, - 7.87543670452485, - 7.878212600571374, - 7.880600838388442, - 7.8996980988742616, - 7.894116238783569, - 7.873817955434378, - 7.84591502744662, - 7.815110763890239, - 7.7608612441645075, - 7.749595761203141, - 7.812573096062109, - 7.847727529687344, - 7.850159877425381, - 7.834401093347036, - 7.797321786700038, - 7.761939949534191, - 7.816150868807563, - 7.8816052420907035, - 7.880067985806804, - 7.880346791465399, - 7.87559655895682, - 7.828043942032649, - 7.872949594067072, - 7.833373820576535, - 7.867439566378079, - 7.8563097077162, - 7.814612607989329, - 7.671318389805456, - 7.718199496227099, - 7.733309090000762, - 7.727835138575487, - 7.696508648302885, - 7.670310730632858, - 7.648379505562264, - 7.662946375376357, - 7.651779303098174, - 7.652524999341419, - 7.619163272593428, - 7.541282533918604, - 7.505503941286871, - 7.543331253319234, - 7.45935155418136, - 7.505705210597159, - 7.520929784758572, - 7.548112481528391, - 7.5311878352712025, - 7.535860990371608, - 7.5433832734521, - 7.534243096958183, - 7.521584642879709, - 7.510726157998387, - 7.460786889582233, - 7.539339068525201, - 7.571107751062611, - 7.578296103007003, - 7.569891435862234, - 7.581107800689205, - 7.592163138214779, - 7.589229831226367, - 7.628825737200445, - 7.639113571384652, - 7.598812099401188, - 7.8142058545529105, - 7.792171744985768, - 7.849521475452357, - 7.8346191222611425, - 7.826171237792336, - 7.782070442710439, - 7.786926980130599, - 7.70017039072043, - 7.778108370780132, - 7.788337382891058, - 7.80562399335899, - 7.776749315387549, - 7.778797600837831, - 7.709032746534027, - 7.659783648205726, - 7.6578630477258445, - 7.68702895587311, - 7.6507695394093185, - 7.6025853190802595, - 7.620467765054496, - 7.616947636470558, - 7.602377042550144, - 7.630826532640913 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492fd", - "id": "mantle", - "symbol": "mnt", - "name": "Mantle", - "image": "https://coin-images.coingecko.com/coins/images/30980/large/token-logo.png?1696529819", - "current_price": 0.875908, - "market_cap": 2854256959, - "market_cap_rank": 40, - "fully_diluted_valuation": 5437845069, - "total_volume": 177474843, - "high_24h": 0.917449, - "low_24h": 0.872861, - "price_change_24h": -0.039764458662579494, - "price_change_percentage_24h": -4.34265, - "market_cap_change_24h": -140192141.47374296, - "market_cap_change_percentage_24h": -4.68173, - "circulating_supply": 3264441707.83684, - "total_supply": 6219316794.99, - "max_supply": 6219316794.99, - "ath": 1.54, - "ath_change_percentage": -43.11567, - "ath_date": "2024-04-08T09:45:25.482Z", - "atl": 0.307978, - "atl_change_percentage": 184.20474, - "atl_date": "2023-10-18T02:50:46.942Z", - "roi": null, - "last_updated": "2024-06-13T16:12:32.269Z", - "sparkline_in_7d": { - "price": [ - 1.0331170321528365, - 1.0351531393596947, - 1.0328403264825257, - 1.0355103108089518, - 1.0392679286009991, - 1.0312859568777906, - 1.0435334578910884, - 1.047812834450549, - 1.037108416032264, - 1.0389686563595009, - 1.0372857096850967, - 1.0387875066418235, - 1.0383235476077655, - 1.030135897135742, - 1.0217822299184869, - 1.0193368100921265, - 1.0209843648499788, - 1.0228708306395717, - 1.0259511065686517, - 1.024112237407216, - 1.0207473520125014, - 1.0198062552691034, - 1.0176121677942884, - 1.0154467481925278, - 1.0210429583308056, - 1.0090445362707385, - 1.0120516709683907, - 1.0117929715919467, - 1.0085798101183847, - 1.004185664726324, - 0.8771333468466662, - 0.9476871917295013, - 0.9533855388089989, - 0.9569531221358913, - 0.9595553048564307, - 0.9601413970276146, - 0.9551439704818229, - 0.9553392825550877, - 0.9551123422272534, - 0.9557115051742725, - 0.9549212270072397, - 0.951155361365684, - 0.9498560412794281, - 0.9519409432440261, - 0.9544060047651727, - 0.9539618152852303, - 0.9522488993949182, - 0.9531066458390711, - 0.9444304951782359, - 0.9415059391101777, - 0.9406916538201047, - 0.9429286209573068, - 0.9430314087574649, - 0.9414437287110792, - 0.9429900757253853, - 0.9433378167990027, - 0.9416232550452907, - 0.9389708076778656, - 0.9395450094781316, - 0.939308633241305, - 0.9396957964950279, - 0.941328776175233, - 0.9419953887459911, - 0.9396368644161935, - 0.9387386348105001, - 0.9397949058124982, - 0.9425588731998619, - 0.9433191451513709, - 0.9421444411123955, - 0.9430273216103768, - 0.9433077686423637, - 0.9434745374657164, - 0.941017477831825, - 0.9428506859954225, - 0.9404709522870851, - 0.9413768022007989, - 0.9415679130891699, - 0.9445712188254073, - 0.9426087718436965, - 0.9459963318580947, - 0.9453701869907094, - 0.941518091601962, - 0.9414001177713663, - 0.9411322687102073, - 0.9386899557195881, - 0.9370327295251921, - 0.9376294551482643, - 0.9358037098108238, - 0.9327019095835154, - 0.9333714796171149, - 0.9310589501852737, - 0.9277219071271188, - 0.9242483255845396, - 0.9249183741673143, - 0.9255841589103835, - 0.9252590971815178, - 0.9243167959840779, - 0.9231805296792895, - 0.9235088321126452, - 0.9268468182069494, - 0.9325594027744698, - 0.9333619468219507, - 0.932321667097682, - 0.929982859883396, - 0.9235129076650742, - 0.9251878253878336, - 0.9227416311559842, - 0.9254795596725844, - 0.9221197081634623, - 0.9207845335963722, - 0.9060482469876199, - 0.9103953788182622, - 0.9005049495073817, - 0.895215243127807, - 0.892205545172388, - 0.8875037547547335, - 0.8882884207745201, - 0.8927326662191364, - 0.8934697057534371, - 0.8902954640627596, - 0.8894840572195435, - 0.8898237888588638, - 0.8892161095034574, - 0.8909428329294877, - 0.8803143374004351, - 0.8730830099653929, - 0.8765875342889162, - 0.8821923922673636, - 0.8821835956909949, - 0.8812365879894516, - 0.8805271129058367, - 0.8806360394886029, - 0.8799202440168952, - 0.8766543139987849, - 0.8713803190978574, - 0.8765265571754816, - 0.8780103823643044, - 0.8790843536596284, - 0.8797355534211968, - 0.8803904161075288, - 0.8818478916870358, - 0.8791160251190222, - 0.8862912933973996, - 0.886203720909344, - 0.8857693864369484, - 0.9179793911557875, - 0.911439099051902, - 0.9184672757943517, - 0.9145441571615318, - 0.9130994472349786, - 0.9068905288543418, - 0.9037717406236273, - 0.8850596193805563, - 0.8963515100584746, - 0.8972597826910285, - 0.8966225294649792, - 0.8950397205676557, - 0.8939348046622498, - 0.8881730267645166, - 0.882053849443988, - 0.8812261823650352, - 0.8835020259844415, - 0.8844446109103075, - 0.8853488560781151, - 0.8924672827720285, - 0.8916478628916241, - 0.8901202275323005, - 0.8938190321887625 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492fe", - "id": "stellar", - "symbol": "xlm", - "name": "Stellar", - "image": "https://coin-images.coingecko.com/coins/images/100/large/Stellar_symbol_black_RGB.png?1696501482", - "current_price": 0.098137, - "market_cap": 2853715147, - "market_cap_rank": 41, - "fully_diluted_valuation": 4907673414, - "total_volume": 59714089, - "high_24h": 0.100986, - "low_24h": 0.0977, - "price_change_24h": -0.002455391225431036, - "price_change_percentage_24h": -2.44093, - "market_cap_change_24h": -69077042.03613567, - "market_cap_change_percentage_24h": -2.36339, - "circulating_supply": 29075051413.5411, - "total_supply": 50001786967.3715, - "max_supply": 50001786967.3715, - "ath": 0.875563, - "ath_change_percentage": -88.80933, - "ath_date": "2018-01-03T00:00:00.000Z", - "atl": 0.00047612, - "atl_change_percentage": 20478.98699, - "atl_date": "2015-03-05T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:16.347Z", - "sparkline_in_7d": { - "price": [ - 0.1063015510365063, - 0.10618485246083188, - 0.10622766952988309, - 0.10665185709032643, - 0.10667183025821565, - 0.10620927977235432, - 0.10626419822074035, - 0.10617593839640822, - 0.10521258050752902, - 0.10548698947874845, - 0.10505735920055484, - 0.1053406487725186, - 0.10517633610684524, - 0.10529086272907727, - 0.10523673517615159, - 0.10531979989132378, - 0.10543501087486619, - 0.10601971923458248, - 0.10601871813756862, - 0.10586967793320669, - 0.10584896842779451, - 0.10549311815212555, - 0.10548715984799219, - 0.10583438555218729, - 0.10640300516643036, - 0.10614343933025908, - 0.1065402138485291, - 0.10656688664479289, - 0.10609709219183572, - 0.10501144847971636, - 0.10392047878742276, - 0.09898595572327698, - 0.09905368670049207, - 0.09972099399384232, - 0.10008246804705812, - 0.10038032271273445, - 0.09982878374532163, - 0.09980803742529037, - 0.09982174699680223, - 0.09971771604589758, - 0.099931495851355, - 0.09961241244651596, - 0.09977552358015632, - 0.09962657844765985, - 0.09973610691521527, - 0.09936795374878858, - 0.09914350418442493, - 0.09904199523078472, - 0.0975238087529096, - 0.09753824460060721, - 0.0974388652801928, - 0.09779477695857319, - 0.09756753694447984, - 0.0972610522884838, - 0.0975295993716338, - 0.09763016218163283, - 0.09757686066134236, - 0.09776972778611132, - 0.09829594187600343, - 0.09823012511153531, - 0.09825196017800428, - 0.09857314156148676, - 0.0989894525998555, - 0.09841216485681803, - 0.09862925988138928, - 0.09892999673695071, - 0.09901837702966344, - 0.09905847611412612, - 0.09904192871725602, - 0.09914492501556987, - 0.09905504781545013, - 0.09904820430981823, - 0.09935012963780732, - 0.09952829078695449, - 0.09916258235110095, - 0.09925915616145577, - 0.09920493406175863, - 0.0994755239134499, - 0.09940510573437741, - 0.099430552059114, - 0.09947450768478593, - 0.09931269948802958, - 0.09943525126577263, - 0.09977902171023635, - 0.0998696656816652, - 0.1002103236121619, - 0.10019671525131597, - 0.10003292913385223, - 0.09967789205130229, - 0.09988224231558288, - 0.09990254257439884, - 0.09946916388705776, - 0.10002166877502754, - 0.10024413709944094, - 0.10021307476606436, - 0.10029030769108814, - 0.10026327007917239, - 0.09963090662542448, - 0.10001197753456695, - 0.10063558522882164, - 0.10071297616663302, - 0.10053233850634445, - 0.10038785749864394, - 0.10042911601589746, - 0.09989698982056658, - 0.10018784041856302, - 0.09979003290262213, - 0.10012187249921413, - 0.10001894730676478, - 0.09966689785495339, - 0.0983880194033214, - 0.09888872841623651, - 0.09876694899957499, - 0.09851226438041469, - 0.09870856251347356, - 0.09808030755827736, - 0.0980580936965543, - 0.09814089775282157, - 0.0981201597511338, - 0.09798267190519282, - 0.09778749850028016, - 0.09738574401423851, - 0.09687503845809901, - 0.09718058687764045, - 0.09683045229938379, - 0.09671266408054346, - 0.09691441691299683, - 0.09706571600958824, - 0.0970630882501376, - 0.09715926497940333, - 0.0973976021538725, - 0.09705508623526139, - 0.09677972749737421, - 0.09642174974300606, - 0.09609358780343553, - 0.09720116823910625, - 0.09748895740438523, - 0.09773565321866438, - 0.09772439225803861, - 0.09814444789465242, - 0.098297710825243, - 0.09803384075365526, - 0.09834941780656829, - 0.09867868393002319, - 0.09815743429066585, - 0.10035427544994047, - 0.10014278468440219, - 0.10078590710750708, - 0.10060543964739707, - 0.1005485384867143, - 0.10091333739309287, - 0.10006103804539034, - 0.09883922914680864, - 0.10012897809568133, - 0.10023437098186225, - 0.10021339199037546, - 0.10009865388435574, - 0.10015456438471748, - 0.09940525541503077, - 0.09887467963443256, - 0.09911358746093489, - 0.09883313433756805, - 0.09894253870467623, - 0.09881886963319793, - 0.09938897468931121, - 0.09913914061568961, - 0.09903054339122458, - 0.09921694421166671 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab39492ff", - "id": "injective-protocol", - "symbol": "inj", - "name": "Injective", - "image": "https://coin-images.coingecko.com/coins/images/12882/large/Secondary_Symbol.png?1696512670", - "current_price": 29.19, - "market_cap": 2836121787, - "market_cap_rank": 42, - "fully_diluted_valuation": 2919255699, - "total_volume": 325549888, - "high_24h": 32.39, - "low_24h": 28.97, - "price_change_24h": -3.198790169827067, - "price_change_percentage_24h": -9.87562, - "market_cap_change_24h": -306649916.61672115, - "market_cap_change_percentage_24h": -9.75731, - "circulating_supply": 97152222.33, - "total_supply": 100000000.0, - "max_supply": null, - "ath": 52.62, - "ath_change_percentage": -44.74925, - "ath_date": "2024-03-14T15:06:22.124Z", - "atl": 0.657401, - "atl_change_percentage": 4322.46384, - "atl_date": "2020-11-03T16:19:30.576Z", - "roi": null, - "last_updated": "2024-06-13T16:12:07.763Z", - "sparkline_in_7d": { - "price": [ - 27.66352748291506, - 27.752689881919487, - 27.930792645654464, - 28.33068319260922, - 28.14533238731629, - 28.220991612378082, - 28.32585557690243, - 28.06565336025606, - 27.435371495516364, - 27.682554798566187, - 27.68082877485271, - 27.915330583628034, - 28.052479673998793, - 28.198630436784967, - 28.2817685190733, - 28.125087701592427, - 28.026803572338906, - 28.57975985797504, - 28.85116755927978, - 29.363215627870304, - 29.368317864126567, - 29.1913738090849, - 29.610413474300405, - 29.411559486492056, - 29.36143066087818, - 29.1540140374227, - 30.18625129742575, - 30.69301487246376, - 29.78222167829344, - 29.188454540429934, - 29.124422398915, - 26.946449287482874, - 28.006686901427706, - 27.8449374532451, - 27.84080457917039, - 27.987371079785646, - 27.82064594997899, - 28.860241799918963, - 29.829726336940837, - 29.82531965504605, - 30.236967642595108, - 29.855967422245122, - 29.438200681751955, - 29.850118689159057, - 30.234924689201314, - 30.20094635336485, - 30.044232951229823, - 30.12769271046427, - 29.95875264029929, - 28.59522562437599, - 28.395836643265195, - 28.243476935037478, - 28.687011288028813, - 28.0257514209291, - 28.041996008625258, - 27.983281264300388, - 27.588134694354608, - 27.457380794414973, - 27.216446219727203, - 27.012048858743142, - 26.853738808405044, - 27.323277818609903, - 27.535898487842314, - 27.23880402933949, - 28.040949604639906, - 28.18663353884012, - 27.993924987596845, - 28.02465384552408, - 28.40803628748646, - 28.378381810708547, - 28.42785281071617, - 28.15183495520922, - 27.94203982121171, - 28.98742236457259, - 28.4531717485623, - 27.988129932400625, - 27.707576111174845, - 28.235302094777364, - 28.377519768786456, - 28.279821919952678, - 27.95220408076803, - 28.001496667548682, - 27.765380608152135, - 27.694019381738407, - 27.834793134906448, - 27.59440450121642, - 28.011254935538943, - 27.87497872019035, - 27.289102913174986, - 27.612717452436215, - 27.36862717106541, - 26.9631425746941, - 26.753891094349328, - 26.871197240029872, - 27.157227031500064, - 27.346450174308846, - 27.55753432077816, - 27.18003971356435, - 28.746483191799165, - 28.82934372999165, - 29.383527605970855, - 29.28967654188611, - 29.467003418794494, - 29.149034404388505, - 29.01351454346448, - 29.029871236517018, - 28.979167874415626, - 29.273713150675395, - 29.29256795060441, - 29.413308252134033, - 28.950649936209928, - 28.968542969338753, - 28.363401952590607, - 28.614588583924515, - 29.33488205406603, - 29.165471075247144, - 29.375429359621542, - 29.53737867784442, - 29.08706102319367, - 28.522631184339012, - 28.21488761753773, - 27.495208689265706, - 27.178858106924793, - 26.98666277225625, - 26.80952267373936, - 26.003524447318075, - 25.78168482614963, - 26.25249349001473, - 26.560299455215727, - 26.801469489303607, - 27.08493174447657, - 27.662620497853023, - 27.216300704694362, - 27.900011953902425, - 27.554097251566375, - 27.523623732746337, - 26.964475216338226, - 27.231351046762345, - 27.6193497544359, - 28.67292723973081, - 28.493648295721595, - 28.20080116523536, - 28.67859871567954, - 28.873969316026116, - 28.51731127173632, - 31.144000792572506, - 31.94893680948486, - 31.674547081295724, - 32.45840750933299, - 32.1709647927724, - 32.023958931871476, - 30.880950639047718, - 30.116829130490498, - 31.027927540353105, - 31.081417249472295, - 31.186041461599117, - 31.25040810197444, - 31.49075825647139, - 31.47059227352633, - 30.383990674531884, - 30.244834491168287, - 30.20954029707275, - 30.399444358440107, - 29.98483280544757, - 30.272654882743936, - 30.2862818848522, - 30.196537355035584, - 30.547229274796113 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949300", - "id": "okb", - "symbol": "okb", - "name": "OKB", - "image": "https://coin-images.coingecko.com/coins/images/4463/large/WeChat_Image_20220118095654.png?1696505053", - "current_price": 46.04, - "market_cap": 2763023806, - "market_cap_rank": 43, - "fully_diluted_valuation": 10865945028, - "total_volume": 12333223, - "high_24h": 47.35, - "low_24h": 45.3, - "price_change_24h": -0.178223961461228, - "price_change_percentage_24h": -0.38561, - "market_cap_change_24h": -10079455.037885189, - "market_cap_change_percentage_24h": -0.36347, - "circulating_supply": 60000000.0, - "total_supply": 235957685.3, - "max_supply": 300000000.0, - "ath": 73.8, - "ath_change_percentage": -37.68259, - "ath_date": "2024-03-14T00:30:12.502Z", - "atl": 0.580608, - "atl_change_percentage": 7821.40834, - "atl_date": "2019-01-14T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:07.947Z", - "sparkline_in_7d": { - "price": [ - 48.67265951383053, - 48.64183549143011, - 48.769652279321335, - 48.99534283569631, - 49.08849026054432, - 48.817068893336206, - 48.87554272642578, - 48.889721253826316, - 48.74005037148669, - 48.83022323185645, - 48.73058430787447, - 48.897672609775285, - 48.77841149428421, - 48.80001784996483, - 48.90356432048895, - 48.85246064128009, - 49.093004013952225, - 49.148343354135896, - 49.32429606467263, - 49.65993814786, - 49.3661273317013, - 49.33647269868619, - 49.37025065921238, - 49.79781494515872, - 49.988728244106504, - 49.91195590345024, - 49.91692754653958, - 49.878933189451374, - 49.06714809089633, - 48.947829993160646, - 47.941057683973696, - 48.23260952386399, - 47.94913534779011, - 48.123914957138936, - 48.20280874552098, - 48.17331587963798, - 48.1359970884066, - 48.42443373701089, - 48.54974937054573, - 48.3907560097927, - 48.4209916494083, - 48.29835710897266, - 48.374728663093514, - 48.018034057847984, - 48.0493838107195, - 48.00644795741168, - 48.06924269247889, - 48.302090765380775, - 48.1097184374099, - 47.58814439909784, - 47.96227715563044, - 47.849399711916966, - 47.95812074915762, - 47.73045003357133, - 47.32721632172614, - 47.55404862248936, - 47.48271538821677, - 47.46371240618212, - 47.49285770355581, - 47.620358114728134, - 47.49249026024072, - 47.54818524615015, - 47.5605115804699, - 47.538687050011376, - 47.572261644314196, - 47.676015712375055, - 47.72419869527554, - 47.70609046368667, - 47.42209596596883, - 47.66831240035704, - 47.51452043265967, - 47.41768135526063, - 47.07314270334976, - 47.24772839105402, - 46.9271514629464, - 46.82909854275288, - 46.55971746446436, - 46.7163239422903, - 46.976213188604916, - 47.01016529665289, - 46.979760392042685, - 47.06801476277159, - 47.08355798957453, - 47.03457917186788, - 46.9534478647517, - 46.95556465449668, - 47.02889917203653, - 47.004905052029585, - 46.98984612002497, - 46.9934249739492, - 46.91763103873341, - 46.813095589900776, - 46.5597474428913, - 46.62773440443099, - 46.6114658025538, - 46.648809069313245, - 46.792071690784, - 46.55157510864789, - 47.07034308530503, - 47.29430013834545, - 46.97281941524991, - 46.97655598978585, - 46.54038066133937, - 46.761551920642674, - 46.621588762347784, - 46.76872945289381, - 46.543570511587625, - 46.777817383696146, - 46.84090650561675, - 46.69173217528231, - 46.34085939536579, - 46.09686394912577, - 45.99436864451734, - 46.030801417304595, - 46.18187137811714, - 45.918396536137145, - 45.78077917352477, - 45.76248913790682, - 45.75119659875196, - 45.67136504767735, - 45.78002834284199, - 45.702264763872314, - 45.32971036040569, - 45.21690657835508, - 45.07846125069882, - 45.149347336155834, - 45.56286036374504, - 45.41988478411086, - 45.392348432187454, - 45.42321084111958, - 45.44949308577759, - 45.46959797524803, - 45.45728888486079, - 45.364259061653655, - 45.16747349675781, - 45.265174975381, - 45.4616553562884, - 45.44246841259458, - 44.98423199519967, - 44.76014416229875, - 45.17001154430778, - 44.94429237859527, - 45.34938919646601, - 45.53813791244431, - 45.505638402827124, - 46.416490487059896, - 46.35932918971302, - 46.44793720528057, - 46.19188112154721, - 45.88448738145998, - 45.776199909024065, - 45.938952325814036, - 45.39290364559197, - 46.63821536067767, - 46.20573704033306, - 46.47570596859916, - 46.13611423199944, - 46.14773615812255, - 45.91036972410303, - 47.01018219501109, - 46.62447354329452, - 46.90702201299366, - 46.32286489263916, - 46.08862683554071, - 46.470853018606206, - 46.465807093827756, - 46.40672652938281, - 46.64448581911909 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949301", - "id": "first-digital-usd", - "symbol": "fdusd", - "name": "First Digital USD", - "image": "https://coin-images.coingecko.com/coins/images/31079/large/firstfigital.jpeg?1696529912", - "current_price": 1.0, - "market_cap": 2700606586, - "market_cap_rank": 44, - "fully_diluted_valuation": 2700606586, - "total_volume": 6335302079, - "high_24h": 1.005, - "low_24h": 0.988841, - "price_change_24h": 0.00247391, - "price_change_percentage_24h": 0.24792, - "market_cap_change_24h": -97481655.6611433, - "market_cap_change_percentage_24h": -3.48387, - "circulating_supply": 2706823673.41, - "total_supply": 2706823673.41, - "max_supply": null, - "ath": 1.089, - "ath_change_percentage": -8.37908, - "ath_date": "2024-05-20T19:42:15.377Z", - "atl": 0.942129, - "atl_change_percentage": 5.86058, - "atl_date": "2023-08-17T21:55:41.478Z", - "roi": null, - "last_updated": "2024-06-13T16:12:39.403Z", - "sparkline_in_7d": { - "price": [ - 1.002345016841688, - 0.9989336467273349, - 1.0012115900874534, - 1.0004913165000038, - 1.0019110608585609, - 0.9983581465539929, - 1.0014817408126957, - 0.998884478097124, - 0.9974939333767969, - 1.0019656312416592, - 1.0004787504471346, - 1.0033399460642487, - 1.0011413807808567, - 1.0006884398263625, - 1.0010572894428467, - 1.001157848694809, - 1.0010660810534833, - 1.001291087674647, - 1.0008699175559854, - 1.0009746142214315, - 1.0010608852573941, - 1.0007848819002687, - 1.0011043452796324, - 1.0013828278379786, - 1.0029527207789577, - 1.0052229795085024, - 0.9990554427519944, - 0.9996601401170666, - 0.9998044480890924, - 0.9993639740572636, - 0.9857178872138769, - 0.9999854398420647, - 0.9968863572610831, - 1.0019218692311478, - 1.0014819935744355, - 1.0017137948056654, - 0.9997464978845547, - 0.9998771923671527, - 1.000339168112637, - 1.000753334669285, - 1.000023532513174, - 1.0007677288657109, - 1.0008603233981919, - 1.0010205297581336, - 1.0011984621863088, - 1.0008149921040848, - 1.0007474816772923, - 1.001685555451013, - 0.9990820315419973, - 1.0013287993189868, - 1.0008220728830468, - 1.0002818688443633, - 1.0004275047224596, - 1.0008254832098755, - 1.001148091189306, - 1.0010234578853971, - 1.0003345790928773, - 1.0001696919777512, - 1.0008622156451097, - 1.0000583570555548, - 1.000090472388035, - 1.0001068903629766, - 1.0007600538381993, - 0.9994526116697691, - 1.0001524756481137, - 1.0000437004946217, - 1.000028450138655, - 1.001040010429783, - 0.9996463602088431, - 1.0002455480988304, - 0.9999800883400858, - 1.0001945938275103, - 1.000232467680017, - 1.0004984309953746, - 1.0006922014337085, - 1.0003083557973909, - 1.0001361944326108, - 1.0002139630321047, - 1.0004124315036786, - 1.0000736213207717, - 1.00056206562925, - 1.0004241088738064, - 0.9993811971125645, - 1.0001168688431652, - 0.9988433122255007, - 1.000321911273951, - 0.9995665369927956, - 0.9993122267513929, - 0.998436832530942, - 0.9991429712504942, - 0.9990191888636126, - 0.9977360547025913, - 0.9997483172701978, - 0.9986341688540334, - 0.9992224601871162, - 0.9995659492290496, - 0.9982328660295434, - 0.9973638735311585, - 0.9999255421990298, - 1.00065189350328, - 0.997792607430345, - 0.9976563215231307, - 1.0004487303542036, - 0.9973570800371067, - 0.9978525670992109, - 0.9989145006248297, - 0.9976684704433234, - 0.9998141100229103, - 0.9985991687385404, - 0.9981613844621235, - 0.9994460530129377, - 1.000340263096201, - 0.9974125562209549, - 0.9982849146968288, - 1.0017431974630955, - 0.9990593884547282, - 0.9989357451482748, - 0.9993328785867943, - 1.0001677030079315, - 0.9977040235858444, - 0.996888498932814, - 1.0006033355431936, - 0.9969202264083197, - 0.9974944706575447, - 0.9951953940884268, - 0.9968127155541974, - 0.998008680418372, - 1.0004900211340566, - 0.998846660241405, - 0.9999306022675184, - 1.0007144375425803, - 1.0007769649694722, - 0.999315081092442, - 0.9998522304149646, - 1.000971136319147, - 0.9985175966072561, - 0.9992859339325862, - 0.9963845894081089, - 1.0002520823248968, - 0.9983720727333152, - 0.99944914017866, - 0.999563364847188, - 1.0046316898860144, - 0.9983636291723902, - 0.9982265107333299, - 1.0028630590168783, - 1.0006259760976515, - 0.9995397971901262, - 0.9999435446844329, - 0.9999458491068202, - 0.9956790976629172, - 1.0031030678637791, - 1.0006244320053355, - 0.9988508923943021, - 0.9983369275993063, - 0.9987922903370029, - 0.9994453560606783, - 0.9991787406678838, - 0.9981150115888753, - 0.9947370479720352, - 1.004977137600025, - 1.0002792365304594, - 0.9982608381578193, - 0.9983231850497938, - 0.9998435078251324, - 0.998534301604546, - 0.9994667881487727, - 1.0022974138729492 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949302", - "id": "arbitrum", - "symbol": "arb", - "name": "Arbitrum", - "image": "https://coin-images.coingecko.com/coins/images/16547/large/photo_2023-03-29_21.47.00.jpeg?1696516109", - "current_price": 0.928539, - "market_cap": 2689156428, - "market_cap_rank": 45, - "fully_diluted_valuation": 9284349487, - "total_volume": 307344264, - "high_24h": 0.994557, - "low_24h": 0.924272, - "price_change_24h": -0.06027153485019132, - "price_change_percentage_24h": -6.09536, - "market_cap_change_24h": -177508075.5206356, - "market_cap_change_percentage_24h": -6.19215, - "circulating_supply": 2896440329.0, - "total_supply": 10000000000.0, - "max_supply": 10000000000.0, - "ath": 2.39, - "ath_change_percentage": -61.29535, - "ath_date": "2024-01-12T12:29:59.231Z", - "atl": 0.744925, - "atl_change_percentage": 24.19381, - "atl_date": "2023-09-11T19:40:49.196Z", - "roi": null, - "last_updated": "2024-06-13T16:12:15.553Z", - "sparkline_in_7d": { - "price": [ - 1.1092286187341325, - 1.1064685011970397, - 1.1086691097035228, - 1.106651708220927, - 1.0970324722026479, - 1.1011196342395508, - 1.100338777826872, - 1.0794732679564658, - 1.0919263871947475, - 1.0877625385447522, - 1.0919563531561216, - 1.0882039314000125, - 1.0887195494423476, - 1.0869325892453388, - 1.0817688935617913, - 1.0859609095779292, - 1.0930347951915964, - 1.0957165783651115, - 1.0939190971341264, - 1.0928825012836716, - 1.0906511508169439, - 1.091583749693624, - 1.0891494571891889, - 1.1002659424493013, - 1.0875340885175693, - 1.0950141725532765, - 1.100295334608706, - 1.094474428438633, - 1.0860060913566467, - 1.065751780265291, - 0.9606369382375503, - 0.9758116369676426, - 0.9881344796241152, - 0.9931580941352538, - 0.9973565114832618, - 0.9990797639389822, - 1.0025755779394574, - 1.0054013895630634, - 1.0003788239535139, - 1.0004902551498849, - 0.9863356818352368, - 0.9884928816966102, - 0.9918642586937396, - 0.9993443491359469, - 0.9919789493659653, - 0.989917441026748, - 0.98871475279978, - 0.9679294262487496, - 0.9636483079686139, - 0.9701742675345154, - 0.9709868077932016, - 0.966759985017974, - 0.9597007484910829, - 0.9640575892162189, - 0.9670555193713385, - 0.9636639915032944, - 0.9584018897851576, - 0.9627137363316844, - 0.9618031985025636, - 0.9676616815540064, - 0.9657023002623225, - 0.968221996556921, - 0.958727001187485, - 0.9640840478157161, - 0.9605252403514059, - 0.9688669056810816, - 0.9750237586019371, - 0.9750501944380824, - 0.977291245878996, - 0.976755874903073, - 0.9732630834247936, - 0.9745402730786685, - 0.9847418581764541, - 0.9814649900999367, - 0.9791459798005622, - 0.9777659937922686, - 0.9818968726975246, - 0.9804279178614704, - 0.9843976767315306, - 0.9832505338990647, - 0.9817130383617957, - 0.981945821050386, - 0.9798397748745105, - 0.9794212738430479, - 0.9753040189315894, - 0.9746413517212819, - 0.9728012896942815, - 0.9656282917220322, - 0.9672320848357657, - 0.9623901161808587, - 0.9580078649456057, - 0.9552401641079421, - 0.9631144925393147, - 0.9687771503955406, - 0.9696580085723276, - 0.9651223098247962, - 0.9593447036110017, - 0.9607139494723477, - 0.9679242824137723, - 0.9797379808458065, - 0.9717426130469261, - 0.9726991669873712, - 0.9677947890995368, - 0.9579888868840105, - 0.9575919966200758, - 0.9562583246769343, - 0.9625875342448962, - 0.9612046764004887, - 0.9583550040420372, - 0.948233655067638, - 0.9482306756282263, - 0.9491520124390527, - 0.9478407034350639, - 0.9508320289254573, - 0.9439442459513019, - 0.9410700176216666, - 0.944196755659538, - 0.93825851636343, - 0.9451954164627353, - 0.9392280355305084, - 0.9321963469999005, - 0.9254400036324336, - 0.9363179078005697, - 0.9263591023655723, - 0.9233706994572399, - 0.9312451716961894, - 0.9345106722702604, - 0.9364013520976491, - 0.9371664513983556, - 0.9383790197564831, - 0.9375440447833995, - 0.9374953873315255, - 0.931489317430739, - 0.9215496204083138, - 0.9337965179239638, - 0.940376018335719, - 0.9411893977488045, - 0.9384930091345949, - 0.9399610215589794, - 0.941731813669395, - 0.9416846519024642, - 0.9477092011450385, - 0.9501398820896378, - 0.9470421138385866, - 0.9840721235831457, - 0.9780554013685959, - 0.9881895835643821, - 0.9869665661782406, - 0.9903219347856242, - 0.9945565582431182, - 0.9759303211836424, - 0.9553735105235425, - 0.9673064396160174, - 0.9709360677038184, - 0.9739835561024417, - 0.972585813371639, - 0.9713867392318488, - 0.9634694099379386, - 0.9537560814196905, - 0.9513696643399805, - 0.952947625681274, - 0.9505920853207996, - 0.940998122064208, - 0.9452514110920844, - 0.9439521585815753, - 0.9412115173437088, - 0.9458787361636731, - 0.9396362575307703 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949303", - "id": "crypto-com-chain", - "symbol": "cro", - "name": "Cronos", - "image": "https://coin-images.coingecko.com/coins/images/7310/large/cro_token_logo.png?1696507599", - "current_price": 0.100157, - "market_cap": 2681801028, - "market_cap_rank": 46, - "fully_diluted_valuation": 3001234355, - "total_volume": 11378014, - "high_24h": 0.1075, - "low_24h": 0.099451, - "price_change_24h": -0.006915729378523153, - "price_change_percentage_24h": -6.4589, - "market_cap_change_24h": -185452212.25064468, - "market_cap_change_percentage_24h": -6.46794, - "circulating_supply": 26806980508.6755, - "total_supply": 30000000000.0, - "max_supply": null, - "ath": 0.965407, - "ath_change_percentage": -89.69853, - "ath_date": "2021-11-24T15:53:54.855Z", - "atl": 0.0121196, - "atl_change_percentage": 720.58119, - "atl_date": "2019-02-08T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:25.659Z", - "sparkline_in_7d": { - "price": [ - 0.11568172802508184, - 0.11516826800498141, - 0.11506643763999337, - 0.1162831668128782, - 0.11612387195295121, - 0.115092629038414, - 0.1151626520262468, - 0.11460775250112816, - 0.11252506326618626, - 0.11213826603528863, - 0.1124923663906192, - 0.1140837808410781, - 0.11340327218130855, - 0.1135769304289667, - 0.11391883586222404, - 0.1132555893573156, - 0.11380323591803308, - 0.11443076107920401, - 0.11477595285357968, - 0.11466874283748218, - 0.1149241805634629, - 0.11512755603122544, - 0.11418179390705921, - 0.11538378704268003, - 0.11657278313297088, - 0.11667862723527643, - 0.11762615157256705, - 0.11904666652129485, - 0.11815130446187311, - 0.11723353208157987, - 0.11147587412843793, - 0.11170091835154629, - 0.1119289667391039, - 0.11172530766655868, - 0.11270270521744986, - 0.11363905892746912, - 0.11324220972668961, - 0.11315709019650418, - 0.11525513001913494, - 0.11457656655000151, - 0.11480074798610958, - 0.11437212138327858, - 0.1147970050274598, - 0.11503523840482202, - 0.11522883459494986, - 0.11435868481975746, - 0.1141239829596007, - 0.11380630328811772, - 0.11150899048045668, - 0.1120439598877025, - 0.11183258506312047, - 0.11160382047900991, - 0.11166111816129785, - 0.11106982841996436, - 0.1125202788365018, - 0.11225338264972093, - 0.11221083320300596, - 0.11146134273669583, - 0.11063790784142823, - 0.11078447321002748, - 0.11082547224778662, - 0.11103294474459485, - 0.11224936316984674, - 0.11075357878715998, - 0.11139358715085663, - 0.11075754067285548, - 0.11115914331380296, - 0.11165988883313199, - 0.11148300681464418, - 0.11172859822404706, - 0.11210970917672054, - 0.11153929235122909, - 0.11148846530448288, - 0.11213169016291101, - 0.11134918739778449, - 0.11120787444503479, - 0.11119079327015503, - 0.11094479712657178, - 0.1103787662998188, - 0.11085350726508791, - 0.11039850770852316, - 0.11040423886653364, - 0.11058438610818142, - 0.11074211985311679, - 0.11004458734464394, - 0.10947761514460878, - 0.10930713288672861, - 0.1092717580808198, - 0.10896027369063546, - 0.10901874824993736, - 0.10857842785293857, - 0.10742517430364154, - 0.10746148831190053, - 0.10803289515099408, - 0.10844439729334462, - 0.10900776096485797, - 0.10923763917792538, - 0.1083114285197255, - 0.10791771167944443, - 0.10803943965346362, - 0.1090462889455133, - 0.10830487474375557, - 0.10823411175269575, - 0.10812100183318772, - 0.10716794260328669, - 0.10695813916941335, - 0.10672459686881734, - 0.10720543354972503, - 0.10719579279468995, - 0.10714276170315316, - 0.10546745383292164, - 0.1041499612071158, - 0.10360112187226445, - 0.10330591243193353, - 0.10364039815706698, - 0.10310531906168105, - 0.10215257663812384, - 0.1027297059381778, - 0.10241511722821929, - 0.10279766203363908, - 0.10261008707479617, - 0.10256204420961709, - 0.10041846633014834, - 0.10098667361942358, - 0.09919962248157398, - 0.09818925155191294, - 0.09871136238262927, - 0.09986035643072741, - 0.10114510242312687, - 0.10052323790414555, - 0.10151219766889374, - 0.10095236035008998, - 0.10109640661633856, - 0.10064989127239898, - 0.09926643174782049, - 0.10189545793012603, - 0.10194936299763174, - 0.10265899494868591, - 0.10183252443733182, - 0.10191169216507523, - 0.10268074124626628, - 0.10257224936156846, - 0.10377558262364028, - 0.10350727872542763, - 0.1029476581238224, - 0.10594184067893908, - 0.10578849654067497, - 0.10604592210810776, - 0.10689875111705917, - 0.106921375019509, - 0.10602977307842655, - 0.10443621114632475, - 0.10304425996820912, - 0.10416856186721715, - 0.10479249731327997, - 0.1044116769375628, - 0.10404360068980752, - 0.10425321269104895, - 0.10288780892825723, - 0.10351250908417975, - 0.10275425528871067, - 0.10234323031557023, - 0.10195525651549443, - 0.10177343064291021, - 0.10212789154181524, - 0.1020543397804678, - 0.10128320021894227, - 0.10153775991413634 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949304", - "id": "immutable-x", - "symbol": "imx", - "name": "Immutable", - "image": "https://coin-images.coingecko.com/coins/images/17233/large/immutableX-symbol-BLK-RGB.png?1696516787", - "current_price": 1.79, - "market_cap": 2655502222, - "market_cap_rank": 47, - "fully_diluted_valuation": 3582838638, - "total_volume": 71389586, - "high_24h": 1.97, - "low_24h": 1.78, - "price_change_24h": -0.1622244791121914, - "price_change_percentage_24h": -8.30227, - "market_cap_change_24h": -240148029.32889748, - "market_cap_change_percentage_24h": -8.29341, - "circulating_supply": 1482345419.3898141, - "total_supply": 2000000000.0, - "max_supply": 2000000000.0, - "ath": 9.52, - "ath_change_percentage": -81.28894, - "ath_date": "2021-11-26T01:03:01.536Z", - "atl": 0.378055, - "atl_change_percentage": 371.17, - "atl_date": "2022-12-31T07:36:37.649Z", - "roi": null, - "last_updated": "2024-06-13T16:12:23.033Z", - "sparkline_in_7d": { - "price": [ - 2.2657654267775826, - 2.261750001796949, - 2.247838782971294, - 2.2477947800841824, - 2.242256639427167, - 2.2218947636088564, - 2.2300943918933376, - 2.238128896610898, - 2.19720113690041, - 2.218358458263025, - 2.21587524401963, - 2.244045344128324, - 2.2388060207690783, - 2.258906389833116, - 2.2831979614228963, - 2.259846335350673, - 2.256884314383491, - 2.254673490740267, - 2.2561297013600035, - 2.243970054881587, - 2.2416137402439253, - 2.2387828631373647, - 2.2293244458619097, - 2.2269825219858377, - 2.254215808479928, - 2.2331206236216605, - 2.2565263159678297, - 2.273610188246286, - 2.25717180128645, - 2.225989084427329, - 2.1714431843473956, - 2.0958217835318003, - 2.1063136941118152, - 2.1151675510652344, - 2.1188116262093812, - 2.1118898755858684, - 2.1078853330228906, - 2.0955299919993067, - 2.1029159783449116, - 2.0898106294462013, - 2.08745455535268, - 2.0755839791774147, - 2.0739536881527103, - 2.076373178348856, - 2.082314193914753, - 2.0657839961237885, - 2.0590471966697903, - 2.0559232593755525, - 2.018366977287642, - 2.022483263242596, - 2.0310044516377115, - 2.0284863420056602, - 2.0193639938110586, - 2.003993132642226, - 2.0093302917214024, - 2.0010246389329063, - 1.9931938915122442, - 1.982207789460005, - 1.9866745269731165, - 1.9858597481527127, - 1.9825111908274338, - 1.9831251828272456, - 1.986467528661916, - 1.9677544528333213, - 1.9798994698568821, - 1.9742439325095364, - 1.9849283603140373, - 1.9882458733891957, - 1.9851384318972836, - 1.9957239143683292, - 1.9940492859023373, - 1.990038029538872, - 1.9838699624919873, - 2.0320434044338342, - 1.9944658940675095, - 2.0080655445309965, - 2.008003366854581, - 2.0160966495700645, - 2.014053900240251, - 2.0328989922908858, - 2.0237842761753653, - 2.026898178094262, - 2.01754152267265, - 2.0162264310460825, - 2.013530633987413, - 2.017453746223329, - 2.0238783324446334, - 2.025026783234573, - 2.0060274109317224, - 2.008176802074514, - 1.9940890996234761, - 1.9807541400137574, - 1.969055935879178, - 1.996923492711122, - 2.007092712749062, - 2.004791560333652, - 1.9957163323000042, - 1.9833569590344484, - 2.0002326774066246, - 2.0041830258377225, - 2.0320383603663594, - 2.0144693501109816, - 2.014664401548752, - 1.9982522720737061, - 1.9813182949441759, - 1.983474840586367, - 1.9757005008652928, - 1.9699874655631873, - 1.9580300988684476, - 1.9599155150423326, - 1.906747323788627, - 1.9300542437983081, - 1.9235182725254643, - 1.9139423391312012, - 1.9183615267073424, - 1.9009289187551999, - 1.9071165362153566, - 1.9141041387194817, - 1.9028854370898132, - 1.8909902066264463, - 1.8896484327450618, - 1.8798589002531754, - 1.8468727970673557, - 1.859461613340659, - 1.8259919322194345, - 1.8397359604303614, - 1.846698113789996, - 1.8485236039273374, - 1.848399964237789, - 1.8485458032687252, - 1.8561014760496561, - 1.8336185258929487, - 1.8313171631633116, - 1.8204383982729448, - 1.8060627957856772, - 1.8285235011078735, - 1.832581261722015, - 1.8438045093862179, - 1.8359703696677157, - 1.841142612690155, - 1.84708781576579, - 1.8429593200440706, - 1.8551025961213257, - 1.861340120545132, - 1.8445438466485164, - 1.9420322897770805, - 1.9625757363219452, - 1.984522623940964, - 1.952524053808863, - 1.9531560501261835, - 1.942667290959603, - 1.939990931368414, - 1.8950289448968338, - 1.912034316823729, - 1.917503012154607, - 1.9235153296529004, - 1.9190756215475067, - 1.9154296279376422, - 1.9014245619360515, - 1.86832473907462, - 1.8706955167639223, - 1.8793728320220353, - 1.8669353038711132, - 1.8515709501367155, - 1.8628262445699055, - 1.8604418594097727, - 1.8538457800352517, - 1.8575029680604223 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949305", - "id": "dogwifcoin", - "symbol": "wif", - "name": "dogwifhat", - "image": "https://coin-images.coingecko.com/coins/images/33566/large/dogwifhat.jpg?1702499428", - "current_price": 2.42, - "market_cap": 2413662797, - "market_cap_rank": 48, - "fully_diluted_valuation": 2413662797, - "total_volume": 600619627, - "high_24h": 2.8, - "low_24h": 2.4, - "price_change_24h": -0.33997283966839964, - "price_change_percentage_24h": -12.30626, - "market_cap_change_24h": -346444027.216681, - "market_cap_change_percentage_24h": -12.55183, - "circulating_supply": 998926392.0, - "total_supply": 998926392.0, - "max_supply": 998926392.0, - "ath": 4.83, - "ath_change_percentage": -49.93482, - "ath_date": "2024-03-31T09:34:58.366Z", - "atl": 0.00155464, - "atl_change_percentage": 155297.85081, - "atl_date": "2023-12-13T07:13:50.873Z", - "roi": null, - "last_updated": "2024-06-13T16:12:11.052Z", - "sparkline_in_7d": { - "price": [ - 3.3720270750104553, - 3.370972167816696, - 3.354875816482185, - 3.357395272195979, - 3.3745460216684715, - 3.3113302573261683, - 3.327781485106135, - 3.308741807275038, - 3.2517945640315995, - 3.293263971063098, - 3.2568453905090227, - 3.267633104243997, - 3.2306664797752322, - 3.2313753778097607, - 3.228894182492204, - 3.2152753954796918, - 3.250948140468451, - 3.2698637701723348, - 3.293126738428893, - 3.3028699067466354, - 3.3073580444666297, - 3.311825886075514, - 3.2813271039031893, - 3.2636202537176846, - 3.3022214933737573, - 3.235291124528583, - 3.2266853921012353, - 3.2450927783562746, - 3.175708279113677, - 3.139177898828389, - 2.803469715747057, - 2.8480450809873483, - 2.800341219898487, - 2.79838191922156, - 2.8428562198038767, - 2.8471526453336287, - 2.8562078991041817, - 2.8891294165485704, - 2.920814179547292, - 2.8576738577202074, - 2.8457281354147352, - 2.817648253703768, - 2.832229483277463, - 2.82926150114997, - 2.828794871245019, - 2.8030425195068167, - 2.7910146630779606, - 2.772945521358559, - 2.7035856600980384, - 2.7123271160086904, - 2.730041785003818, - 2.7464205075220276, - 2.739610761896754, - 2.7180756841855724, - 2.7255260052332786, - 2.731422711213334, - 2.734604934625488, - 2.703368880395321, - 2.70744315615873, - 2.730336690752537, - 2.708904816720193, - 2.706729899918332, - 2.7095877657535765, - 2.6564451439610206, - 2.6958578773123323, - 2.6729041699243936, - 2.6951100130023495, - 2.7144144944502786, - 2.6930487145058666, - 2.7031744214407776, - 2.6988860554778364, - 2.6817624882609117, - 2.7065232344244277, - 2.7493691585831974, - 2.7012420405648925, - 2.742922079316398, - 2.7391867974178217, - 2.7615851711242314, - 2.765126918949044, - 2.7879667997424984, - 2.7857461369003285, - 2.7899456083906733, - 2.7798078226986633, - 2.7697670181598686, - 2.75941918191862, - 2.7621710551939356, - 2.781851119704667, - 2.7581294929564315, - 2.7415720026872576, - 2.765393527791683, - 2.7358523527298844, - 2.71208290545223, - 2.673229480095102, - 2.7097181904736463, - 2.7405899789288495, - 2.746164262467192, - 2.721240354746029, - 2.691048780116243, - 2.6807448851096116, - 2.697628047372472, - 2.8507890344629363, - 2.8546832740165806, - 2.8705048072999055, - 2.825626635204706, - 2.7591490273866484, - 2.7309002184905773, - 2.705175252025082, - 2.7027878296552177, - 2.693286719833438, - 2.7024670225337672, - 2.616543761013851, - 2.606021317053389, - 2.606674107253983, - 2.57918269753534, - 2.626384555029928, - 2.583849767237259, - 2.5857625945984695, - 2.637986200554618, - 2.660911610666324, - 2.6954639505584974, - 2.6852221237009273, - 2.6350929348315044, - 2.5521584813623046, - 2.5337574687652076, - 2.450687862343333, - 2.4637330132521003, - 2.473928614060991, - 2.519941473283791, - 2.53970199245666, - 2.56188679417547, - 2.5738069957702674, - 2.54974611566466, - 2.5446468816689105, - 2.5104442690457014, - 2.477112616842132, - 2.5266198055862943, - 2.5592242378350702, - 2.5950196728180637, - 2.6076597810297826, - 2.6138119157610835, - 2.6272257864232773, - 2.631603485718872, - 2.678009593210666, - 2.677434569163898, - 2.6620637197102006, - 2.8089608561557577, - 2.786371884580482, - 2.792539553237094, - 2.760198362897788, - 2.758277804205764, - 2.79581460899937, - 2.6960319307934055, - 2.610505987097627, - 2.6502586531752343, - 2.666868230494864, - 2.6770648510269073, - 2.651609627782561, - 2.6515233500350712, - 2.580332168869662, - 2.5348752265375554, - 2.5216501190160945, - 2.522315488365058, - 2.526413594163561, - 2.5167441824069745, - 2.569683417960306, - 2.5524685991190785, - 2.5437234253798184, - 2.5458845511338417 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949306", - "id": "sui", - "symbol": "sui", - "name": "Sui", - "image": "https://coin-images.coingecko.com/coins/images/26375/large/sui_asset.jpeg?1696525453", - "current_price": 0.980814, - "market_cap": 2379596069, - "market_cap_rank": 49, - "fully_diluted_valuation": 9808140762, - "total_volume": 188233137, - "high_24h": 1.05, - "low_24h": 0.975698, - "price_change_24h": -0.06695589481186837, - "price_change_percentage_24h": -6.39032, - "market_cap_change_24h": -160726654.26841307, - "market_cap_change_percentage_24h": -6.32702, - "circulating_supply": 2426143880.70889, - "total_supply": 10000000000.0, - "max_supply": 10000000000.0, - "ath": 2.17, - "ath_change_percentage": -55.06828, - "ath_date": "2024-03-27T17:46:02.608Z", - "atl": 0.364846, - "atl_change_percentage": 167.37214, - "atl_date": "2023-10-19T10:40:30.078Z", - "roi": null, - "last_updated": "2024-06-13T16:12:18.593Z", - "sparkline_in_7d": { - "price": [ - 1.1188429173271317, - 1.1148856562070764, - 1.1069766162544854, - 1.1149523627980873, - 1.1173412774258697, - 1.1115497178814873, - 1.1221469433722528, - 1.1179156912322414, - 1.0988617530631195, - 1.1046482835119853, - 1.1152290481979412, - 1.1190943869328105, - 1.1141371852907294, - 1.1211860391119086, - 1.1259610275968004, - 1.1304528956523487, - 1.1340344685675818, - 1.1622297194433622, - 1.150465234597657, - 1.1443538358855743, - 1.1486195619056574, - 1.1565521763405713, - 1.1494948629865964, - 1.1456737007808042, - 1.161418766701804, - 1.1410464495643147, - 1.1642474387217114, - 1.1587707345184053, - 1.1614833020388622, - 1.1466305690389673, - 1.1349586732570702, - 1.0515412202821874, - 1.055650344085077, - 1.0648241259328226, - 1.0640061966058885, - 1.092895131131067, - 1.07885656717668, - 1.0912165478813796, - 1.0939496942054607, - 1.1135834305579597, - 1.1166085560316545, - 1.1145471785010403, - 1.1282145003596893, - 1.1369808643310662, - 1.1523886283237044, - 1.1409580817174858, - 1.142559385945495, - 1.124057322459619, - 1.091845079801188, - 1.0912440310630338, - 1.0959435738460936, - 1.1194883679068075, - 1.1152599473195541, - 1.1249860335402744, - 1.1223370722117643, - 1.1294993232343944, - 1.1168119573416964, - 1.112507201563051, - 1.1065941290496657, - 1.0964762370050245, - 1.1029552865674397, - 1.097715759847346, - 1.0946045500364754, - 1.067553202814347, - 1.070659241451146, - 1.0697080861212769, - 1.0861201048843863, - 1.0987778157665975, - 1.1090931028999957, - 1.1216432956211029, - 1.1232795276162517, - 1.1108407968388387, - 1.1060637899140988, - 1.112890977592235, - 1.0869800552527793, - 1.0846410897226622, - 1.0936142351017462, - 1.0930866866389397, - 1.1068660471309821, - 1.112155886988016, - 1.1119793479946034, - 1.1029518862291658, - 1.0893580326354704, - 1.0935722490157258, - 1.0903861646151602, - 1.0880964939648712, - 1.0868767039718878, - 1.0826502138721539, - 1.0688355375423313, - 1.0655470785913332, - 1.0600899792356164, - 1.0532151748072063, - 1.0370172084690328, - 1.051183547002788, - 1.0732959911514974, - 1.072393700577213, - 1.0705350547381536, - 1.0571643413274923, - 1.0625024389090745, - 1.0684218593198664, - 1.0712196067130049, - 1.0523814568545535, - 1.0583531147739058, - 1.0478042980405005, - 1.0432494917461546, - 1.0392158392367146, - 1.0358670163465633, - 1.0398550860394142, - 1.0342809549378578, - 1.029482615343542, - 1.012218721815531, - 1.0207202624762983, - 1.0122932116746033, - 1.0105737738824279, - 1.0189990342900064, - 1.010526757320179, - 1.0147909610013452, - 1.0254322465600496, - 1.0281354260267501, - 1.0344790162923334, - 1.0288959676392253, - 1.021572358608066, - 1.0158458618430544, - 1.013434137907597, - 0.9961907353873433, - 1.0021732402005572, - 0.9997025564434585, - 1.0019562261758723, - 1.005299402635568, - 1.0022192994946364, - 1.0066829066338792, - 0.9980791136266046, - 0.9924782415769459, - 0.9960156191131437, - 0.971340779600269, - 0.9890756474623003, - 0.9915871462672781, - 0.9959659489604897, - 1.0009993458238038, - 0.9973585331874151, - 0.998614926230972, - 0.9930820749640372, - 1.0047596086513682, - 0.9983888171360058, - 0.9870110579519883, - 1.0364279941402377, - 1.0245676364547698, - 1.0395481375133955, - 1.0418725160938076, - 1.0351710344398257, - 1.0380975070462548, - 1.0289701686130182, - 1.0078748193258176, - 1.0212751381797134, - 1.017477294018874, - 1.0192190439292936, - 1.0186748048912238, - 1.018840771364968, - 1.0077632971177777, - 0.9904907649875352, - 0.991291936823164, - 0.995400805249479, - 0.9919830490037924, - 0.9881897443768586, - 0.9902021516382736, - 0.989902284135956, - 0.9846799945142829, - 0.9929487609775834 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949307", - "id": "the-graph", - "symbol": "grt", - "name": "The Graph", - "image": "https://coin-images.coingecko.com/coins/images/13397/large/Graph_Token.png?1696513159", - "current_price": 0.243646, - "market_cap": 2316705771, - "market_cap_rank": 50, - "fully_diluted_valuation": 2628063280, - "total_volume": 117888795, - "high_24h": 0.270544, - "low_24h": 0.242265, - "price_change_24h": -0.025653572721954787, - "price_change_percentage_24h": -9.52604, - "market_cap_change_24h": -238519997.3917308, - "market_cap_change_percentage_24h": -9.3346, - "circulating_supply": 9509904902.07941, - "total_supply": 10788004319.0, - "max_supply": 10788004319.0, - "ath": 2.84, - "ath_change_percentage": -91.47401, - "ath_date": "2021-02-12T07:28:45.775Z", - "atl": 0.052051, - "atl_change_percentage": 365.44034, - "atl_date": "2022-11-22T10:05:03.503Z", - "roi": null, - "last_updated": "2024-06-13T16:12:42.128Z", - "sparkline_in_7d": { - "price": [ - 0.29868609925053696, - 0.2976866412087149, - 0.29620737978892087, - 0.29824801758533553, - 0.2981253111483394, - 0.29565391824187637, - 0.29650865118454567, - 0.29539578462461274, - 0.29224193735899917, - 0.2944959149695195, - 0.2929091218356222, - 0.2950342713069963, - 0.2937502933851482, - 0.2936024109428307, - 0.29253897049737804, - 0.2916935738530925, - 0.292445237414578, - 0.2949026475109949, - 0.29533288279496167, - 0.29443697213483555, - 0.29400083837079083, - 0.29406134890151864, - 0.292716548008669, - 0.29244530955022613, - 0.29528139117396485, - 0.29305426670445006, - 0.29517166157804925, - 0.29625870534273974, - 0.29584858181082224, - 0.2901069767559341, - 0.283677865012751, - 0.26786748949760525, - 0.27163330968883354, - 0.2733255097165899, - 0.27357308242452216, - 0.27482163075436966, - 0.27223097644787986, - 0.2709415290191543, - 0.27269105413178024, - 0.27138190579527754, - 0.271900564470651, - 0.2703816075167023, - 0.2701275793682533, - 0.2705920244055217, - 0.2707076005975311, - 0.26805901845111824, - 0.2671381241303179, - 0.266505122167011, - 0.2621277824893837, - 0.2626921411453262, - 0.26348195924574014, - 0.26471839283246373, - 0.26218096739904817, - 0.26090471373264995, - 0.26127773566810497, - 0.26148892893242004, - 0.26145715615025344, - 0.2646825516187678, - 0.26459334818118374, - 0.26373877091959946, - 0.26659733385335005, - 0.26626440547670666, - 0.2672909824488167, - 0.2641255316909537, - 0.2642277354875203, - 0.2639494039378267, - 0.2656426243035805, - 0.2663453974317264, - 0.2660373275484343, - 0.2667003275389087, - 0.26597408000701966, - 0.2650640126751436, - 0.2646567569175967, - 0.2657299608981619, - 0.26400523254653363, - 0.26533158754538044, - 0.2643881168308262, - 0.26642659452015716, - 0.2657667755970895, - 0.26755248782808444, - 0.2676959085050024, - 0.26761424063980255, - 0.26795552135681755, - 0.26783687020762664, - 0.2680345971492347, - 0.26638220244412947, - 0.2658109461008217, - 0.26465134331201057, - 0.2634437439705382, - 0.26345551919652577, - 0.26180181629848576, - 0.259558543666838, - 0.2570195489077385, - 0.26114518136611137, - 0.26310805988333197, - 0.2642657018570455, - 0.26371900672010534, - 0.2619105843599608, - 0.2605540504172564, - 0.2634930137997328, - 0.26685121257067584, - 0.264221578393242, - 0.26436309180367434, - 0.26293075950231737, - 0.2605337064058456, - 0.26014435663131524, - 0.26033213445147135, - 0.26025599558215445, - 0.2589554163065711, - 0.25833996088786887, - 0.2511488891024192, - 0.25455747203605344, - 0.25463398050416136, - 0.2519182140066059, - 0.25233027354174004, - 0.24952633103693656, - 0.25154198805238115, - 0.25218395210430083, - 0.25202548850227957, - 0.25160677489986605, - 0.25069166380395497, - 0.24688995377055153, - 0.2459018643815887, - 0.24622816769224065, - 0.2433273048716947, - 0.24359222250622697, - 0.24338185473278123, - 0.24486311417236292, - 0.24308422403786153, - 0.2435970834898739, - 0.24416716345320555, - 0.24296014449967032, - 0.24406570907862152, - 0.24180995105670283, - 0.23994472532374836, - 0.2430402400768903, - 0.24545531257604375, - 0.24668471046888638, - 0.2456313134901442, - 0.2468923955702004, - 0.24764988017816938, - 0.24839961510796005, - 0.25191895458746516, - 0.2527460123821955, - 0.2517936619106574, - 0.2671282816358855, - 0.2652625671979549, - 0.27037309727933717, - 0.26842641042357507, - 0.2684372044184997, - 0.26679177289089595, - 0.26555879130866983, - 0.255719063013307, - 0.2617084004052275, - 0.26265289754013826, - 0.26283095079736435, - 0.26213988457793097, - 0.26338830487792364, - 0.25825098876221647, - 0.25450872142142494, - 0.2537025267712216, - 0.25380593247924216, - 0.2523026745068126, - 0.25084061323740275, - 0.2530648896538788, - 0.252629082466656, - 0.25177077358316746, - 0.25224720730309735 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949308", - "id": "bittensor", - "symbol": "tao", - "name": "Bittensor", - "image": "https://coin-images.coingecko.com/coins/images/28452/large/ARUsPeNQ_400x400.jpeg?1696527447", - "current_price": 317.47, - "market_cap": 2199475488, - "market_cap_rank": 51, - "fully_diluted_valuation": 6666930122, - "total_volume": 47124491, - "high_24h": 371.0, - "low_24h": 316.07, - "price_change_24h": -53.52452533970444, - "price_change_percentage_24h": -14.4272, - "market_cap_change_24h": -365384808.06575584, - "market_cap_change_percentage_24h": -14.2458, - "circulating_supply": 6928074.0, - "total_supply": 21000000.0, - "max_supply": 21000000.0, - "ath": 757.6, - "ath_change_percentage": -58.28045, - "ath_date": "2024-03-07T18:45:36.466Z", - "atl": 30.83, - "atl_change_percentage": 925.20166, - "atl_date": "2023-05-14T08:57:53.732Z", - "roi": null, - "last_updated": "2024-06-13T16:12:06.159Z", - "sparkline_in_7d": { - "price": [ - 418.9071503241023, - 414.96437467207534, - 420.0199724126465, - 426.4526461949303, - 428.94398489924794, - 431.4770756069168, - 428.76347878050353, - 429.7036185800919, - 414.9724457274661, - 423.46393597908366, - 425.5717584319232, - 425.62479950758996, - 422.71817271281003, - 426.9425590151942, - 425.7198629908641, - 420.59330518447234, - 419.3014346633547, - 423.29467082867717, - 423.0326130924066, - 425.12831221188867, - 427.3866167102632, - 430.20499500103557, - 427.4085472853417, - 424.0162863998027, - 429.17614926903843, - 422.80939016145373, - 432.0839570314649, - 433.753731630661, - 424.41482237321014, - 413.23967216606684, - 378.1438722882035, - 380.5630738629106, - 390.50287522760334, - 393.1682486930735, - 388.44164132553493, - 389.0914723741792, - 390.4274555484458, - 396.08492794050386, - 397.99444785195305, - 394.4345521052816, - 392.51590650656135, - 388.1976391892129, - 390.1160602906619, - 388.6756917693056, - 386.76656682249336, - 384.4346719527888, - 392.06112645452606, - 387.8768095543303, - 378.2944832704101, - 373.42484722166614, - 372.29739886430804, - 371.23052883883463, - 370.57246116502984, - 368.6109698506731, - 367.9412144741532, - 369.33546704816706, - 368.7165559214831, - 367.08816593748094, - 365.12373354704494, - 362.09660839508456, - 362.1714766333317, - 361.95026754131857, - 363.8437244905823, - 357.651396142401, - 360.7002657179636, - 361.45418527291287, - 363.9040144170255, - 367.236719185935, - 364.76700254788017, - 362.78119542993034, - 362.0025027235743, - 359.14070007452756, - 356.9486146556672, - 358.59540258555495, - 356.9306759028091, - 360.97934563208526, - 359.9536245136074, - 366.271765951775, - 366.0593549734767, - 366.6405682158344, - 365.7071001484458, - 363.70429130013036, - 364.8699554696607, - 362.5343570248963, - 362.0395800646164, - 361.1590280277727, - 360.9019653894996, - 362.6882479698509, - 364.021669969505, - 358.2327947837946, - 355.44755454436654, - 350.8285297409017, - 340.444787205128, - 347.51903397031964, - 351.26759167440616, - 351.02294103798096, - 347.4581692970936, - 344.61533348575756, - 342.69918813247097, - 348.4884532015663, - 357.45869340623204, - 354.5506514123573, - 350.34849797352604, - 347.52853929555266, - 344.41608282465126, - 342.6406749878367, - 342.5620768502883, - 342.7685841478083, - 343.3351706334549, - 344.8499901947838, - 333.2616276755266, - 337.0893771807295, - 336.70228302995025, - 334.1424826009467, - 333.16179108408414, - 331.2232163903381, - 331.53857726378806, - 331.0131865963354, - 329.3382086286966, - 329.5747573968479, - 329.97311501966016, - 328.39406201422213, - 325.02739520102824, - 325.28100610573335, - 326.7073591721591, - 321.9771764753093, - 322.8925720870857, - 323.48484322511933, - 322.51974372832444, - 324.4095448396406, - 325.6855959210256, - 326.4543068148602, - 325.12558988898377, - 323.01956782957296, - 314.3268253574757, - 318.14867134130105, - 314.7074247219992, - 315.8086376537215, - 316.38135016537524, - 321.21014521266284, - 326.1189650104726, - 330.2475650623865, - 338.1098615477148, - 337.4651443103556, - 334.81700161690713, - 360.0338217345787, - 353.71178769703613, - 364.3214730325729, - 371.0243345102942, - 367.2429845530615, - 367.24839717168567, - 352.2036819446793, - 343.23088512003454, - 349.7102190486584, - 351.9495004585177, - 354.9476424109419, - 353.5025606252511, - 353.79384901763706, - 346.0143751397492, - 332.372073661265, - 334.49697858405415, - 334.2400188467851, - 338.0398464657938, - 334.9331671754965, - 334.85405342543703, - 336.07406817221414, - 334.16748382850153, - 335.83790678584154 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949309", - "id": "optimism", - "symbol": "op", - "name": "Optimism", - "image": "https://coin-images.coingecko.com/coins/images/25244/large/Optimism.png?1696524385", - "current_price": 2.02, - "market_cap": 2196417501, - "market_cap_rank": 52, - "fully_diluted_valuation": 8679389504, - "total_volume": 265137088, - "high_24h": 2.2, - "low_24h": 2.01, - "price_change_24h": -0.17050440856636806, - "price_change_percentage_24h": -7.77356, - "market_cap_change_24h": -187529575.7924776, - "market_cap_change_percentage_24h": -7.86635, - "circulating_supply": 1086889963.0, - "total_supply": 4294967296.0, - "max_supply": 4294967296.0, - "ath": 4.84, - "ath_change_percentage": -58.60201, - "ath_date": "2024-03-06T08:35:50.817Z", - "atl": 0.402159, - "atl_change_percentage": 398.66995, - "atl_date": "2022-06-18T20:54:52.178Z", - "roi": null, - "last_updated": "2024-06-13T16:12:24.880Z", - "sparkline_in_7d": { - "price": [ - 2.4928123367447497, - 2.495939504990381, - 2.4990752569153654, - 2.5116232419015683, - 2.514451685743274, - 2.4880618296162877, - 2.5057202204781115, - 2.500951140530887, - 2.4621180269638576, - 2.482199850287536, - 2.4731375149885593, - 2.4831620980507667, - 2.4831855511543846, - 2.4774185469174728, - 2.475118516578108, - 2.466891551773295, - 2.4744033713067477, - 2.4882379274115345, - 2.5140683834856, - 2.506668351130066, - 2.5018986299831716, - 2.495836557915237, - 2.4923648598091726, - 2.502524849118175, - 2.5366087179150365, - 2.498827224866257, - 2.5217001278134115, - 2.536804908943673, - 2.516443056665411, - 2.4923043450766156, - 2.2167650018734513, - 2.1928355393939154, - 2.2276886685159365, - 2.2397524138521865, - 2.2543397845984434, - 2.2667559838288502, - 2.253399657306607, - 2.25481936254649, - 2.2660001782588504, - 2.25369293553309, - 2.2487820788360695, - 2.2303642159617634, - 2.2291942068188693, - 2.2331327775407948, - 2.2460386965214676, - 2.224700648796561, - 2.219498674062103, - 2.2136398018949293, - 2.162517001908867, - 2.1663745769999503, - 2.1845315620841923, - 2.1944867254275073, - 2.1870349636454205, - 2.1712362704368156, - 2.187400163146747, - 2.1824430140757003, - 2.163973916338739, - 2.1568801133354585, - 2.1600733400066625, - 2.1628712053630994, - 2.1683053509795034, - 2.1800910358546717, - 2.188024915858192, - 2.172842846161249, - 2.1763167116056263, - 2.1680179181562442, - 2.194296910131001, - 2.2047928741216545, - 2.202751822738414, - 2.2290865559132698, - 2.236960462669219, - 2.2309871419191287, - 2.2227235469838695, - 2.2345629071668998, - 2.2202219177530798, - 2.227544193051521, - 2.2203275404351652, - 2.228311542644614, - 2.22634996613761, - 2.2385563967722426, - 2.235676742594752, - 2.2251467664416604, - 2.225715683749269, - 2.224303012119307, - 2.225560187478835, - 2.2256040302681277, - 2.2351810813766653, - 2.227278712264212, - 2.212808664232798, - 2.21268480136193, - 2.2048695119952644, - 2.1836191779940735, - 2.1782274461685915, - 2.200729974349682, - 2.22060329320562, - 2.222471877474672, - 2.2178299660483574, - 2.2062881172088034, - 2.2129736107228366, - 2.2280176833128977, - 2.232753535991927, - 2.211169905493333, - 2.2170499668280623, - 2.208012535330207, - 2.191892472552985, - 2.190117985601014, - 2.1760146764328456, - 2.195401905125762, - 2.1897366595919907, - 2.184962920963987, - 2.1563191105477593, - 2.151240862432821, - 2.149283166855921, - 2.135973505077925, - 2.1381411684508946, - 2.125347446631522, - 2.130735169964462, - 2.1399699784299293, - 2.131541143850249, - 2.134648683502451, - 2.124901189455419, - 2.0981547297889844, - 2.103754277892976, - 2.114964244143663, - 2.09779307892265, - 2.0779430967544616, - 2.04212385864252, - 2.0668173534631937, - 2.055915109568367, - 2.0594209572367816, - 2.0673264878416084, - 2.0691611523682663, - 2.0585117061513856, - 2.0367990995407466, - 2.0386706056503257, - 2.066665527857533, - 2.07232077301157, - 2.073620551784584, - 2.0767120295179904, - 2.0719213621234625, - 2.0749000310383123, - 2.070381126290405, - 2.095936525967092, - 2.0863977084007694, - 2.0769639701201457, - 2.1820434401206676, - 2.1951381015549463, - 2.204051505772742, - 2.1875763529022088, - 2.181865148911009, - 2.1670272240958, - 2.1646432797891486, - 2.115522186081493, - 2.1500211710432624, - 2.148412184925345, - 2.1560529193748446, - 2.1343243360387296, - 2.139109091287012, - 2.1164477950104126, - 2.0749635621629032, - 2.0794132327094452, - 2.0839484507511714, - 2.07360635525563, - 2.058727463859492, - 2.0716428598200163, - 2.0655927660872946, - 2.057224387954471, - 2.0681113435268377 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394930a", - "id": "vechain", - "symbol": "vet", - "name": "VeChain", - "image": "https://coin-images.coingecko.com/coins/images/1167/large/VET_Token_Icon.png?1710013505", - "current_price": 0.02965233, - "market_cap": 2155918638, - "market_cap_rank": 53, - "fully_diluted_valuation": 2549377496, - "total_volume": 49294208, - "high_24h": 0.03181912, - "low_24h": 0.02952803, - "price_change_24h": -0.002103913679924619, - "price_change_percentage_24h": -6.6252, - "market_cap_change_24h": -154071494.5752678, - "market_cap_change_percentage_24h": -6.66979, - "circulating_supply": 72714516834.0, - "total_supply": 85985041177.0, - "max_supply": 86712634466.0, - "ath": 0.280991, - "ath_change_percentage": -89.49147, - "ath_date": "2021-04-19T01:08:21.675Z", - "atl": 0.00191713, - "atl_change_percentage": 1440.21803, - "atl_date": "2020-03-13T02:29:59.652Z", - "roi": { - "times": 2.0087735549353845, - "currency": "eth", - "percentage": 200.87735549353846 - }, - "last_updated": "2024-06-13T16:12:05.704Z", - "sparkline_in_7d": { - "price": [ - 0.03539630161674852, - 0.0354909461211026, - 0.03575917247538931, - 0.036263973786401345, - 0.0362409915300328, - 0.03614364526190977, - 0.03625071311741657, - 0.03608287757495282, - 0.03541729180060564, - 0.035602924108578106, - 0.035782098978513054, - 0.03597629825987764, - 0.035774311269181604, - 0.036064552168997295, - 0.03572358958418246, - 0.035489444883442155, - 0.03550514772855502, - 0.03582875617395115, - 0.0360431646071502, - 0.03589465472942032, - 0.035852087940583054, - 0.035673793563110616, - 0.0355112238986259, - 0.035805352908582014, - 0.03624053457791846, - 0.03578166786577328, - 0.03600197781819332, - 0.03604962383294776, - 0.035797235710191826, - 0.035478388400870114, - 0.03492324538523314, - 0.032547216197816406, - 0.0330001124999964, - 0.03322834911669245, - 0.033034076262496846, - 0.032949781135337246, - 0.03289523844756601, - 0.032632434904574924, - 0.03277813582879779, - 0.03272141389883637, - 0.032848898476629265, - 0.03279502668968229, - 0.03270694047170714, - 0.032605167808325904, - 0.032587215256063215, - 0.032329882995995894, - 0.03242970537161624, - 0.032284503684644424, - 0.031822050363644994, - 0.03201906113541726, - 0.031952675518014034, - 0.03183877977620401, - 0.031649618052444206, - 0.031244137452043273, - 0.03139217486874793, - 0.03157095972647333, - 0.031423258382327485, - 0.03138452559098419, - 0.031473074195859235, - 0.03139123871218839, - 0.03163046839381563, - 0.031572893319241416, - 0.031550705048642234, - 0.031279099539114764, - 0.031446888737694724, - 0.03134497066088095, - 0.03159421069339873, - 0.03174081963499802, - 0.031669653663624744, - 0.03186452689898952, - 0.03172242511833931, - 0.03168734264456768, - 0.03162965273773113, - 0.03194001568236173, - 0.03165197043898387, - 0.03171073503505155, - 0.03162955744007653, - 0.03172700998533148, - 0.03177764589483054, - 0.0320111430653164, - 0.03209791710594212, - 0.031890198365483347, - 0.03188269699731954, - 0.031960031471528386, - 0.031909859863129705, - 0.031715205061097276, - 0.03176467843083418, - 0.031682162443986805, - 0.03152393471023175, - 0.03155745957348073, - 0.03131382606095065, - 0.03118892058036343, - 0.03100902767356475, - 0.03133024117213899, - 0.03153920197106766, - 0.03153823961877044, - 0.03146854017302377, - 0.031254899052500694, - 0.031242532990309456, - 0.031452684776911655, - 0.031648071993160255, - 0.03151712376557428, - 0.03147604682421488, - 0.03129939964885691, - 0.030996600832331894, - 0.0309590135263889, - 0.030976826835380625, - 0.031071601459269634, - 0.0310891352694214, - 0.030829173268013998, - 0.030585309385241358, - 0.030367023045089363, - 0.030496621528090084, - 0.030361938178923426, - 0.030355592156383702, - 0.03000543673860594, - 0.03026316955085361, - 0.030461533344981324, - 0.030331500400721186, - 0.030231771586499836, - 0.029954993274035974, - 0.02991608080515975, - 0.0296120463478925, - 0.029834418931955407, - 0.029353672011062273, - 0.02943205959952078, - 0.029501157534909467, - 0.02960143963665617, - 0.029758279623270417, - 0.029805299539287795, - 0.030033373768620187, - 0.02987804416458378, - 0.029828774872645535, - 0.029554073173995637, - 0.02928553962902303, - 0.029635469830007536, - 0.029894141846019046, - 0.029889445617944682, - 0.029784122773364403, - 0.029833308306655645, - 0.029925391672373174, - 0.029862858420836937, - 0.030330192893335797, - 0.030472877190859702, - 0.03030008744725666, - 0.031592708933765874, - 0.03179870834249689, - 0.031982911710850416, - 0.031807936929950126, - 0.03169198536496043, - 0.03144018446973092, - 0.031249522160097493, - 0.030747374845119482, - 0.031287105090840144, - 0.03126309995114637, - 0.031219550885332004, - 0.031267049768523285, - 0.031256585704609895, - 0.03095577594782682, - 0.030592307017171787, - 0.030669267491540732, - 0.03047466563371669, - 0.03036122170460192, - 0.030343464609265146, - 0.030409504758628452, - 0.030441281856038446, - 0.030415269907719335, - 0.03057539609304167 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394930b", - "id": "maker", - "symbol": "mkr", - "name": "Maker", - "image": "https://coin-images.coingecko.com/coins/images/1364/large/Mark_Maker.png?1696502423", - "current_price": 2250.75, - "market_cap": 2089005737, - "market_cap_rank": 54, - "fully_diluted_valuation": 2200971199, - "total_volume": 75696025, - "high_24h": 2346.53, - "low_24h": 2237.82, - "price_change_24h": -89.17625624941229, - "price_change_percentage_24h": -3.81107, - "market_cap_change_24h": -79377286.03803873, - "market_cap_change_percentage_24h": -3.66067, - "circulating_supply": 927898.032455703, - "total_supply": 977631.036950888, - "max_supply": 1005577.0, - "ath": 6292.31, - "ath_change_percentage": -64.32432, - "ath_date": "2021-05-03T21:54:29.333Z", - "atl": 168.36, - "atl_change_percentage": 1233.36809, - "atl_date": "2020-03-16T20:52:36.527Z", - "roi": null, - "last_updated": "2024-06-13T16:12:38.536Z", - "sparkline_in_7d": { - "price": [ - 2694.1287572176993, - 2668.3279941464166, - 2649.4649827393846, - 2659.8113733258388, - 2652.2641405975974, - 2624.1572567882095, - 2623.5001019328947, - 2621.552589186673, - 2594.134385165331, - 2618.6548714876217, - 2608.485822077855, - 2620.160861762177, - 2615.6680824281193, - 2616.1904878709324, - 2616.0970760405726, - 2603.1405471987073, - 2606.645828330821, - 2608.4713962879073, - 2611.1873923078197, - 2607.2048301696473, - 2610.37159399965, - 2602.1731865956353, - 2597.0553761457654, - 2595.7326944008, - 2609.9262728411277, - 2583.8610861993143, - 2601.0499153700925, - 2612.1764749355475, - 2597.6645999035304, - 2582.650619481788, - 2334.78700582892, - 2486.9360534535804, - 2501.504389898434, - 2510.687319372357, - 2500.023031183507, - 2508.5854544349227, - 2504.3533308539763, - 2500.7620903857296, - 2511.0956888376068, - 2502.534299608085, - 2498.393833088102, - 2487.738711480177, - 2490.562777621863, - 2492.4907675429113, - 2498.576632273182, - 2487.397966872872, - 2491.1797012321636, - 2491.562620300851, - 2469.967270706767, - 2462.813510081134, - 2458.909469255205, - 2458.0374427405695, - 2445.575087455782, - 2429.11152467137, - 2431.2855988048277, - 2444.1093368238, - 2432.320029107468, - 2428.589800664154, - 2432.413147299962, - 2427.1551662783154, - 2427.5388665481837, - 2428.665032905787, - 2430.9537190130563, - 2408.4041056240267, - 2416.284912500576, - 2414.4680784743227, - 2420.7603477746025, - 2430.617566237426, - 2431.7884385769275, - 2439.1803731382042, - 2440.276546140731, - 2449.6964759097827, - 2457.593547342154, - 2465.49772402839, - 2459.7469469514467, - 2466.4965235109485, - 2469.540345226701, - 2473.50399912039, - 2476.5177456892116, - 2484.8470899234085, - 2474.348767690016, - 2481.004613686412, - 2481.5978859932434, - 2488.147283743548, - 2487.6958187930263, - 2473.799580604043, - 2467.458879187992, - 2462.1508191691587, - 2454.3360871926493, - 2462.404359791438, - 2446.4077751223717, - 2419.148095835863, - 2416.41163406769, - 2428.1029507664484, - 2441.0524920811235, - 2437.6186456155583, - 2421.554967576845, - 2410.376183248449, - 2406.990693284837, - 2413.6038532865623, - 2416.1745958813167, - 2401.374016977191, - 2398.1655312569173, - 2391.187976286456, - 2380.6367116074202, - 2394.2906924049403, - 2398.1319792259783, - 2393.896822607817, - 2401.1489821513624, - 2385.7404813886815, - 2347.7912682867463, - 2341.8053489987283, - 2334.5872425806124, - 2323.8219685094655, - 2328.269509768535, - 2318.860914840311, - 2309.0152397708944, - 2313.2156304729874, - 2307.1743128481567, - 2302.05823369667, - 2294.0366745467195, - 2263.085198833222, - 2258.254893146156, - 2256.2297758745817, - 2248.021789803077, - 2255.624781074408, - 2275.925573348674, - 2279.1905625375803, - 2274.290940832177, - 2262.862880704072, - 2268.577191640465, - 2270.979173498668, - 2262.08209623231, - 2256.8933460180756, - 2250.2198627166727, - 2270.3199683106177, - 2276.3446131473925, - 2284.1411316908952, - 2280.743659421712, - 2292.0678835125377, - 2304.3597410460425, - 2297.4813731752356, - 2305.702772695053, - 2310.586695818551, - 2292.9079541323617, - 2352.3893330307747, - 2340.248765089952, - 2351.8296362155597, - 2340.943845921083, - 2340.762389925075, - 2344.607530078774, - 2321.743369777789, - 2273.8514365245805, - 2297.3629549707566, - 2296.180550246238, - 2304.3163769177886, - 2303.2024033502003, - 2304.0792697617094, - 2286.768149560825, - 2268.0624420207387, - 2258.836925577583, - 2272.9127729688976, - 2265.6428325175752, - 2263.855655604932, - 2273.575527508638, - 2269.0147463821477, - 2267.689335846819, - 2274.3678305654057 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394930c", - "id": "floki", - "symbol": "floki", - "name": "FLOKI", - "image": "https://coin-images.coingecko.com/coins/images/16746/large/PNG_image.png?1696516318", - "current_price": 0.00020663, - "market_cap": 2000666039, - "market_cap_rank": 55, - "fully_diluted_valuation": 2064035574, - "total_volume": 596964141, - "high_24h": 0.00023968, - "low_24h": 0.00020448, - "price_change_24h": -3.3010517231461e-05, - "price_change_percentage_24h": -13.77524, - "market_cap_change_24h": -326756857.0431626, - "market_cap_change_percentage_24h": -14.03943, - "circulating_supply": 9692982348324.0, - "total_supply": 10000000000000.0, - "max_supply": 10000000000000.0, - "ath": 0.00034495, - "ath_change_percentage": -40.61393, - "ath_date": "2024-06-05T07:25:59.137Z", - "atl": 8.428e-08, - "atl_change_percentage": 242961.65163, - "atl_date": "2021-07-06T01:11:20.438Z", - "roi": null, - "last_updated": "2024-06-13T16:12:26.217Z", - "sparkline_in_7d": { - "price": [ - 0.0003169217158833414, - 0.0003187489169729668, - 0.0003226780101743548, - 0.0003174685488650505, - 0.0003145841758009453, - 0.0003129919760878688, - 0.00030983163715894615, - 0.00030570873547449334, - 0.0003196139461480604, - 0.00032420978760267524, - 0.0003231440462985061, - 0.00032266427817071656, - 0.00032216793406766696, - 0.0003202177892950906, - 0.00031442370565175364, - 0.00031467915913476776, - 0.0003133897077444974, - 0.0003135697197788325, - 0.00031112880665405907, - 0.000310999706445351, - 0.0003148996300171652, - 0.00031112698120943695, - 0.00030935989977598835, - 0.00031213547043346725, - 0.00030261637521390657, - 0.0003049593145983853, - 0.00030411488998981163, - 0.00030402778174359966, - 0.0002987508073315589, - 0.0002914075447932464, - 0.0002730257594992707, - 0.0002772897237515523, - 0.0002781802817886946, - 0.0002796551858069697, - 0.0002817447936454004, - 0.0002824166724207971, - 0.0002899687938659128, - 0.00029126182383965065, - 0.00028900525265426063, - 0.00028902892525115747, - 0.00028698097625612053, - 0.00028838436130424453, - 0.0002870728335220032, - 0.0002868841706768832, - 0.00028295788766992093, - 0.0002829044892494703, - 0.0002817668582063344, - 0.000276157880879754, - 0.00027165338550837735, - 0.0002755895575773758, - 0.0002773995288154291, - 0.0002778606238129368, - 0.00027370376876286514, - 0.0002763283411151029, - 0.0002828096636671946, - 0.0002826259882469598, - 0.0002803050912147204, - 0.000282868772838218, - 0.0002776620230060524, - 0.00027960985304830956, - 0.0002792411245832435, - 0.00028499490501452047, - 0.0002750632887702145, - 0.0002758893441765457, - 0.0002764524091900359, - 0.00028054550394687473, - 0.00027909671702430354, - 0.00027478792757572047, - 0.00027763185467688674, - 0.00027578473369182165, - 0.0002753472732743051, - 0.00028214756095605695, - 0.00028291177876145154, - 0.00027711788999123437, - 0.00028089414146640794, - 0.0002777378405055168, - 0.0002793014252979801, - 0.00027774630669727136, - 0.00028187298138535467, - 0.0002806822775655576, - 0.0002806167342834442, - 0.0002821836189188155, - 0.0002810611992595867, - 0.0002795179895558566, - 0.0002766645537102239, - 0.00027644125156566364, - 0.0002734406338681511, - 0.00027129333505613576, - 0.00027241514695790627, - 0.00026899795731714346, - 0.00026539633709621205, - 0.0002604850033951231, - 0.0002675771571367424, - 0.00027072044824061884, - 0.0002702945002002927, - 0.00026966363258436164, - 0.00026504762714757565, - 0.0002638804965408599, - 0.00026602832100515347, - 0.000275687751025011, - 0.0002749317794232894, - 0.0002743507413946285, - 0.00027164682619487093, - 0.00026616815252322485, - 0.00026430627531213606, - 0.00026254662340903994, - 0.0002641217411160889, - 0.0002651278633582416, - 0.00026268650040117626, - 0.00025345991084104895, - 0.0002522352274665107, - 0.00025018131991213615, - 0.0002483581627481199, - 0.00024866059051491463, - 0.0002472791597989191, - 0.0002475762567026365, - 0.00024921387115770134, - 0.00024781664718130013, - 0.00024718034250365093, - 0.00024683173042310875, - 0.00024532850084551193, - 0.0002416990703946378, - 0.0002442264149313225, - 0.00023844194748076414, - 0.0002377323818256373, - 0.0002376728764687469, - 0.00024058077538311097, - 0.00024261776144787184, - 0.00024271221281768206, - 0.0002441439555140053, - 0.000240770575343307, - 0.0002367201370643608, - 0.0002318793627870052, - 0.00022485087300276515, - 0.00022979825065993223, - 0.00023300394961584282, - 0.00023508500761188172, - 0.00023461053211126356, - 0.00023658719190145742, - 0.00023922124510776546, - 0.00023853133721834542, - 0.00023983972293277868, - 0.0002395675865375456, - 0.00023600330750445653, - 0.0002494179507410679, - 0.00024341846968415582, - 0.0002450153554350046, - 0.00024051572556088054, - 0.0002368527889180357, - 0.00023967753664156884, - 0.0002258174940002394, - 0.0002225787949846147, - 0.00022197046662900577, - 0.0002200397408727191, - 0.0002189791305952835, - 0.0002168310553424626, - 0.00021754704346583226, - 0.000217192113045719, - 0.00021507082785832352, - 0.00021368477499927099, - 0.00021441826363767595, - 0.0002179784973746125, - 0.00021560565348756656, - 0.0002203717907401962, - 0.00021901318995101, - 0.00022007887464155175, - 0.00022008880702118825 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394930d", - "id": "rocket-pool-eth", - "symbol": "reth", - "name": "Rocket Pool ETH", - "image": "https://coin-images.coingecko.com/coins/images/20764/large/reth.png?1696520159", - "current_price": 3824.48, - "market_cap": 1931092058, - "market_cap_rank": 57, - "fully_diluted_valuation": 1931090716, - "total_volume": 9747733, - "high_24h": 4025.56, - "low_24h": 3823.02, - "price_change_24h": -201.0844535455508, - "price_change_percentage_24h": -4.99519, - "market_cap_change_24h": -99506460.70831203, - "market_cap_change_percentage_24h": -4.90035, - "circulating_supply": 504412.694594609, - "total_supply": 504412.344118482, - "max_supply": null, - "ath": 4814.31, - "ath_change_percentage": -19.63736, - "ath_date": "2021-12-01T08:03:50.749Z", - "atl": 887.26, - "atl_change_percentage": 336.04934, - "atl_date": "2022-06-18T20:55:45.957Z", - "roi": null, - "last_updated": "2024-06-13T16:12:29.190Z", - "sparkline_in_7d": { - "price": [ - 4270.911409235828, - 4265.463700099769, - 4254.891368541432, - 4259.761425986838, - 4255.301682037897, - 4246.727623705727, - 4249.508401260195, - 4244.845462629966, - 4231.201987417313, - 4210.573890367598, - 4229.739442215801, - 4225.4429025751015, - 4221.90445058384, - 4220.1976171095, - 4217.467350976701, - 4211.362367225113, - 4216.764515748729, - 4222.425180670759, - 4227.4376188647475, - 4226.332549576763, - 4227.404221542298, - 4221.643596798836, - 4218.247066422126, - 4215.546443496308, - 4251.859075783453, - 4212.6308705494675, - 4220.431699049254, - 4230.289673018589, - 4212.228829340317, - 4195.359440972415, - 4129.3910895055615, - 4069.1487201410555, - 4082.363304266113, - 4082.0460161561546, - 4089.262833179581, - 4091.185536149025, - 4079.5504486639434, - 4084.8514603043936, - 4086.8271721152255, - 4083.713305558417, - 4085.8174442259706, - 4079.967645199879, - 4082.2115459494576, - 4081.6000423200358, - 4097.64231495543, - 4095.24678095181, - 4094.318916278708, - 4088.5379629376066, - 4074.4176596669763, - 4078.2940856162536, - 4083.376073321616, - 4085.9029302591925, - 4090.7073397723916, - 4084.3208242707224, - 4086.554777486717, - 4089.4052690955373, - 4081.9926345342656, - 4073.916745727085, - 4075.9023917925538, - 4073.991129525708, - 4077.749190217074, - 4075.9773255598225, - 4079.2775773827443, - 4066.404158907954, - 4069.6332589269114, - 4066.756130662718, - 4077.745375588722, - 4086.037864487173, - 4083.561470877075, - 4085.480502703605, - 4083.74049979154, - 4086.2557160508672, - 4093.5502264962493, - 4101.342056303301, - 4087.477142755571, - 4091.9399707756907, - 4089.1136768599263, - 4094.6333415251697, - 4095.1008248659023, - 4106.829013133414, - 4102.989528310706, - 4100.733203258189, - 4116.18666999922, - 4106.7924258873045, - 4106.319042259373, - 4092.1449768859634, - 4096.634071830739, - 4087.4035670982485, - 4080.7030316088308, - 4077.5609392797296, - 4074.5686950551076, - 4072.275354112103, - 4058.2898504186574, - 4069.1517685569015, - 4067.263554744659, - 4071.0243268908935, - 4072.656237998835, - 4075.7358626381133, - 4068.4002207263543, - 4075.437075293596, - 4096.773799525798, - 4097.816905219341, - 4098.739497488748, - 4092.0525441235723, - 4069.5070646888516, - 4052.4167710589036, - 4048.0498948308323, - 4068.295998356693, - 4064.0032209868264, - 4063.3146190306184, - 4038.141790897277, - 3978.4164712211996, - 3988.8920780880426, - 3939.5548388196853, - 3954.1873411824686, - 3928.8948520852114, - 3910.6398042854685, - 3914.878265463681, - 3911.6014585808484, - 3909.9761019289062, - 3909.5531683967097, - 3912.8593378904848, - 3904.264500104674, - 3910.5321969293245, - 3870.4757486655094, - 3849.0652442580954, - 3853.164888917113, - 3859.4926535613718, - 3859.713287173874, - 3876.956063280724, - 3881.409572193069, - 3883.840128690182, - 3884.0458504775133, - 3881.0489232782143, - 3864.1745025082764, - 3873.1050712423726, - 3893.004162396638, - 3906.7830779127053, - 3905.0960159088118, - 3905.5517855517783, - 3910.9434415394117, - 3905.34978231852, - 3914.4480075426372, - 3908.1157053396705, - 3936.2871446545837, - 4006.9002238486332, - 4020.824316975439, - 4035.4489797050383, - 4025.02334343386, - 4010.5725114566403, - 4013.8950590535765, - 3976.827203131473, - 3920.441454017468, - 3942.4880755180316, - 3946.773348585022, - 3949.4848832319894, - 3937.3424142545105, - 3947.6722374802907, - 3928.464150522295, - 3861.1217870219707, - 3887.5298738169918, - 3894.1677490837824, - 3889.010222268284, - 3881.8835556078493, - 3900.264658925194, - 3894.643480554248, - 3873.252622280873, - 3885.4932540285595 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394930e", - "id": "arweave", - "symbol": "ar", - "name": "Arweave", - "image": "https://coin-images.coingecko.com/coins/images/4343/large/oRt6SiEN_400x400.jpg?1696504946", - "current_price": 29.39, - "market_cap": 1927518779, - "market_cap_rank": 56, - "fully_diluted_valuation": 1927518779, - "total_volume": 155478163, - "high_24h": 35.68, - "low_24h": 29.42, - "price_change_24h": -5.835391374189811, - "price_change_percentage_24h": -16.56623, - "market_cap_change_24h": -378080187.2037976, - "market_cap_change_percentage_24h": -16.39835, - "circulating_supply": 65454185.5381511, - "total_supply": 65454185.5381511, - "max_supply": 66000000.0, - "ath": 89.24, - "ath_change_percentage": -66.63137, - "ath_date": "2021-11-05T04:14:42.689Z", - "atl": 0.298788, - "atl_change_percentage": 9865.78569, - "atl_date": "2020-01-31T06:47:36.543Z", - "roi": { - "times": 38.715161655400784, - "currency": "usd", - "percentage": 3871.5161655400784 - }, - "last_updated": "2024-06-13T16:12:32.259Z", - "sparkline_in_7d": { - "price": [ - 42.901771854360085, - 43.013194864745735, - 42.87906460897464, - 42.95234445256606, - 42.902622995359785, - 42.12456431305637, - 42.46347955368553, - 42.20723171355335, - 41.71341363045884, - 41.96771035356768, - 41.888738466265174, - 41.859249379058355, - 41.78368909139577, - 41.80772541284805, - 41.809319039873124, - 41.60541161676706, - 41.66755003693469, - 41.45205991622482, - 42.12969784437888, - 42.28418826229179, - 42.56340073276305, - 42.08315228188238, - 41.93557528118644, - 41.77053848987306, - 42.15620879391043, - 41.522009151549554, - 41.35361182036099, - 41.21657776992447, - 40.69583864961229, - 40.51072851013494, - 37.64736981521088, - 38.59684104664747, - 38.93269464140443, - 38.78420782141403, - 39.13382301092395, - 38.96185238462799, - 39.001677705595625, - 39.19313694975127, - 39.310955835181694, - 39.076270140039696, - 39.05972758538462, - 38.89106993691322, - 38.78921798644278, - 38.91944318311346, - 38.8922395134149, - 38.6320877773956, - 38.61631956689619, - 38.4659171812391, - 37.44818993079058, - 37.5991558179273, - 37.773895317142376, - 37.921115833154246, - 37.77678032090102, - 37.35321596543012, - 37.572567141948284, - 37.3843725208664, - 37.22919596047643, - 37.043846247582465, - 36.9558236432633, - 36.683939422708114, - 36.81230303299533, - 37.092216901424614, - 36.97056889029759, - 36.48160928773888, - 36.904678557668035, - 36.82568390900082, - 36.819586883898886, - 36.9722787322153, - 36.97011877184758, - 37.07711893325722, - 37.11465962337576, - 37.21005136257324, - 37.20911032828817, - 37.95355992259355, - 37.88343397537649, - 37.81437219322324, - 38.03772108925393, - 38.12018502605958, - 37.68941614186164, - 38.03567129445133, - 37.78854886669916, - 37.775318127122986, - 37.8458153445174, - 37.751790408048365, - 37.52898840982519, - 37.5148235569674, - 37.689430642706604, - 37.57260221983896, - 37.34316048596319, - 37.23274429213158, - 36.96204827785694, - 36.68361324198395, - 36.33597377724489, - 37.29340136623034, - 37.98745541635633, - 37.80004651725192, - 37.5637564088282, - 37.35760812653557, - 37.34191013886172, - 37.77583478516997, - 37.964096881443005, - 37.55318936845237, - 37.491917888774914, - 37.141936172719525, - 37.00551839708221, - 36.88481045836015, - 36.82595028319032, - 36.78205974442188, - 36.60885944274677, - 36.0303075775014, - 35.36737820504657, - 35.39325493581115, - 35.512402772087945, - 35.2556669529999, - 35.31302183887514, - 35.06523632204322, - 35.08004763737406, - 35.10618262789544, - 35.007168061102064, - 34.75000231942568, - 34.56442740875128, - 34.51113681131377, - 33.78421652444321, - 33.74715115423244, - 32.87680752452462, - 32.82632480706836, - 32.83864697963149, - 32.96480476504394, - 33.28666550183326, - 33.20513050538613, - 33.34151992641581, - 33.409910886579596, - 33.19632898101568, - 33.159507735205835, - 32.92458808276611, - 33.39923411240054, - 33.46420251116199, - 33.35083245196993, - 33.30148590109997, - 33.4210802843559, - 33.49275615183115, - 33.25672965174963, - 33.47026121063927, - 33.37818699692722, - 33.40991927863712, - 36.13335788636779, - 35.18211390878495, - 35.45625394151543, - 35.202600562629996, - 35.018509749577476, - 34.958483116941494, - 34.806486922024746, - 33.88547537345979, - 34.644903269460954, - 34.57573172441079, - 34.624555151419564, - 34.60922715569723, - 34.51194456314477, - 34.29032668365576, - 33.36247606291849, - 33.73183503142172, - 33.940421016425475, - 34.0912848099141, - 34.02966735295488, - 34.186184574347685, - 34.17343902831516, - 34.42743753527139, - 34.50875138788218 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394930f", - "id": "fantom", - "symbol": "ftm", - "name": "Fantom", - "image": "https://coin-images.coingecko.com/coins/images/4001/large/Fantom_round.png?1696504642", - "current_price": 0.635195, - "market_cap": 1780783516, - "market_cap_rank": 58, - "fully_diluted_valuation": 2016663365, - "total_volume": 166441642, - "high_24h": 0.693624, - "low_24h": 0.63162, - "price_change_24h": -0.05738944529230693, - "price_change_percentage_24h": -8.28627, - "market_cap_change_24h": -159394907.24754047, - "market_cap_change_percentage_24h": -8.21548, - "circulating_supply": 2803634835.52659, - "total_supply": 3175000000.0, - "max_supply": 3175000000.0, - "ath": 3.46, - "ath_change_percentage": -81.70879, - "ath_date": "2021-10-28T05:19:39.845Z", - "atl": 0.00190227, - "atl_change_percentage": 33155.7961, - "atl_date": "2020-03-13T02:25:38.280Z", - "roi": { - "times": 20.17316725376646, - "currency": "usd", - "percentage": 2017.316725376646 - }, - "last_updated": "2024-06-13T16:12:42.627Z", - "sparkline_in_7d": { - "price": [ - 0.8150440544886098, - 0.8169478496584984, - 0.8174158092259688, - 0.8182597413409649, - 0.8178250687287826, - 0.8087711095692287, - 0.811803180399649, - 0.8101762039609179, - 0.7965620945600922, - 0.8045565354652185, - 0.8032142175450969, - 0.8079920126576436, - 0.8062205289922998, - 0.8035257334147666, - 0.8044300797285051, - 0.8028841457875566, - 0.8049158356485516, - 0.8099615187214017, - 0.812462758881244, - 0.8138131775814733, - 0.8100425407633824, - 0.8085443401706824, - 0.8065221182227776, - 0.8093524781823165, - 0.8188296470142113, - 0.8065040832170098, - 0.8147583534705447, - 0.8150192350703368, - 0.8055764355223974, - 0.790091873459792, - 0.7842019801199878, - 0.7080776373358435, - 0.715566227213254, - 0.7200037095333832, - 0.7194173692936401, - 0.7249411283287359, - 0.7220679730994253, - 0.7209656814842843, - 0.72590007788868, - 0.7281871818850112, - 0.7260149646301647, - 0.7222673434160473, - 0.7212733776934709, - 0.7218619494825974, - 0.7215962093563517, - 0.7210130227899714, - 0.7196299461274194, - 0.713211485275336, - 0.7023556277434196, - 0.7040566260679791, - 0.7051863414030797, - 0.7033273244263721, - 0.6982039583739659, - 0.6904668573242962, - 0.6922968654393968, - 0.693130109688878, - 0.6935270273911266, - 0.6914108140693715, - 0.6919194726671276, - 0.6892761560214606, - 0.6892090750979415, - 0.693963520201511, - 0.6941035020460754, - 0.6860297418333663, - 0.6871473956014783, - 0.6836117970632231, - 0.6897683217634506, - 0.6931862958242423, - 0.6895393163254737, - 0.6925309559018707, - 0.6878816706174297, - 0.6848966409883709, - 0.6850146822449248, - 0.6917442578309565, - 0.6859104185960568, - 0.6912570734186972, - 0.6885335450062099, - 0.6920903049707449, - 0.6912989461948826, - 0.6980689727798934, - 0.6972795298071495, - 0.6960209947384787, - 0.6992087829787499, - 0.697029985892323, - 0.6941653312832026, - 0.690813170189556, - 0.6909450464887422, - 0.6881773871377181, - 0.6851839173996751, - 0.6865948875781289, - 0.6829312387055689, - 0.6796220168165255, - 0.6738227840569112, - 0.6833478248320605, - 0.6867921287546173, - 0.6864550465636795, - 0.6834383759611583, - 0.6783955296538666, - 0.6784645464539062, - 0.6868412129093509, - 0.6958044902870191, - 0.6925689070529947, - 0.6904437780698832, - 0.6853897116747983, - 0.679761536116478, - 0.679778799315689, - 0.6782759751238744, - 0.6793947387132289, - 0.6764133645763218, - 0.6750821495097589, - 0.6605251514931195, - 0.6611203111577847, - 0.6634061125491388, - 0.6630054069209971, - 0.6635499610790239, - 0.6556541537294774, - 0.6548457189702457, - 0.6575820099135617, - 0.6594785217107417, - 0.6620480328643213, - 0.6592883855312255, - 0.6444331105631049, - 0.6379610374832895, - 0.6476952842393848, - 0.6411936002062494, - 0.6343548607818764, - 0.6304740315694406, - 0.6363679335723343, - 0.6338625847002581, - 0.6333924311950339, - 0.6368436386797919, - 0.6383285074216525, - 0.633139757769373, - 0.6288751465079258, - 0.6213809388296132, - 0.6389793917536583, - 0.6448309934457149, - 0.648521760487265, - 0.6441010535424614, - 0.6491571737474706, - 0.6518334400280636, - 0.6473393785140322, - 0.6539607655429417, - 0.6540399167688837, - 0.6476724221398795, - 0.6879120425403505, - 0.6813559094558735, - 0.6925901243610518, - 0.6928879147919054, - 0.6892754200262335, - 0.6936236746431185, - 0.6771295720651772, - 0.6618644033253688, - 0.6726157554566312, - 0.6739152562609613, - 0.6773049369003178, - 0.6733265307029235, - 0.674097271272462, - 0.6631723672504297, - 0.652693748437421, - 0.6531857333786839, - 0.6585292564026133, - 0.6570400867437339, - 0.6519382935779507, - 0.6535135424373468, - 0.6499089866618701, - 0.6489803510666883, - 0.6519484697840643 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949310", - "id": "theta-token", - "symbol": "theta", - "name": "Theta Network", - "image": "https://coin-images.coingecko.com/coins/images/2538/large/theta-token-logo.png?1696503349", - "current_price": 1.77, - "market_cap": 1768037814, - "market_cap_rank": 59, - "fully_diluted_valuation": 1768037814, - "total_volume": 30467837, - "high_24h": 1.97, - "low_24h": 1.76, - "price_change_24h": -0.1807284587190432, - "price_change_percentage_24h": -9.27102, - "market_cap_change_24h": -175492767.65529203, - "market_cap_change_percentage_24h": -9.02959, - "circulating_supply": 1000000000.0, - "total_supply": 1000000000.0, - "max_supply": 1000000000.0, - "ath": 15.72, - "ath_change_percentage": -88.76947, - "ath_date": "2021-04-16T13:15:11.190Z", - "atl": 0.04039979, - "atl_change_percentage": 4269.84196, - "atl_date": "2020-03-13T02:24:16.483Z", - "roi": { - "times": 10.79109168630488, - "currency": "usd", - "percentage": 1079.109168630488 - }, - "last_updated": "2024-06-13T16:12:17.549Z", - "sparkline_in_7d": { - "price": [ - 2.2255953155480097, - 2.2242403263363704, - 2.2519631229606576, - 2.2788441226302956, - 2.2876218268641986, - 2.2843760622705376, - 2.276746083183007, - 2.2640778377134407, - 2.213979268890459, - 2.229705002530257, - 2.210621034696898, - 2.2136191428560354, - 2.1985836809832118, - 2.1911872295617876, - 2.2002416592353593, - 2.188524611478917, - 2.1848123055365396, - 2.201511386038083, - 2.2054142961376546, - 2.1619931364084133, - 2.1638149570589595, - 2.166765288026612, - 2.1631795465688555, - 2.1681677096383756, - 2.1882270921948668, - 2.1630901251120553, - 2.1989472343742644, - 2.223045248988088, - 2.213467598017759, - 2.184552233392581, - 2.141391649156854, - 1.9877895896004434, - 2.0101304439836465, - 2.0073622047951005, - 1.9937845807279193, - 2.0006088594659457, - 1.9984606433366636, - 1.9954154075489525, - 2.008377024937411, - 2.0090757709373523, - 2.019545130129388, - 2.0031807039631047, - 1.9944319796513756, - 1.9962161928696904, - 1.9957682080983992, - 1.979013548512249, - 1.9792339422686485, - 1.9786028251009393, - 1.9418479619510873, - 1.9326429666718175, - 1.9341148686247718, - 1.9394931406405982, - 1.917293168814457, - 1.9125605708553726, - 1.9112821107711733, - 1.9136042523832886, - 1.9050662777251028, - 1.9027859569303902, - 1.9117373518672804, - 1.907638330253658, - 1.9198327071050307, - 1.940820807253191, - 1.9570445831062036, - 1.9273671557661738, - 1.9455628130923108, - 1.9452128227250989, - 1.959969291412373, - 1.9474626011405656, - 1.944961144594291, - 1.945245331534889, - 1.951817217507766, - 1.9466487961197336, - 1.945313504356352, - 1.9593599570141833, - 1.9535239184347473, - 1.960013516179568, - 1.9620678666902316, - 1.9685796850357449, - 1.9753144993029192, - 1.9800995263559977, - 1.989020956300701, - 1.9746912046999456, - 1.9787429333133797, - 1.9744331170545677, - 1.981315296146555, - 1.9732496799971266, - 1.9676472253531845, - 1.96222931221882, - 1.9489982589670505, - 1.9560892738073212, - 1.9397628669076552, - 1.9239798359827305, - 1.9079880952159542, - 1.9241198250896943, - 1.9467684504550038, - 1.9334202676329388, - 1.930247643984971, - 1.9169284764764807, - 1.9177718330301798, - 1.9387351604621936, - 1.9695862680201035, - 1.9516496567065222, - 1.9480803967988967, - 1.9306123210623998, - 1.9177367124466371, - 1.92369282889194, - 1.91879354923571, - 1.9184328110938003, - 1.909020730813942, - 1.9100867448391707, - 1.8728902737083617, - 1.8801815189500997, - 1.8874849436931533, - 1.875920746716261, - 1.8829139533048425, - 1.8717296044608502, - 1.8665697365873433, - 1.8649981443577053, - 1.8598762791385552, - 1.8694934289228933, - 1.8565479422260653, - 1.8366431884938448, - 1.8186102283356567, - 1.8227993806552747, - 1.7888049756255329, - 1.7908985021504844, - 1.7941000183795208, - 1.801918427713722, - 1.8056821401948435, - 1.8011548996046922, - 1.8058679487415525, - 1.8051689278009642, - 1.7997280806398313, - 1.793029344066969, - 1.7731155754111925, - 1.814845224710748, - 1.816842457701992, - 1.8139970565513954, - 1.813543532029857, - 1.820540017156458, - 1.823811655789306, - 1.815602288930236, - 1.8387537302033172, - 1.8439156151641067, - 1.809642531563773, - 1.9141874207919147, - 1.9292523453202515, - 1.955280333824263, - 1.9406039670589306, - 1.9408005138219198, - 1.948450898448904, - 1.9475443869108882, - 1.8864002269282383, - 1.9157514913767528, - 1.9119068687915202, - 1.9222228450480188, - 1.9201936108001403, - 1.924897491965919, - 1.9039913047937127, - 1.8771486205821937, - 1.8587891777256949, - 1.8716789433388639, - 1.8635697111474285, - 1.8496822912251525, - 1.8658181821819952, - 1.8603022631710442, - 1.8564552731214152, - 1.838675629733074 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949311", - "id": "ondo-finance", - "symbol": "ondo", - "name": "Ondo", - "image": "https://coin-images.coingecko.com/coins/images/26580/large/ONDO.png?1696525656", - "current_price": 1.22, - "market_cap": 1762458723, - "market_cap_rank": 60, - "fully_diluted_valuation": 12207381777, - "total_volume": 301045380, - "high_24h": 1.4, - "low_24h": 1.22, - "price_change_24h": -0.16595029578125886, - "price_change_percentage_24h": -11.96738, - "market_cap_change_24h": -240931747.86529875, - "market_cap_change_percentage_24h": -12.0262, - "circulating_supply": 1443764727.588207, - "total_supply": 10000000000.0, - "max_supply": 10000000000.0, - "ath": 1.48, - "ath_change_percentage": -17.9634, - "ath_date": "2024-06-03T08:29:55.744Z", - "atl": 0.082171, - "atl_change_percentage": 1376.33589, - "atl_date": "2024-01-18T12:14:30.524Z", - "roi": null, - "last_updated": "2024-06-13T16:12:10.473Z", - "sparkline_in_7d": { - "price": [ - 1.3948161986006946, - 1.3841017962692597, - 1.3965421386386534, - 1.3922530736990026, - 1.3807728284627727, - 1.3743547836500345, - 1.3714408585697517, - 1.3654431545103007, - 1.3510946297429662, - 1.3623781045222152, - 1.3578403446410405, - 1.3544410524427175, - 1.3524685178079954, - 1.355002114212615, - 1.3479629704406457, - 1.3425401749863717, - 1.3481234214002027, - 1.3606658284426776, - 1.3600245414070071, - 1.349834311262267, - 1.3565583372614454, - 1.37560117746563, - 1.3740421744940732, - 1.3777755473625746, - 1.3867926934174633, - 1.3802203136406153, - 1.396076991076564, - 1.36792726668232, - 1.3814834888430818, - 1.364607208971167, - 1.2957115976117528, - 1.310873077681019, - 1.2851213748995967, - 1.301419702455614, - 1.302245323887744, - 1.3252533641071096, - 1.328619033483052, - 1.371577021822392, - 1.3636218024983346, - 1.358531478865711, - 1.3510228921784706, - 1.3417044196501253, - 1.3382074256342957, - 1.3567782641700834, - 1.3567270513792244, - 1.3440706688212123, - 1.339063491207095, - 1.3307767511484514, - 1.3045751890369641, - 1.300759186459121, - 1.3132561407095593, - 1.3178496378328053, - 1.3135460376765304, - 1.30329638958164, - 1.3098667624056857, - 1.2986415933699802, - 1.301488184976555, - 1.2900713777384611, - 1.2982969525861805, - 1.2739328238089642, - 1.2684222131127876, - 1.288349080367756, - 1.292065249591056, - 1.2695746435751842, - 1.2880115302908524, - 1.2850993151395251, - 1.2787888411332777, - 1.2877348733359284, - 1.2865709251184072, - 1.30789002336453, - 1.3071885699787975, - 1.3005885301955218, - 1.2914574423297531, - 1.3060699072517425, - 1.2809567651367977, - 1.2863579023031675, - 1.2932688885075176, - 1.3025183647145901, - 1.2989240441147403, - 1.298375532474177, - 1.296037332587938, - 1.2859421007234244, - 1.2871985269423176, - 1.2977646057421155, - 1.3015568313632058, - 1.300056275290959, - 1.2934264402676343, - 1.2948575217432274, - 1.2884798090911918, - 1.280173281746379, - 1.2800715251578, - 1.2689285673447286, - 1.2422779273623605, - 1.2632258882399927, - 1.2582686880515883, - 1.2521451315367054, - 1.2461094528942116, - 1.2415345230397847, - 1.2308376329822621, - 1.2346922767553612, - 1.2675193625177372, - 1.2665863428260804, - 1.2612272603802304, - 1.2487082329450299, - 1.2167159971881503, - 1.2137088003960583, - 1.2037504617642016, - 1.2091668067293324, - 1.1956388254771166, - 1.2000556210792845, - 1.1759479996375553, - 1.1981703095204104, - 1.2179226560745742, - 1.2109492203926846, - 1.2018689599415928, - 1.2037918544160744, - 1.2193955047466036, - 1.2404682866863064, - 1.2221534268764025, - 1.2262733043808018, - 1.2318134973776023, - 1.2356088332621367, - 1.2143913142125367, - 1.2161405232019264, - 1.20167516607508, - 1.217666903807692, - 1.222823173968734, - 1.2469768582174627, - 1.2461066506385043, - 1.2483765262649578, - 1.2715971220732625, - 1.2794965441083601, - 1.269187648139595, - 1.2523971692577445, - 1.222792673257024, - 1.2380706079600365, - 1.2588170470068376, - 1.2539729910908424, - 1.2587763345284144, - 1.26080132891468, - 1.2591217520024083, - 1.2455380718202358, - 1.2599467774117485, - 1.2940166806463267, - 1.2755932663525447, - 1.3730029304125937, - 1.3684385690381677, - 1.3780088036101534, - 1.3816698043585953, - 1.393593092164263, - 1.3869454642978405, - 1.3680232497764562, - 1.3194677684041334, - 1.3350642527722956, - 1.3429628360638122, - 1.3369448438517089, - 1.3423844598545993, - 1.3514899778906149, - 1.3388269244003004, - 1.3008720769391349, - 1.3052727775626516, - 1.3041446196333202, - 1.3091294596856953, - 1.2983853062644883, - 1.3018130712912717, - 1.3018090339277741, - 1.2955772280358566, - 1.2935321881624418, - 1.2816732047948027 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949312", - "id": "notcoin", - "symbol": "not", - "name": "Notcoin", - "image": "https://coin-images.coingecko.com/coins/images/33453/large/rFmThDiD_400x400.jpg?1701876350", - "current_price": 0.01701156, - "market_cap": 1740577369, - "market_cap_rank": 61, - "fully_diluted_valuation": 1740577369, - "total_volume": 1015397988, - "high_24h": 0.01883819, - "low_24h": 0.01683536, - "price_change_24h": -0.00134812875240814, - "price_change_percentage_24h": -7.34287, - "market_cap_change_24h": -124753374.90723205, - "market_cap_change_percentage_24h": -6.688, - "circulating_supply": 102701033769.173, - "total_supply": 102701033769.173, - "max_supply": 102719221714.0, - "ath": 0.02836145, - "ath_change_percentage": -40.57051, - "ath_date": "2024-06-02T18:00:38.587Z", - "atl": 0.00461057, - "atl_change_percentage": 265.5748, - "atl_date": "2024-05-24T07:12:14.147Z", - "roi": null, - "last_updated": "2024-06-13T16:12:19.223Z", - "sparkline_in_7d": { - "price": [ - 0.021865212841109066, - 0.021987077684463608, - 0.021798285878597855, - 0.022048891067833313, - 0.021759504443161114, - 0.02136911079851102, - 0.02129633747697483, - 0.021230050084060682, - 0.020999155825450616, - 0.021061265929741328, - 0.02087925381811213, - 0.021171968468265107, - 0.021296342505269756, - 0.02115852248375592, - 0.02122937996150587, - 0.021264540772654224, - 0.021324722073833628, - 0.021122537864625247, - 0.021122716421716255, - 0.02145095830964285, - 0.021925131513884054, - 0.0220222329194645, - 0.021924981357058757, - 0.0216467697686287, - 0.021720053829129518, - 0.02128518693854388, - 0.02130291780536298, - 0.021430254461577227, - 0.021886527935496697, - 0.021702217772489638, - 0.021364818767391946, - 0.018860222428654424, - 0.018739744664918838, - 0.018644886214359883, - 0.01938540236136997, - 0.0191052187193295, - 0.018991643735427926, - 0.019514520320719955, - 0.019844834625204685, - 0.019581499797419744, - 0.01952267181578824, - 0.01939268778172224, - 0.01967882684879807, - 0.02046196259736754, - 0.020373871151619424, - 0.020443823820437457, - 0.020267235113765405, - 0.020398730990276885, - 0.01967806411273705, - 0.019760549900052937, - 0.019437720323164775, - 0.01957451073121375, - 0.019357450689670465, - 0.018637804101312078, - 0.018774357925902437, - 0.019062076025166203, - 0.018869756954857667, - 0.0187859907075396, - 0.018745684920916886, - 0.018489333464287317, - 0.018569441506276044, - 0.018380523783888634, - 0.01827667306517493, - 0.017674944572798612, - 0.017940719764437098, - 0.017631602587158433, - 0.01744227821335876, - 0.017791366453379455, - 0.017862495564451377, - 0.0177981444739103, - 0.017668800212020663, - 0.017531432201945515, - 0.01796980981216489, - 0.019150736597635068, - 0.018550874609720394, - 0.018840911581751912, - 0.018769213654773513, - 0.019125490767598487, - 0.018984281360434792, - 0.019289665548060685, - 0.019127854686335162, - 0.01905316982787552, - 0.019055813590606777, - 0.01917518032175352, - 0.01907198828515926, - 0.019007124574604694, - 0.019064503693283007, - 0.01890204666529053, - 0.01893190293243309, - 0.01919730924833246, - 0.019566186189340494, - 0.019019692867205437, - 0.018482734090171867, - 0.018710116197278952, - 0.01853508352581658, - 0.01874915363344751, - 0.018499473431661514, - 0.01825824569619206, - 0.0181086505287578, - 0.018354007761632672, - 0.018620621180382695, - 0.01868246115577614, - 0.018541258436732357, - 0.018283925724174907, - 0.01814317772455011, - 0.018038712509146546, - 0.017852215442089748, - 0.017825914773482183, - 0.01768658655690033, - 0.0178833834175168, - 0.01660119723858825, - 0.016482189295120478, - 0.016396173806241577, - 0.01615839897109287, - 0.016272927971289892, - 0.016000088639226386, - 0.01607772232795108, - 0.016026224583912483, - 0.016186513005239822, - 0.01635442477147681, - 0.016157572419639714, - 0.015929398248721385, - 0.015821248395903778, - 0.015602385016703298, - 0.015136912512329069, - 0.015295941645669732, - 0.015369590529336572, - 0.0157074212737114, - 0.0159215184016703, - 0.01622928750673875, - 0.016221840826423913, - 0.016036414598582044, - 0.015930661114166786, - 0.015758954549295878, - 0.015423343215699565, - 0.016177659423317725, - 0.016343841202140275, - 0.016158338065227346, - 0.01610774945441018, - 0.016466029577116636, - 0.016326730044838516, - 0.01596326490386872, - 0.016276958518866416, - 0.016320172028138045, - 0.016325733460608994, - 0.017963433777624858, - 0.018221515693622795, - 0.017780716394367273, - 0.01814790640567582, - 0.018482629938184298, - 0.018219630760088493, - 0.018094021198577382, - 0.017582050734581217, - 0.018163759199645187, - 0.01803029282882624, - 0.018171171606677108, - 0.01823792789645977, - 0.018490028576804974, - 0.018217929458546556, - 0.017790588646055868, - 0.017842438745039286, - 0.018101497369030505, - 0.018239203232828568, - 0.017910835319511344, - 0.01801403990999669, - 0.017963424295704, - 0.017647645552234643, - 0.01780924713862903 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949313", - "id": "lido-dao", - "symbol": "ldo", - "name": "Lido DAO", - "image": "https://coin-images.coingecko.com/coins/images/13573/large/Lido_DAO.png?1696513326", - "current_price": 1.89, - "market_cap": 1690909635, - "market_cap_rank": 62, - "fully_diluted_valuation": 1893506776, - "total_volume": 136817899, - "high_24h": 2.04, - "low_24h": 1.88, - "price_change_24h": -0.13900791055242157, - "price_change_percentage_24h": -6.84214, - "market_cap_change_24h": -123863374.91044497, - "market_cap_change_percentage_24h": -6.82528, - "circulating_supply": 893004269.193105, - "total_supply": 1000000000.0, - "max_supply": 1000000000.0, - "ath": 7.3, - "ath_change_percentage": -74.22871, - "ath_date": "2021-08-20T08:35:20.158Z", - "atl": 0.40615, - "atl_change_percentage": 363.3868, - "atl_date": "2022-06-18T20:55:12.035Z", - "roi": null, - "last_updated": "2024-06-13T16:12:38.001Z", - "sparkline_in_7d": { - "price": [ - 2.2382097943059196, - 2.253681855169475, - 2.2402650399870727, - 2.242901627857567, - 2.248581940357217, - 2.2196079717512625, - 2.224317667467763, - 2.206704998366173, - 2.154607426218133, - 2.1843207933867377, - 2.185892472507286, - 2.196775816956954, - 2.1935780921982193, - 2.1924462739105914, - 2.1900877628520243, - 2.181133569500286, - 2.1774335224221533, - 2.1826648488010023, - 2.1895030544175165, - 2.1985451251393218, - 2.2075543815341847, - 2.196470369340808, - 2.1997122169024945, - 2.2067972835148075, - 2.246567530209477, - 2.2073344789407576, - 2.244857608745948, - 2.274590065729341, - 2.2344205302647238, - 2.2072199907411427, - 2.0019103459307295, - 1.9673002688226537, - 2.0083374771951914, - 2.0179776037722355, - 2.044125148160522, - 2.0495362694574855, - 2.0291066385873004, - 2.0334098552098023, - 2.04446115767382, - 2.0457252911568053, - 2.032403765569529, - 2.0323019652073286, - 2.0311007805522117, - 2.028615329053753, - 2.054746119180622, - 2.0310125387895845, - 2.0149807541945903, - 2.0137606327094035, - 1.9744777047464677, - 1.9611367932248909, - 1.9671075460271927, - 1.9693204499999672, - 1.9603681071923442, - 1.940198414336424, - 1.9481751707251564, - 1.9380619961087788, - 1.9255648887583237, - 1.9214709080078072, - 1.920105716346728, - 1.9218655120463881, - 1.9326241428615045, - 1.9287597740914357, - 1.9520395238501809, - 1.9205409719104645, - 1.9291341322915698, - 1.9207090923485302, - 1.9356322372637504, - 1.942285847395447, - 1.9457621246349694, - 1.941354717852735, - 1.9381242461988342, - 1.940046061054258, - 1.9466311332268473, - 1.9668317822255992, - 1.9505514010514204, - 1.9517739466004922, - 1.9437263350378762, - 1.9503303095391602, - 1.9421306841424861, - 1.945406404106603, - 1.9424536440502798, - 1.9322840708386586, - 1.9211434400547855, - 1.8774259887266744, - 1.8789465341060725, - 1.884038111206958, - 1.8874429161077477, - 1.883958557788985, - 1.877473650212378, - 1.9246283035006884, - 1.909643076155624, - 1.8875917688991326, - 1.8807927484632199, - 1.9008764258118218, - 1.9169564037607165, - 1.9112199916990664, - 1.8962096899885628, - 1.8814073899623374, - 1.8827496293526813, - 1.9069406012896253, - 1.9285044360196009, - 1.9243700812575377, - 1.9164969706758437, - 1.9009759253436065, - 1.8815069820778314, - 1.8733570151560899, - 1.86700343728591, - 1.8785223115269232, - 1.868061839929687, - 1.863617898408361, - 1.8094706236751048, - 1.833755223331778, - 1.8541339019857923, - 1.8692127413000956, - 1.8616487108274364, - 1.845121765699148, - 1.8519184518363252, - 1.8527779873307695, - 1.8448679889917552, - 1.8289888839505086, - 1.8504588527744168, - 1.8322596978986736, - 1.8278242479293423, - 1.8331371737192665, - 1.8010408232223654, - 1.8287810737760308, - 1.8453672056461177, - 1.8274602649679859, - 1.808133075987235, - 1.818007611848675, - 1.849934306961251, - 1.8260628672280803, - 1.8314250062366386, - 1.8144191505075478, - 1.7878555608147533, - 1.824988854864072, - 1.843052461991784, - 1.8409563546795082, - 1.828916725804, - 1.8341603889818976, - 1.8595449278514462, - 1.8806019058320338, - 1.90189555063013, - 1.9346087813513646, - 1.90887248536403, - 2.0148023064148406, - 2.0009051975536307, - 2.0446533190398344, - 2.032679352066507, - 2.017935370050088, - 2.040202064188115, - 1.9929217293458243, - 1.951718614467988, - 1.9989740774249882, - 2.0006559246736155, - 2.003711815153023, - 2.000141355813381, - 2.0071548629009253, - 1.9970873116628958, - 1.9427672037758483, - 1.9592617375497892, - 1.9715735336670999, - 1.9749011051622765, - 1.9316960990029628, - 1.9410301905059317, - 1.952468142744012, - 1.9281180993531548, - 1.9214810593664715 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949314", - "id": "bonk", - "symbol": "bonk", - "name": "Bonk", - "image": "https://coin-images.coingecko.com/coins/images/28600/large/bonk.jpg?1696527587", - "current_price": 2.535e-05, - "market_cap": 1680736827, - "market_cap_rank": 63, - "fully_diluted_valuation": 2371093733, - "total_volume": 382829533, - "high_24h": 3.049e-05, - "low_24h": 2.526e-05, - "price_change_24h": -5.135480565657e-06, - "price_change_percentage_24h": -16.84584, - "market_cap_change_24h": -338021389.29056406, - "market_cap_change_percentage_24h": -16.74403, - "circulating_supply": 66295523592414.664, - "total_supply": 93526183276778.0, - "max_supply": 93526183276778.0, - "ath": 4.547e-05, - "ath_change_percentage": -44.53056, - "ath_date": "2024-03-04T17:05:29.594Z", - "atl": 8.6142e-08, - "atl_change_percentage": 29179.91006, - "atl_date": "2022-12-29T22:48:46.755Z", - "roi": null, - "last_updated": "2024-06-13T16:12:39.784Z", - "sparkline_in_7d": { - "price": [ - 3.3464430812644067e-05, - 3.341007822713915e-05, - 3.340949195796014e-05, - 3.341082392932583e-05, - 3.328479528008466e-05, - 3.281979529519105e-05, - 3.3005186081429535e-05, - 3.278726303903474e-05, - 3.2352452457630706e-05, - 3.2664217860646154e-05, - 3.230313673843315e-05, - 3.2213790744077135e-05, - 3.1797654872098193e-05, - 3.1737308741366163e-05, - 3.1661506469328364e-05, - 3.143406116524781e-05, - 3.172425163964613e-05, - 3.226304273727632e-05, - 3.2099617239207715e-05, - 3.215194497446066e-05, - 3.1977253414382735e-05, - 3.216084960149976e-05, - 3.1803516876927964e-05, - 3.186686090603203e-05, - 3.2113950868443685e-05, - 3.1225462442599676e-05, - 3.1774625839934066e-05, - 3.1880582167482115e-05, - 3.1507294297986475e-05, - 3.045917354977659e-05, - 2.9939104911596604e-05, - 2.792677010994744e-05, - 2.8446305662872463e-05, - 2.867052888516062e-05, - 2.869770657187876e-05, - 2.8713014046873078e-05, - 2.8877128551227793e-05, - 2.934851054151659e-05, - 2.9475765123913223e-05, - 2.9250345603574956e-05, - 2.9069229001460738e-05, - 2.8935270949520517e-05, - 2.9103707269955837e-05, - 2.8914634546783006e-05, - 2.8709373767935533e-05, - 2.8547671384594403e-05, - 2.854822378632108e-05, - 2.8491820430900445e-05, - 2.7993122487704412e-05, - 2.773458967965847e-05, - 2.794407769665363e-05, - 2.8084290530099338e-05, - 2.8140709540911274e-05, - 2.7941253030801477e-05, - 2.8170868690268725e-05, - 2.8482077772966875e-05, - 2.823022354780336e-05, - 2.7806824554255953e-05, - 2.7829196069069926e-05, - 2.7644479191507053e-05, - 2.752929178834944e-05, - 2.781638186085178e-05, - 2.816832477891561e-05, - 2.7368263335019507e-05, - 2.7969607329318044e-05, - 2.7671280826626086e-05, - 2.7964155971229972e-05, - 2.7804602562688385e-05, - 2.7833783143629155e-05, - 2.8098839691066185e-05, - 2.7917469199328435e-05, - 2.780997741680262e-05, - 2.8239255649052863e-05, - 2.8633139410228145e-05, - 2.8296323175781138e-05, - 2.893199500329797e-05, - 2.8674233016645425e-05, - 2.9051425971798365e-05, - 2.876644508586277e-05, - 2.8767858244254586e-05, - 2.8603773031883945e-05, - 2.845764080737727e-05, - 2.8670529604751318e-05, - 2.8731997313251863e-05, - 2.8522090733747693e-05, - 2.8491865861133242e-05, - 2.8482528024145142e-05, - 2.8395688056149598e-05, - 2.8266843920662346e-05, - 2.8320478056964945e-05, - 2.789548710901358e-05, - 2.763640050806517e-05, - 2.700593312057158e-05, - 2.7305856519924207e-05, - 2.7603726153173433e-05, - 2.764312152771604e-05, - 2.7553196577988813e-05, - 2.6950802306869203e-05, - 2.715243160445162e-05, - 2.7346581694898106e-05, - 2.8433234077421424e-05, - 2.8252519407794776e-05, - 2.8194476484606187e-05, - 2.8051378289091325e-05, - 2.742135185944997e-05, - 2.7286208883064633e-05, - 2.719848985490908e-05, - 2.7143055429163017e-05, - 2.7092619985742044e-05, - 2.703089199598581e-05, - 2.6418220101176695e-05, - 2.640526924732056e-05, - 2.6111498486436297e-05, - 2.603550808686712e-05, - 2.6058389558864137e-05, - 2.5838278578220797e-05, - 2.6017069942876278e-05, - 2.6983782559628483e-05, - 2.7080601607755303e-05, - 2.7870913465292938e-05, - 2.7888045176943378e-05, - 2.7428303551955387e-05, - 2.737577577609508e-05, - 2.781268460259176e-05, - 2.7356611911579706e-05, - 2.6591738885067846e-05, - 2.667828809800487e-05, - 2.7411691272545457e-05, - 2.752449479183645e-05, - 2.7351756158724946e-05, - 2.782120067869539e-05, - 2.7547611775682728e-05, - 2.720032983727931e-05, - 2.664645828511914e-05, - 2.632634470352781e-05, - 2.705251052389094e-05, - 2.7746806061579624e-05, - 2.786246166836757e-05, - 2.814090434716989e-05, - 2.854839745896384e-05, - 2.855679688898552e-05, - 2.8747154719030567e-05, - 2.9164993313314408e-05, - 2.8887215476605556e-05, - 2.8630924119982864e-05, - 3.0349698104748522e-05, - 3.0205092287375688e-05, - 3.013136517939455e-05, - 3.0407891926704296e-05, - 3.0237967606795027e-05, - 3.0429635722148436e-05, - 2.914995548101054e-05, - 2.8230639736662925e-05, - 2.8724935935594524e-05, - 2.880678678691953e-05, - 2.9043684909235476e-05, - 2.8957037593637788e-05, - 2.8667395143535112e-05, - 2.8238876850831706e-05, - 2.7747411009914024e-05, - 2.7692721877426635e-05, - 2.7580424435908674e-05, - 2.736247731730819e-05, - 2.7378270381637596e-05, - 2.7459431047238175e-05, - 2.7337561269927737e-05, - 2.7252071724803715e-05, - 2.7286813439623103e-05 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949315", - "id": "jasmycoin", - "symbol": "jasmy", - "name": "JasmyCoin", - "image": "https://coin-images.coingecko.com/coins/images/13876/large/JASMY200x200.jpg?1696513620", - "current_price": 0.03457755, - "market_cap": 1672927967, - "market_cap_rank": 64, - "fully_diluted_valuation": 1727517520, - "total_volume": 175908147, - "high_24h": 0.03853063, - "low_24h": 0.03441962, - "price_change_24h": -0.00339484928332437, - "price_change_percentage_24h": -8.94031, - "market_cap_change_24h": -159438059.43702006, - "market_cap_change_percentage_24h": -8.70121, - "circulating_supply": 48419999999.3058, - "total_supply": 50000000000.0, - "max_supply": 50000000000.0, - "ath": 4.79, - "ath_change_percentage": -99.27864, - "ath_date": "2021-02-16T03:53:32.207Z", - "atl": 0.00275026, - "atl_change_percentage": 1156.38636, - "atl_date": "2022-12-29T20:41:09.113Z", - "roi": null, - "last_updated": "2024-06-13T16:12:34.640Z", - "sparkline_in_7d": { - "price": [ - 0.038223616564451425, - 0.0389693217558846, - 0.038786051667411545, - 0.04025845114335647, - 0.03962088987343039, - 0.0390729454990395, - 0.0399582266110987, - 0.04020736147074925, - 0.03922752947569789, - 0.0400635202355649, - 0.03966050697841445, - 0.040433162401632486, - 0.0408228635329673, - 0.042102300324304724, - 0.04120515686828257, - 0.040446532003057964, - 0.04067871875423336, - 0.041879965647614044, - 0.04262347477982849, - 0.04331257167660113, - 0.04300954192973745, - 0.042855496116378386, - 0.044045248950707994, - 0.04420731360584852, - 0.044237473916043574, - 0.04306069381726281, - 0.042658404638590434, - 0.042392904537382856, - 0.04293250285285664, - 0.043269270120775735, - 0.04229429319408824, - 0.04096650217380203, - 0.04141515280271333, - 0.041049013346148945, - 0.041211843819990775, - 0.04068287797218486, - 0.04055843721916176, - 0.04084028977015673, - 0.041392961926613514, - 0.04046663654950788, - 0.041206239291168074, - 0.04154895396641589, - 0.041133027640642895, - 0.041491497284295374, - 0.041699712600676904, - 0.041360504852611765, - 0.041056291709724115, - 0.04088313002351107, - 0.03994455044015155, - 0.039436554293855286, - 0.03836121386227321, - 0.03894143519097672, - 0.03967149028977563, - 0.03860058420021612, - 0.03999157666438857, - 0.039105094736582934, - 0.03917286907910623, - 0.039089498462571794, - 0.03857144711591272, - 0.0380083998387952, - 0.03772521046933599, - 0.03788286328357851, - 0.03882449065559061, - 0.03790877466412769, - 0.03857083327573004, - 0.038799697433614264, - 0.03786508987172403, - 0.038656839105507344, - 0.03909559911585041, - 0.03899672483664045, - 0.03927871923552777, - 0.03942708423349283, - 0.04007844333096588, - 0.03947267530090606, - 0.03857682802986208, - 0.03901151344127481, - 0.0388010202231541, - 0.038546566395334596, - 0.03809092262944024, - 0.038473223253061205, - 0.03924871151428442, - 0.03849760459920116, - 0.038406035918891454, - 0.03904556677946738, - 0.03956203121056382, - 0.03914612518467901, - 0.03977305180113773, - 0.0394034009012552, - 0.03961694020648393, - 0.039654186141392274, - 0.03961628027006841, - 0.03862140645363155, - 0.037851635137567945, - 0.03784005605376702, - 0.03788850936729696, - 0.03822705879723355, - 0.03913968916106818, - 0.03864924580159155, - 0.03753964514028716, - 0.037952567246825955, - 0.039045818049013664, - 0.03987593054358383, - 0.04002531071631278, - 0.03985974209506989, - 0.03908629206978647, - 0.038718796313930416, - 0.03870957264725071, - 0.038726104666592896, - 0.03862501138853473, - 0.038691746169390265, - 0.037632424303548045, - 0.036635067298470006, - 0.03654535248611344, - 0.03560111380044206, - 0.03558068555352186, - 0.03584559168380345, - 0.03573029146353464, - 0.03590080611279966, - 0.03542017759868717, - 0.03545211336721581, - 0.03589369365897829, - 0.03548970203976452, - 0.0349163438778708, - 0.03567081736611924, - 0.034640891347017484, - 0.0339708750680474, - 0.03488940209013929, - 0.035408263124053596, - 0.0349958423516122, - 0.03556777889061374, - 0.03533991985162296, - 0.03473559397826452, - 0.035002054711815965, - 0.03471505519860251, - 0.034361060352507904, - 0.03531557134296749, - 0.035255774181287475, - 0.03526656524892071, - 0.035049573402375335, - 0.034873700988245986, - 0.035466601714712505, - 0.035058911277025664, - 0.035534117412123936, - 0.03601247983187023, - 0.035687645209448206, - 0.0380620090195176, - 0.03670378575701105, - 0.03771113177132406, - 0.037877195298964786, - 0.0383060251254401, - 0.03842438326133794, - 0.03696787017963947, - 0.03617151370016553, - 0.036627742626299066, - 0.03677220023223389, - 0.03743295637126456, - 0.03776419347384401, - 0.03764439334594818, - 0.03674821213536171, - 0.0360979573487646, - 0.036318448227948275, - 0.03612783531513583, - 0.03587320354553547, - 0.03571236722089329, - 0.035930946122106705, - 0.035800004149581746, - 0.03598161978155373, - 0.03591655546658121 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949316", - "id": "bitget-token", - "symbol": "bgb", - "name": "Bitget Token", - "image": "https://coin-images.coingecko.com/coins/images/11610/large/icon_colour.png?1696511504", - "current_price": 1.17, - "market_cap": 1638287928, - "market_cap_rank": 65, - "fully_diluted_valuation": 2340409654, - "total_volume": 47585851, - "high_24h": 1.19, - "low_24h": 1.16, - "price_change_24h": -0.008123673073574977, - "price_change_percentage_24h": -0.68938, - "market_cap_change_24h": -12168189.763810635, - "market_cap_change_percentage_24h": -0.73726, - "circulating_supply": 1400001000.0, - "total_supply": 2000000000.0, - "max_supply": 2000000000.0, - "ath": 1.48, - "ath_change_percentage": -21.09706, - "ath_date": "2024-06-01T03:50:55.951Z", - "atl": 0.0142795, - "atl_change_percentage": 8073.80062, - "atl_date": "2020-06-25T04:17:05.895Z", - "roi": null, - "last_updated": "2024-06-13T16:12:33.161Z", - "sparkline_in_7d": { - "price": [ - 1.1945250364489226, - 1.188420141229776, - 1.177414719504897, - 1.2267488301503093, - 1.2103363840258, - 1.2014183002460908, - 1.201114877338213, - 1.188033078267197, - 1.2045794237452678, - 1.2218114620829503, - 1.213093774331495, - 1.2200537094795947, - 1.2238144264776838, - 1.218473862268692, - 1.2232996477559337, - 1.2255181989713646, - 1.2162861250719819, - 1.2098023338181887, - 1.2108453035994426, - 1.2084924529053123, - 1.2078304578602912, - 1.2163907711503246, - 1.209794897166165, - 1.2107626474272926, - 1.1927941418204988, - 1.190209606639924, - 1.193981521655569, - 1.1853678688896292, - 1.187653679907796, - 1.1875812176148584, - 1.161151325381413, - 1.1592356238914234, - 1.1820190384116822, - 1.181874428173667, - 1.1738660328541435, - 1.1715378702694264, - 1.1645337831631948, - 1.1646623982724151, - 1.1776161294030225, - 1.1808362376494923, - 1.1877017346373262, - 1.1883284658282345, - 1.1881924297750872, - 1.1846081349563065, - 1.195358813936857, - 1.190480481485622, - 1.1803073570448408, - 1.1711395118153398, - 1.1693968788928497, - 1.171002449421863, - 1.1707043434136002, - 1.1701371337422124, - 1.1664387750842433, - 1.16417116710241, - 1.1638455864870914, - 1.159335499663593, - 1.1577411502467094, - 1.1615960839962332, - 1.159411344588674, - 1.1740926918461079, - 1.1796957697484582, - 1.174616474082683, - 1.1757958303008436, - 1.1776083124196473, - 1.175166091648991, - 1.1771579689820282, - 1.179371505296044, - 1.1848638579495752, - 1.1891656506685915, - 1.1894807881665115, - 1.1883593638381453, - 1.1855429004440843, - 1.1941210881395259, - 1.193248586198838, - 1.1925773609038397, - 1.1932700564836176, - 1.1892063649352675, - 1.1933161485762047, - 1.191339805644072, - 1.1923095348737236, - 1.1905343895679188, - 1.1891803970342822, - 1.1866129179831792, - 1.186776872707682, - 1.194713180513839, - 1.175345116508014, - 1.1786545802536252, - 1.1791548604032662, - 1.1866959545709428, - 1.183106089961733, - 1.1787971839386453, - 1.1782803464661917, - 1.1715446702310628, - 1.1647849685600877, - 1.1691074827065846, - 1.1817879509656153, - 1.1758940816474248, - 1.1714267449982008, - 1.1712610154203935, - 1.1611096180537699, - 1.1665242519344226, - 1.1712829871451544, - 1.1711819100575558, - 1.1687175833342256, - 1.176702433893228, - 1.1737998070926607, - 1.1749990674808495, - 1.1686592619026739, - 1.1787588626644705, - 1.1646144277985444, - 1.1737978392926691, - 1.175940250880492, - 1.1700049401117545, - 1.1693558620875169, - 1.1606789412666048, - 1.1640035773568953, - 1.1686753891099984, - 1.1734823214587373, - 1.1695205722149071, - 1.1646598990022485, - 1.1657085239134615, - 1.1576544766264247, - 1.1521288979808446, - 1.1487507165241906, - 1.1406842193207387, - 1.1557696720835466, - 1.158190413470601, - 1.152117924609653, - 1.1516051754051102, - 1.1533159223286147, - 1.1535944012045374, - 1.1452300032987386, - 1.1534569668634418, - 1.152497648927585, - 1.1594966699586893, - 1.163669678673855, - 1.1581309037017458, - 1.1587700762459985, - 1.1584885364822735, - 1.1606062661822976, - 1.1665564581876386, - 1.171855786378254, - 1.170249247295237, - 1.1680209320927881, - 1.1873206243878798, - 1.180807999271892, - 1.182792594962177, - 1.17924160899507, - 1.1789662855903997, - 1.180950843454538, - 1.1717151884502033, - 1.1716288982772503, - 1.1757979696571172, - 1.1765676389535722, - 1.1775705793561158, - 1.1775853022292182, - 1.1819055990280576, - 1.1815515629906896, - 1.1807290925878333, - 1.1824592160268281, - 1.168828905972965, - 1.1652752233461234, - 1.1748170016307011, - 1.1733927511139577, - 1.171232268862224, - 1.1669302688361116, - 1.1744655879236223 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949317", - "id": "mantle-staked-ether", - "symbol": "meth", - "name": "Mantle Staked Ether", - "image": "https://coin-images.coingecko.com/coins/images/33345/large/symbol_transparent_bg.png?1701697066", - "current_price": 3564.58, - "market_cap": 1615703106, - "market_cap_rank": 66, - "fully_diluted_valuation": 1615703106, - "total_volume": 10130425, - "high_24h": 3750.33, - "low_24h": 3551.63, - "price_change_24h": -185.74835711404012, - "price_change_percentage_24h": -4.95285, - "market_cap_change_24h": -91378124.23993754, - "market_cap_change_percentage_24h": -5.35289, - "circulating_supply": 454192.186171356, - "total_supply": 454192.186171356, - "max_supply": null, - "ath": 4729.53, - "ath_change_percentage": -24.90514, - "ath_date": "2024-03-27T05:26:27.333Z", - "atl": 2142.02, - "atl_change_percentage": 65.80789, - "atl_date": "2023-12-18T10:41:32.686Z", - "roi": null, - "last_updated": "2024-06-13T16:11:50.624Z", - "sparkline_in_7d": { - "price": [ - 3964.817381574389, - 3968.184443688777, - 3952.5145571876164, - 3958.0428876496335, - 3962.8318792611503, - 3934.9782113402457, - 3956.719786626981, - 3943.2061514226975, - 3896.907304775177, - 3917.931132013941, - 3912.3191657852335, - 3922.2909007280423, - 3929.3128639910906, - 3917.071751337866, - 3922.4536388929528, - 3918.711035286032, - 3927.0266348307014, - 3931.0581142148317, - 3940.1740840557377, - 3930.501148943283, - 3930.255808448607, - 3923.7436664776174, - 3929.4729232491695, - 3925.427344321668, - 3959.549666723877, - 3921.151229863019, - 3929.289654961189, - 3937.5776266747916, - 3909.9950140972765, - 3893.5203663582965, - 3816.793938658551, - 3788.9955460517067, - 3798.304760945106, - 3806.7512917738222, - 3807.376666903311, - 3809.6240684513764, - 3792.1726759786006, - 3805.1337743754334, - 3807.2003795922683, - 3805.834122405371, - 3802.4523211402593, - 3796.6934137945095, - 3800.595045829143, - 3805.2032980507306, - 3821.9124186655185, - 3814.263513369991, - 3808.1708827466905, - 3809.146896707296, - 3788.914961848793, - 3792.090628599866, - 3801.5245644495603, - 3810.210590236241, - 3812.525620938318, - 3801.7222975287536, - 3798.211104025885, - 3806.9427150905735, - 3803.1878205849775, - 3788.42302435101, - 3795.038531854965, - 3794.8288141659955, - 3795.332530494529, - 3795.9780330681597, - 3802.6243698400835, - 3789.199296185398, - 3785.834257485994, - 3787.972217419998, - 3798.387230712361, - 3807.556994660184, - 3803.02304607951, - 3803.9734844819277, - 3803.6388001097926, - 3804.9564305112053, - 3808.4176497684266, - 3818.343250352245, - 3805.153226616086, - 3806.027390128801, - 3805.6401445357583, - 3811.6335189361253, - 3807.898428332062, - 3821.0893701753103, - 3816.156097225583, - 3821.1182199051054, - 3824.9648388094897, - 3823.778838568459, - 3818.475170643147, - 3820.7733784961874, - 3809.1440960688137, - 3805.390920789007, - 3797.4815562303743, - 3800.685335035803, - 3797.5913884086067, - 3786.2379744692794, - 3781.5672810011847, - 3784.3497054925865, - 3790.730466331433, - 3791.7017555072334, - 3784.6233486929423, - 3781.7336720879, - 3786.139039297171, - 3796.436163777504, - 3818.1702079306883, - 3808.405075496601, - 3807.303385900142, - 3799.1484594048093, - 3787.2808580008136, - 3780.259624515894, - 3770.7536694811315, - 3790.901087489971, - 3783.1523145507294, - 3779.8623264535518, - 3725.9264280439747, - 3722.1533598275123, - 3707.2962978740816, - 3673.315140235688, - 3672.914032463407, - 3654.38699937365, - 3639.826329264244, - 3637.4562478246744, - 3614.3619961364125, - 3634.524429031419, - 3631.590122000642, - 3643.9462560911766, - 3633.7080632435877, - 3629.0766177898863, - 3589.617648178742, - 3557.3716318203233, - 3584.937172366404, - 3614.4044936704995, - 3615.0169532213727, - 3616.874329401403, - 3627.7657966236366, - 3631.165740808057, - 3629.1500734812753, - 3628.4296903010195, - 3616.770729381986, - 3636.4048837261357, - 3634.9190156102313, - 3641.1499950933535, - 3638.442638871349, - 3640.828354883325, - 3650.0770431232186, - 3644.7852226322066, - 3672.734283455164, - 3660.055725082209, - 3662.135657007267, - 3767.2530941793593, - 3753.132634512063, - 3766.54524069792, - 3752.029008623069, - 3742.0338842961287, - 3719.107754489685, - 3707.9132608641253, - 3644.5256287852726, - 3682.7782903493703, - 3687.6543414448843, - 3688.95639858194, - 3679.1825871085803, - 3672.3282174420665, - 3650.555254274424, - 3628.3319048275503, - 3625.8012634242095, - 3632.913093390279, - 3631.824192129452, - 3617.179340393924, - 3635.939107783458, - 3628.372868389604, - 3617.884661966746, - 3640.3785081820256 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949318", - "id": "thorchain", - "symbol": "rune", - "name": "THORChain", - "image": "https://coin-images.coingecko.com/coins/images/6595/large/Rune200x200.png?1696506946", - "current_price": 4.74, - "market_cap": 1591086262, - "market_cap_rank": 67, - "fully_diluted_valuation": 1959178871, - "total_volume": 337641201, - "high_24h": 5.4, - "low_24h": 4.74, - "price_change_24h": -0.6552307521734706, - "price_change_percentage_24h": -12.14248, - "market_cap_change_24h": -221110726.744879, - "market_cap_change_percentage_24h": -12.20125, - "circulating_supply": 335375106.0, - "total_supply": 412963041.0, - "max_supply": 500000000.0, - "ath": 20.87, - "ath_change_percentage": -77.17491, - "ath_date": "2021-05-19T00:30:09.436Z", - "atl": 0.00851264, - "atl_change_percentage": 55852.58746, - "atl_date": "2019-09-28T00:00:00.000Z", - "roi": { - "times": 123.76197737764505, - "currency": "usd", - "percentage": 12376.197737764505 - }, - "last_updated": "2024-06-13T16:12:17.592Z", - "sparkline_in_7d": { - "price": [ - 6.1248058981549285, - 6.10184282990059, - 6.114203276881977, - 6.158491733863153, - 6.1636122263007636, - 6.123818627777379, - 6.130239913609304, - 6.1191728690989535, - 6.030225947940269, - 6.043612294880607, - 6.0147768519274, - 6.026987470284308, - 6.015682735322937, - 6.014677001683282, - 6.000320074414618, - 5.9912969935332825, - 6.007519193996666, - 6.06969029288798, - 6.091867333358699, - 6.114527245652761, - 6.123621182563866, - 6.163084391261966, - 6.183901706092315, - 6.214612378618977, - 6.270567230110332, - 6.211770706932184, - 6.27058707234163, - 6.268407158474985, - 6.221309471015497, - 6.166758344180061, - 6.0326835296748325, - 5.572400989021483, - 5.617491620596902, - 5.596335157688462, - 5.5857431500743555, - 5.597387156084849, - 5.556780264031162, - 5.52101728236243, - 5.545134114304259, - 5.506560406909693, - 5.502263436145746, - 5.484313442425328, - 5.4869473746146715, - 5.544530499302256, - 5.618784199312187, - 5.552067778530292, - 5.546336156209987, - 5.519011534703658, - 5.356945067429258, - 5.426837836027129, - 5.408363325239249, - 5.440318227235109, - 5.415280783658006, - 5.382062927619248, - 5.380618484689869, - 5.372287951561291, - 5.377361424944613, - 5.360884237472311, - 5.358964940159272, - 5.35291751160305, - 5.364186115741735, - 5.37772572977005, - 5.377144470365214, - 5.316842050080929, - 5.318900915703416, - 5.317498066451975, - 5.319679579420935, - 5.341196531406019, - 5.279799476347551, - 5.307833098513192, - 5.313349367060203, - 5.29949850948104, - 5.288756284260228, - 5.323948495085206, - 5.307225910557885, - 5.3306456447838215, - 5.318507763483021, - 5.341580886474776, - 5.347483534155112, - 5.372293296646649, - 5.3703271685829455, - 5.356953310854068, - 5.33043159973252, - 5.322929709580188, - 5.336124644199384, - 5.286517530795288, - 5.305930041601989, - 5.3071442097091355, - 5.280758884602626, - 5.291936292064363, - 5.261804577392213, - 5.215075713550214, - 5.172606416149183, - 5.223461285539957, - 5.24997266094674, - 5.236400598484809, - 5.234991927702908, - 5.1825324290145565, - 5.221246387844958, - 5.234750536704727, - 5.306253034878241, - 5.300920148207741, - 5.296638293763777, - 5.271553372039514, - 5.219963922937787, - 5.213825598454091, - 5.201394763205968, - 5.211413466873252, - 5.214976975703426, - 5.194806116783875, - 5.16930649518547, - 5.122136918594072, - 5.131204303500392, - 5.095563522781123, - 5.086289038884073, - 5.032809797278841, - 4.999927854361696, - 5.04848907016497, - 5.00317575822172, - 5.046597114519429, - 5.021180936946054, - 4.972600912890407, - 4.963864599087729, - 4.968398411431316, - 4.87096141987118, - 4.841170760727271, - 4.8577898906070915, - 4.933638712331797, - 4.962941292064293, - 4.929707537407353, - 4.898236549115069, - 4.906977480534606, - 4.895690351282922, - 4.854781685918953, - 4.83372248359364, - 4.8940610987899795, - 4.9119289947963605, - 4.914528833754814, - 4.887479491827324, - 4.913644619727201, - 4.928134465121863, - 4.919893792982922, - 4.965441326895117, - 4.974041167609875, - 4.950847382568051, - 5.158626613757946, - 5.206950314350439, - 5.23143911504795, - 5.378064699572828, - 5.308485487537422, - 5.3595206532774355, - 5.1902675139526835, - 5.0328823944488015, - 5.13141999488761, - 5.151368919763352, - 5.128168242340984, - 5.066473633115886, - 5.094153856238297, - 5.020590283512424, - 4.9356257563066075, - 4.915807216385054, - 4.932308948733704, - 4.891193273376145, - 4.84431883022198, - 4.918651436863987, - 4.922176074511518, - 4.9058714043068825, - 4.9152155750291575 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949319", - "id": "celestia", - "symbol": "tia", - "name": "Celestia", - "image": "https://coin-images.coingecko.com/coins/images/31967/large/tia.jpg?1696530772", - "current_price": 8.0, - "market_cap": 1523073444, - "market_cap_rank": 68, - "fully_diluted_valuation": 8387744819, - "total_volume": 114895100, - "high_24h": 9.02, - "low_24h": 7.97, - "price_change_24h": -0.8917792333910892, - "price_change_percentage_24h": -10.02391, - "market_cap_change_24h": -155410153.16107202, - "market_cap_change_percentage_24h": -9.25896, - "circulating_supply": 190577774.325166, - "total_supply": 1049534246.57517, - "max_supply": null, - "ath": 20.85, - "ath_change_percentage": -61.7946, - "ath_date": "2024-02-10T14:30:02.495Z", - "atl": 2.08, - "atl_change_percentage": 282.34511, - "atl_date": "2023-10-31T15:14:31.951Z", - "roi": null, - "last_updated": "2024-06-13T16:12:47.127Z", - "sparkline_in_7d": { - "price": [ - 10.41764368555371, - 10.404823808487077, - 10.357448308528166, - 10.35698078731068, - 10.362387724890821, - 10.336150036175777, - 10.346830216458612, - 10.393881169420945, - 10.219339672402112, - 10.393905553582215, - 10.367210225896066, - 10.38003094996818, - 10.426873664631334, - 10.444473692937876, - 10.491955151255926, - 10.441805725745485, - 10.412711279298922, - 10.519084250268014, - 10.494725917881233, - 10.675835995701112, - 10.7933835098662, - 10.687011917926771, - 10.665665799068027, - 10.640509824895053, - 10.815947898478736, - 10.66576974000599, - 10.89041654760498, - 10.99733637863452, - 10.907376726002303, - 10.661907791875072, - 10.421160604925197, - 9.411085078237612, - 9.682423265546571, - 9.725403697623964, - 9.712492949308707, - 9.709479260653426, - 9.623390091048368, - 9.662166433097893, - 9.71166731777114, - 9.63328142346291, - 9.674632196488693, - 9.674227867332906, - 9.743636804087425, - 9.68688093575381, - 9.746565170213215, - 9.696272144235293, - 9.666704583125801, - 9.582543675763198, - 9.327584973735252, - 9.350271737284704, - 9.39655685195244, - 9.399179988453195, - 9.359569693655047, - 9.33638886032394, - 9.25612992613948, - 9.20010827815909, - 9.186338099340718, - 9.139495169789084, - 9.13454245717701, - 9.096704391687478, - 9.056216945609167, - 9.057675242046384, - 9.048996581330123, - 8.921610060861592, - 9.019223409190525, - 8.996261764290713, - 9.114990923101814, - 9.139534593274343, - 9.118530057947757, - 9.100718056867814, - 9.104575714474654, - 9.087015626455807, - 9.074849172859768, - 9.105286664508096, - 9.036789412325485, - 9.095051569340823, - 9.11225178033182, - 9.117244355396243, - 9.085431090985002, - 9.080131398254991, - 9.085453535044643, - 9.073297366759052, - 9.06276375509843, - 9.070471201852877, - 9.063697659883378, - 9.032950450849182, - 9.026117913183343, - 8.99523670079406, - 8.955950650055474, - 9.002378411820441, - 8.97867693278583, - 8.94977972488333, - 8.865852887665381, - 9.086156110572764, - 9.170836016684726, - 9.244676224664367, - 9.283303334920495, - 9.13130538185066, - 9.069776121926992, - 9.10776352014877, - 9.213939705053606, - 9.129340060069124, - 9.15309817240997, - 9.124777543315567, - 9.061268570268439, - 9.018847133264483, - 8.942362501157394, - 8.994758063664637, - 8.976793778044103, - 9.014076920024646, - 8.818298625795675, - 8.910663016829917, - 8.856967336341576, - 8.817402958432861, - 8.901292738949648, - 8.844945168994993, - 8.860114964287792, - 8.89734210163052, - 8.866182778577535, - 9.05958788862304, - 9.032100064259536, - 8.731335762031092, - 8.583477535184306, - 8.606327843655981, - 8.542025912390043, - 8.505752251991145, - 8.567924232380859, - 8.55112468414402, - 8.504307653332297, - 8.529314952412133, - 8.532450987762223, - 8.479311352610923, - 8.42608746290529, - 8.340703348820321, - 8.211718743703997, - 8.3643207079511, - 8.473869920165894, - 8.471766807548164, - 8.437730513179526, - 8.43183030211415, - 8.458263768472845, - 8.42090678034986, - 8.366559801429652, - 8.429439200501196, - 8.378623710501977, - 8.742061694788347, - 8.746769852366304, - 8.83790869417784, - 8.803137275235905, - 8.948811834771968, - 8.859132394606382, - 8.756722193986082, - 8.522474870876351, - 8.67850173938883, - 8.722472381325193, - 8.731115476887709, - 8.688489846567036, - 8.708342283228601, - 8.563124963303874, - 8.27786047217909, - 8.272537350187001, - 8.254570567276174, - 8.25073422408248, - 8.155446834741934, - 8.22313545915586, - 8.16727975297349, - 8.12698642159326, - 8.131528357450804 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394931a", - "id": "eos", - "symbol": "eos", - "name": "EOS", - "image": "https://coin-images.coingecko.com/coins/images/738/large/eos-eos-logo.png?1696501893", - "current_price": 0.677721, - "market_cap": 1396253879, - "market_cap_rank": 69, - "fully_diluted_valuation": null, - "total_volume": 143124663, - "high_24h": 0.709478, - "low_24h": 0.674101, - "price_change_24h": -0.0301923657732448, - "price_change_percentage_24h": -4.26498, - "market_cap_change_24h": -62460205.074067354, - "market_cap_change_percentage_24h": -4.28187, - "circulating_supply": 2060567949.4426, - "total_supply": null, - "max_supply": null, - "ath": 22.71, - "ath_change_percentage": -97.02488, - "ath_date": "2018-04-29T07:50:33.540Z", - "atl": 0.5024, - "atl_change_percentage": 34.49211, - "atl_date": "2017-10-23T00:00:00.000Z", - "roi": { - "times": -0.3154330091931035, - "currency": "usd", - "percentage": -31.543300919310354 - }, - "last_updated": "2024-06-13T16:12:41.459Z", - "sparkline_in_7d": { - "price": [ - 0.7965484737313939, - 0.7941438387678077, - 0.7946899574969648, - 0.796070679472563, - 0.7967121229104788, - 0.7875273807862317, - 0.7934552431255127, - 0.7899505373902608, - 0.7777355034240302, - 0.7845520367362194, - 0.7843114192462856, - 0.7876464462331018, - 0.784759848254108, - 0.7786657900647899, - 0.7807643364034957, - 0.7814270671836834, - 0.7875947847070542, - 0.7918768012283681, - 0.7933765104385538, - 0.7934068209917889, - 0.7910474690202238, - 0.7895514256513333, - 0.7898210162284156, - 0.7951443365193854, - 0.7972717484679178, - 0.7918176879000074, - 0.7968511195380422, - 0.7974656983020025, - 0.7956849060719792, - 0.7908641153455339, - 0.7216118033691727, - 0.7068450903411888, - 0.7153535071466474, - 0.7239467595291038, - 0.7256497988892752, - 0.7265933025396237, - 0.7245219608993091, - 0.7234314791844866, - 0.7272842733721238, - 0.7299493875910615, - 0.7296690270342233, - 0.7237992481348248, - 0.7235554549217711, - 0.7237725256864425, - 0.7214947824791798, - 0.7211327679047714, - 0.7176113346295305, - 0.7182818523717414, - 0.7048710810286606, - 0.7022602675221187, - 0.7010351518862763, - 0.7022495007222552, - 0.7029777980788153, - 0.6971509506046412, - 0.6994780221273119, - 0.6997914256300666, - 0.6989528764272471, - 0.6984208113202763, - 0.7024079317889738, - 0.7005479649108177, - 0.6999341698185783, - 0.7032103355575591, - 0.7066046311797144, - 0.7018513197863445, - 0.7048963144443591, - 0.7029024289630497, - 0.7035890179748324, - 0.7052225051065704, - 0.7037210080175335, - 0.7078368791723799, - 0.7072520874865866, - 0.7078164941611229, - 0.7070522163849452, - 0.7100636178118801, - 0.7072344694421949, - 0.708742623595217, - 0.7086908163400512, - 0.7095223732065952, - 0.7082442660745214, - 0.7113523755233868, - 0.7110240452446455, - 0.7092090111519566, - 0.708901190999446, - 0.7096372369492174, - 0.7088042292076279, - 0.7072825950022671, - 0.7085396000770894, - 0.7088840883611223, - 0.7068419434492254, - 0.7068413921602162, - 0.705737864985117, - 0.6989502394589262, - 0.7009018682634566, - 0.707208724593343, - 0.7123741242039553, - 0.7107853740064981, - 0.7092533794033764, - 0.7041094333197763, - 0.7052324709192844, - 0.7103652201912737, - 0.7132406477924736, - 0.7107235979620427, - 0.7107938320488533, - 0.7093224519573206, - 0.7057829477072683, - 0.7074230722359853, - 0.7038029034185137, - 0.7066706623357992, - 0.7059343081225073, - 0.7043227343374732, - 0.6957007770528605, - 0.6945260186245783, - 0.6940076026629117, - 0.6896718286224486, - 0.6915699039611075, - 0.6905954466428366, - 0.6912514184049978, - 0.6947433477698066, - 0.6936944382071271, - 0.6901166841634732, - 0.6892531908820687, - 0.6836963082544477, - 0.6818291145820897, - 0.683075886744826, - 0.6794276838844765, - 0.675364108513907, - 0.677528348871727, - 0.6843891497450275, - 0.6829321652815432, - 0.684186254734807, - 0.6842979340172587, - 0.6842669258804416, - 0.6837226349387305, - 0.68097588505104, - 0.6806149808623597, - 0.6861634088749301, - 0.6855769109099262, - 0.6852979572698318, - 0.6851119669121426, - 0.687752056056111, - 0.6900814394930334, - 0.6890195286985294, - 0.6988291922322336, - 0.6971428805624471, - 0.6932303417645173, - 0.7155432986627362, - 0.7103559031895492, - 0.7135427411056464, - 0.7083219566540193, - 0.7054919846536677, - 0.7004836119467143, - 0.7048703464967071, - 0.691677452017191, - 0.7000947613364764, - 0.7003931482987488, - 0.7014077281290199, - 0.7004540657780398, - 0.7023040737245992, - 0.6963237283881714, - 0.6904368691868441, - 0.6925536059964277, - 0.6933181484684273, - 0.6880622083529399, - 0.6865372305226792, - 0.6895890978673527, - 0.6884023328533436, - 0.6879314666551293, - 0.6897989849418771 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394931b", - "id": "whitebit", - "symbol": "wbt", - "name": "WhiteBIT Coin", - "image": "https://coin-images.coingecko.com/coins/images/27045/large/wbt_token.png?1696526096", - "current_price": 9.62, - "market_cap": 1386558317, - "market_cap_rank": 70, - "fully_diluted_valuation": 3380952665, - "total_volume": 7166966, - "high_24h": 9.82, - "low_24h": 9.61, - "price_change_24h": -0.18915295584636027, - "price_change_percentage_24h": -1.92814, - "market_cap_change_24h": -27731811.389120817, - "market_cap_change_percentage_24h": -1.96083, - "circulating_supply": 144118517.10815412, - "total_supply": 351415356.0, - "max_supply": 400000000.0, - "ath": 14.64, - "ath_change_percentage": -34.33298, - "ath_date": "2022-10-28T12:32:18.119Z", - "atl": 3.06, - "atl_change_percentage": 214.09458, - "atl_date": "2023-02-13T19:01:21.899Z", - "roi": null, - "last_updated": "2024-06-13T16:12:00.210Z", - "sparkline_in_7d": { - "price": [ - 9.901921576451047, - 9.87446572927517, - 9.854586143952426, - 9.88021780293002, - 9.84541186531157, - 9.837234122105901, - 9.838251246061565, - 9.84829168918533, - 9.835063052818935, - 9.876121798904235, - 9.859661601673414, - 9.878902056419646, - 9.845371435449966, - 9.834320969750731, - 9.860119691652555, - 9.844341551579893, - 9.86461204248279, - 9.861405597964573, - 9.862377521946385, - 9.8682770814902, - 9.88047074643132, - 9.870357586199779, - 9.946121077246541, - 9.861603781268647, - 9.865939046600326, - 9.84791966371072, - 9.855507077395247, - 9.88183979358688, - 9.86690027155139, - 9.894109539553767, - 9.86090732940083, - 9.868863493217983, - 9.880680938437365, - 9.868770206869975, - 9.856466134613243, - 9.852738749781041, - 9.85013730427964, - 9.869343315531367, - 9.842490455642894, - 9.927054995642074, - 9.848910048609557, - 9.857067661185026, - 9.92200945479764, - 9.844525043267463, - 9.849340237861174, - 9.857465835920769, - 9.859199792621254, - 9.836847784786144, - 9.823179960886602, - 9.860817163772042, - 9.876657348679203, - 9.857594555943079, - 9.93047067338587, - 9.847244885371756, - 9.836642906167182, - 9.843229283384373, - 9.836732373542665, - 9.842911598055426, - 9.844992355407426, - 9.857295978456317, - 9.85717449844235, - 9.933370139631142, - 9.936461800275135, - 9.86306700703967, - 9.869395895933591, - 9.86652068149256, - 9.926040662393333, - 9.861855599060299, - 9.84074295693, - 9.855614381157562, - 9.861280867587944, - 9.854598482071717, - 9.872750334323557, - 9.954086321994708, - 9.894141533044374, - 9.880492524920301, - 9.868030601400342, - 9.969312680463945, - 9.897647299089751, - 9.886139449257739, - 9.897350136294738, - 9.885633423059113, - 9.86367237678505, - 9.880668631188549, - 9.870556059949752, - 9.888995381205158, - 9.924897634055162, - 9.856677947830768, - 9.852483688948322, - 9.845657618472243, - 9.841853191543823, - 9.85597366672622, - 9.889150677777625, - 9.886067997813214, - 9.869074283131933, - 9.874097151289245, - 9.871899508733717, - 9.873473195168367, - 9.900369078264486, - 9.87872186518413, - 9.895262526827612, - 9.88301970218821, - 9.911235401935144, - 9.88268307846619, - 9.916136998750481, - 9.876721660271198, - 9.88586532693268, - 9.882775161717994, - 9.891895582715224, - 9.895479205184692, - 9.883133101970069, - 9.896706000888129, - 9.871249475552228, - 9.891137597084828, - 9.875686388907248, - 9.881813523536431, - 9.872799114403376, - 9.878147836431987, - 9.856204050024674, - 9.841795277543497, - 9.846982199617289, - 9.812980459687378, - 9.789619840564656, - 9.82773427747041, - 9.789796305213262, - 9.752225271854838, - 9.764970655573693, - 9.773563662941102, - 9.76414795032672, - 9.760333152908688, - 9.772683897366642, - 9.75970063402906, - 9.759577857180139, - 9.752816066328512, - 9.751667615066806, - 9.766101258283932, - 9.765588489225358, - 9.755153401723748, - 9.763427929812742, - 9.760104097297377, - 9.855936901493633, - 9.763614141005325, - 9.799463029213936, - 9.777883897104248, - 9.787381120368265, - 9.82220765925027, - 9.804458312313276, - 9.813226260418274, - 9.810061905545039, - 9.80771367629478, - 9.789712298381906, - 9.799588966752989, - 9.746937599440212, - 9.74398722088832, - 9.76248691526891, - 9.757041914717835, - 9.74920345167821, - 9.77317155727084, - 9.741900394695858, - 9.751612311675222, - 9.73053013661608, - 9.73504000800042, - 9.740909197642463, - 9.727038229486425, - 9.72661884866481, - 9.734051606570578, - 9.697612854264372, - 9.730937621840084 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394931c", - "id": "coredaoorg", - "symbol": "core", - "name": "Core", - "image": "https://coin-images.coingecko.com/coins/images/28938/large/file_589.jpg?1701868471", - "current_price": 1.53, - "market_cap": 1364298184, - "market_cap_rank": 71, - "fully_diluted_valuation": 3208085393, - "total_volume": 66551122, - "high_24h": 1.68, - "low_24h": 1.52, - "price_change_24h": -0.15342946048644768, - "price_change_percentage_24h": -9.12679, - "market_cap_change_24h": -138178647.71649098, - "market_cap_change_percentage_24h": -9.19672, - "circulating_supply": 893064190.887375, - "total_supply": 2100000000.0, - "max_supply": 2100000000.0, - "ath": 6.14, - "ath_change_percentage": -75.27301, - "ath_date": "2023-02-08T12:55:39.828Z", - "atl": 0.334237, - "atl_change_percentage": 354.50824, - "atl_date": "2023-11-03T01:20:55.441Z", - "roi": null, - "last_updated": "2024-06-13T16:12:10.718Z", - "sparkline_in_7d": { - "price": [ - 1.9427245675879519, - 1.938221772448228, - 1.9442582244818485, - 1.9554919788592837, - 1.9508815912919617, - 1.943174928223079, - 1.9397253951991742, - 1.9425216000103729, - 1.935576423640343, - 1.9491746299668398, - 1.951079041880557, - 1.9584502216241928, - 1.9570051341764403, - 2.0298447851839727, - 2.044656414501795, - 2.0160352405315227, - 2.0101660931933405, - 1.9760349917531002, - 1.9853669358921768, - 1.9885384175285763, - 1.9817499885948204, - 1.9838441831670859, - 1.9743987595765653, - 1.966177353990443, - 1.9758876691999239, - 1.9335114867059804, - 1.9620727426505904, - 1.969967316968074, - 1.9689564775261514, - 1.940078165152649, - 1.9394566568005804, - 1.6977629031236414, - 1.7281709628034896, - 1.751865715434476, - 1.765579252493235, - 1.7778518953548037, - 1.7707335011902567, - 1.7623342101826796, - 1.780354861950145, - 1.76934825806684, - 1.765090113260492, - 1.7511490774344713, - 1.7502890261040804, - 1.7471987355907836, - 1.754866367015529, - 1.7449874500453628, - 1.7416468411885664, - 1.7218146982179297, - 1.6949482584172062, - 1.6945249370297362, - 1.6989460211009377, - 1.7048589784889887, - 1.6843122307280252, - 1.7115163012263321, - 1.6955714500965258, - 1.706814772880301, - 1.6908886820472413, - 1.684703786771045, - 1.6908672238497475, - 1.6923485418516326, - 1.7042458597108696, - 1.7216749056181313, - 1.7298933677188615, - 1.7160721658878706, - 1.7101429716564205, - 1.7109103122896776, - 1.7121787755839253, - 1.71887365004722, - 1.7129262256064228, - 1.7202893625550222, - 1.7097330132819422, - 1.702860802352014, - 1.711501194929624, - 1.7318587048893952, - 1.707764759857496, - 1.7164065362954555, - 1.7169871063316469, - 1.7097044903753473, - 1.710801683061174, - 1.7137706608073393, - 1.7113872035496274, - 1.712606619057605, - 1.7152234073791333, - 1.722355684469102, - 1.7159368778481308, - 1.7117729485895998, - 1.7031453080761014, - 1.6855330181166133, - 1.6776721495329985, - 1.6920614936017624, - 1.69035636913801, - 1.67755245741126, - 1.6644285797895455, - 1.68057534383455, - 1.7023091652445181, - 1.6981550183727523, - 1.7007767920868755, - 1.6997422869054108, - 1.7010484742120788, - 1.7018676181283066, - 1.7055569960677393, - 1.6951096306371358, - 1.6857613191374299, - 1.6820346752618418, - 1.671574791901575, - 1.6794212528235593, - 1.6799994088235461, - 1.687150159812967, - 1.681286698349263, - 1.6740744465090576, - 1.6423485924664583, - 1.6413922188083623, - 1.6428636586691912, - 1.6263475650359758, - 1.6267039998838133, - 1.617282048354424, - 1.6212239618552808, - 1.6266599598512967, - 1.617433546663576, - 1.619788209738252, - 1.6074943897991136, - 1.5878284183474405, - 1.5822962456020564, - 1.581222149468837, - 1.542030246554154, - 1.5562686841633702, - 1.553292012410057, - 1.5840821782454242, - 1.5918029957849977, - 1.6120976046411697, - 1.6296536701462387, - 1.6287339744138616, - 1.6122333747309552, - 1.594453800018903, - 1.5722972019329504, - 1.6036477246183984, - 1.603701710335145, - 1.5994391443728984, - 1.6009095482088789, - 1.6204834879294414, - 1.6285478185045132, - 1.6245144969000085, - 1.6203459645694878, - 1.621448708888189, - 1.6071630595970132, - 1.6769319265934084, - 1.6620539355866386, - 1.6880204002787162, - 1.6814981353151153, - 1.6684813999665964, - 1.675385603442545, - 1.638288245430062, - 1.6141403775261076, - 1.6334943898767715, - 1.6261596230319133, - 1.6331730752549887, - 1.623696002848915, - 1.6154983332990267, - 1.6094566387850247, - 1.5776250594086585, - 1.5793747218650256, - 1.5863778204976096, - 1.5837982733249865, - 1.5703387202952015, - 1.5789744560347199, - 1.5767944644630716, - 1.5693970193511517, - 1.5718064340307651 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394931d", - "id": "pyth-network", - "symbol": "pyth", - "name": "Pyth Network", - "image": "https://coin-images.coingecko.com/coins/images/31924/large/pyth.png?1701245725", - "current_price": 0.37625, - "market_cap": 1357408702, - "market_cap_rank": 72, - "fully_diluted_valuation": 3744587139, - "total_volume": 89931293, - "high_24h": 0.418023, - "low_24h": 0.374881, - "price_change_24h": -0.0381703525981375, - "price_change_percentage_24h": -9.21053, - "market_cap_change_24h": -141977766.28231597, - "market_cap_change_percentage_24h": -9.46906, - "circulating_supply": 3624988954.74723, - "total_supply": 10000000000.0, - "max_supply": 10000000000.0, - "ath": 1.2, - "ath_change_percentage": -68.66512, - "ath_date": "2024-03-16T07:01:15.357Z", - "atl": 0.228806, - "atl_change_percentage": 63.8419, - "atl_date": "2024-01-08T03:29:54.594Z", - "roi": null, - "last_updated": "2024-06-13T16:12:20.756Z", - "sparkline_in_7d": { - "price": [ - 0.48347066117818577, - 0.4806335531331742, - 0.4741451972100623, - 0.47110802905019405, - 0.46772173420085855, - 0.4648041195420996, - 0.46612036579320626, - 0.46220273821486585, - 0.4573653179164323, - 0.46183058423101386, - 0.45993102174616257, - 0.46233236321768184, - 0.46704739675818635, - 0.47739836894356397, - 0.47299948518236257, - 0.4711599222107867, - 0.47056786342967577, - 0.4757072481193142, - 0.47298566422126304, - 0.4746736962790455, - 0.4738215647891853, - 0.47378966033256603, - 0.47224160411902155, - 0.4646514970803848, - 0.4710185725707005, - 0.46761685528551483, - 0.48164936722077406, - 0.4868231138626044, - 0.4787495000753774, - 0.4728464082975302, - 0.46155078508776737, - 0.4217012718158921, - 0.43053058305747055, - 0.4332910090866495, - 0.4384478481948557, - 0.44674587277428773, - 0.43916296246962344, - 0.4505716784604142, - 0.45565716365547193, - 0.4514487123831017, - 0.4473803265618637, - 0.44441732044751303, - 0.4441399612491538, - 0.444223279724796, - 0.44799755441527433, - 0.4430835151623238, - 0.44220192601246305, - 0.4365661008497566, - 0.4216985402529894, - 0.42206174558951987, - 0.4236769629317014, - 0.42551704266701784, - 0.42610884289696105, - 0.4206718843188205, - 0.42131322881574346, - 0.4185114477410992, - 0.4174951067325772, - 0.41624459486915455, - 0.4159108169091846, - 0.4133985751819744, - 0.41391152486947075, - 0.4245212580494722, - 0.41847347370627513, - 0.41231580032654036, - 0.41486456938613286, - 0.41743563834780223, - 0.42303698387327665, - 0.4238580390302245, - 0.42119519700828045, - 0.42123712276548253, - 0.4212510247900573, - 0.42235339097636065, - 0.4258535732921466, - 0.4297457653823003, - 0.4231362685545359, - 0.4285061578846904, - 0.43103658747811696, - 0.4287138277018183, - 0.42932547872383103, - 0.4302666804582788, - 0.43048948119155056, - 0.4257498288141369, - 0.4276177154982414, - 0.42967748113788257, - 0.428228725405475, - 0.42461740253555164, - 0.42582793716313894, - 0.4231718590936502, - 0.42111317898193135, - 0.4201475322393932, - 0.4145098998416808, - 0.4127646719293629, - 0.40732097391287814, - 0.41177084062671465, - 0.4148958137940176, - 0.4134816628823615, - 0.4127418665693493, - 0.4109264466876539, - 0.4105447017325876, - 0.4145520679438638, - 0.42101771595658094, - 0.41682645359072285, - 0.4133049605644503, - 0.4136151094196273, - 0.4076164918353391, - 0.4058900116672321, - 0.4061278417766, - 0.40630642183467197, - 0.4059546171691558, - 0.404216219607099, - 0.38966577868830177, - 0.3921723976908521, - 0.39071165358379273, - 0.38784687041544075, - 0.3896679953107959, - 0.3875556797383436, - 0.38894936618722786, - 0.3934707221941797, - 0.3916144523437409, - 0.3969597564484621, - 0.3936714987913782, - 0.3914649324218884, - 0.38681352129204244, - 0.38993648228097855, - 0.38361616009079674, - 0.3834138623590252, - 0.38581035060576996, - 0.3900694307571419, - 0.3881551238466205, - 0.38502765338208356, - 0.3869272233553056, - 0.3846476142916754, - 0.38243192365973244, - 0.3812208148811445, - 0.3750781028580829, - 0.38156838873853316, - 0.38162162220923995, - 0.38675168309857705, - 0.3854326152103221, - 0.3863915212431315, - 0.38802294017527605, - 0.390519528778239, - 0.39628301922841785, - 0.39725137431151414, - 0.39224976349622404, - 0.4092754226201767, - 0.4092605232363953, - 0.416133689711872, - 0.4126396897204278, - 0.4140174323586341, - 0.41270624635700043, - 0.40841691588690926, - 0.39942694020087466, - 0.4001958945867543, - 0.40199307286489666, - 0.40214536823170993, - 0.40002956527378825, - 0.3978614646032936, - 0.38918941509919724, - 0.38567909715194, - 0.382766317306124, - 0.38525876466382597, - 0.3824164985834964, - 0.3844693798078037, - 0.38680787640298664, - 0.38656990419515297, - 0.38593040519150734, - 0.38738516556671404 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394931e", - "id": "based-brett", - "symbol": "brett", - "name": "Brett", - "image": "https://coin-images.coingecko.com/coins/images/35529/large/1000050750.png?1709031995", - "current_price": 0.135485, - "market_cap": 1329141686, - "market_cap_rank": 73, - "fully_diluted_valuation": 1329141686, - "total_volume": 111948580, - "high_24h": 0.16798, - "low_24h": 0.134161, - "price_change_24h": -0.0324951748016267, - "price_change_percentage_24h": -19.34466, - "market_cap_change_24h": -345405534.6396284, - "market_cap_change_percentage_24h": -20.6268, - "circulating_supply": 9910205423.92663, - "total_supply": 9910205423.92663, - "max_supply": 9999998988.0, - "ath": 0.193328, - "ath_change_percentage": -30.57572, - "ath_date": "2024-06-09T12:55:51.835Z", - "atl": 0.00084753, - "atl_change_percentage": 15736.23846, - "atl_date": "2024-02-29T08:40:24.951Z", - "roi": null, - "last_updated": "2024-06-13T16:12:14.836Z", - "sparkline_in_7d": { - "price": [ - 0.14431942619669455, - 0.13954320042970383, - 0.13973844919760217, - 0.14136378155523918, - 0.1446390414042397, - 0.1364147639270914, - 0.13958206514534097, - 0.13703818544363294, - 0.13451479564485735, - 0.13913406627881894, - 0.141111245338723, - 0.13929966138384292, - 0.1399079331714193, - 0.13860146989565397, - 0.13889078395857535, - 0.14109633474725772, - 0.15017465522135331, - 0.15163747956676787, - 0.15839359394424465, - 0.16493673098192174, - 0.1705178975215293, - 0.17177129175732056, - 0.1769599960947783, - 0.17684781079368844, - 0.17869764804670724, - 0.1692150443009949, - 0.17507254538441896, - 0.18366724687836755, - 0.1799735367472417, - 0.17643770375957663, - 0.17314620723483934, - 0.1656587825418437, - 0.1706710619487729, - 0.16833303318609535, - 0.17347181352379948, - 0.17090672035632695, - 0.16956695277966624, - 0.16275358231749523, - 0.16231148725910902, - 0.16369725803879737, - 0.16405723496163596, - 0.15975989541663346, - 0.15918023870487855, - 0.15606075658991891, - 0.159076724825449, - 0.1568005595702548, - 0.1519920816363105, - 0.15430397080007405, - 0.15347533522123497, - 0.1532110591412919, - 0.15564504776353189, - 0.16162733456883666, - 0.16278271622505344, - 0.15731101163461095, - 0.1559059243694251, - 0.156932205277264, - 0.15666207183113093, - 0.1561070995727235, - 0.15398054531913952, - 0.15226909797063404, - 0.1548374995310031, - 0.15576810152170797, - 0.15730354016544626, - 0.1527424750800564, - 0.15845411834334527, - 0.15777653100601796, - 0.16268024676953322, - 0.17008130560941584, - 0.1730747348628388, - 0.17119792463949962, - 0.16789047655107633, - 0.17156898179018557, - 0.1871741604947954, - 0.19093515410217535, - 0.18826436052574952, - 0.19107742736696312, - 0.190633493918123, - 0.1893489110561709, - 0.19040603350437585, - 0.18719265938536592, - 0.1827149419394043, - 0.1790555422922405, - 0.18047272838959977, - 0.18317212081278547, - 0.18157255749512147, - 0.1792678183844302, - 0.1758423321689338, - 0.1785597340578363, - 0.1770751256030806, - 0.17803474601952068, - 0.17642339784685254, - 0.1759472049194469, - 0.16964448317348202, - 0.17389403089949335, - 0.17299874761968292, - 0.1726480723053533, - 0.17107661140242875, - 0.17151955191170024, - 0.17149257689893763, - 0.1794130309062578, - 0.1846861484073379, - 0.18223210300448955, - 0.17679938537257278, - 0.1744047913070824, - 0.1696857914733796, - 0.16668875584243212, - 0.16176088305783592, - 0.16706330694406538, - 0.16652955148667117, - 0.16843481263745985, - 0.16561302140533485, - 0.16299927096829542, - 0.16257060130024628, - 0.1602141333618771, - 0.16180714093809995, - 0.1598882526076313, - 0.15587689056108686, - 0.15799834891558662, - 0.15367304909963317, - 0.1589471034386217, - 0.15696401191146492, - 0.15699574228766602, - 0.1546799128636067, - 0.15208559743122163, - 0.14717051599616812, - 0.1472542231102385, - 0.15331516610023987, - 0.15956367273317373, - 0.15975652114621247, - 0.15746180240631297, - 0.1568042800814089, - 0.15555849077472092, - 0.15449279631132395, - 0.15285597044250365, - 0.14594792518270744, - 0.151842878360741, - 0.15701720622100426, - 0.15822841314014882, - 0.15746045331608569, - 0.1615052562258066, - 0.16446970556952506, - 0.16563255456719772, - 0.1655181354483998, - 0.1692462363380203, - 0.1656049770897264, - 0.17338483395575083, - 0.16836882453672658, - 0.17114908550519492, - 0.16905105417155655, - 0.1654068668274667, - 0.167484368481246, - 0.16063287743452392, - 0.15602382941750273, - 0.160548850350901, - 0.1627499873959082, - 0.1613790724639419, - 0.1583319731237807, - 0.15698538804802914, - 0.15697972163687368, - 0.15397951075384103, - 0.15581526374345994, - 0.151969627439298, - 0.1517567112757193, - 0.14832668029754512, - 0.15152177701137434, - 0.1490320669107489, - 0.1473357066661153, - 0.14780807406058988 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394931f", - "id": "sei-network", - "symbol": "sei", - "name": "Sei", - "image": "https://coin-images.coingecko.com/coins/images/28205/large/Sei_Logo_-_Transparent.png?1696527207", - "current_price": 0.449107, - "market_cap": 1313636561, - "market_cap_rank": 74, - "fully_diluted_valuation": 4491065165, - "total_volume": 93328082, - "high_24h": 0.490349, - "low_24h": 0.446477, - "price_change_24h": -0.03818728167393998, - "price_change_percentage_24h": -7.8366, - "market_cap_change_24h": -111648353.70279646, - "market_cap_change_percentage_24h": -7.83341, - "circulating_supply": 2925000000.0, - "total_supply": 10000000000.0, - "max_supply": null, - "ath": 1.14, - "ath_change_percentage": -60.8257, - "ath_date": "2024-03-16T02:30:23.904Z", - "atl": 0.095364, - "atl_change_percentage": 368.18266, - "atl_date": "2023-10-19T08:05:30.655Z", - "roi": null, - "last_updated": "2024-06-13T16:12:24.572Z", - "sparkline_in_7d": { - "price": [ - 0.5209940186396389, - 0.5194238001120841, - 0.5198784121972847, - 0.5241478340338723, - 0.524635506036856, - 0.5183876202521099, - 0.518699871500995, - 0.5163468741751623, - 0.505813260065601, - 0.5118155383685616, - 0.510245464593114, - 0.5123672736144359, - 0.5104938426605152, - 0.5090220552722395, - 0.5086369943974434, - 0.5075216133465543, - 0.5092397848600353, - 0.522453353317302, - 0.5222349457956926, - 0.5332480144275539, - 0.5351355680116161, - 0.536322438916538, - 0.5352025534863595, - 0.5395025084059241, - 0.548059041779993, - 0.5524826829670375, - 0.5615122177434738, - 0.559087142410315, - 0.5560712230936665, - 0.548713587453599, - 0.49997441034477064, - 0.5031107211117857, - 0.5019634148732981, - 0.5087591552940582, - 0.5056694092773926, - 0.5223997521879622, - 0.5283572322609998, - 0.5331992799378373, - 0.534847053603425, - 0.5308561238240114, - 0.5334565801264664, - 0.5360840814989234, - 0.5332235574344506, - 0.5387764287780747, - 0.5438896841836187, - 0.5405762256675525, - 0.5363378877794173, - 0.5309549230133841, - 0.5111250528155854, - 0.5096703360189098, - 0.5027657598346853, - 0.5090390130666504, - 0.5045057719729071, - 0.5008843195345474, - 0.5032207088155359, - 0.49995374832361084, - 0.4976144700769707, - 0.49467381139989824, - 0.49471819942294215, - 0.49411010078509615, - 0.4933001226474692, - 0.4947932696922367, - 0.49251900307361696, - 0.4835948957148011, - 0.4881243992049547, - 0.48532543914432624, - 0.49068869453950403, - 0.4945428967465339, - 0.4908295888169878, - 0.48978373757746396, - 0.49062551009163297, - 0.4902306340727864, - 0.49208835233581605, - 0.5043516274979274, - 0.4968639835748364, - 0.4959894618346775, - 0.490381170045888, - 0.49115620775950647, - 0.4886675454018128, - 0.4892786595426905, - 0.49148768931745324, - 0.4916345717471594, - 0.497013496960326, - 0.49849912902473703, - 0.5023987364725594, - 0.4972883136543293, - 0.4998548810801865, - 0.49778942260848413, - 0.4930132116570355, - 0.48847140954578666, - 0.4841994227029321, - 0.4819205987180505, - 0.47986387983687834, - 0.48977240831495966, - 0.4913917826861437, - 0.4913186083725502, - 0.49342746034336266, - 0.4874509869379154, - 0.4908876628735049, - 0.4902323548395749, - 0.49694073297344254, - 0.4916039830190446, - 0.4937953221774961, - 0.489370689887079, - 0.4852543996241464, - 0.48340317375651026, - 0.4818945679180197, - 0.48301331574046724, - 0.4822210837313133, - 0.47835073895241603, - 0.4645694176503992, - 0.47145888468797986, - 0.46977488464674716, - 0.46992256704289537, - 0.47290746288574304, - 0.46742770834053526, - 0.4689548938952765, - 0.47136867635390967, - 0.4719628000277155, - 0.47610321419338797, - 0.4798178209234553, - 0.47584126263781085, - 0.46443856636707226, - 0.46531186327766116, - 0.45574100199162937, - 0.45718415920606137, - 0.4593975013280528, - 0.4647530043768144, - 0.4676346596443249, - 0.46602888258948827, - 0.46407553376452215, - 0.4589482168511773, - 0.45654890087020517, - 0.45088829104256445, - 0.44849931346273897, - 0.45281633006729344, - 0.4566360338013853, - 0.45980713299338927, - 0.4548806005932503, - 0.4553957109324692, - 0.4584252348059425, - 0.4599040319368365, - 0.4625384539375161, - 0.4716765066000155, - 0.4657376058849517, - 0.4889161765867777, - 0.48251367296725095, - 0.49272774266658853, - 0.4864780080209862, - 0.48710186716600834, - 0.4862855789414712, - 0.48378348445167635, - 0.4721273346525758, - 0.476351477485036, - 0.4824645393300862, - 0.4813361425363588, - 0.48048600678261055, - 0.4852358037015842, - 0.4842844497613368, - 0.47559437149307326, - 0.47067468623580805, - 0.46601596102925336, - 0.4676983695091091, - 0.4626111544748118, - 0.46379432013786503, - 0.4636414840486132, - 0.46051711430017545, - 0.4650019716922315 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949320", - "id": "starknet", - "symbol": "strk", - "name": "Starknet", - "image": "https://coin-images.coingecko.com/coins/images/26433/large/starknet.png?1696525507", - "current_price": 0.991642, - "market_cap": 1289443229, - "market_cap_rank": 75, - "fully_diluted_valuation": 9916415310, - "total_volume": 90147828, - "high_24h": 1.1, - "low_24h": 0.983298, - "price_change_24h": -0.10774523438249684, - "price_change_percentage_24h": -9.80048, - "market_cap_change_24h": -139092010.68559408, - "market_cap_change_percentage_24h": -9.73669, - "circulating_supply": 1300311845.0, - "total_supply": 10000000000.0, - "max_supply": 10000000000.0, - "ath": 4.41, - "ath_change_percentage": -77.7314, - "ath_date": "2024-02-20T12:05:13.556Z", - "atl": 0.992188, - "atl_change_percentage": -0.9403, - "atl_date": "2024-06-13T16:00:48.553Z", - "roi": null, - "last_updated": "2024-06-13T16:12:09.938Z", - "sparkline_in_7d": { - "price": [ - 1.3115254157448064, - 1.3026262721508353, - 1.2992466602859458, - 1.302958133188266, - 1.3040013597665503, - 1.301768567689775, - 1.3036397903241947, - 1.300029344228483, - 1.2698826485810317, - 1.2912662696555066, - 1.2906112738470743, - 1.2928711334224772, - 1.2896699226263293, - 1.2997739280288414, - 1.2969413767054228, - 1.2894706337273893, - 1.2994728970061447, - 1.309920234514193, - 1.3226853741347948, - 1.3346326802729689, - 1.3200033106757492, - 1.3175804365821613, - 1.3288802796678088, - 1.322960242411629, - 1.3256672619596084, - 1.310447799925607, - 1.327508468228949, - 1.3370164113342986, - 1.3185777278812458, - 1.3058588653998413, - 1.2745701570657995, - 1.155576842445795, - 1.2026751127479776, - 1.2109874665276916, - 1.2064581739397784, - 1.2077019381783378, - 1.202476801381206, - 1.202953147159769, - 1.203661790911041, - 1.200221139598089, - 1.1995020991721395, - 1.1914640328884765, - 1.1867798197527788, - 1.185338397467137, - 1.1912621134467425, - 1.1804188588817661, - 1.1740067049649214, - 1.1703622438146135, - 1.1500096899346446, - 1.1451418030823, - 1.1440666442392589, - 1.1501140869903537, - 1.1433079617263646, - 1.1288086828595445, - 1.1316478442067757, - 1.1317886019812073, - 1.1287220293356994, - 1.1226006569025093, - 1.1266178481766547, - 1.1273034475138848, - 1.1297173384433985, - 1.130675584132203, - 1.1379435015956871, - 1.1184821695233684, - 1.12190992989703, - 1.1230505720708863, - 1.1307170691456785, - 1.135417296720043, - 1.1356804745846492, - 1.1353107616836091, - 1.1509242002054545, - 1.152099448756598, - 1.1635999548003513, - 1.1678142088723988, - 1.171883644700502, - 1.1768310002723184, - 1.1735267539453007, - 1.1879553118739024, - 1.1790182001538598, - 1.178348613009068, - 1.178863432792724, - 1.1697873703683443, - 1.1698038636400572, - 1.174284671163485, - 1.16894722891593, - 1.1698580776732121, - 1.1632163298871316, - 1.1534768679916814, - 1.143457958631012, - 1.1467963042046516, - 1.1342756856910374, - 1.1265273558389766, - 1.1200966880508325, - 1.1236348082251186, - 1.1378988824370904, - 1.1320335644861013, - 1.1256124125522786, - 1.1253631316774968, - 1.128549002437787, - 1.1397367164765386, - 1.1444169883364164, - 1.131691755878494, - 1.1318116451806044, - 1.1279034421455016, - 1.1179763698981595, - 1.1182303684915966, - 1.1194396694785649, - 1.1159013689160018, - 1.1181938664852336, - 1.1186049979255186, - 1.0959714853326683, - 1.0956996004917054, - 1.0939334622064447, - 1.0850723540342386, - 1.0856431660881571, - 1.0771772990547577, - 1.086141360019922, - 1.0886971207617662, - 1.0812059357941357, - 1.0827617503583211, - 1.078508994999099, - 1.0702201562708427, - 1.0613810485858377, - 1.06398266747813, - 1.0491480369748847, - 1.0456043907606265, - 1.0426085328003232, - 1.046306407044655, - 1.0476308635017861, - 1.0428096133468818, - 1.0457106422369633, - 1.03872824174211, - 1.0350804786854522, - 1.0227116454340837, - 1.007914494413945, - 1.0240452542613634, - 1.0376407823511324, - 1.0382285253281012, - 1.03709479636526, - 1.0365055070488838, - 1.0430548292175428, - 1.0377065889578616, - 1.0495880503515673, - 1.057405474873297, - 1.0434879121606815, - 1.0939184033567861, - 1.0840647262807077, - 1.0921761934520373, - 1.0941824736094028, - 1.0898566871041493, - 1.0866726356865795, - 1.077881781919378, - 1.05478290302956, - 1.068790256048937, - 1.0695942814377024, - 1.0712942528002458, - 1.0658747518260634, - 1.0689258011389582, - 1.0567382794007283, - 1.0305466994807317, - 1.0220264448190453, - 1.0303678039206126, - 1.0295122209092216, - 1.0172426551608853, - 1.0206541778606437, - 1.0196595150304526, - 1.0141251853022404, - 1.0196239745631501 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949321", - "id": "algorand", - "symbol": "algo", - "name": "Algorand", - "image": "https://coin-images.coingecko.com/coins/images/4380/large/download.png?1696504978", - "current_price": 0.157223, - "market_cap": 1285930327, - "market_cap_rank": 76, - "fully_diluted_valuation": 1285930327, - "total_volume": 49166508, - "high_24h": 0.169635, - "low_24h": 0.156686, - "price_change_24h": -0.01026516071906372, - "price_change_percentage_24h": -6.1289, - "market_cap_change_24h": -82092637.12194157, - "market_cap_change_percentage_24h": -6.00082, - "circulating_supply": 8181518373.11131, - "total_supply": 8181518373.11131, - "max_supply": 10000000000.0, - "ath": 3.56, - "ath_change_percentage": -95.60013, - "ath_date": "2019-06-20T14:51:19.480Z", - "atl": 0.087513, - "atl_change_percentage": 79.04234, - "atl_date": "2023-09-11T19:42:08.247Z", - "roi": { - "times": -0.9344906116229764, - "currency": "usd", - "percentage": -93.44906116229764 - }, - "last_updated": "2024-06-13T16:12:25.011Z", - "sparkline_in_7d": { - "price": [ - 0.18549656599751524, - 0.18565001639681863, - 0.18635839033745374, - 0.18672597218538178, - 0.18643913574663132, - 0.1860578951098492, - 0.18696770341188307, - 0.1869450671031119, - 0.1847782433862899, - 0.1861513625298072, - 0.18516017419155875, - 0.18589908340215316, - 0.1855206080726776, - 0.1855024862625543, - 0.18460719176887752, - 0.18431203849615374, - 0.18535674297096108, - 0.18677075853315991, - 0.1871580446066632, - 0.18787989004244895, - 0.1874867857132098, - 0.18661610467911777, - 0.18706620642520508, - 0.18809279098457687, - 0.18991895274882348, - 0.18790559999478454, - 0.1928729168573845, - 0.19237188624713514, - 0.19167345446503367, - 0.1898037987193433, - 0.18660364380415684, - 0.17335710694935072, - 0.17468598263199248, - 0.17571956119724802, - 0.1745717251488852, - 0.17533766584203506, - 0.17456893167595947, - 0.1747218409160756, - 0.17620725656194597, - 0.1760645290755304, - 0.17560665424177377, - 0.17463911778841848, - 0.1744045732765851, - 0.174733374000365, - 0.17473074429051655, - 0.1739991805154268, - 0.17329121466810912, - 0.17268441567863554, - 0.16916448698324862, - 0.16861167301016092, - 0.16863797686065796, - 0.16877177522316406, - 0.16786025979155098, - 0.16588927505831422, - 0.16538265507336086, - 0.16600260682733226, - 0.16526479973687994, - 0.16553158756873987, - 0.16580025278937974, - 0.1654310851015399, - 0.16616485400708622, - 0.16690459546479167, - 0.1683182182358521, - 0.1662435518528965, - 0.1671031078987328, - 0.1668143278392567, - 0.16790012942668134, - 0.16839163483254496, - 0.1679698326013894, - 0.1679859734154947, - 0.1681216260966038, - 0.16800404880228645, - 0.16832497049643638, - 0.1704122094782203, - 0.16916957828314008, - 0.16995580320637724, - 0.16940387948623695, - 0.17021300963476507, - 0.17022014735458246, - 0.1708830903024524, - 0.17061116457850495, - 0.17042729791720226, - 0.16998349607308455, - 0.16964136323156231, - 0.170374833201534, - 0.17022743483888064, - 0.17113731578812735, - 0.17106507934403464, - 0.1690247866230166, - 0.1690456116543833, - 0.16789051770067012, - 0.16719894230712196, - 0.16661709231447813, - 0.16909209473802633, - 0.16996902936291045, - 0.16943359709275624, - 0.16947504162060362, - 0.16862382429270914, - 0.16786726689170517, - 0.17002046373494842, - 0.17111847329968435, - 0.17113331407022345, - 0.17011852571790806, - 0.16949551506356944, - 0.16827165056607715, - 0.16748864113117953, - 0.1674146309829943, - 0.16713334857771736, - 0.16659862778305545, - 0.16697948342477392, - 0.16327162964139058, - 0.1649450452949226, - 0.1642476880285735, - 0.16326151490981142, - 0.16353905209080108, - 0.16255762147210281, - 0.16214239336407163, - 0.16252601351544546, - 0.16139786927110278, - 0.16138619617072286, - 0.16079869761445223, - 0.15913404131806166, - 0.15793236201040756, - 0.15920162720662528, - 0.15817196022700483, - 0.1577106081003857, - 0.15853623354131477, - 0.159435340026509, - 0.16001440612973314, - 0.15988805335183257, - 0.16029080389630007, - 0.15984513528225128, - 0.15901118032570835, - 0.15723597440415682, - 0.15761951553839168, - 0.16021003289026053, - 0.16036469450581503, - 0.16050071793664353, - 0.15983731834326395, - 0.16032262889857304, - 0.1609200559628044, - 0.16038988139283705, - 0.16224567102080614, - 0.16181974211264566, - 0.16079266522227106, - 0.16833129593588647, - 0.16673952829990332, - 0.16854118336462262, - 0.16702400743355011, - 0.1679203635602502, - 0.16884400075401493, - 0.16673170044173802, - 0.1641015805751308, - 0.16639460083671653, - 0.16635649051583604, - 0.16574682011292444, - 0.16595666733642125, - 0.1663637997914867, - 0.16423525174656706, - 0.1612780003394214, - 0.16165570231934692, - 0.1617208445025679, - 0.16137894680855577, - 0.16055684492806083, - 0.16092713420162175, - 0.16076718953818067, - 0.16035736742468412, - 0.16116992163501156 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949322", - "id": "aave", - "symbol": "aave", - "name": "Aave", - "image": "https://coin-images.coingecko.com/coins/images/12645/large/AAVE.png?1696512452", - "current_price": 83.87, - "market_cap": 1244841867, - "market_cap_rank": 77, - "fully_diluted_valuation": 1341417351, - "total_volume": 144253514, - "high_24h": 92.96, - "low_24h": 83.55, - "price_change_24h": -9.093673377091477, - "price_change_percentage_24h": -9.78188, - "market_cap_change_24h": -132051525.82798672, - "market_cap_change_percentage_24h": -9.59054, - "circulating_supply": 14848078.302686607, - "total_supply": 16000000.0, - "max_supply": 16000000.0, - "ath": 661.69, - "ath_change_percentage": -87.37331, - "ath_date": "2021-05-18T21:19:59.514Z", - "atl": 26.02, - "atl_change_percentage": 221.05865, - "atl_date": "2020-11-05T09:20:11.928Z", - "roi": null, - "last_updated": "2024-06-13T16:12:21.146Z", - "sparkline_in_7d": { - "price": [ - 102.76751427117769, - 103.44460654892823, - 103.37043025324209, - 103.38688816487527, - 103.67490613159792, - 102.82848825884945, - 103.1242389781523, - 103.0104579748686, - 101.56063257464956, - 102.60859082812122, - 101.88941753495432, - 102.76259593084697, - 102.18222817908857, - 102.47838591706645, - 102.51372796828473, - 102.09498175939083, - 102.29711283171817, - 102.8723086035644, - 103.15756152095061, - 103.68993035326176, - 103.09020499011395, - 103.06312114745431, - 102.57655448048534, - 102.35700610005166, - 103.22916854725683, - 102.38955755843288, - 103.96714871779983, - 104.48260180584211, - 103.84463322785552, - 103.07858742368849, - 95.37058535041442, - 94.37938764923094, - 95.8977300877202, - 97.56445840495118, - 98.17395410424525, - 98.33456922649637, - 97.02763447977928, - 97.170567674139, - 97.44973813952052, - 97.57563373766598, - 97.5382356432625, - 96.9797036694853, - 96.78335568644228, - 96.81522759519699, - 97.12654376090039, - 96.25869382927861, - 95.8215042131016, - 95.80905819435074, - 93.96193355786342, - 93.66991252541072, - 93.78863468230207, - 94.03776041186919, - 93.83361133824063, - 92.95129943811068, - 93.51314332627517, - 93.32989542133862, - 92.79919591339693, - 92.52461278792315, - 92.81367547558226, - 92.86747705474531, - 92.86182318387176, - 93.06279459365224, - 93.22322757015057, - 92.43145342028481, - 92.59966679178144, - 92.21652069717673, - 93.0293025038833, - 93.22504916785942, - 93.08544178165197, - 93.19458898177344, - 93.44100229222227, - 93.17099652381982, - 93.19358962233564, - 93.61024949379993, - 93.4037489561764, - 93.61658856585856, - 93.51977946839115, - 93.74176060408539, - 93.54151254807786, - 94.02113967655538, - 93.88167650384318, - 93.67948058994465, - 93.53324740545382, - 93.63008662194099, - 93.24248949908869, - 93.06803236684124, - 93.35115831454922, - 93.05284204311717, - 92.7328088558936, - 92.8558708347171, - 92.56083721904356, - 91.83645062834272, - 91.26017592226529, - 91.81948663178487, - 92.75971490620881, - 92.39160542179631, - 92.1013406917686, - 91.29582910984821, - 91.53576660199546, - 92.44992296090889, - 93.25028144294495, - 92.36318977544434, - 92.74970624873765, - 92.35070752673931, - 91.40610980144787, - 91.368142267648, - 90.88066834459049, - 91.2531667463439, - 91.01724524848791, - 90.48143439002239, - 89.56607316198416, - 89.49171020424112, - 89.54035409202758, - 89.02270929856049, - 89.36830562950225, - 88.59422109127776, - 88.72201834430372, - 88.71120543342428, - 88.52221737355225, - 88.12568027128601, - 87.93443801482316, - 87.09894642959429, - 86.95178147780878, - 86.93112303279358, - 86.83881173227738, - 86.05112375369951, - 85.80479151238194, - 86.44886651920088, - 86.85173051751622, - 87.39675003080671, - 87.8312267369091, - 87.82757779748012, - 87.82646657083673, - 87.98380798060296, - 87.4789495587534, - 88.19329986689841, - 88.42286854577272, - 88.11331082446213, - 87.78866868976321, - 88.03404006579783, - 88.27121576554859, - 88.15394018924825, - 88.96478576468925, - 89.30576667709535, - 89.07549716377757, - 93.55959110987028, - 92.75385511286642, - 92.95340356933755, - 92.72699165039448, - 91.1711997971871, - 90.34047147200334, - 90.45874920516293, - 88.90796316058373, - 90.11537159031562, - 89.96146409869507, - 89.88631516668507, - 89.57397757038028, - 89.71326719158583, - 88.7615519899248, - 87.10484297140304, - 87.86076673500513, - 87.91453260481482, - 87.1312908815757, - 86.80429975673894, - 87.44251889343404, - 86.83431594791797, - 86.40535111155333, - 85.84474632466082 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949323", - "id": "jupiter-exchange-solana", - "symbol": "jup", - "name": "Jupiter", - "image": "https://coin-images.coingecko.com/coins/images/34188/large/jup.png?1704266489", - "current_price": 0.913723, - "market_cap": 1225355871, - "market_cap_rank": 78, - "fully_diluted_valuation": 9076710152, - "total_volume": 138952912, - "high_24h": 1.001, - "low_24h": 0.906447, - "price_change_24h": -0.07764099285381876, - "price_change_percentage_24h": -7.83173, - "market_cap_change_24h": -114009529.48323894, - "market_cap_change_percentage_24h": -8.51221, - "circulating_supply": 1350000000.0, - "total_supply": 10000000000.0, - "max_supply": 10000000000.0, - "ath": 2.0, - "ath_change_percentage": -54.44564, - "ath_date": "2024-01-31T15:02:47.304Z", - "atl": 0.457464, - "atl_change_percentage": 99.16171, - "atl_date": "2024-02-21T18:31:05.083Z", - "roi": null, - "last_updated": "2024-06-13T16:12:12.911Z", - "sparkline_in_7d": { - "price": [ - 1.1368713581026133, - 1.1342749282242528, - 1.1340769176365997, - 1.1336308072817154, - 1.134701712625798, - 1.1265624550626685, - 1.1279822145104776, - 1.1234759978384519, - 1.1084510323848578, - 1.1191562539750184, - 1.116374919674344, - 1.1202700190724384, - 1.118738161803737, - 1.1206786774821575, - 1.1214100789514903, - 1.1183687218813207, - 1.1111299751124883, - 1.120411359954998, - 1.1189386296530905, - 1.1191107904780686, - 1.1185624491424058, - 1.1185611355552763, - 1.1154702866288733, - 1.1169718560257034, - 1.1259682066921628, - 1.1062987072781014, - 1.1148525229288286, - 1.1185810662615394, - 1.111875056953813, - 1.1022627406789514, - 1.0903290905967133, - 1.007829588410925, - 1.026581270316975, - 1.0311543439399231, - 1.0300591506680785, - 1.0344607108816308, - 1.0286987367097296, - 1.0304788536460698, - 1.0408638640983265, - 1.029926035401543, - 1.0304699066061997, - 1.0240968424457921, - 1.022404132713016, - 1.0225336065425623, - 1.0272891814350662, - 1.021228345228311, - 1.022412380032939, - 1.0179920754670833, - 0.9939523540947508, - 0.9937504602351545, - 0.9953179656620147, - 0.9980403769853486, - 0.9917987518297112, - 0.9814174080310673, - 0.9880034122603684, - 0.9862267661708756, - 0.9871492262766589, - 0.9867349256243807, - 0.9852981768849527, - 0.9793837359441563, - 0.9751461189263764, - 0.9759615762987505, - 0.980294806480219, - 0.9651645533928167, - 0.9692439961455099, - 0.9691197217833514, - 0.9780523421696274, - 0.9799562051000656, - 0.9809441845856427, - 0.9853242100137014, - 0.9884421693827541, - 0.9872462329468168, - 0.9897741748900966, - 1.00485936989001, - 1.0010999470802617, - 1.0078286170207573, - 1.0089702582002447, - 1.0097583280544264, - 1.0070741636362497, - 1.0124623920975184, - 1.0170736516053698, - 1.01476870383359, - 1.0109351978615286, - 1.0113072974706845, - 1.010045643462772, - 1.0061596613422472, - 1.0091377675407818, - 1.0034093046046428, - 0.999100810903637, - 1.0034880113656626, - 0.9978734561888368, - 0.9910937091678588, - 0.9808615468114327, - 0.9870296496439417, - 0.9928099952876208, - 0.9907890924650551, - 0.9861021630200587, - 0.9796373999826447, - 0.979975182364947, - 0.9899836192220932, - 1.0058980141049232, - 0.9997847687361183, - 1.001438593256921, - 0.9966077953895768, - 0.9856215301436844, - 0.9820083634781834, - 0.9748617219703329, - 0.9714169582319282, - 0.9708392474130464, - 0.97218809692274, - 0.9497073665631388, - 0.9556315144638915, - 0.9481197849908, - 0.9393723882058426, - 0.9418175980335669, - 0.9337794715127218, - 0.9393980284970898, - 0.9449193055373116, - 0.9390679724102975, - 0.9479580532386482, - 0.9481715106387792, - 0.9443998681676333, - 0.9360644803278005, - 0.933145643811641, - 0.9209651455143749, - 0.9129047553807073, - 0.9139438765421233, - 0.923312177131962, - 0.9237579604940559, - 0.9267464632384588, - 0.9308343674450127, - 0.9274612967038537, - 0.9267872765100289, - 0.9216806073227983, - 0.9134498627289452, - 0.9266190237287603, - 0.9294878831920194, - 0.9332401792937063, - 0.9352629440189413, - 0.9368173530045334, - 0.9389983876127428, - 0.9346080993874246, - 0.9464395731764418, - 0.9466751390404758, - 0.9392827418290485, - 0.9913278153590119, - 0.986245467232499, - 0.9933038886546753, - 0.9897723319094034, - 0.9921776691452909, - 1.0011785393038646, - 0.9746943863885904, - 0.9521793914186364, - 0.9682449696735465, - 0.9666008494798439, - 0.9706326073520555, - 0.968559352496748, - 0.9677242194821811, - 0.9576582064661303, - 0.936955079773814, - 0.9313798063724842, - 0.9394570244490843, - 0.9413693238099509, - 0.9313752805053264, - 0.9353884888758964, - 0.934481390553208, - 0.9325430040381177, - 0.9354899750707614 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949324", - "id": "quant-network", - "symbol": "qnt", - "name": "Quant", - "image": "https://coin-images.coingecko.com/coins/images/3370/large/5ZOu7brX_400x400.jpg?1696504070", - "current_price": 83.38, - "market_cap": 1212328413, - "market_cap_rank": 79, - "fully_diluted_valuation": 1218022956, - "total_volume": 19926647, - "high_24h": 88.25, - "low_24h": 82.97, - "price_change_24h": -4.370670173198349, - "price_change_percentage_24h": -4.98077, - "market_cap_change_24h": -65427277.25202131, - "market_cap_change_percentage_24h": -5.12048, - "circulating_supply": 14544176.164091088, - "total_supply": 14612493.0, - "max_supply": 14612493.0, - "ath": 427.42, - "ath_change_percentage": -80.57079, - "ath_date": "2021-09-11T09:15:00.668Z", - "atl": 0.215773, - "atl_change_percentage": 38387.05589, - "atl_date": "2018-08-23T00:00:00.000Z", - "roi": { - "times": 9.394262220415882, - "currency": "eth", - "percentage": 939.4262220415883 - }, - "last_updated": "2024-06-13T16:12:16.596Z", - "sparkline_in_7d": { - "price": [ - 90.34062567608161, - 90.2083055726062, - 90.29628354041938, - 90.63168434746748, - 90.58798216388031, - 90.32191510986819, - 90.29464828276086, - 90.16082423935312, - 89.25263055634136, - 89.55429064501686, - 89.17490303021702, - 89.49213671640574, - 89.73261549789179, - 89.79935393804439, - 89.82030140609938, - 89.9195993888115, - 90.06065984749215, - 90.13351174638163, - 90.4436058362801, - 90.51662916391716, - 90.25669678156358, - 90.20593992299337, - 90.04816346071766, - 89.80052868099025, - 90.15818957877786, - 89.20600689963875, - 89.81290907146234, - 90.16515938226992, - 89.71705131405974, - 89.23148702180686, - 84.28155930903783, - 85.26085589216676, - 85.82214939575265, - 85.84336302130798, - 86.37235288409468, - 85.87959285193662, - 86.32241378928231, - 86.25134382259013, - 86.40922508861406, - 85.78084707418972, - 86.01445143488706, - 85.68529517394342, - 85.88791452088468, - 85.11143937446221, - 85.4717293154557, - 85.09256757574146, - 85.01157180181491, - 85.06199982079694, - 83.71774294369398, - 83.31993970839638, - 83.72538051990561, - 83.85109835742776, - 83.29700156019761, - 83.2826896760184, - 83.17814102611793, - 83.24253282899728, - 83.4700444950263, - 83.16722674247852, - 83.15252825094318, - 82.66222970420047, - 83.29870830903693, - 83.59133533645445, - 84.06964023245423, - 83.01666361922865, - 83.41370245968994, - 83.57688351946047, - 83.54936381609045, - 84.19803911911974, - 84.38425459220223, - 84.51220480564845, - 84.37646937365393, - 84.05261006833693, - 84.56561698639142, - 85.34364956671027, - 85.45653387014191, - 85.98133922059102, - 86.42438196991975, - 86.24732058084275, - 86.72051586607007, - 86.8260206775282, - 86.93378407196519, - 86.37834334174629, - 86.7770500280178, - 87.04961864173552, - 87.77295130308369, - 87.33289772640033, - 87.49989910307178, - 87.51298145378105, - 87.72115809371506, - 87.68133166518355, - 87.83749009171052, - 87.69135471674858, - 87.72314062385948, - 88.72101634151099, - 89.78687445083571, - 89.46443829106343, - 89.99041883757484, - 89.74699030680763, - 89.00194002996307, - 89.50774390399968, - 88.74348935103534, - 89.21246215345518, - 89.45353536396728, - 89.35221893127877, - 88.43030997609608, - 88.42710057763867, - 87.47562122584934, - 87.67397686393223, - 87.63206574539475, - 87.5963835132952, - 86.90094512279379, - 86.85811635062643, - 86.31860663097952, - 85.9567214241862, - 85.82224276534984, - 84.95026096743948, - 85.05014637048806, - 85.04071188138211, - 84.8940501530796, - 84.65503246085923, - 84.59309486973494, - 84.06702443269204, - 82.89305446215371, - 83.00641189470402, - 82.9511675666036, - 82.86670556308714, - 83.3006623742649, - 83.77942952195536, - 84.88418937317219, - 84.23421565818613, - 84.31578123843343, - 84.21845838041735, - 84.4604194596576, - 84.55200746692962, - 83.82447933441614, - 83.95750263488684, - 84.01925221040536, - 83.89151373683168, - 84.011311141391, - 84.43143069160942, - 84.51737326984276, - 84.56875792457623, - 85.40597148637883, - 85.5400851976897, - 84.7634053773077, - 87.7090696287498, - 86.67548313052649, - 88.1368976328765, - 87.88461473877041, - 87.34062872871411, - 86.9823642510728, - 87.6996695361029, - 86.02820366652396, - 87.31202696389299, - 87.76001354482027, - 87.94574677748051, - 87.44598315825382, - 88.03131202808548, - 87.22915450147165, - 86.58268075698243, - 86.19446705864085, - 85.80037779865934, - 85.68118652683847, - 85.19905251522414, - 84.6783859769131, - 84.34449627891058, - 84.79343971102703, - 85.0341178571483 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949325", - "id": "gala", - "symbol": "gala", - "name": "GALA", - "image": "https://coin-images.coingecko.com/coins/images/12493/large/GALA_token_image_-_200PNG.png?1709725869", - "current_price": 0.03392594, - "market_cap": 1212020269, - "market_cap_rank": 80, - "fully_diluted_valuation": 1212021498, - "total_volume": 123084470, - "high_24h": 0.03695355, - "low_24h": 0.03378895, - "price_change_24h": -0.002833577256805893, - "price_change_percentage_24h": -7.70842, - "market_cap_change_24h": -100954433.44997025, - "market_cap_change_percentage_24h": -7.68899, - "circulating_supply": 35739448379.5548, - "total_supply": 35739484620.1017, - "max_supply": null, - "ath": 0.824837, - "ath_change_percentage": -95.88933, - "ath_date": "2021-11-26T01:03:48.731Z", - "atl": 0.00013475, - "atl_change_percentage": 25062.48685, - "atl_date": "2020-12-28T08:46:48.367Z", - "roi": null, - "last_updated": "2024-06-13T16:12:22.211Z", - "sparkline_in_7d": { - "price": [ - 0.045926335836768056, - 0.0458146551417586, - 0.046291859171536255, - 0.046133498377372434, - 0.04584369827517086, - 0.04560074383281834, - 0.04583562940635141, - 0.04561335646270003, - 0.04490734291286753, - 0.04516656553989184, - 0.045189399339489816, - 0.04538553316793791, - 0.04535963908339303, - 0.04524136065542857, - 0.045135932883708284, - 0.04492202883896767, - 0.04498514325766298, - 0.045262908890279605, - 0.0451590532847157, - 0.0451181683357125, - 0.045267861230587625, - 0.045350248343977224, - 0.045141852745691095, - 0.04528576534821006, - 0.04557116147297726, - 0.04450779470732747, - 0.04479671397990438, - 0.04477670161891535, - 0.04462130542975655, - 0.044041397971066834, - 0.04367437808501679, - 0.039208843194187486, - 0.03987532784116501, - 0.04003055398202606, - 0.04012309686952835, - 0.040037684543697376, - 0.03972219982281634, - 0.0399502358604831, - 0.04005666976456386, - 0.039972698823434676, - 0.04001387154450957, - 0.03982148868552011, - 0.03985882539845581, - 0.039865688329187965, - 0.03989270837940614, - 0.0394695807533801, - 0.0393316642618542, - 0.03921282207416829, - 0.03864573518955281, - 0.03844629225193905, - 0.03857564583636829, - 0.03862027846697887, - 0.03846894159892684, - 0.037990173039048294, - 0.0379275580075753, - 0.038106325218027856, - 0.03802492176151199, - 0.037956682571418425, - 0.038062436388945756, - 0.03801014523845974, - 0.03798141198325695, - 0.03793368079740118, - 0.03822842964332901, - 0.03760187567550258, - 0.03780342081602546, - 0.03774192603551669, - 0.03792339523939215, - 0.03801206691184684, - 0.03792646873412566, - 0.038024286678428755, - 0.037933519835828135, - 0.03790834776533141, - 0.038033413725531304, - 0.03847284289277543, - 0.03806450865776895, - 0.038304726151180614, - 0.038283180316492096, - 0.038444772567918846, - 0.03849445808113516, - 0.038823247284364155, - 0.0387292628265929, - 0.03868645657219755, - 0.038881355632953044, - 0.03875989942900709, - 0.03896277327791544, - 0.03864629051581277, - 0.03865391639761981, - 0.0385546933293674, - 0.0382386849131034, - 0.038302515946169666, - 0.037989735223592974, - 0.03783547352603513, - 0.03730949310622076, - 0.0377765897603875, - 0.03784587693664415, - 0.03770010023278927, - 0.03759988790437534, - 0.03736122290358527, - 0.037094839659066556, - 0.03772363591535132, - 0.03836322588830224, - 0.038060989911554884, - 0.03798803188256205, - 0.03786120773244732, - 0.03743080423630385, - 0.0373153566866788, - 0.03720572932671619, - 0.037044802016287695, - 0.036990306752014, - 0.03691662621707479, - 0.035475380686163925, - 0.03605382444380252, - 0.036057769605455, - 0.03587420663764274, - 0.03566705438991254, - 0.035405643643628394, - 0.03527948447547994, - 0.035632050088826646, - 0.03580673671064903, - 0.036048281092971785, - 0.03565013272605099, - 0.0353352698132128, - 0.03498931528501077, - 0.03524156276840375, - 0.034614748298852374, - 0.034586053310513676, - 0.03474660730289572, - 0.03485968945412113, - 0.034670098797199435, - 0.03474648780315401, - 0.034950280916664925, - 0.03461051937823685, - 0.034435027950557195, - 0.03416734899179221, - 0.033799444706946236, - 0.03462263529206524, - 0.034631131191787255, - 0.0347520747055481, - 0.03459188799188408, - 0.03461820136197029, - 0.034972645946902504, - 0.034963056148460396, - 0.035365911337250644, - 0.035471050584031064, - 0.035119186870818414, - 0.036739619317469115, - 0.03659754157566869, - 0.03690120233953883, - 0.036743686558593544, - 0.03674084990911151, - 0.03695355133228543, - 0.0361386030832382, - 0.03537278080127642, - 0.03590524194402057, - 0.03596638127856382, - 0.036003466239399075, - 0.035836172657883164, - 0.03569948779068462, - 0.03525821091794028, - 0.03471710242058014, - 0.034728971545060786, - 0.034930302060653694, - 0.03497969479463219, - 0.03460394271665568, - 0.03481839091413551, - 0.03474578490441665, - 0.0345646242630059, - 0.034663308746731 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949326", - "id": "flare-networks", - "symbol": "flr", - "name": "Flare", - "image": "https://coin-images.coingecko.com/coins/images/28624/large/FLR-icon200x200.png?1696527609", - "current_price": 0.02726361, - "market_cap": 1163581100, - "market_cap_rank": 81, - "fully_diluted_valuation": 2785771108, - "total_volume": 10265442, - "high_24h": 0.0284991, - "low_24h": 0.02712526, - "price_change_24h": -0.001037629391090415, - "price_change_percentage_24h": -3.66637, - "market_cap_change_24h": -47297696.099025965, - "market_cap_change_percentage_24h": -3.90606, - "circulating_supply": 42674231574.06, - "total_supply": 102167903324.475, - "max_supply": null, - "ath": 0.150073, - "ath_change_percentage": -81.92782, - "ath_date": "2023-01-10T03:14:05.921Z", - "atl": 0.00827405, - "atl_change_percentage": 227.78928, - "atl_date": "2023-10-19T03:35:41.663Z", - "roi": null, - "last_updated": "2024-06-13T16:12:45.259Z", - "sparkline_in_7d": { - "price": [ - 0.03045849969308984, - 0.031680402608241835, - 0.03154994262785607, - 0.03153996233967485, - 0.031027161310703946, - 0.030951686056100772, - 0.030596274809277752, - 0.030791344821940944, - 0.030444817014716914, - 0.030151693976604547, - 0.030019354220889517, - 0.03028501071798238, - 0.030021561703473525, - 0.030223782319491414, - 0.029977230852579955, - 0.029834742773373578, - 0.03003183965399155, - 0.029918831230614343, - 0.029893740637320736, - 0.03004667256682147, - 0.029823501636823672, - 0.03012153999919481, - 0.030890046740999485, - 0.03093829394026035, - 0.030528357517930562, - 0.03005551751206149, - 0.029836848819707936, - 0.02998934038955217, - 0.029900807740172574, - 0.029710504955222577, - 0.029534464700879677, - 0.028333449172502776, - 0.027524219624430198, - 0.028072921344247298, - 0.027797516718169102, - 0.028068476628746824, - 0.028068933587356633, - 0.02812157607747753, - 0.02841132056460461, - 0.028438898775431806, - 0.028516008997594055, - 0.028971930949866803, - 0.028723971347932788, - 0.028639024095108608, - 0.0287728363255145, - 0.028133612787747547, - 0.028078156612268312, - 0.028158520229452536, - 0.02750174750901406, - 0.027639020993310275, - 0.02743004067462405, - 0.027635051164823624, - 0.02755124875362021, - 0.027183898326314387, - 0.027284233849021282, - 0.027292816364712664, - 0.027165848834526166, - 0.02709890297110717, - 0.027174364294692204, - 0.0273196201407654, - 0.027610040865346085, - 0.027610670258587783, - 0.027583234048004366, - 0.026996905680505286, - 0.027041808337134002, - 0.027048476087996556, - 0.02721642731763784, - 0.02711338668242653, - 0.027144095841347183, - 0.027223304800188853, - 0.027261058945547464, - 0.027429678126385894, - 0.027807229258775778, - 0.027256123221352204, - 0.027183822673324858, - 0.027171299986546188, - 0.02700352255727191, - 0.027027701605933905, - 0.02696050207208557, - 0.027075963660536002, - 0.027333885018179776, - 0.027240264295181355, - 0.027142186742570677, - 0.02723841773453792, - 0.027120226509966948, - 0.027139065597426768, - 0.02726255595866541, - 0.027278203160884505, - 0.02708149291487064, - 0.02708006383034717, - 0.0270273416890034, - 0.02714140525363257, - 0.02705563302913414, - 0.027135310355316213, - 0.02712625239800418, - 0.027110095500949862, - 0.027168730175838127, - 0.026998470843165045, - 0.027534414158826945, - 0.02864889864784796, - 0.029396766849189425, - 0.028854368571083696, - 0.028637732303897028, - 0.02813802231120641, - 0.027699910267440692, - 0.027649990336261216, - 0.02740248631552398, - 0.027925471951670357, - 0.02769595883719292, - 0.027668123618587188, - 0.0274484476394788, - 0.027493083481021325, - 0.027718408098277848, - 0.02768434377788146, - 0.0276942205634926, - 0.02758898911290218, - 0.027686145783836803, - 0.027393753413643505, - 0.027188307154846707, - 0.027089652455060002, - 0.027110643462875353, - 0.02834975717319132, - 0.027662053501542414, - 0.027588589994841664, - 0.027122884260847163, - 0.027041087176751848, - 0.02690883012839264, - 0.027057429221094928, - 0.02705707821263295, - 0.027155404641863477, - 0.027158826587127018, - 0.027322318502284386, - 0.027336323652375986, - 0.02741136245736957, - 0.026612980815938492, - 0.02702951826069811, - 0.027537469658508864, - 0.027478532537506907, - 0.02741832760434647, - 0.027150113901839298, - 0.027240651960648943, - 0.027380906752746122, - 0.027653864461320933, - 0.02761394144115257, - 0.027656713951530767, - 0.028263670109501298, - 0.028178525534487405, - 0.028251042873563285, - 0.02835609581845754, - 0.02838370622616756, - 0.02800849492748335, - 0.028327770726456848, - 0.027932003945396886, - 0.028270789720990088, - 0.02827830935850277, - 0.02842032437052967, - 0.028256007274431748, - 0.028480844348554735, - 0.02820349341567025, - 0.028263497494929197, - 0.02815329613452025, - 0.02831561082708941, - 0.02811616153242813, - 0.027749409100536644, - 0.027742946318704508, - 0.027816477892802078, - 0.027912674431819717, - 0.027918954762984772 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949327", - "id": "cheelee", - "symbol": "cheel", - "name": "Cheelee", - "image": "https://coin-images.coingecko.com/coins/images/28573/large/CHEEL_%D1%82%D0%BE%D0%BD%D0%BA%D0%B0%D1%8F_%D0%BE%D0%B1%D0%B2%D0%BE%D0%B4%D0%BA%D0%B0_%283%29.png?1696527561", - "current_price": 20.09, - "market_cap": 1140994818, - "market_cap_rank": 82, - "fully_diluted_valuation": 20091058495, - "total_volume": 6487750, - "high_24h": 20.74, - "low_24h": 20.04, - "price_change_24h": -0.4512233511572106, - "price_change_percentage_24h": -2.19656, - "market_cap_change_24h": -25775996.54855156, - "market_cap_change_percentage_24h": -2.20917, - "circulating_supply": 56791174.9459539, - "total_supply": 1000000000.0, - "max_supply": 1000000000.0, - "ath": 21.45, - "ath_change_percentage": -6.22443, - "ath_date": "2024-06-07T12:30:12.489Z", - "atl": 3.44, - "atl_change_percentage": 484.87287, - "atl_date": "2023-02-13T02:53:08.933Z", - "roi": null, - "last_updated": "2024-06-13T16:12:07.215Z", - "sparkline_in_7d": { - "price": [ - 20.95307102772348, - 20.904619189567292, - 20.950100495935065, - 20.98133420757068, - 21.063227461716203, - 21.118214437434983, - 21.144360944190954, - 21.11687723418237, - 21.15975908457277, - 21.083093197595982, - 21.20402664686135, - 21.16467330795795, - 21.169845780392542, - 21.120221310955664, - 21.21209655681455, - 21.109404849419242, - 21.17062992887643, - 21.23003143439966, - 21.235091817023577, - 21.123573917690752, - 21.025547364992654, - 21.02246677098443, - 21.139090891374185, - 21.24280221990584, - 21.114243855654653, - 21.22091868033513, - 21.275515336325697, - 21.289210776007565, - 21.26920791080894, - 21.001886544404815, - 20.614850298836934, - 20.733620486254818, - 20.823570614925178, - 20.701950731276746, - 20.774278337565107, - 20.6449348236685, - 20.681495724810937, - 20.763011316759044, - 20.764467364971814, - 20.696324438189663, - 20.788266663580792, - 20.71248251247728, - 20.71663881185184, - 20.627970011419247, - 20.68087377967121, - 20.6237579653989, - 20.707281046833245, - 20.67553973499548, - 20.536295114726798, - 20.505896763928632, - 20.506781116994453, - 20.53141420465294, - 20.472349226929705, - 20.42579652282791, - 20.56335538413601, - 20.646278734097983, - 20.67832297372086, - 20.70814113128235, - 20.531654049294826, - 20.527387437904377, - 20.536367265133013, - 20.47132807243303, - 20.52022090751922, - 20.568053335505105, - 20.549814087343062, - 20.464394813494355, - 20.555696988929984, - 20.394853264622014, - 20.47094963195598, - 20.48254085371068, - 20.524012547544586, - 20.583813730376257, - 20.649101536778264, - 20.719751556219684, - 20.544051468882518, - 20.579184848271556, - 20.639897614989547, - 20.567065336583415, - 20.49389540983628, - 20.564705134566776, - 20.510518671984563, - 20.62863463746245, - 20.503657653101243, - 20.63318461167757, - 20.62700548155778, - 20.50942057783437, - 20.56228465509617, - 20.71901630865276, - 20.638741774718017, - 20.67110023109324, - 20.72663581256751, - 20.687996449876607, - 20.690781345632427, - 20.524688138496312, - 20.374777105371983, - 20.476258536874255, - 20.485863876743768, - 20.589317822152562, - 20.48806887750554, - 20.437938160133914, - 20.56388072981383, - 20.60395068794465, - 20.645030271621415, - 20.571435346829514, - 20.556961147182488, - 20.6227455052993, - 20.631251278925085, - 20.520834645357034, - 20.433621861313977, - 20.496920283605583, - 20.52805358520294, - 20.463402579282423, - 20.507871559021854, - 20.259160447029807, - 20.249138283239155, - 20.285222650309567, - 20.154744508369102, - 20.10925361764917, - 20.131612279524735, - 20.117438229807174, - 20.01828553238211, - 20.093624084340956, - 19.934742453773154, - 19.962249396551982, - 19.88226422405761, - 19.809978944576613, - 19.87119119796211, - 19.844483390285557, - 19.844685251046446, - 19.86819422523297, - 19.792778742498413, - 19.81613604537429, - 19.902214214882687, - 19.958261953063015, - 20.010102711387546, - 20.1305382547636, - 20.348680538906592, - 20.38351723970827, - 20.409362154554294, - 20.40039244461458, - 20.365965058138325, - 20.338258422051556, - 20.186548162948945, - 20.298506648209383, - 20.380575097536205, - 20.419864872245746, - 20.455934925646254, - 20.553082490192374, - 20.520478991381673, - 20.575071414760863, - 20.574473494158006, - 20.520876597637788, - 20.449151823531725, - 20.45887239826216, - 20.465709225448443, - 20.41698634319907, - 20.48662043738338, - 20.560908783688507, - 20.46510830941731, - 20.488452323050065, - 20.50377485258159, - 20.574664625756512, - 20.65961337359463, - 20.624189892473552, - 20.705603268505456, - 20.377431513867837, - 20.412687580090292 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949328", - "id": "flow", - "symbol": "flow", - "name": "Flow", - "image": "https://coin-images.coingecko.com/coins/images/13446/large/5f6294c0c7a8cda55cb1c936_Flow_Wordmark.png?1696513210", - "current_price": 0.743347, - "market_cap": 1123571020, - "market_cap_rank": 83, - "fully_diluted_valuation": 1123571020, - "total_volume": 32488204, - "high_24h": 0.794006, - "low_24h": 0.740702, - "price_change_24h": -0.046098683595225176, - "price_change_percentage_24h": -5.83937, - "market_cap_change_24h": -68364856.41290975, - "market_cap_change_percentage_24h": -5.73562, - "circulating_supply": 1513199184.57724, - "total_supply": 1513199184.57724, - "max_supply": null, - "ath": 42.4, - "ath_change_percentage": -98.24948, - "ath_date": "2021-04-05T13:49:10.098Z", - "atl": 0.391969, - "atl_change_percentage": 89.34475, - "atl_date": "2023-09-11T19:41:06.528Z", - "roi": null, - "last_updated": "2024-06-13T16:12:29.968Z", - "sparkline_in_7d": { - "price": [ - 0.9184296116126719, - 0.9183861415001038, - 0.9189290010445792, - 0.9243736312896983, - 0.9252716879188045, - 0.9217320554287369, - 0.9245133809532539, - 0.9210005232708702, - 0.909749709560505, - 0.9130182301387261, - 0.9088266067198604, - 0.9234802392779302, - 0.9163806346645592, - 0.9118011322544275, - 0.9131337450319544, - 0.9102901232821357, - 0.9144487588976282, - 0.9178216358254963, - 0.9204958244407732, - 0.9200715004598953, - 0.9226909232763981, - 0.9178325524130362, - 0.9238821835551309, - 0.9231013108692417, - 0.9332041398498037, - 0.9249883933133705, - 0.9346180246002612, - 0.9367378876692307, - 0.925981094003879, - 0.9187600247032575, - 0.8416526369919937, - 0.8358387302250854, - 0.8448729040481635, - 0.8541605995085292, - 0.850247313978974, - 0.8529724475040106, - 0.8466930073103063, - 0.8550364005000979, - 0.8541705942900781, - 0.8511147939811181, - 0.8521817533675079, - 0.84624457577738, - 0.8458918013841661, - 0.84672662065992, - 0.8464050028763506, - 0.8415366773072569, - 0.8407273416770372, - 0.8405223572410053, - 0.8237732796494338, - 0.8231883932483399, - 0.8235114573249542, - 0.8218943889408883, - 0.8163812390934918, - 0.8064530733456255, - 0.8056131560457632, - 0.8006957339015224, - 0.7971712554029373, - 0.7964422599879494, - 0.7964909975040998, - 0.7974761108752771, - 0.8001918023891835, - 0.7990454637658949, - 0.8006080875675432, - 0.794751126431391, - 0.7967059531305979, - 0.7955634068505251, - 0.8021100745999294, - 0.8026947162940513, - 0.8017417129657817, - 0.8064986538588793, - 0.8048950302342545, - 0.801357650160905, - 0.8006782634855614, - 0.8019785882398462, - 0.7964537463231028, - 0.7979438338812993, - 0.7988175073211784, - 0.8045485606481253, - 0.8051045284728557, - 0.8071318445180835, - 0.8037666719451406, - 0.8010537121348679, - 0.7998760498146802, - 0.8032432232081231, - 0.8021244641910498, - 0.8002726411443661, - 0.8028935373764826, - 0.8034694746591352, - 0.7989942806850705, - 0.7997473768486354, - 0.7932530374175731, - 0.7859290430064819, - 0.7860593325896043, - 0.7937468591478192, - 0.7992218491350067, - 0.7968082756147993, - 0.795217068060203, - 0.7899529223871141, - 0.7921683672165502, - 0.7996600410251262, - 0.8072028974519402, - 0.8030362163565615, - 0.8020074401131284, - 0.7966815045488518, - 0.7880435450482368, - 0.7876083231452466, - 0.7824678292124362, - 0.7863368421759006, - 0.7847178270419032, - 0.7842954460455401, - 0.7744593727186652, - 0.7769339072316748, - 0.7760826125342208, - 0.7707323366848153, - 0.77179237941822, - 0.7689857239616557, - 0.7690573903437821, - 0.7726384005442124, - 0.7736494530975185, - 0.7687274449680714, - 0.7675929869689775, - 0.7593577120216616, - 0.7555012250856857, - 0.757451382577034, - 0.7544866513809122, - 0.7445130420687948, - 0.7514552720326861, - 0.753405862687231, - 0.7512571315542951, - 0.7532102398595983, - 0.7540108791496162, - 0.7520380951112029, - 0.7491593648351891, - 0.7468400066309094, - 0.7427152977186142, - 0.7503041016436867, - 0.75589892725473, - 0.7552341589923866, - 0.7575210088647293, - 0.7556211746281337, - 0.7546358873499487, - 0.7521401200044809, - 0.7619188392173906, - 0.7614190795727185, - 0.7582497063420527, - 0.7888849231486753, - 0.7859482056666206, - 0.7913010164265956, - 0.7880705451034952, - 0.7880103331939965, - 0.7801062782620237, - 0.7848380093450923, - 0.7700025916041643, - 0.7801877622752726, - 0.7796781686654176, - 0.7797958799013572, - 0.7772167502865392, - 0.7790627052479627, - 0.7737278842394751, - 0.7628182435535327, - 0.7689294113578997, - 0.7659340158421304, - 0.75499799634079, - 0.7505652646903268, - 0.7578441660340385, - 0.7567406114669515, - 0.7570826674905428, - 0.7575136590581061 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949329", - "id": "ethena", - "symbol": "ena", - "name": "Ethena", - "image": "https://coin-images.coingecko.com/coins/images/36530/large/ethena.png?1711701436", - "current_price": 0.692338, - "market_cap": 1109473193, - "market_cap_rank": 84, - "fully_diluted_valuation": 10300718230, - "total_volume": 208303413, - "high_24h": 0.758451, - "low_24h": 0.682516, - "price_change_24h": -0.06259667663191149, - "price_change_percentage_24h": -8.29167, - "market_cap_change_24h": -117732062.05601549, - "market_cap_change_percentage_24h": -9.59351, - "circulating_supply": 1615625000.0, - "total_supply": 15000000000.0, - "max_supply": null, - "ath": 1.52, - "ath_change_percentage": -54.49075, - "ath_date": "2024-04-11T13:15:15.057Z", - "atl": 0.532381, - "atl_change_percentage": 29.73694, - "atl_date": "2024-04-02T08:20:40.884Z", - "roi": null, - "last_updated": "2024-06-13T16:12:30.264Z", - "sparkline_in_7d": { - "price": [ - 0.9752165134145246, - 0.9741547323462412, - 0.9721235165959896, - 0.9773697892933711, - 0.9762874810946998, - 0.9694750461311306, - 0.960388738700775, - 0.9451492455575409, - 0.9615410192498725, - 0.9578475003141258, - 0.9537880994741433, - 0.950726139150949, - 0.9536612667301446, - 0.9537934800257202, - 0.946004817796269, - 0.948835141321336, - 0.9636767054977239, - 0.9554661012641954, - 0.9573623305177412, - 0.9581988525185179, - 0.952177721710109, - 0.952860878796288, - 0.9525892041856577, - 0.9619772852118228, - 0.9394458168786736, - 0.9426277873489761, - 0.9463719891773205, - 0.933597791488886, - 0.9188270873712703, - 0.9107974365223921, - 0.8605076364319514, - 0.889048597133307, - 0.9032142877690793, - 0.8878468329080589, - 0.8858296222759479, - 0.884883381815331, - 0.8813896784757755, - 0.885952717212677, - 0.8766428528350543, - 0.8672892614783088, - 0.8555776859581595, - 0.857763235466227, - 0.8568706128043001, - 0.860879003895329, - 0.8606897886330662, - 0.861297684998284, - 0.8585299857239022, - 0.8412127697313461, - 0.8474937749600302, - 0.8405649824618843, - 0.8494080400273202, - 0.8468006589338966, - 0.8398650960431688, - 0.8464260679331563, - 0.8391397336123342, - 0.8285464603173811, - 0.8279010403610364, - 0.8274131207279227, - 0.8230392262255706, - 0.8307006869516577, - 0.8236341984462614, - 0.8292218312999525, - 0.8129581508662491, - 0.8245073419184784, - 0.8136759411176839, - 0.8192680964167196, - 0.8205227462354374, - 0.8181096246308063, - 0.8179502981240669, - 0.8209445531144357, - 0.8163593618494787, - 0.8182326520704839, - 0.8312278470959774, - 0.8232013741472706, - 0.8265356783319749, - 0.8264682491551638, - 0.8320768196185309, - 0.8293207410559897, - 0.8320440465816381, - 0.8319305128963569, - 0.8254658180319615, - 0.8280224051993869, - 0.8269603892583145, - 0.83102847968049, - 0.821963895470011, - 0.818204875978096, - 0.8183478860843763, - 0.8076939933317492, - 0.809927090261913, - 0.803191217186284, - 0.798381262490543, - 0.7886496144597618, - 0.8087112923967544, - 0.8115649326207982, - 0.8125101914834718, - 0.811484767222348, - 0.8069894912089308, - 0.7920865879693523, - 0.7997447442209836, - 0.8154061980138605, - 0.8131288834580179, - 0.8071004405958453, - 0.7958472484757438, - 0.7789987183035926, - 0.7777413419750425, - 0.7741556571229632, - 0.7737054862503433, - 0.7703803433136045, - 0.7690585808352419, - 0.7494038973625449, - 0.7482703209959652, - 0.7517333768815428, - 0.7476846775920313, - 0.742104453569835, - 0.7373361015190968, - 0.739276168167417, - 0.7448860155556616, - 0.7436790536996022, - 0.7550350326527612, - 0.756036520554196, - 0.7440098151569482, - 0.7455126196431843, - 0.7361136634812361, - 0.7143564254682901, - 0.7137696482633514, - 0.7124890150891435, - 0.7212982105847034, - 0.7155345462684639, - 0.7083504460176752, - 0.7145604174120017, - 0.706211312744445, - 0.7099368395659075, - 0.7120872817113943, - 0.687293707530624, - 0.7150540991143182, - 0.7076753947167875, - 0.7121531607829785, - 0.7092990481307396, - 0.716253900959731, - 0.7186760555601296, - 0.7228393379794624, - 0.7282108658779501, - 0.7299566873954657, - 0.7277775620266319, - 0.7649590822718091, - 0.7575601807506634, - 0.7670689881006445, - 0.7580508870823535, - 0.75070243123067, - 0.7552284715419607, - 0.7408496049791984, - 0.7162986845130047, - 0.7302689679816576, - 0.7323431808934046, - 0.7343312671202993, - 0.7241806496695675, - 0.7264149288819709, - 0.7159897507758368, - 0.6948834740562939, - 0.6935434362437939, - 0.7001716475925076, - 0.7091436167410392, - 0.6990393490695963, - 0.7065650227420842, - 0.709375353038712, - 0.7068112655738432, - 0.7091772799141053, - 0.6999933302402812 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394932a", - "id": "gatechain-token", - "symbol": "gt", - "name": "Gate", - "image": "https://coin-images.coingecko.com/coins/images/8183/large/gate.png?1696508395", - "current_price": 8.3, - "market_cap": 1081977099, - "market_cap_rank": 85, - "fully_diluted_valuation": 2489988712, - "total_volume": 5766197, - "high_24h": 8.62, - "low_24h": 8.23, - "price_change_24h": -0.3234627610476011, - "price_change_percentage_24h": -3.75078, - "market_cap_change_24h": -42284259.17874479, - "market_cap_change_percentage_24h": -3.76107, - "circulating_supply": 130359277.55886991, - "total_supply": 300000000.0, - "max_supply": null, - "ath": 12.94, - "ath_change_percentage": -36.17303, - "ath_date": "2021-05-12T11:39:16.531Z", - "atl": 0.25754, - "atl_change_percentage": 3107.42017, - "atl_date": "2020-03-13T02:18:02.481Z", - "roi": null, - "last_updated": "2024-06-13T16:12:35.288Z", - "sparkline_in_7d": { - "price": [ - 8.83259047750596, - 8.837975022476508, - 8.823254606547057, - 8.837394285491737, - 8.887011130738989, - 8.876292063452565, - 8.926224061896667, - 8.93846142712766, - 8.803082127339087, - 8.796147024737772, - 8.79405077934628, - 8.79740182041312, - 8.834960530290903, - 8.85904563743128, - 8.913413301703901, - 8.897987530728601, - 8.936126608960398, - 8.941597450062382, - 8.974081681452782, - 9.12892912183544, - 8.98155696305567, - 8.942486667092673, - 8.939101934539138, - 8.938804008710349, - 9.040558368103323, - 8.930847756585873, - 8.978666437086277, - 8.984196212305447, - 8.974707642747786, - 8.97158037818089, - 8.74920276437688, - 8.503474290471823, - 8.407556204872689, - 8.443711898349733, - 8.536979443101025, - 8.526463472514413, - 8.486906684331451, - 8.563250335767778, - 8.789120967819345, - 8.773704556329086, - 8.76436815288031, - 8.701710743873464, - 8.725472650135778, - 8.712903407648504, - 8.741929815595363, - 8.706420817000048, - 8.68133702126219, - 8.657285517075508, - 8.657310861794215, - 8.511296835574337, - 8.493904113191244, - 8.52225229537049, - 8.593030692443115, - 8.561789655456861, - 8.535446175315801, - 8.560429773728295, - 8.483453717878781, - 8.504806488299897, - 8.54265625967515, - 8.54017937284842, - 8.588384503893463, - 8.630621484636448, - 8.728871222880807, - 8.652729075397765, - 8.629731929124972, - 8.58844106688954, - 8.545364761153863, - 8.539856764185625, - 8.586394871104684, - 8.624789230815253, - 8.607621842419654, - 8.618133585904628, - 8.616204322564025, - 8.657146950543195, - 8.625404726958191, - 8.58709630461336, - 8.554077918287923, - 8.582818408878758, - 8.595488729933598, - 8.601236208342797, - 8.5246369537605, - 8.519817293080743, - 8.523199747855072, - 8.526225643305409, - 8.524538126926203, - 8.529878265893776, - 8.57517280720611, - 8.627130060867694, - 8.609385833072507, - 8.601791080901497, - 8.6011377683084, - 8.521142808534647, - 8.501024161070312, - 8.52642212553419, - 8.535408170684459, - 8.541591763234829, - 8.538146958913078, - 8.507440661657222, - 8.470080692723352, - 8.523480115851275, - 8.59244250358392, - 8.584729220377088, - 8.574729609451053, - 8.597523277373563, - 8.571342678880304, - 8.591743568677515, - 8.567296965786534, - 8.550771799638209, - 8.534762755459782, - 8.538766867147231, - 8.387458976794381, - 8.293043162360634, - 8.27834166926302, - 8.293357293523854, - 8.300509419591116, - 8.268341809535167, - 8.269370345311753, - 8.268472379320162, - 8.172183371356056, - 8.186916704997396, - 8.185673282117328, - 8.221685212914444, - 8.16737066464054, - 8.160615791047706, - 8.092315256673922, - 8.19554875222774, - 8.1478546347826, - 8.195089228963528, - 8.196825196859288, - 8.197883494746694, - 8.213610951215916, - 8.226003671504115, - 8.294304542754277, - 8.295053809493727, - 8.285828470897346, - 8.20724709828901, - 8.17832143614024, - 8.209136436418794, - 8.375125749164408, - 8.418168084380621, - 8.506301576262773, - 8.451875854935547, - 8.418043780317241, - 8.438007910990061, - 8.40158460642869, - 8.55169489210885, - 8.501910839656617, - 8.617690729475576, - 8.620311151106678, - 8.527998363216483, - 8.494855131260518, - 8.496544702832377, - 8.40388931673428, - 8.514746118057332, - 8.531913514398946, - 8.513785622226795, - 8.509630713424668, - 8.502869928144463, - 8.484615365222615, - 8.481181644816642, - 8.279865247705159, - 8.289061063068408, - 8.30811069498793, - 8.319329471567395, - 8.426211965851362, - 8.393135426188833, - 8.387860192516152, - 8.42889045605854 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394932b", - "id": "beam-2", - "symbol": "beam", - "name": "Beam", - "image": "https://coin-images.coingecko.com/coins/images/32417/large/chain-logo.png?1698114384", - "current_price": 0.02129484, - "market_cap": 1051140865, - "market_cap_rank": 86, - "fully_diluted_valuation": 1326707880, - "total_volume": 35036086, - "high_24h": 0.0233724, - "low_24h": 0.02121548, - "price_change_24h": -0.001822537750477801, - "price_change_percentage_24h": -7.88384, - "market_cap_change_24h": -91544001.9264909, - "market_cap_change_percentage_24h": -8.01131, - "circulating_supply": 49466004168.0, - "total_supply": 62434008330.0, - "max_supply": 62434008330.0, - "ath": 0.04416304, - "ath_change_percentage": -51.91653, - "ath_date": "2024-03-10T10:40:22.381Z", - "atl": 0.0043383, - "atl_change_percentage": 389.48009, - "atl_date": "2023-10-29T08:20:14.064Z", - "roi": null, - "last_updated": "2024-06-13T16:12:43.039Z", - "sparkline_in_7d": { - "price": [ - 0.026904526406365772, - 0.026845622898734135, - 0.02688270602625938, - 0.02687485033298732, - 0.026678965635751516, - 0.02672242835467985, - 0.026602899525913604, - 0.025499977265500098, - 0.025853708514567926, - 0.02568332881728263, - 0.025793817831381932, - 0.02563011685179656, - 0.025589307411931255, - 0.025517790779193052, - 0.025557896700457886, - 0.025463526380850015, - 0.025576959079933303, - 0.025633727973400543, - 0.02570026236620409, - 0.025675250050251622, - 0.025750846951879125, - 0.02550042422053744, - 0.025500831964725922, - 0.02571878659774505, - 0.025563408037289476, - 0.025685397691412426, - 0.025703706291742522, - 0.02547541630524346, - 0.025216345336624656, - 0.02362988133373188, - 0.02363047750473121, - 0.0235759896298541, - 0.02370825648823179, - 0.023682377565174245, - 0.023773754531764064, - 0.02373881687622561, - 0.023752005865294412, - 0.023669812243806005, - 0.023632847886379562, - 0.023618634032770598, - 0.02361479736699979, - 0.023647486711587333, - 0.02364891279555498, - 0.023727141259408287, - 0.023439099001399424, - 0.02341301892152859, - 0.023458109666215473, - 0.0230799904507987, - 0.02313471609821237, - 0.023478579108646258, - 0.02354772736025494, - 0.023403245584821205, - 0.0231714623043789, - 0.02312418100719295, - 0.0229749053908652, - 0.022955691342001733, - 0.022796821764886215, - 0.02286941867645376, - 0.022943495287911935, - 0.022968680301764084, - 0.022981094406177488, - 0.023096555123842878, - 0.022652953605121463, - 0.0228166185073244, - 0.022860175703660817, - 0.022769806110165464, - 0.0228807372499051, - 0.022839983231322525, - 0.02293669823989658, - 0.02297517585564674, - 0.02281714673468085, - 0.02287900545802999, - 0.02317696987052083, - 0.022930296294115003, - 0.02315185768051858, - 0.02315993369221239, - 0.02338000310198854, - 0.023344433519358485, - 0.023477517993815464, - 0.02347164898350121, - 0.02328620873226154, - 0.023434480374227438, - 0.0235188866290908, - 0.023480091104510548, - 0.023382215160720164, - 0.02355669190333265, - 0.02340660145727299, - 0.02298433142873782, - 0.022985124438075325, - 0.02280281712281077, - 0.022794897576091912, - 0.022581637136409753, - 0.02299788236222428, - 0.023079356663425157, - 0.023125455736489806, - 0.022962892343919045, - 0.022888255644629492, - 0.022815699472284973, - 0.02314017924852692, - 0.02327754914347246, - 0.023123950454226237, - 0.023126011815514453, - 0.02300782122613587, - 0.022816743538866504, - 0.02267350269127704, - 0.022631734533189406, - 0.02250359752379324, - 0.02250011826253059, - 0.02243494375159387, - 0.022050931916319728, - 0.02190791319908839, - 0.02178202212746753, - 0.021820508696605536, - 0.021747974149601293, - 0.021765655356996313, - 0.021839211678624886, - 0.02188439372766104, - 0.021875156473786385, - 0.022114170386819124, - 0.02180732605799103, - 0.02157833181487115, - 0.021443018073163397, - 0.021530829564396607, - 0.021349956483634004, - 0.021247480771668777, - 0.021399486596075736, - 0.021695631019548915, - 0.021760403883271766, - 0.02171455477651144, - 0.021656143368006912, - 0.02139752349826606, - 0.02136650741922919, - 0.021313578270272675, - 0.021014393338785495, - 0.021620676425326103, - 0.021638944875620875, - 0.021476174416419774, - 0.021521380199781857, - 0.021737086241427995, - 0.021696429003317322, - 0.02172152366164603, - 0.021831944908366513, - 0.022074166535934598, - 0.02209844116857842, - 0.02313238870521711, - 0.02305382646152887, - 0.023276970388994317, - 0.023073575643687335, - 0.02324469915752037, - 0.023203009510951153, - 0.022851800816878428, - 0.022411533302593056, - 0.02255127568195441, - 0.022636707428811, - 0.022430099839554764, - 0.022325486075053518, - 0.022439710256099574, - 0.02258914956001208, - 0.02201891914192429, - 0.02202155981838319, - 0.02201611942055435, - 0.02192798816734625, - 0.021725913642181082, - 0.02185091048367011, - 0.021982391175943364, - 0.021940705584578543, - 0.022067973687913293 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394932c", - "id": "kelp-dao-restaked-eth", - "symbol": "rseth", - "name": "Kelp DAO Restaked ETH", - "image": "https://coin-images.coingecko.com/coins/images/33800/large/Icon___Dark.png?1702991855", - "current_price": 3479.51, - "market_cap": 1031143627, - "market_cap_rank": 87, - "fully_diluted_valuation": 1031143627, - "total_volume": 3217755, - "high_24h": 3662.57, - "low_24h": 3473.21, - "price_change_24h": -183.05299874466345, - "price_change_percentage_24h": -4.99794, - "market_cap_change_24h": -51830089.880533814, - "market_cap_change_percentage_24h": -4.7859, - "circulating_supply": 296509.555191789, - "total_supply": 296509.555191789, - "max_supply": null, - "ath": 4033.48, - "ath_change_percentage": -13.81362, - "ath_date": "2024-03-13T08:55:33.936Z", - "atl": 2069.62, - "atl_change_percentage": 67.96801, - "atl_date": "2024-01-23T14:25:53.609Z", - "roi": null, - "last_updated": "2024-06-13T16:09:59.208Z", - "sparkline_in_7d": { - "price": [ - 3889.1929546122446, - 3879.6338074064824, - 3870.209735581218, - 3881.429271379248, - 3887.525709534928, - 3868.4699634506405, - 3877.3959009825685, - 3870.3317510109277, - 3810.520237451863, - 3841.016478884125, - 3841.9629129709224, - 3854.298865184972, - 3851.625233249133, - 3846.972346951789, - 3847.655187000245, - 3840.7838003403863, - 3849.745910997629, - 3856.685605138699, - 3860.802591481102, - 3855.505912589077, - 3855.8052262599317, - 3849.895417676311, - 3848.3471237092076, - 3849.3577983252944, - 3877.500277564755, - 3841.160208372927, - 3852.781043745669, - 3858.955278364158, - 3835.738791005906, - 3818.059509058447, - 3802.602694569887, - 3716.642425653839, - 3724.786294189505, - 3717.555222622681, - 3727.6360087753337, - 3730.4853519057415, - 3717.3409506851785, - 3723.3483436293254, - 3729.416384917283, - 3726.5197775652855, - 3729.849620271392, - 3720.5694255001767, - 3721.4680960611217, - 3722.06134382608, - 3745.510429440822, - 3734.2686204605848, - 3730.697657261912, - 3730.0951536648736, - 3719.881032381201, - 3717.83096919732, - 3721.372200715599, - 3731.966615521014, - 3728.3091493418674, - 3719.7319248227877, - 3724.571814241468, - 3729.007483868099, - 3721.096667125761, - 3717.580400980848, - 3717.9372718665877, - 3714.9241988877275, - 3720.8422041795666, - 3717.361979073197, - 3719.4545136230195, - 3706.165993005044, - 3711.444859507293, - 3707.4106589376133, - 3717.7653220161396, - 3724.6349288251654, - 3722.884491351173, - 3732.41432042742, - 3729.744917802256, - 3728.4348435865254, - 3731.18097407881, - 3743.58738808582, - 3726.62144515282, - 3730.6987581251287, - 3730.0611229449023, - 3734.713188671273, - 3736.732781350247, - 3747.420126587046, - 3739.1449980891834, - 3739.82169210696, - 3748.451092678619, - 3744.420352427088, - 3747.7288861062193, - 3732.5741453918145, - 3728.177222894389, - 3728.585325428698, - 3719.307143125665, - 3728.3471635853507, - 3721.349338007183, - 3708.359267594734, - 3694.20356376432, - 3707.024178942559, - 3706.255271390022, - 3707.3300513941413, - 3712.8887062485724, - 3710.049681527202, - 3710.1595392282975, - 3728.9873674179585, - 3741.151719727183, - 3736.7953588176556, - 3735.8574194041166, - 3731.6300877426825, - 3711.3302649946386, - 3683.725842324959, - 3683.8340170507436, - 3710.5939042307846, - 3708.0761841506796, - 3702.1667171323606, - 3664.3100363641465, - 3640.6955769917176, - 3634.9204518914203, - 3599.647631685449, - 3599.9038658611526, - 3589.4858167944694, - 3574.28474356246, - 3568.417522383779, - 3555.8782200856713, - 3566.98360333426, - 3563.7516762511887, - 3571.262214534033, - 3556.0708640606013, - 3538.464805520392, - 3518.0134481560963, - 3491.2978410882592, - 3514.408527450281, - 3526.630279831242, - 3522.9573891143327, - 3525.6768508015584, - 3535.925361463359, - 3535.7253730621437, - 3531.312532453574, - 3527.792315185815, - 3503.1102198690205, - 3516.3494464448286, - 3539.086627090043, - 3553.9166796029895, - 3543.0099880864636, - 3548.3614230970416, - 3556.8945588005176, - 3510.4576644593226, - 3555.726708696818, - 3568.1123410822042, - 3573.5270146483417, - 3646.553346707249, - 3650.6482802086252, - 3668.176718035568, - 3665.2433726228364, - 3644.7407165522914, - 3651.5059131615617, - 3622.749954934583, - 3559.0337911332213, - 3586.106211689072, - 3584.6192595178036, - 3586.0041259384943, - 3592.4678654633317, - 3591.6860379587856, - 3574.313424278598, - 3504.490584641929, - 3532.4675560143623, - 3536.8687854386385, - 3540.737933281817, - 3520.9616756119635, - 3540.242780068672, - 3543.155839091417, - 3518.1091452317696, - 3532.276864103628 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394932d", - "id": "axie-infinity", - "symbol": "axs", - "name": "Axie Infinity", - "image": "https://coin-images.coingecko.com/coins/images/13029/large/axie_infinity_logo.png?1696512817", - "current_price": 6.89, - "market_cap": 1004416524, - "market_cap_rank": 88, - "fully_diluted_valuation": 1859931318, - "total_volume": 53974191, - "high_24h": 7.28, - "low_24h": 6.89, - "price_change_24h": -0.3670167734107599, - "price_change_percentage_24h": -5.05835, - "market_cap_change_24h": -51818328.433832884, - "market_cap_change_percentage_24h": -4.90595, - "circulating_supply": 145807782.706576, - "total_supply": 270000000.0, - "max_supply": 270000000.0, - "ath": 164.9, - "ath_change_percentage": -95.81349, - "ath_date": "2021-11-06T19:29:29.482Z", - "atl": 0.123718, - "atl_change_percentage": 5479.98786, - "atl_date": "2020-11-06T08:05:43.662Z", - "roi": null, - "last_updated": "2024-06-13T16:12:10.479Z", - "sparkline_in_7d": { - "price": [ - 8.516327511967907, - 8.440233511609446, - 8.496836530804725, - 8.564342471544467, - 8.532303324783216, - 8.512948408992584, - 8.532915826473287, - 8.493963050461698, - 8.437364629984186, - 8.5103682910259, - 8.45271181635422, - 8.48689140744507, - 8.438545977949348, - 8.432983385210944, - 8.420498834559462, - 8.399236896297914, - 8.43489439854884, - 8.45769178240613, - 8.506132130508773, - 8.402752188058681, - 8.383750866369937, - 8.34675312820793, - 8.31582276088698, - 8.33047507985314, - 8.377535252961568, - 8.291717866708009, - 8.392392675139059, - 8.426087091241676, - 8.414967154185064, - 8.26720757554563, - 7.5543352477277415, - 7.701235139801103, - 7.85977405547496, - 7.9308888117850955, - 7.914310591464021, - 7.8959787998996624, - 7.820916773463413, - 7.8391073669300315, - 7.878910971028325, - 7.850984303735392, - 7.84740370022159, - 7.806071468668917, - 7.834337802733316, - 7.822642848908772, - 7.809816296576357, - 7.774714421523091, - 7.7702624492990795, - 7.747253270788845, - 7.579576481950721, - 7.603366124484843, - 7.583086248224493, - 7.5814576855705935, - 7.5303177547319695, - 7.4887666798880055, - 7.4997613491167705, - 7.490142282930694, - 7.404440780761707, - 7.3794927399290495, - 7.411301144225525, - 7.375158956755388, - 7.389199908531141, - 7.446713804606883, - 7.484592308085096, - 7.38312520602084, - 7.424144087335725, - 7.419493439585452, - 7.434866332756672, - 7.438271146034897, - 7.432963569414532, - 7.484295995643048, - 7.462078798481438, - 7.447296916041217, - 7.455122936496417, - 7.478480813992186, - 7.44903819186354, - 7.443463303949158, - 7.436361735168602, - 7.425924640646845, - 7.422417229356679, - 7.4657261378359845, - 7.478992677108443, - 7.479228487258982, - 7.4756890812545, - 7.468982934414076, - 7.455646505330688, - 7.430126407387275, - 7.444958298590466, - 7.4384032458956435, - 7.400114470466541, - 7.424569488523621, - 7.362466204197058, - 7.364388423847287, - 7.388897558158527, - 7.451229269781479, - 7.5673008370694745, - 7.563232925552987, - 7.579988294636342, - 7.499509964579029, - 7.507657338387411, - 7.584416073668726, - 7.488698361500819, - 7.3950445345796, - 7.2824406699577136, - 7.234767826073689, - 7.162858371131315, - 7.20501232860525, - 7.1898724707329436, - 7.236692513424895, - 7.183137888141801, - 7.1641008208309405, - 7.035423926281225, - 7.07548988922626, - 7.104514079815243, - 7.088679748129662, - 7.100659132196238, - 7.072204517048499, - 7.059986626406952, - 7.078918568806337, - 7.10299648141314, - 7.050298254876296, - 7.019727748509356, - 6.955769434250601, - 6.917784654029167, - 6.960812507622228, - 6.933566607164549, - 6.8659884351154306, - 6.883444870980708, - 6.916827173941463, - 6.892246907758785, - 6.8894833349171245, - 6.9045431398746375, - 6.889992639844867, - 6.870536313510463, - 6.855581325305556, - 6.880662825906775, - 6.973184243428867, - 6.959466832671295, - 6.962531871065984, - 6.946804916434643, - 6.967610718839762, - 6.997904569452907, - 7.016703530769064, - 7.052094119682546, - 7.046965493544016, - 6.9848690703582745, - 7.266876515376509, - 7.197306371390776, - 7.286312624818196, - 7.241361522321675, - 7.21759310342642, - 7.186966224256408, - 7.225157203894015, - 7.082790120399417, - 7.182856054035134, - 7.179015767349601, - 7.1986632669499135, - 7.1364339887104355, - 7.127965505200805, - 7.0676746619848645, - 6.981738347589739, - 7.030443756335644, - 7.035932102920096, - 6.957665026233077, - 6.912987288069134, - 7.016047631784122, - 7.0766470939240795, - 7.144471741099962, - 7.035057512854261 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394932e", - "id": "ordinals", - "symbol": "ordi", - "name": "ORDI", - "image": "https://coin-images.coingecko.com/coins/images/30162/large/ordi.png?1696529082", - "current_price": 47.81, - "market_cap": 1004045183, - "market_cap_rank": 89, - "fully_diluted_valuation": 1004045183, - "total_volume": 265503740, - "high_24h": 54.58, - "low_24h": 47.78, - "price_change_24h": -5.546047169771775, - "price_change_percentage_24h": -10.39531, - "market_cap_change_24h": -126489829.18097973, - "market_cap_change_percentage_24h": -11.18849, - "circulating_supply": 21000000.0, - "total_supply": 21000000.0, - "max_supply": null, - "ath": 95.52, - "ath_change_percentage": -50.14866, - "ath_date": "2024-03-05T01:45:22.816Z", - "atl": 2.86, - "atl_change_percentage": 1564.4376, - "atl_date": "2023-09-11T15:22:32.140Z", - "roi": null, - "last_updated": "2024-06-13T16:12:31.584Z", - "sparkline_in_7d": { - "price": [ - 58.478923848068, - 57.067025214115596, - 56.61200652769021, - 57.46824624477023, - 57.99846301632119, - 57.399773516512745, - 58.164886426878304, - 58.02125017693548, - 57.04721482925918, - 57.412608862570885, - 57.379200782927136, - 58.15354250150887, - 57.79341793184542, - 58.418591103797375, - 59.20369112931322, - 59.18656033597597, - 61.49832280890532, - 64.22473083478104, - 63.30099189584895, - 63.35211814274389, - 61.760068988366314, - 61.5085537640554, - 61.86482796526189, - 62.516304072061196, - 62.908274301989856, - 62.69152888116142, - 62.919301129418486, - 61.9713098451547, - 62.828651967546826, - 63.08625359702849, - 57.708074513049866, - 58.687678230712635, - 58.857358150892615, - 58.45769483575824, - 58.60086001391661, - 58.24384844035368, - 58.4681868376073, - 59.39082235127655, - 59.612694596115816, - 59.13959713910311, - 59.60162652733138, - 58.86177751501301, - 59.68216405013329, - 60.263751821559836, - 60.86381627282291, - 62.07109617207681, - 62.011889881482496, - 61.95595739653917, - 59.835341701842225, - 59.48624533070999, - 59.973146489176976, - 59.40942028712094, - 58.960294044434946, - 61.260824018206215, - 60.31697595980066, - 60.012158331256465, - 59.48093932400327, - 58.85866715731214, - 58.751849255921464, - 58.648692052304234, - 58.94419172517593, - 60.03081097382955, - 60.86539708269715, - 59.0682540681388, - 60.25166875860811, - 59.86118240790663, - 59.52485339173688, - 61.67430346578116, - 60.89668322080661, - 61.992217200515036, - 61.60492785736579, - 60.341420738942865, - 60.87934138960096, - 62.187403599279484, - 61.30905806559518, - 60.67751694666321, - 60.01115797260033, - 60.09783882151522, - 60.57532283393018, - 61.317404004542176, - 61.1515542006602, - 60.87200796297614, - 59.98862642912585, - 58.98375083642967, - 59.44528676296658, - 59.43048419907675, - 59.61453497014506, - 58.81342644236756, - 57.57117812825152, - 57.955989147011486, - 57.78079605698067, - 57.19785950372913, - 56.33210970704946, - 56.332284377719894, - 56.806914144408594, - 57.092278639761574, - 57.565412418032075, - 57.487247984365304, - 57.165573956104645, - 58.26663817768038, - 58.831387621911205, - 58.12309003102515, - 58.31484221894326, - 57.90694516848355, - 57.045679736703676, - 57.17146085766323, - 57.5643041458868, - 57.237183585708465, - 56.98736953483082, - 57.365377048700836, - 54.93740308268642, - 56.258419605110255, - 55.849473392956234, - 56.138529599326404, - 55.94844058951853, - 56.41318286966937, - 56.527392126177155, - 56.02303291498564, - 55.08361173867279, - 54.0948310856291, - 54.702209012381054, - 54.386954761078094, - 54.29181701463954, - 53.62063045268407, - 52.97555545512852, - 52.17123321286507, - 52.72308191675865, - 52.57383450612171, - 52.23956293929814, - 52.08118181939869, - 51.80285338330948, - 51.77947725224597, - 52.35295085273029, - 51.35891354033756, - 50.47606940580692, - 51.311477530477724, - 51.254408201782965, - 50.794299601578835, - 51.58757631898098, - 51.6315262186278, - 51.58294717717295, - 51.53722444515686, - 52.26918235400891, - 52.59999456244099, - 52.189142308599706, - 56.56876599428615, - 55.67335414698251, - 54.98279097958776, - 53.7102919798373, - 53.7626451818407, - 52.97152410143483, - 52.26523501890519, - 51.34635729566424, - 52.10033317492284, - 51.93279027121481, - 51.995801508932736, - 51.782915285576706, - 51.89361546842175, - 51.12038070810722, - 49.03988666840684, - 48.82872087153292, - 49.095315034434236, - 49.04676709954284, - 48.95674531779109, - 49.19130331615749, - 49.710527598861056, - 49.14385592177243, - 50.34476314604156 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab394932f", - "id": "bitcoin-cash-sv", - "symbol": "bsv", - "name": "Bitcoin SV", - "image": "https://coin-images.coingecko.com/coins/images/6799/large/BSV.png?1696507128", - "current_price": 50.75, - "market_cap": 1000115490, - "market_cap_rank": 90, - "fully_diluted_valuation": 1065310933, - "total_volume": 21321199, - "high_24h": 54.23, - "low_24h": 50.57, - "price_change_24h": -3.374528952872268, - "price_change_percentage_24h": -6.2343, - "market_cap_change_24h": -69849030.12429857, - "market_cap_change_percentage_24h": -6.52816, - "circulating_supply": 19714831.25, - "total_supply": 21000000.0, - "max_supply": 21000000.0, - "ath": 489.75, - "ath_change_percentage": -89.68269, - "ath_date": "2021-04-16T17:09:04.630Z", - "atl": 21.43, - "atl_change_percentage": 135.73359, - "atl_date": "2023-06-10T04:32:12.266Z", - "roi": null, - "last_updated": "2024-06-13T16:12:43.896Z", - "sparkline_in_7d": { - "price": [ - 63.644394986143254, - 63.595283271467494, - 63.616239162385604, - 63.91348602332017, - 63.6279109499414, - 63.267098449223305, - 63.37862549479553, - 63.35661534131495, - 62.72566349007964, - 62.89073433530711, - 62.71337047607919, - 62.83729904331068, - 62.91755018822102, - 62.890316562335315, - 62.80606504305574, - 62.60151097759226, - 62.79511822938634, - 63.9539997551706, - 64.95584192850498, - 64.71912433237742, - 64.5748211853487, - 64.274307869311, - 64.29880697106793, - 63.73363894428581, - 64.20592877515516, - 63.22962273262781, - 63.73013380548344, - 63.584201290022314, - 63.230104717745235, - 62.86696361003052, - 57.40161218625553, - 56.77463383795776, - 57.5339712810419, - 58.107335498432725, - 58.19327756451215, - 58.117388152489156, - 57.59220882711949, - 57.812546131352924, - 57.92100567423653, - 57.991566228673044, - 58.04278882238842, - 57.814146584648825, - 57.78054393824742, - 57.79382233092361, - 57.94857253591467, - 57.73618462620158, - 57.66565614374602, - 57.462130242614975, - 56.344992331550756, - 56.115476459670965, - 56.24534689716607, - 56.38072322331745, - 56.41623282970034, - 56.417222971677255, - 56.48244686532601, - 56.542400264376546, - 56.521875713243, - 56.10997495896052, - 56.10933613810435, - 55.95540073205714, - 56.145069449254976, - 56.68540622459822, - 56.664055988184124, - 56.31013204253027, - 56.28723678491808, - 56.30625631234673, - 56.5352629709783, - 56.5169086608171, - 56.39434278456758, - 56.496662829486496, - 56.66037694764398, - 56.56852111244159, - 56.55505799757242, - 56.997015046432274, - 56.88181754150208, - 57.01176512560696, - 56.99739942314854, - 56.99956391370343, - 57.01378816802799, - 57.23188078502298, - 57.21085438181846, - 57.31742902032607, - 57.246114811365494, - 57.09807404082245, - 56.98172131613517, - 56.81390681818161, - 56.93079490822529, - 56.80297514323163, - 56.58104603678301, - 56.68191876924436, - 56.31621190954182, - 56.006972880230315, - 55.67179548676535, - 55.946303562538255, - 56.33140893453737, - 55.65244617236496, - 55.40469613571309, - 55.38213544171952, - 54.7565234488885, - 55.701161869443524, - 56.04145363501439, - 56.0473861410308, - 55.984427165990255, - 55.48912267749543, - 54.97666695379064, - 55.28018771567393, - 54.874045891455296, - 54.983876377952775, - 54.860061401960586, - 54.504696139422, - 53.00041713809996, - 53.22952646562213, - 53.15331333711161, - 52.973377493230885, - 52.933722632876936, - 52.48468315473228, - 52.6358697231397, - 52.60819838468474, - 52.41378567441815, - 52.58923114396808, - 52.18801959759682, - 52.034787164882296, - 50.57605893343156, - 50.88443563685533, - 50.545579334290636, - 50.51424565134831, - 50.72968039976116, - 50.764199610585976, - 51.04068189366862, - 50.746498574219224, - 50.850276706519736, - 50.96115845157345, - 50.77459449550631, - 50.557852090512455, - 49.971035133328364, - 50.75393761068346, - 51.0140478992746, - 51.04721714696819, - 50.91899542681121, - 51.094826317676095, - 51.10243576221853, - 50.96491079416892, - 51.086754628403796, - 51.36336388351912, - 51.258276572952084, - 53.9442980541898, - 53.82276900212988, - 54.21710501196633, - 54.361895592917016, - 54.03863736275854, - 54.17557773411963, - 53.45584424489869, - 51.97038958022839, - 52.77966687201822, - 52.99137285042475, - 52.903172293950476, - 52.936229001613526, - 53.18346625792732, - 52.283861498884164, - 51.77320879102256, - 51.59711652545836, - 51.57535459354069, - 51.77483361463887, - 51.62047008435126, - 51.83657295923666, - 51.76858261136333, - 51.47901616742636, - 51.75722673890825 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949330", - "id": "kucoin-shares", - "symbol": "kcs", - "name": "KuCoin", - "image": "https://coin-images.coingecko.com/coins/images/1047/large/sa9z79.png?1696502152", - "current_price": 10.42, - "market_cap": 996321961, - "market_cap_rank": 91, - "fully_diluted_valuation": 1491134046, - "total_volume": 188497, - "high_24h": 10.71, - "low_24h": 10.36, - "price_change_24h": -0.25226215708533317, - "price_change_percentage_24h": -2.36422, - "market_cap_change_24h": -23414801.77537012, - "market_cap_change_percentage_24h": -2.29616, - "circulating_supply": 95642961.2885607, - "total_supply": 143142961.288477, - "max_supply": null, - "ath": 28.83, - "ath_change_percentage": -63.8761, - "ath_date": "2021-12-01T15:09:35.541Z", - "atl": 0.342863, - "atl_change_percentage": 2937.50439, - "atl_date": "2019-02-07T00:00:00.000Z", - "roi": null, - "last_updated": "2024-06-13T16:12:34.603Z", - "sparkline_in_7d": { - "price": [ - 10.390281983379271, - 10.429406434073305, - 10.357481721878898, - 10.444007050569343, - 10.511102500414268, - 10.415300644898085, - 10.463531612508257, - 10.353883593006705, - 10.311689762776805, - 10.334748452913841, - 10.338167630998518, - 10.404599444505669, - 10.385380305342705, - 10.310457832909652, - 10.302002112976156, - 10.251004736858343, - 10.332661891390591, - 10.32084942184336, - 10.370072653072528, - 10.401494164805156, - 10.394260375622057, - 10.385560779444434, - 10.346477239085102, - 10.345116356679814, - 10.391267523958543, - 10.37072145461965, - 10.431614507264126, - 10.469570044146423, - 10.38655109038863, - 10.329450077024795, - 10.163477100375692, - 10.235713020262894, - 10.290730945418586, - 10.243739191799804, - 10.354342424829008, - 10.365945101595843, - 10.32318542526503, - 10.26963630595291, - 10.26794274042336, - 10.261552852990087, - 10.208022796861956, - 10.22240233686316, - 10.22479036973314, - 10.243822310786202, - 10.23122440501153, - 10.178504515225903, - 10.21957908939899, - 10.250223976820472, - 10.137267385690278, - 10.133671560597698, - 10.16879068141213, - 10.19821268638556, - 10.211899496808092, - 10.227108755365322, - 10.233957952137827, - 10.261445786576742, - 10.35044211243566, - 10.285255918656057, - 10.316786761810551, - 10.368328761997878, - 10.358202282251005, - 10.304068687829108, - 10.302378087156647, - 10.2650278862937, - 10.280539220172448, - 10.261948675487213, - 10.26229762104391, - 10.254522056815633, - 10.234208189946795, - 10.23097002807114, - 10.211961129268225, - 10.192255918990242, - 10.232492289872695, - 10.255875107059689, - 10.302464922966369, - 10.347261481834439, - 10.334924178563012, - 10.329787703303376, - 10.371534840945529, - 10.39081872817171, - 10.44535099498527, - 10.39637319943175, - 10.438067046507056, - 10.448790308920872, - 10.387295603237085, - 10.425069269653951, - 10.432535694752902, - 10.363867305247267, - 10.413331470386492, - 10.424906541779773, - 10.333641026559063, - 10.306228840575182, - 10.34126670188141, - 10.360108898329592, - 10.368326807131975, - 10.372749489952753, - 10.393584205773875, - 10.339861014240253, - 10.349358395700447, - 10.386365411900163, - 10.413655520209415, - 10.361180233327433, - 10.383481172164824, - 10.326021236306051, - 10.329840482639986, - 10.349405342130467, - 10.316964981799154, - 10.307390019424108, - 10.343635239151647, - 10.303432153549924, - 10.223296409299154, - 10.231897805736653, - 10.191504725031347, - 10.094084463995054, - 10.145407790313026, - 10.101079664255074, - 10.100610630969651, - 10.120837079915423, - 10.091853736717612, - 10.107875853412297, - 10.117013552929272, - 10.115217693780192, - 10.119737383468642, - 10.096942737087836, - 10.074165898236403, - 9.989873401068198, - 9.943475483566534, - 9.960181001279434, - 9.97714849625596, - 10.023005502473323, - 10.052402065424006, - 10.102419234942335, - 10.13262505067691, - 10.112781343098005, - 10.118197912177768, - 10.19080971721185, - 10.202289840500937, - 10.15529965300614, - 10.198532522317967, - 10.195330083150496, - 10.244251530868212, - 10.255812173062454, - 10.26505523102679, - 10.53219965590857, - 10.507620079085449, - 10.773134212947268, - 10.634075879234668, - 10.671170915024353, - 10.673038881652342, - 10.67866171965312, - 10.555575512242942, - 10.634648877794318, - 10.547625414936306, - 10.637032525565468, - 10.638032629318872, - 10.660503448510585, - 10.629659937489455, - 10.587716033239081, - 10.52571803148587, - 10.534645332362254, - 10.411614123743304, - 10.396531406890206, - 10.37820478592621, - 10.43001273726156, - 10.465676107759705, - 10.574264524648086, - 10.574761306335464, - 10.516913099412005 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949331", - "id": "chiliz", - "symbol": "chz", - "name": "Chiliz", - "image": "https://coin-images.coingecko.com/coins/images/8834/large/CHZ_Token_updated.png?1696508986", - "current_price": 0.111918, - "market_cap": 993532851, - "market_cap_rank": 92, - "fully_diluted_valuation": 993532851, - "total_volume": 103521094, - "high_24h": 0.122299, - "low_24h": 0.111373, - "price_change_24h": -0.010311026937157087, - "price_change_percentage_24h": -8.43584, - "market_cap_change_24h": -91834664.64027166, - "market_cap_change_percentage_24h": -8.46116, - "circulating_supply": 8888888888.0, - "total_supply": 8888888888.0, - "max_supply": 8888888888.0, - "ath": 0.878633, - "ath_change_percentage": -87.31857, - "ath_date": "2021-03-13T08:04:21.200Z", - "atl": 0.00410887, - "atl_change_percentage": 2611.77106, - "atl_date": "2019-09-28T00:00:00.000Z", - "roi": { - "times": 4.087172329303746, - "currency": "usd", - "percentage": 408.71723293037456 - }, - "last_updated": "2024-06-13T16:12:23.136Z", - "sparkline_in_7d": { - "price": [ - 0.14382782915032996, - 0.1433749667541805, - 0.14415601622163474, - 0.14417098478187293, - 0.14393223857725923, - 0.14361924167722476, - 0.14436728485356348, - 0.1435962453209961, - 0.14102956325186236, - 0.13769828384393562, - 0.13734072740460862, - 0.13764753660664614, - 0.13718226229992, - 0.13803418354969058, - 0.13936649988464106, - 0.13949075013357595, - 0.13879801214998708, - 0.1394912942035435, - 0.1393603446996996, - 0.13866278170336319, - 0.13873584089581756, - 0.138599906930561, - 0.13861056925637516, - 0.1379643978910645, - 0.13861905338217617, - 0.13774816012349608, - 0.13797965706547935, - 0.13753213973441888, - 0.13716803463468172, - 0.1358160373633998, - 0.1335779475009563, - 0.12236925358338863, - 0.12402276344295783, - 0.12580981439611924, - 0.12509413200841044, - 0.12514925331957696, - 0.12453730645650146, - 0.12358088904621395, - 0.12442176365929518, - 0.12397509189207614, - 0.12380203698144274, - 0.12272537168756058, - 0.12208717718945473, - 0.12241324363847078, - 0.12314224686728448, - 0.1226581672387309, - 0.122650168205031, - 0.12185095231445298, - 0.11831731999838828, - 0.11900978219638828, - 0.11931677131585325, - 0.11939957801634757, - 0.1183770960299816, - 0.11769365740091803, - 0.11763995309402553, - 0.11790547910884462, - 0.11767646725510743, - 0.11712666238827762, - 0.11704355730832058, - 0.11665229281577034, - 0.11731292127921385, - 0.1187794979074418, - 0.11976959651355315, - 0.11783299681797021, - 0.11811068705804528, - 0.11832820179371456, - 0.1191037156053434, - 0.11963156150795602, - 0.12018865007048202, - 0.12073849737248424, - 0.12026485381648615, - 0.11971536731657675, - 0.12048991398141368, - 0.12140080207432792, - 0.12116290379279103, - 0.12350737426948809, - 0.12322499870049651, - 0.12451068436656187, - 0.12712047779936178, - 0.1297770017219636, - 0.12881285616829433, - 0.1299014216029124, - 0.12971026745905156, - 0.13058808157826982, - 0.1294776796867008, - 0.12769344152857443, - 0.12799813118680797, - 0.12650222464651936, - 0.1258799717077228, - 0.12659401121550828, - 0.12517439883377354, - 0.1240127847164803, - 0.12188739078549114, - 0.12473853619854074, - 0.12501385143834623, - 0.12549458216963047, - 0.12752850347004008, - 0.12666525165513823, - 0.12703946079621173, - 0.12872954610380233, - 0.12816340392430192, - 0.1292595540962403, - 0.1281089911176827, - 0.12748046189205853, - 0.1268468346970561, - 0.1272538161814107, - 0.12666790121995403, - 0.12574202091508477, - 0.125935665744399, - 0.12769133053146398, - 0.12423973197404303, - 0.12537498185875315, - 0.12757859403247693, - 0.1245116453567419, - 0.12368760977037803, - 0.12195146747438539, - 0.12340392855738976, - 0.1229460807355552, - 0.12151214442289716, - 0.12349022829596766, - 0.12276638626079618, - 0.121570933027609, - 0.11872388314006327, - 0.11842137618889566, - 0.11788537887529957, - 0.1175145691274437, - 0.11745850514555996, - 0.11868224765971336, - 0.11836455767991554, - 0.1179496220967856, - 0.11816855851380563, - 0.11713274705299975, - 0.11715569476143348, - 0.11628742642510721, - 0.11495852823904365, - 0.1170525478413125, - 0.11794485587662906, - 0.11769906621537098, - 0.11684225918349594, - 0.11696840447707268, - 0.11663421019513341, - 0.11747034474023495, - 0.11844675040246842, - 0.11847299403488043, - 0.11738993070144939, - 0.12233467112308574, - 0.12157843776682492, - 0.12251282096840482, - 0.12198830686993123, - 0.12184009726222551, - 0.1219657133089267, - 0.12031458505672357, - 0.11759680025380355, - 0.1193181351161861, - 0.11965943477133972, - 0.12053971403842328, - 0.119810553055801, - 0.12004229239287473, - 0.11959810057797468, - 0.11797544977485296, - 0.1182012707876389, - 0.11841756285088746, - 0.11804175420466002, - 0.11691440610121813, - 0.1175669903854264, - 0.11735524186233932, - 0.11701282803482649, - 0.11743648422710852 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949332", - "id": "bittorrent", - "symbol": "btt", - "name": "BitTorrent", - "image": "https://coin-images.coingecko.com/coins/images/22457/large/btt_logo.png?1696521780", - "current_price": 1.01e-06, - "market_cap": 982794977, - "market_cap_rank": 93, - "fully_diluted_valuation": 1004875410, - "total_volume": 51286139, - "high_24h": 1.07e-06, - "low_24h": 1.01e-06, - "price_change_24h": -4.9106087762e-08, - "price_change_percentage_24h": -4.61492, - "market_cap_change_24h": -50237082.11949313, - "market_cap_change_percentage_24h": -4.86307, - "circulating_supply": 968246428571000.0, - "total_supply": 990000000000000.0, - "max_supply": 990000000000000.0, - "ath": 3.43e-06, - "ath_change_percentage": -70.26737, - "ath_date": "2022-01-21T04:00:31.909Z", - "atl": 3.65368e-07, - "atl_change_percentage": 179.23302, - "atl_date": "2023-10-13T05:10:41.241Z", - "roi": null, - "last_updated": "2024-06-13T16:12:26.831Z", - "sparkline_in_7d": { - "price": [ - 1.1652059018092726e-06, - 1.1720469681247818e-06, - 1.17373298739622e-06, - 1.1727299860583529e-06, - 1.1653553288243215e-06, - 1.167082054822623e-06, - 1.1663310663003215e-06, - 1.156808221311524e-06, - 1.1620531625984552e-06, - 1.1583649132731375e-06, - 1.1615583143439468e-06, - 1.1600133090547651e-06, - 1.1576502671982922e-06, - 1.1556662752531398e-06, - 1.157230227702375e-06, - 1.1585072006802294e-06, - 1.1637203769550402e-06, - 1.162988316086293e-06, - 1.164299413942355e-06, - 1.1616188841984667e-06, - 1.1619110203419315e-06, - 1.1651421347401067e-06, - 1.1654600867368057e-06, - 1.1706313017938433e-06, - 1.1669411854215965e-06, - 1.1651685456637844e-06, - 1.1752322164154747e-06, - 1.1766043567691517e-06, - 1.173078497323177e-06, - 1.145258412799265e-06, - 1.122417574520169e-06, - 1.1161396230199475e-06, - 1.1161894604744423e-06, - 1.1189265551402279e-06, - 1.1181697427598776e-06, - 1.1182022895301017e-06, - 1.1231344516402733e-06, - 1.1253371432103003e-06, - 1.1191466865079652e-06, - 1.1208345733370696e-06, - 1.1194075327761276e-06, - 1.1168448704015232e-06, - 1.1192497951438066e-06, - 1.1193067447371445e-06, - 1.1227541209108646e-06, - 1.1203575337560505e-06, - 1.115284374802922e-06, - 1.1073891626788317e-06, - 1.0984544866866521e-06, - 1.1006744947944408e-06, - 1.100190869401049e-06, - 1.1047105298505263e-06, - 1.0988064167049355e-06, - 1.1032986816274389e-06, - 1.1008848201439e-06, - 1.100060495665534e-06, - 1.098972255640575e-06, - 1.0975125684816256e-06, - 1.096771924866065e-06, - 1.0950865003507848e-06, - 1.0971458579988084e-06, - 1.0970287999297752e-06, - 1.089538891473072e-06, - 1.0877910088983966e-06, - 1.0887448455675972e-06, - 1.0909311076392611e-06, - 1.0905764830733913e-06, - 1.0888301711510682e-06, - 1.0889047718475586e-06, - 1.0931949689347685e-06, - 1.094042122477661e-06, - 1.0937454808321002e-06, - 1.0968804588383387e-06, - 1.094977708043489e-06, - 1.093874127534652e-06, - 1.0936284303441802e-06, - 1.097149292507378e-06, - 1.0986819911897425e-06, - 1.102685886499337e-06, - 1.1027486999674884e-06, - 1.1000225768714324e-06, - 1.1007352987647374e-06, - 1.0978189960115764e-06, - 1.1008120135612315e-06, - 1.0953488228879542e-06, - 1.09625945781923e-06, - 1.0947139564097781e-06, - 1.0938364882794942e-06, - 1.0969693522625426e-06, - 1.0853247003620452e-06, - 1.0807355668409728e-06, - 1.0756347631017387e-06, - 1.080079100168084e-06, - 1.0805398690440141e-06, - 1.081933162707657e-06, - 1.0820412309437517e-06, - 1.0808215500887054e-06, - 1.0835456917987374e-06, - 1.084992478333236e-06, - 1.0896423434581342e-06, - 1.0874141863731135e-06, - 1.0846681430532952e-06, - 1.0836288033353421e-06, - 1.0840051488831493e-06, - 1.0810629131369199e-06, - 1.0839921389781242e-06, - 1.0818525110430057e-06, - 1.0799511764673114e-06, - 1.0766490769449077e-06, - 1.0615186670242827e-06, - 1.0558694049536167e-06, - 1.0525186536699833e-06, - 1.044914455478766e-06, - 1.0381165652612412e-06, - 1.0384209597760613e-06, - 1.0371708913492446e-06, - 1.0366042053470161e-06, - 1.037291690871869e-06, - 1.0336867919355392e-06, - 1.0337565438945394e-06, - 1.0338887694224996e-06, - 1.035998632383052e-06, - 1.0333316096264521e-06, - 1.0170805529250986e-06, - 1.0212712698765103e-06, - 1.0229875435051732e-06, - 1.0267919612489417e-06, - 1.023838463007384e-06, - 1.0232967284299946e-06, - 1.0248299057250112e-06, - 1.0259714465915047e-06, - 1.026354239922252e-06, - 1.0411239002840753e-06, - 1.0354807304481436e-06, - 1.0381161859094582e-06, - 1.0429597579575358e-06, - 1.0419677217675904e-06, - 1.0372624098821684e-06, - 1.0368043821867496e-06, - 1.035621581159333e-06, - 1.0363305283010329e-06, - 1.040046031597957e-06, - 1.0409953782851253e-06, - 1.035702362021616e-06, - 1.0589949217091369e-06, - 1.0658160540864798e-06, - 1.074007815867974e-06, - 1.0667391275772172e-06, - 1.0643916251173555e-06, - 1.0587259472415697e-06, - 1.053141470097186e-06, - 1.041559532080969e-06, - 1.0457620859598747e-06, - 1.0451507202872987e-06, - 1.0446949335472282e-06, - 1.0448822549085766e-06, - 1.0545184556541967e-06, - 1.0468634174156666e-06, - 1.0389142304186558e-06, - 1.0368827195758916e-06, - 1.0351140453796203e-06, - 1.0356642150847372e-06, - 1.0336325728870018e-06, - 1.0349846853074711e-06, - 1.0335939924392158e-06, - 1.0330055226199483e-06, - 1.0338415839568664e-06, - 1.0293865490302571e-06 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949333", - "id": "dydx-chain", - "symbol": "dydx", - "name": "dYdX", - "image": "https://coin-images.coingecko.com/coins/images/32594/large/dydx.png?1698673495", - "current_price": 1.64, - "market_cap": 970605078, - "market_cap_rank": 94, - "fully_diluted_valuation": 1253743203, - "total_volume": 43386044, - "high_24h": 1.8, - "low_24h": 1.64, - "price_change_24h": -0.14622522561385431, - "price_change_percentage_24h": -8.17062, - "market_cap_change_24h": -93345826.29360199, - "market_cap_change_percentage_24h": -8.77351, - "circulating_supply": 593526139.0, - "total_supply": 766665433.0, - "max_supply": 1000000000.0, - "ath": 4.52, - "ath_change_percentage": -63.72887, - "ath_date": "2024-03-07T22:19:11.131Z", - "atl": 1.64, - "atl_change_percentage": 0.10137, - "atl_date": "2024-06-13T16:03:01.525Z", - "roi": null, - "last_updated": "2024-06-13T16:12:30.516Z", - "sparkline_in_7d": { - "price": [ - 2.1687360251855328, - 2.152407406577952, - 2.1835496123215945, - 2.19534514877705, - 2.1773030532991795, - 2.1681420142415426, - 2.178917507698671, - 2.170656713163782, - 2.1468828929288284, - 2.157231236775887, - 2.1731127962454173, - 2.183090337596633, - 2.1729762195336804, - 2.1569088108478995, - 2.1633888025087384, - 2.1483522596033473, - 2.1786411303897806, - 2.1835458967183654, - 2.1998908640298667, - 2.1807444397907725, - 2.162370340186269, - 2.157132466777401, - 2.1574949599348185, - 2.1514953470279963, - 2.1674802007850165, - 2.1220971671614888, - 2.1433734930314907, - 2.146465819866627, - 2.1333171422779182, - 2.1061378329713585, - 1.9357083173421392, - 1.8686401114056486, - 1.892219382803371, - 1.898510183283371, - 1.9081126215862565, - 1.907642266235448, - 1.899359647753309, - 1.9306693525333132, - 1.9278318536298629, - 1.9282994363875612, - 1.9281920260606777, - 1.915463180527051, - 1.9139499897622647, - 1.9157043880298952, - 1.9129875369340563, - 1.9079488237014575, - 1.901421458755151, - 1.9025219897510879, - 1.864410804814693, - 1.8670212724701414, - 1.8879556969842164, - 1.8846643928851556, - 1.8736946263382577, - 1.8539743168277387, - 1.8583123718069032, - 1.85387171415251, - 1.842554571529585, - 1.8403344378791688, - 1.8477906873972896, - 1.8413149220475684, - 1.8483120701823705, - 1.8506457743142957, - 1.8437257459489305, - 1.8312397784624093, - 1.836416575187761, - 1.8308203818853144, - 1.8388885041490342, - 1.8478840084563175, - 1.842094259367656, - 1.8515350110755397, - 1.8548798899997005, - 1.850800436374403, - 1.8599757196438715, - 1.8735876364287127, - 1.8664903247538582, - 1.8751455673698587, - 1.8764832690321953, - 1.8844886334829822, - 1.8842567262951135, - 1.894450939872831, - 1.8939929227869008, - 1.8930068277278636, - 1.8973618585795957, - 1.9063574311845715, - 1.9106067744686739, - 1.8977210195765188, - 1.897613202918077, - 1.8875098941158583, - 1.8786846467359326, - 1.8863941717653967, - 1.8735071235219938, - 1.8560100989892865, - 1.8514468674998839, - 1.8638461545019147, - 1.8919565960492168, - 1.8863371711005497, - 1.882985020234654, - 1.862117144789392, - 1.872161241791263, - 1.8721546503974396, - 1.8983270096970666, - 1.8784910521449445, - 1.8798516780251457, - 1.8653926860198542, - 1.8506828552719008, - 1.8465581971629002, - 1.8328549426158312, - 1.8479406863000565, - 1.8393019242264304, - 1.8315849378150495, - 1.7763684805483262, - 1.7863779789750531, - 1.7852510232726728, - 1.7756189068793502, - 1.774687919365945, - 1.7589067311769735, - 1.7654848078669796, - 1.7632411017182459, - 1.7499839169195595, - 1.7467624078227846, - 1.7447685134534816, - 1.725695765643275, - 1.7152833478265062, - 1.7183259767617558, - 1.6904660428629605, - 1.6724123687232344, - 1.6773071269946795, - 1.6817363032943078, - 1.6779660200066904, - 1.6763698792266069, - 1.6864749608088205, - 1.6784133336133853, - 1.6765448611443978, - 1.662878795794078, - 1.6551868582000415, - 1.6742682127092487, - 1.6684329682720027, - 1.6738893146670022, - 1.6752062887536334, - 1.6844898586319499, - 1.6854966941937892, - 1.6828695272741154, - 1.7017012003030938, - 1.7177514506079492, - 1.7115921990620875, - 1.8122334176704942, - 1.7955787853555598, - 1.808917424898214, - 1.789259218819961, - 1.78999221266414, - 1.7767783741116123, - 1.788189349147818, - 1.7573564249784484, - 1.776289697386208, - 1.7668959150073158, - 1.7515575204346578, - 1.7418656861037294, - 1.7514743719801547, - 1.7248240690536307, - 1.678863889519768, - 1.6904060625021229, - 1.687412161289755, - 1.6693693446237683, - 1.6609879843460784, - 1.6757803132434261, - 1.6714653605644831, - 1.6620065567789388, - 1.6658630705376765 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949334", - "id": "tokenize-xchange", - "symbol": "tkx", - "name": "Tokenize Xchange", - "image": "https://coin-images.coingecko.com/coins/images/4984/large/TKX_-_Logo_-_RGB-15.png?1696505519", - "current_price": 11.79, - "market_cap": 941964473, - "market_cap_rank": 96, - "fully_diluted_valuation": 1177514467, - "total_volume": 10328085, - "high_24h": 12.34, - "low_24h": 11.75, - "price_change_24h": -0.5298741570341221, - "price_change_percentage_24h": -4.30209, - "market_cap_change_24h": -43935150.47295928, - "market_cap_change_percentage_24h": -4.45635, - "circulating_supply": 79995999.94518414, - "total_supply": 100000000.0, - "max_supply": 100000000.0, - "ath": 22.3, - "ath_change_percentage": -47.31676, - "ath_date": "2022-10-31T10:23:59.455Z", - "atl": 0.111255, - "atl_change_percentage": 10458.09769, - "atl_date": "2019-04-28T00:00:00.000Z", - "roi": { - "times": 39.57411358510317, - "currency": "usd", - "percentage": 3957.411358510317 - }, - "last_updated": "2024-06-13T16:12:08.501Z", - "sparkline_in_7d": { - "price": [ - 13.42397970114283, - 13.389944732704658, - 13.368589971617947, - 13.404399136557762, - 13.405167427432234, - 13.368519751020136, - 13.409729502849524, - 13.36388017009728, - 13.345407927956082, - 13.378876155883193, - 13.374827559338302, - 13.382487405064964, - 13.388431187913394, - 13.353973134493733, - 13.378412378234689, - 13.373810030678328, - 13.224380710370959, - 13.235351985640746, - 13.25481910167003, - 13.252246631121682, - 13.27166100850845, - 13.261759571985998, - 13.249699055102724, - 13.222751859948664, - 13.249512364032778, - 13.213363456702988, - 13.219337548357313, - 13.230150523754812, - 13.26283998247725, - 13.229708831651973, - 13.150859088780772, - 12.831041948831729, - 12.835672424582759, - 12.85548994794542, - 12.853770684457972, - 12.866669476866441, - 12.825017445366898, - 12.826983915512567, - 12.832409750292255, - 12.833134726512545, - 12.853684117203105, - 12.83801219669893, - 12.832794277340621, - 12.832814699117632, - 12.858447522156617, - 12.817307864098002, - 12.850610469214924, - 12.863003612179918, - 12.835935083574505, - 12.840630310274808, - 12.809478574094697, - 12.829910586704196, - 12.838179241017947, - 12.820811494246342, - 12.826434329969779, - 12.831707275276424, - 12.832380625036267, - 12.799899672022498, - 12.820696463666593, - 12.811784272649204, - 12.812626233895346, - 12.807392917695834, - 12.821435932661052, - 12.803873834743646, - 12.821675291422133, - 12.822213635533858, - 12.828729797723005, - 12.83329904692859, - 12.831569430288717, - 12.723209044181386, - 12.729354507634184, - 12.747655485712482, - 12.727573491289196, - 12.755764366578667, - 12.725047169665036, - 12.734396053365062, - 12.733297460134093, - 12.732247612774495, - 12.74275903369924, - 12.770480838268362, - 12.74153831435835, - 12.757329794253444, - 12.77595642087712, - 12.757753183414906, - 12.755648496043946, - 12.744460927100084, - 12.741342537366, - 12.747901209807416, - 12.731538241294281, - 12.731222745415991, - 12.72423671544644, - 12.689509367536308, - 12.629602283654835, - 12.630854547149074, - 12.634591704496994, - 12.476094283976265, - 12.46973001791352, - 12.484078350595256, - 12.459563193373437, - 12.480210707317042, - 12.50481613457015, - 12.489371323674712, - 12.502442378229741, - 12.508754314505744, - 12.487898181919574, - 12.4752187251566, - 12.459139761300166, - 12.472320658091784, - 12.470663675681967, - 12.442638592607077, - 12.359479832398918, - 12.391920982120963, - 12.38327087355484, - 12.09111219039195, - 11.948860537699618, - 11.950419994431446, - 11.967768775076154, - 11.96208322670715, - 11.934457326047097, - 11.956073034416676, - 11.86008124345556, - 11.873420064995273, - 11.844560493297699, - 11.830856207444096, - 11.781426507936791, - 11.91470565649322, - 11.933921495287601, - 12.11036717938977, - 12.064965583036706, - 12.075453835174603, - 12.07935434818994, - 12.077281943033581, - 12.077360274537284, - 12.05239022118697, - 11.97945589020274, - 12.019879448677006, - 12.055512943698888, - 12.043301455257087, - 12.101261053242734, - 12.10099924817667, - 12.117472513722145, - 12.141641054096393, - 12.172495938307769, - 12.183001796710155, - 12.120207551958154, - 12.295006013563295, - 12.211795033749747, - 12.239149276606302, - 12.33088361753112, - 12.323933517360818, - 12.333969354560775, - 12.267968017754256, - 12.16402588716877, - 12.065920605814064, - 12.125926208009295, - 12.105885820167186, - 12.09469847675075, - 12.100428562413095, - 12.059659982568938, - 11.991566397091876, - 11.98788723276159, - 11.98044924085378, - 11.97083209047376, - 11.97912418574266, - 12.009415324597443, - 12.020606945578086, - 11.99520846192725, - 11.865576372311503 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949335", - "id": "zebec-protocol", - "symbol": "zbc", - "name": "Zebec Protocol", - "image": "https://coin-images.coingecko.com/coins/images/24342/large/zebec.jpeg?1696523526", - "current_price": 0.01849875, - "market_cap": 941338114, - "market_cap_rank": 95, - "fully_diluted_valuation": 1849759125, - "total_volume": 6716.41, - "high_24h": 0.01923895, - "low_24h": 0.01796684, - "price_change_24h": -0.000715555104052249, - "price_change_percentage_24h": -3.72408, - "market_cap_change_24h": -36439132.53718889, - "market_cap_change_percentage_24h": -3.72673, - "circulating_supply": 50883649370.0, - "total_supply": 99987978070.0, - "max_supply": 10000000000.0, - "ath": 0.052766, - "ath_change_percentage": -65.0687, - "ath_date": "2022-04-13T15:54:52.330Z", - "atl": 0.00570409, - "atl_change_percentage": 223.1359, - "atl_date": "2023-10-20T04:02:48.815Z", - "roi": null, - "last_updated": "2024-06-13T16:12:20.115Z", - "sparkline_in_7d": { - "price": [ - 0.02210762191637658, - 0.022992878850576375, - 0.022992407681293684, - 0.022987059473859334, - 0.022992966647572242, - 0.022858286628567058, - 0.02332494556711191, - 0.02331792081697129, - 0.023258376331240966, - 0.023251233921905437, - 0.022662069721035533, - 0.02266773200123829, - 0.022636696605681406, - 0.02295723151370122, - 0.023573093572432088, - 0.022348123133495292, - 0.022615717709678327, - 0.02242088716452662, - 0.022345680625670786, - 0.022665095340908076, - 0.02224246706163472, - 0.022171848371384903, - 0.021730864471040636, - 0.021547111632263093, - 0.02125089873327128, - 0.021343871550881268, - 0.02150783504933322, - 0.0215523140386142, - 0.021621954990090342, - 0.02151389116605366, - 0.020773225458195772, - 0.021299432577507132, - 0.021339760272894644, - 0.020771559561613827, - 0.021183994464517235, - 0.0205890400455197, - 0.020423718863955602, - 0.02062677590844049, - 0.0200463055485901, - 0.018700044919763792, - 0.019228075163903555, - 0.01915933739496163, - 0.019257862726959517, - 0.019307665328666054, - 0.01947562438827535, - 0.019542244396274736, - 0.019317323270225936, - 0.01928870458730402, - 0.01936148032800777, - 0.019381943238309236, - 0.01945574929727335, - 0.019253924492782876, - 0.019350994928604745, - 0.01934990685187982, - 0.018719066989863517, - 0.018090960044914842, - 0.01795415862734942, - 0.018424260080682382, - 0.01859514504165175, - 0.018560478998972597, - 0.018495308755066574, - 0.018460283311204032, - 0.018465901931258518, - 0.018584247426796003, - 0.018628854659627818, - 0.01853381492077652, - 0.01852840602917721, - 0.018426724890040873, - 0.01856960185080595, - 0.018602793012390054, - 0.018617236854572283, - 0.018662375201714782, - 0.01872837867823354, - 0.01882620093250173, - 0.018829624646358695, - 0.01885388614615049, - 0.01867651829596418, - 0.01895597537377801, - 0.018976724903438193, - 0.01851058000060301, - 0.0189503286519396, - 0.018919366891979778, - 0.018412148543853906, - 0.018439660253515146, - 0.018376143438411104, - 0.01856045944082503, - 0.01868670389817341, - 0.018514704776451042, - 0.018472379141396284, - 0.018663851036312285, - 0.0185975901933822, - 0.018569173805017384, - 0.018470366671383603, - 0.01860057628578151, - 0.018509028252130702, - 0.018517356717076897, - 0.01854805241822057, - 0.01871255865834349, - 0.018975841629382924, - 0.018925360773352006, - 0.018719381899264163, - 0.018569039298666108, - 0.018410782274083205, - 0.018227629678485367, - 0.01821639497558226, - 0.01816629106701737, - 0.018171413553714523, - 0.018156105659859426, - 0.017942601934656757, - 0.018249501194374965, - 0.018206101539822547, - 0.01826959479530913, - 0.018233956004589106, - 0.017972326679701205, - 0.018278592124026497, - 0.018144046212149476, - 0.018186525647166725, - 0.01818395167751141, - 0.018131081580561256, - 0.018197955729375517, - 0.01809048572565927, - 0.018207744620630326, - 0.01788277502009079, - 0.01812865953724083, - 0.017968902124218488, - 0.0179882760728991, - 0.018310763654167096, - 0.01816304072745696, - 0.018173975415661545, - 0.01817739070814023, - 0.018309333441518593, - 0.0182770287149688, - 0.018276604422336844, - 0.018092280119085632, - 0.01796292250696027, - 0.018269311817113727, - 0.01801462008329059, - 0.01794090009373345, - 0.018007718694433825, - 0.018118979479851912, - 0.018144243668421257, - 0.01802995552421158, - 0.0182784869070034, - 0.018342986566248862, - 0.018351773453513773, - 0.019611325243589314, - 0.019160674097755355, - 0.019388593909699544, - 0.019190708571475035, - 0.018329938978805322, - 0.01816767440194186, - 0.01864787752734627, - 0.01848916919169616, - 0.018600067027198876, - 0.01854555133330098, - 0.018545858103155566, - 0.018483491978322684, - 0.018486988912351225, - 0.01830368023196489, - 0.018278623481784745, - 0.018349528798322058, - 0.018462623759592258, - 0.018425137583033744, - 0.018410062186691854, - 0.018392267558895965, - 0.018573735097591727, - 0.01831792385762018, - 0.018633621346720274 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949336", - "id": "neo", - "symbol": "neo", - "name": "NEO", - "image": "https://coin-images.coingecko.com/coins/images/480/large/NEO_512_512.png?1696501735", - "current_price": 13.08, - "market_cap": 921889531, - "market_cap_rank": 97, - "fully_diluted_valuation": 1307088518, - "total_volume": 32442335, - "high_24h": 13.83, - "low_24h": 13.0, - "price_change_24h": -0.6249402058377136, - "price_change_percentage_24h": -4.56102, - "market_cap_change_24h": -43563980.17930591, - "market_cap_change_percentage_24h": -4.51228, - "circulating_supply": 70530000.0, - "total_supply": 100000000.0, - "max_supply": null, - "ath": 198.38, - "ath_change_percentage": -93.43456, - "ath_date": "2018-01-15T00:00:00.000Z", - "atl": 0.078349, - "atl_change_percentage": 16523.76194, - "atl_date": "2016-10-21T00:00:00.000Z", - "roi": { - "times": 362.24502679475444, - "currency": "usd", - "percentage": 36224.502679475445 - }, - "last_updated": "2024-06-13T16:12:46.382Z", - "sparkline_in_7d": { - "price": [ - 15.130021776634246, - 15.10796594778136, - 15.098263404504147, - 15.163123758860241, - 15.155860633531963, - 15.077899148595245, - 15.209098595618423, - 15.065785513037481, - 14.850862613749081, - 14.907633221222126, - 14.857718140353485, - 14.949917513820516, - 14.900660762620767, - 14.886322299294303, - 14.86680813544085, - 14.842301236051227, - 14.858643776923158, - 15.002292755640095, - 15.092796696238373, - 15.106903076478286, - 15.083382654112064, - 15.079413595427472, - 15.020849049614876, - 15.07720500922067, - 15.193994095974551, - 15.043553536855681, - 15.117668980557784, - 15.134826313764723, - 15.003464083854698, - 14.853941944131002, - 14.748708900897745, - 13.681906468528993, - 14.110819216595162, - 14.139058182639726, - 14.096198227828932, - 14.162930113670193, - 14.08843522536114, - 14.101792038949496, - 14.170124191120536, - 14.141203644088616, - 14.103543477590414, - 14.018064443497115, - 13.986770798126985, - 13.997278226076384, - 13.976739057459907, - 13.906943366018654, - 13.830501427595774, - 13.820377997120831, - 13.567279645299246, - 13.519903917481816, - 13.51324026626734, - 13.543815634228817, - 13.463423938892433, - 13.386115815816641, - 13.439787382361633, - 13.397905400581909, - 13.37470775049727, - 13.346206749490156, - 13.341375495594413, - 13.354492241796311, - 13.382788754700318, - 13.373738166628009, - 13.382057546397604, - 13.24571589710769, - 13.305959333658357, - 13.273381594522274, - 13.339315486624987, - 13.364306696974381, - 13.35894911283289, - 13.422345004142576, - 13.403570758133771, - 13.388426122262482, - 13.340693926555156, - 13.407684228715931, - 13.33946635637722, - 13.340336548844189, - 13.340331676789344, - 13.39064576146204, - 13.383715339686567, - 13.47311788571455, - 13.473612702208785, - 13.467372564720256, - 13.537859253006802, - 13.496408186759835, - 13.484459847609703, - 13.451083195334768, - 13.475508349173815, - 13.494105398526605, - 13.482410609704312, - 13.490295400553494, - 13.411741647573962, - 13.299406101325992, - 13.278138181209167, - 13.409764088133088, - 13.517042982689095, - 13.47058922741795, - 13.43851583511261, - 13.347172623224715, - 13.339465142396376, - 13.48356658222139, - 13.568948724417348, - 13.575828243343961, - 13.572970246871337, - 13.53664173691438, - 13.445027631349612, - 13.43586253324392, - 13.460817532015374, - 13.424797800303699, - 13.416104402953003, - 13.368001272615071, - 13.174180179396354, - 13.103474496518746, - 13.125767428570088, - 13.065060378385592, - 12.96741003086072, - 12.956803157464796, - 12.95096124256801, - 13.015309249544696, - 13.030203651451929, - 13.056959888580913, - 13.018549447387533, - 12.94719328400674, - 12.795631122699646, - 12.87137815963809, - 12.682860617499474, - 12.711682312873721, - 12.827872658765303, - 12.87949261264179, - 12.905804258243785, - 12.907507795020077, - 12.960632305934558, - 12.979029079649381, - 12.9261503425285, - 12.816174877165677, - 12.73564089027407, - 12.889667260320024, - 12.970211028451809, - 12.972385751494345, - 13.002045476744696, - 13.066909376979504, - 13.127951109657955, - 13.128611128270892, - 13.321223634944934, - 13.30727489138612, - 13.247925953825185, - 13.587111408841965, - 13.523803242738031, - 13.681851659581772, - 13.696360214563395, - 13.747388848550235, - 13.832123536293315, - 13.583905063456397, - 13.364971540323177, - 13.543073261646253, - 13.54285744933846, - 13.575512964393068, - 13.568454344234869, - 13.586492995236432, - 13.520667649109951, - 13.504322430597846, - 13.40592008233651, - 13.396799984161108, - 13.44064084106055, - 13.401630608480247, - 13.428518172987175, - 13.482151816269603, - 13.50615380562743, - 13.506533206200743 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949337", - "id": "ronin", - "symbol": "ron", - "name": "Ronin", - "image": "https://coin-images.coingecko.com/coins/images/20009/large/photo_2024-04-06_22-52-24.jpg?1712415367", - "current_price": 2.75, - "market_cap": 907468830, - "market_cap_rank": 98, - "fully_diluted_valuation": 2751485117, - "total_volume": 24662419, - "high_24h": 2.94, - "low_24h": 2.75, - "price_change_24h": -0.18125621142885784, - "price_change_percentage_24h": -6.18354, - "market_cap_change_24h": -58962380.416056156, - "market_cap_change_percentage_24h": -6.10104, - "circulating_supply": 329810553.593352, - "total_supply": 1000000000.0, - "max_supply": 1000000000.0, - "ath": 4.45, - "ath_change_percentage": -38.24652, - "ath_date": "2024-03-26T05:12:38.487Z", - "atl": 0.196601, - "atl_change_percentage": 1297.96725, - "atl_date": "2022-11-21T19:36:31.487Z", - "roi": null, - "last_updated": "2024-06-13T16:12:18.048Z", - "sparkline_in_7d": { - "price": [ - 3.145359915343722, - 3.1383494239125844, - 3.13284944231531, - 3.1357666749471047, - 3.1379818084653044, - 3.118418551162529, - 3.125074674347403, - 3.1155833672238042, - 3.079400814096621, - 3.0969852795650707, - 3.089833159553815, - 3.092251585060729, - 3.0855406619210273, - 3.0891241953363298, - 3.0821968347623914, - 3.0790139474465494, - 3.0830656222020347, - 3.095186783407817, - 3.0927769156409655, - 3.082095004840279, - 3.0745933508348013, - 3.0616129495673903, - 3.0613931385159576, - 3.061799076645982, - 3.077677986451516, - 3.0491191520570124, - 3.073254000634884, - 3.081352658524334, - 3.062308141934161, - 3.0321439914681463, - 2.867782361796457, - 2.8774950109818827, - 2.9089846952105445, - 2.917630625282621, - 2.914429039623841, - 2.930124476426302, - 2.9327552879282868, - 2.9430891585179824, - 2.9538707680401015, - 2.95260860520292, - 2.9549218519939346, - 2.9436256930035434, - 2.9584806967568276, - 2.964979156922759, - 2.9786662444922287, - 2.970767258024179, - 2.9690472504371668, - 2.9580045840332545, - 2.922985250247498, - 2.911865077218965, - 2.9198694054286696, - 2.9273968730510678, - 2.9187673490200132, - 2.913301102255616, - 2.9157744222633037, - 2.905084906434785, - 2.885767414953497, - 2.8772729147126483, - 2.8853615764213716, - 2.882350957936917, - 2.8959344812074264, - 2.8972807984623654, - 2.897367506114973, - 2.8731371830351966, - 2.8832756400533235, - 2.8796911936005167, - 2.882982210854395, - 2.902411349339137, - 2.9088873298376323, - 2.923740202455272, - 2.927512330759274, - 2.930619915099403, - 2.943714935187832, - 2.956168288508303, - 2.9438154286388967, - 2.9382106448122833, - 2.9348676699979253, - 2.9322998221725496, - 2.9375710951810956, - 2.9393231547486005, - 2.943051831950992, - 2.938029400292879, - 2.9372668823828008, - 2.9521168233964357, - 2.953953542546592, - 2.9445419864273603, - 2.9523614842377914, - 2.9473768243129723, - 2.9427101091502275, - 2.9455769863490042, - 2.9217410781238127, - 2.9104905848499323, - 2.896742880550549, - 2.9118317856147997, - 2.929764207368567, - 2.93423860646566, - 2.938077677020595, - 2.933051691240243, - 2.9215320090337964, - 2.9337739403288405, - 2.9524783274781825, - 2.942540011375902, - 2.9325253108115854, - 2.9204359514910236, - 2.9067966124632703, - 2.9049774559436683, - 2.8958977449714047, - 2.909066065413413, - 2.893224872246666, - 2.8929972372362105, - 2.861294637885142, - 2.852485146568751, - 2.8427695635534094, - 2.817955541668577, - 2.833468407924993, - 2.8242568803430363, - 2.8227309635704825, - 2.814571183452307, - 2.8097874647284367, - 2.806515468989106, - 2.80743576662188, - 2.786783641544891, - 2.780003692434933, - 2.7771445470489438, - 2.758849216144606, - 2.7546095711445897, - 2.7562493783845974, - 2.777913657836518, - 2.778278612231124, - 2.7833944082778572, - 2.79425069253336, - 2.7953820612152396, - 2.7891323781637674, - 2.7790195024080937, - 2.7621386377139947, - 2.803835177321198, - 2.8137983984932027, - 2.8196044471663027, - 2.8167162560598924, - 2.8230514141855116, - 2.8320638495270627, - 2.8280086196876817, - 2.8597564153593305, - 2.8631472048296156, - 2.8373840060183357, - 2.928842520292349, - 2.9179276191072785, - 2.931232809625172, - 2.928725094092732, - 2.9178437990256265, - 2.8955683179914975, - 2.902276139784077, - 2.8493337971121138, - 2.8675674617613827, - 2.8691888215399755, - 2.8735687120927027, - 2.8543272506071418, - 2.8714316820443875, - 2.8515957903465923, - 2.8170334696774844, - 2.816509496453012, - 2.8104674267569862, - 2.7994650468364326, - 2.788667270401594, - 2.8029422006615334, - 2.810214569583447, - 2.8041008747798255, - 2.8015989491490956 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949338", - "id": "the-sandbox", - "symbol": "sand", - "name": "The Sandbox", - "image": "https://coin-images.coingecko.com/coins/images/12129/large/sandbox_logo.jpg?1696511971", - "current_price": 0.391915, - "market_cap": 893909761, - "market_cap_rank": 99, - "fully_diluted_valuation": 1175561876, - "total_volume": 103016533, - "high_24h": 0.417697, - "low_24h": 0.389759, - "price_change_24h": -0.022950522118508843, - "price_change_percentage_24h": -5.53204, - "market_cap_change_24h": -50437502.48433721, - "market_cap_change_percentage_24h": -5.34099, - "circulating_supply": 2281231926.2233224, - "total_supply": 3000000000.0, - "max_supply": 3000000000.0, - "ath": 8.4, - "ath_change_percentage": -95.34859, - "ath_date": "2021-11-25T06:04:40.957Z", - "atl": 0.02897764, - "atl_change_percentage": 1247.83031, - "atl_date": "2020-11-04T15:59:14.441Z", - "roi": null, - "last_updated": "2024-06-13T16:12:38.205Z", - "sparkline_in_7d": { - "price": [ - 0.47159161548145645, - 0.47113717822506207, - 0.4798872581034094, - 0.4821923161942255, - 0.48053549106487264, - 0.47669498641376656, - 0.47956947037946795, - 0.47558479054038616, - 0.46890019793664833, - 0.4717807618471689, - 0.47005689514818627, - 0.4734689671330917, - 0.47338900678243667, - 0.4718115926512752, - 0.46836574025467914, - 0.4669555546806112, - 0.4670573033070724, - 0.4706759775967689, - 0.4717213137294069, - 0.47156741371496463, - 0.47029613288411204, - 0.4686478235082539, - 0.4680090214683074, - 0.46861461081871186, - 0.4732681985140122, - 0.46465179146180613, - 0.4731347550637594, - 0.4761241061907607, - 0.47641766037516803, - 0.4757899447470479, - 0.43965663741588423, - 0.4265109615917161, - 0.4313191045754829, - 0.43610318590741376, - 0.43511447302902684, - 0.4372569478943375, - 0.4347149389371836, - 0.43431272068043597, - 0.4369115447930324, - 0.43606301726460955, - 0.4348338541156944, - 0.4325455282589159, - 0.4324665260255857, - 0.4316065531353979, - 0.43189803001340754, - 0.4272140131651679, - 0.42721601443607743, - 0.42606420151009317, - 0.4194542722043073, - 0.41734798835121145, - 0.4156589568737994, - 0.416429300284108, - 0.41436849355463495, - 0.41086636566312135, - 0.4116652948559732, - 0.4104189601009135, - 0.40828084281665306, - 0.40851128231284217, - 0.41046357327692173, - 0.4098717021742793, - 0.41107036884527065, - 0.41022441351454186, - 0.41404870623802925, - 0.4093590801670231, - 0.4124140894375332, - 0.41160978206180365, - 0.41427113086301975, - 0.4133581613958659, - 0.4147931001800387, - 0.41638930654304634, - 0.41691313610534947, - 0.4162487565360086, - 0.41598891569829977, - 0.41942731448501164, - 0.4169518960481279, - 0.41784461307852294, - 0.41629194775773015, - 0.4171988097219577, - 0.41756803469490295, - 0.4194606799821407, - 0.4219187328709044, - 0.4223825214301089, - 0.4227261336608581, - 0.4215166230372699, - 0.42224304578713806, - 0.4205839040206811, - 0.4222108134350056, - 0.42012231471977474, - 0.41849968283731215, - 0.4181547007902858, - 0.41604296542155406, - 0.4136842720553389, - 0.4113167952347567, - 0.41583207656579463, - 0.4176027490540309, - 0.4184226167948614, - 0.4169134930365722, - 0.41439601023075817, - 0.41399228183123327, - 0.4196325158729892, - 0.4233567122931963, - 0.4194797653563149, - 0.42020075627444664, - 0.4179528669575013, - 0.4146854903907248, - 0.4134232927896073, - 0.41309546124075114, - 0.4139916166373017, - 0.4133119607342234, - 0.4123478827277557, - 0.402370334499944, - 0.4063393433326138, - 0.40637584771683494, - 0.4049613018594142, - 0.40536428921786044, - 0.40232767690564303, - 0.40243908597507194, - 0.40212394784808986, - 0.4020755842559318, - 0.4025717274006264, - 0.4004230811488261, - 0.39818525041944636, - 0.39363077030823074, - 0.39591819121120986, - 0.3904193401270813, - 0.39160086228776997, - 0.3938781390766122, - 0.3951382734359863, - 0.3938674382250689, - 0.3951003581210692, - 0.3954343215021378, - 0.39378670497430335, - 0.39224356273587946, - 0.39212335542795435, - 0.38843966085814313, - 0.39500564482477346, - 0.39635148052251423, - 0.3970352429551473, - 0.3957862954090181, - 0.39633234554046454, - 0.3985002464063255, - 0.39690352349185515, - 0.40002162527709545, - 0.4002332265777833, - 0.397798198824973, - 0.41350684053103576, - 0.4114106314221766, - 0.4154833650677409, - 0.4140218210879098, - 0.41456316793387565, - 0.4174003520372195, - 0.4148529327338291, - 0.4044956184806588, - 0.41157454405358107, - 0.4110731083115691, - 0.4117214704690266, - 0.4098608228648163, - 0.41072474613095156, - 0.405669425265873, - 0.40037772456160764, - 0.40183167926919644, - 0.4019967006663309, - 0.3991598591344395, - 0.3964522282936093, - 0.3998941741221988, - 0.4000314256375949, - 0.398962411880437, - 0.4009582559397185 - ] - } - }, - { - "_id": "666b1cc59f53aa7ab3949339", - "id": "elrond-erd-2", - "symbol": "egld", - "name": "MultiversX", - "image": "https://coin-images.coingecko.com/coins/images/12335/large/egld-token-logo.png?1696512162", - "current_price": 32.95, - "market_cap": 891426546, - "market_cap_rank": 100, - "fully_diluted_valuation": 891596294, - "total_volume": 24234231, - "high_24h": 35.65, - "low_24h": 32.87, - "price_change_24h": -2.461198249863095, - "price_change_percentage_24h": -6.95059, - "market_cap_change_24h": -67128560.04042017, - "market_cap_change_percentage_24h": -7.0031, - "circulating_supply": 27055613.0, - "total_supply": 27060765.0, - "max_supply": 31415926.0, - "ath": 545.64, - "ath_change_percentage": -93.96985, - "ath_date": "2021-11-23T10:33:26.737Z", - "atl": 6.51, - "atl_change_percentage": 405.67997, - "atl_date": "2020-10-07T01:44:53.554Z", - "roi": null, - "last_updated": "2024-06-13T16:12:47.597Z", - "sparkline_in_7d": { - "price": [ - 39.94073215014143, - 39.782322890483535, - 39.66076035845731, - 39.734444111477394, - 39.69513651201592, - 39.40808236491909, - 39.63038717284953, - 39.59123485604335, - 39.0099038207083, - 39.12137877465552, - 38.8875790443865, - 38.97431416588296, - 38.9227780239182, - 38.79390986840725, - 38.861178377623396, - 38.72427269123405, - 38.774665998729525, - 39.154230006744356, - 39.261568745666025, - 39.266653507601696, - 39.11861280824618, - 39.13148437062567, - 39.14079383055136, - 39.2594353624165, - 39.76389873571086, - 39.243924068129935, - 39.94418345657482, - 39.860521162211874, - 39.58629873133357, - 39.16487353930899, - 35.91953974911392, - 35.78245734405002, - 36.38367451244996, - 36.40957928156441, - 36.32385085417531, - 36.18920441794526, - 35.86391716772462, - 35.73568581419653, - 35.809197315866896, - 35.957593005427185, - 36.03149047835508, - 35.70686410794109, - 35.75838103982526, - 35.81472671096365, - 35.90047731183778, - 35.71438676216372, - 35.63061130279078, - 35.497800645324666, - 34.731704935435765, - 34.97632152312999, - 35.24114430160445, - 35.14103618014237, - 34.995757523731285, - 34.62424354242735, - 34.77386280425673, - 34.83647377813496, - 34.67726404874905, - 34.55470403646201, - 34.5496136665249, - 34.582779565183415, - 34.525785922071876, - 34.57359381677079, - 34.82750482984987, - 34.41092330928471, - 34.47105037270994, - 34.38886360007186, - 34.58026518324241, - 34.85054047167579, - 34.7144173657248, - 34.79862857684703, - 34.744626864695334, - 34.62293363741398, - 34.59980921067523, - 35.00051172209496, - 34.958065014423774, - 34.864447181346414, - 34.80437879635285, - 35.250284606554324, - 35.36024338212786, - 35.65571279168311, - 35.649456115931635, - 35.6107022137736, - 35.48219952210924, - 35.45755173459851, - 35.47836868384343, - 35.60679490516319, - 35.60912571085168, - 35.51980226767953, - 35.362827095238586, - 35.48176260867376, - 35.294022175501894, - 35.07011234875669, - 35.08529612934954, - 35.39321596532208, - 35.57251549456029, - 35.525359416847905, - 35.569284714225, - 35.23983579313667, - 35.3768325909407, - 35.63149410817048, - 35.78303042134514, - 35.49284528244238, - 35.56213215965792, - 35.40873711892259, - 35.07942612339763, - 34.97727068548229, - 34.71284367183702, - 35.02879337257763, - 35.003192547583694, - 34.92527666007373, - 34.43958248055108, - 34.53419330503818, - 34.54183334329637, - 34.25129937575573, - 34.207890420996414, - 33.95324488783348, - 34.01307876910585, - 34.029807049788516, - 33.924428585745524, - 33.82763330272251, - 33.706014289953934, - 33.39794281710117, - 33.143961780520584, - 33.403443546011374, - 33.12535945763875, - 33.099493150382415, - 33.09904562609616, - 33.300127759193025, - 33.26817040540427, - 33.42569143818344, - 33.47491844424993, - 33.455747605014814, - 33.34191600471248, - 33.2303771668727, - 33.10942833207298, - 33.55470826454381, - 33.69166278939057, - 33.88106431277544, - 33.87818397581769, - 34.026212788318674, - 34.00631911252161, - 34.076726888476415, - 34.46012035287598, - 34.28121891798698, - 34.21264363878983, - 35.464102195506825, - 35.29627349070035, - 35.754002903909765, - 35.4476326633376, - 35.457993926735476, - 35.183365632366275, - 35.256727059355654, - 34.447841195804536, - 34.95799887896024, - 34.90001146250023, - 34.87157039743193, - 34.72660257256447, - 34.788802913304714, - 34.51952301846415, - 34.04041964956543, - 34.13682094226732, - 34.17577838463388, - 33.92013591704008, - 33.73190987594178, - 33.988408770108855, - 33.97115308484081, - 33.81675346326885, - 33.88926009347179 - ] - } - } -] \ No newline at end of file diff --git a/data/bitcoin_data.json b/data/bitcoin_data.json deleted file mode 100644 index 47297d4..0000000 --- a/data/bitcoin_data.json +++ /dev/null @@ -1,4868 +0,0 @@ -{ - "additional_notices": [], - "asset_platform_id": null, - "block_time_in_minutes": 10, - "categories": [ - "Proof of Work (PoW)", - "FTX Holdings", - "Layer 1 (L1)", - "Cryptocurrency" - ], - "community_data": { - "facebook_likes": null, - "reddit_accounts_active_48h": 0, - "reddit_average_comments_48h": 0.0, - "reddit_average_posts_48h": 0.0, - "reddit_subscribers": 0, - "telegram_channel_user_count": null, - "twitter_followers": 6580249 - }, - "country_origin": "", - "description": { - "ar": "", - "bg": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "cs": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "da": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "de": "", - "el": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "en": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "es": "", - "fi": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "fr": "", - "he": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "hi": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "hr": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "hu": "", - "id": "", - "it": "", - "ja": "", - "ko": "\ube44\ud2b8\ucf54\uc778\uc740 2009\ub144 \ub098\uce74\ubaa8\ud1a0 \uc0ac\ud1a0\uc2dc\uac00 \ub9cc\ub4e0 \ub514\uc9c0\ud138 \ud1b5\ud654\ub85c, \ud1b5\ud654\ub97c \ubc1c\ud589\ud558\uace0 \uad00\ub9ac\ud558\ub294 \uc911\uc559 \uc7a5\uce58\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\ub294 \uad6c\uc870\ub97c \uac00\uc9c0\uace0 \uc788\ub2e4. \ub300\uc2e0, \ube44\ud2b8\ucf54\uc778\uc758 \uac70\ub798\ub294 P2P \uae30\ubc18 \ubd84\uc0b0 \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc5d0 \uc758\ud574 \uc774\ub8e8\uc5b4\uc9c0\uba70, \uacf5\uac1c \ud0a4 \uc554\ud638 \ubc29\uc2dd \uae30\ubc18\uc73c\ub85c \uac70\ub798\ub97c \uc218\ud589\ud55c\ub2e4. \ube44\ud2b8\ucf54\uc778\uc740 \uacf5\uac1c\uc131\uc744 \uac00\uc9c0\uace0 \uc788\ub2e4. \ube44\ud2b8\ucf54\uc778\uc740 \uc9c0\uac11 \ud30c\uc77c\uc758 \ud615\ud0dc\ub85c \uc800\uc7a5\ub418\uba70, \uc774 \uc9c0\uac11\uc5d0\ub294 \uac01\uac01\uc758 \uace0\uc720 \uc8fc\uc18c\uac00 \ubd80\uc5ec\ub418\uba70, \uadf8 \uc8fc\uc18c\ub97c \uae30\ubc18\uc73c\ub85c \ube44\ud2b8\ucf54\uc778\uc758 \uac70\ub798\uac00 \uc774\ub8e8\uc5b4\uc9c4\ub2e4. \ube44\ud2b8\ucf54\uc778\uc740 1998\ub144 \uc6e8\uc774\ub530\uc774\uac00 \uc0ac\uc774\ubc84\ud391\ud06c \uba54\uc77c\ub9c1 \ub9ac\uc2a4\ud2b8\uc5d0 \uc62c\ub9b0 \uc554\ud638\ud1b5\ud654\ub780 \uad6c\uc0c1\uc744 \ucd5c\ucd08\ub85c \uad6c\ud604\ud55c \uac83 \uc911\uc758 \ud558\ub098\uc774\ub2e4.\r\n\r\n\ube44\ud2b8\ucf54\uc778\uc740 \ucd5c\ucd08\ub85c \uad6c\ud604\ub41c \uac00\uc0c1\ud654\ud3d0\uc785\ub2c8\ub2e4. \ubc1c\ud589 \ubc0f \uc720\ud1b5\uc744 \uad00\ub9ac\ud558\ub294 \uc911\uc559\uad8c\ub825\uc774\ub098 \uc911\uac04\uc0c1\uc778 \uc5c6\uc774, P2P \ub124\ud2b8\uc6cc\ud06c \uae30\uc220\uc744 \uc774\uc6a9\ud558\uc5ec \ub124\ud2b8\uc6cc\ud06c\uc5d0 \ucc38\uc5ec\ud558\ub294 \uc0ac\uc6a9\uc790\ub4e4\uc774 \uc8fc\uccb4\uc801\uc73c\ub85c \ud654\ud3d0\ub97c \ubc1c\ud589\ud558\uace0 \uc774\uccb4\ub0b4\uc6a9\uc744 \uacf5\ub3d9\uc73c\ub85c \uad00\ub9ac\ud569\ub2c8\ub2e4. \uc774\ub97c \uac00\ub2a5\ud558\uac8c \ud55c \ube14\ub85d\uccb4\uc778 \uae30\uc220\uc744 \ucc98\uc74c\uc73c\ub85c \ucf54\uc778\uc5d0 \ub3c4\uc785\ud55c \uac83\uc774 \ubc14\ub85c \ube44\ud2b8\ucf54\uc778\uc785\ub2c8\ub2e4.\r\n\r\n\ube44\ud2b8\ucf54\uc778\uc744 \uc0ac\uc6a9\ud558\ub294 \uac1c\uc778\uacfc \uc0ac\uc5c5\uc790\uc758 \uc218\ub294 \uafb8\uc900\ud788 \uc99d\uac00\ud558\uace0 \uc788\uc73c\uba70, \uc5ec\uae30\uc5d0\ub294 \uc2dd\ub2f9, \uc544\ud30c\ud2b8, \ubc95\ub960\uc0ac\ubb34\uc18c, \uc628\ub77c\uc778 \uc11c\ube44\uc2a4\ub97c \ube44\ub86f\ud55c \uc18c\ub9e4\uc0c1\ub4e4\uc774 \ud3ec\ud568\ub429\ub2c8\ub2e4. \ube44\ud2b8\ucf54\uc778\uc740 \uc0c8\ub85c\uc6b4 \uc0ac\ud68c \ud604\uc0c1\uc774\uc9c0\ub9cc \uc544\uc8fc \ube60\ub974\uac8c \uc131\uc7a5\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub97c \ubc14\ud0d5\uc73c\ub85c \uac00\uce58 \uc99d\ub300\ub294 \ubb3c\ub860, \ub9e4\uc77c \uc218\ubc31\ub9cc \ub2ec\ub7ec\uc758 \ube44\ud2b8\ucf54\uc778\uc774 \uad50\ud658\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \r\n\r\n\ube44\ud2b8\ucf54\uc778\uc740 \uac00\uc0c1\ud654\ud3d0 \uc2dc\uc7a5\uc5d0\uc11c \ud604\uc7ac \uc720\ud1b5\uc2dc\uac00\ucd1d\uc561\uacfc \ucf54\uc778\uc758 \uac00\uce58\uac00 \uac00\uc7a5 \ud06c\uace0, \uac70\ub798\ub7c9 \ub610\ud55c \uc548\uc815\uc801\uc785\ub2c8\ub2e4. \uc774\ub354\ub9ac\uc6c0\uc774 \ube60\ub974\uac8c \ucd94\uaca9\ud558\uace0 \uc788\uc9c0\ub9cc \uc544\uc9c1\uc740 \uac00\uc7a5 \uacac\uace0\ud55c \uac00\uc0c1\ud654\ud3d0\ub77c\uace0 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4. \r\n\r\n\ucf54\uc778 \ud2b9\uc9d5\r\n1. \uc911\uc559\uc8fc\uccb4 \uc5c6\uc774 \uc0ac\uc6a9\uc790\ub4e4\uc5d0 \uc758\ud574 \uac70\ub798\ub0b4\uc6a9\uc774 \uad00\ub9ac\ub420 \uc218 \uc788\ub294 \ube44\ud2b8\ucf54\uc778\uc758 \uc6b4\uc601 \uc2dc\uc2a4\ud15c\uc740 \ube14\ub85d\uccb4\uc778 \uae30\uc220\uc5d0\uc11c \uae30\uc778\ud569\ub2c8\ub2e4. \ube14\ub85d\uccb4\uc778\uc740 \uc27d\uac8c \ub9d0\ud574 \ub2e4 \uac19\uc774 \uc7a5\ubd80\ub97c \uacf5\uc720\ud558\uace0, \ud56d\uc0c1 \uc11c\ub85c\uc758 \ucef4\ud4e8\ud130\uc5d0 \uc788\ub294 \uc7a5\ubd80 \ud30c\uc77c\uc744 \ube44\uad50\ud568\uc73c\ub85c\uc368 \uac19\uc740 \ub0b4\uc6a9\ub9cc \uc778\uc815\ud558\ub294 \ubc29\uc2dd\uc73c\ub85c \uc6b4\uc601\ub429\ub2c8\ub2e4. \ub530\ub77c\uc11c \uc804\ud1b5\uc801\uc778 \uae08\uc735\uae30\uad00\uc5d0\uc11c \uc7a5\ubd80\uc5d0 \ub300\ud55c \uc811\uadfc\uc744 \ud2bc\ud2bc\ud558\uac8c \ubc29\uc5b4\ud558\ub358 \uac83\uacfc\ub294 \uc815\ubc18\ub300\uc758 \uc791\uc5c5\uc744 \ud1b5\ud574 \ubcf4\uc548\uc744 \ub2ec\uc131\ud569\ub2c8\ub2e4. \uc7a5\ubd80\ub97c \ud574\ud0b9\ud558\ub824\uba74 51%\uc758 \uc7a5\ubd80\ub97c \ub3d9\uc2dc\uc5d0 \uc870\uc791\ud574\uc57c \ud558\ub294\ub370, \uc774\ub294 \uc0ac\uc2e4\uc0c1 \ubd88\uac00\ub2a5\ud569\ub2c8\ub2e4. \uc65c\ub0d0\ud558\uba74, \uc774\ub97c \uc2e4\ud589\ud558\uae30 \uc704\ud574\uc11c\ub294 \ucef4\ud4e8\ud305 \ud30c\uc6cc\uac00 \uc5b4\ub9c8\uc5b4\ub9c8\ud558\uac8c \uc18c\uc694\ub418\uace0, \uc774\uac83\uc774 \uac00\ub2a5\ud55c \uc288\ud37c\ucef4\ud4e8\ud130\ub294 \uc138\uc0c1\uc5d0 \uc874\uc7ac\ud558\uc9c0 \uc54a\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4. \ub610\ud55c, \uc7a5\ubd80\uc758 \uc790\ub8cc\ub4e4\uc740 \uc904\uae00\ub85c \uae30\ub85d\ub418\ub294 \uac83\uc774 \uc544\ub2c8\ub77c \uc554\ud638\ud654 \ud574\uc2dc \ud568\uc218\ud615\ud0dc\ub85c \ube14\ub85d\uc5d0 \uc800\uc7a5\ub418\uace0, \uc774 \ube14\ub85d\ub4e4\uc740 \uc11c\ub85c \uc5f0\uacb0\ub418\uc5b4 \uc788\uc5b4\uc11c \ub354 \uac15\ub825\ud55c \ubcf4\uc548\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \r\n\r\n2. \ube44\ud2b8\ucf54\uc778\uc740 \ube14\ub85d\ubc1c\ud589\ubcf4\uc0c1\uc744 \ucc44\uad74\uc790\uc5d0\uac8c \uc9c0\uae09\ud558\ub294 \ubc29\uc2dd\uc73c\ub85c \uc2e0\uaddc \ucf54\uc778\uc744 \ubc1c\ud589\ud569\ub2c8\ub2e4. \ube14\ub85d\ubc1c\ud589\ubcf4\uc0c1\uc740 \ub9e4 21\ub9cc \ube14\ub85d(\uc57d 4\ub144)\uc744 \uae30\uc900\uc73c\ub85c \ubc1c\ud589\ub7c9\uc774 \uc808\ubc18\uc73c\ub85c \uc904\uc5b4\ub4ed\ub2c8\ub2e4. \ucc98\uc74c\uc5d0\ub294 50\ube44\ud2b8\ucf54\uc778\uc529 \ubc1c\ud589\uc774 \ub418\uc5c8\uace0, 4\ub144\ub9c8\ub2e4 \uacc4\uc18d \ubc18\uc73c\ub85c \uac10\uc18c\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ucf54\uc778\uc758 \ucd1d\ub7c9\uc774 2,100\ub9cc \uac1c\uc5d0 \ub3c4\ub2ec\ud558\uba74 \uc2e0\uaddc \ubc1c\ud589\uc740 \uc885\ub8cc\ub418\uace0, \uc774\ud6c4\uc5d0\ub294 \uac70\ub798 \uc218\uc218\ub8cc\ub9cc\uc744 \ud1b5\ud574 \uc2dc\uc2a4\ud15c\uc774 \uc9c0\ud0f1\ub420 \uac83\uc785\ub2c8\ub2e4. \r\n\r\n\ud575\uc2ec \uac00\uce58\r\n(\ud0a4\uc6cc\ub4dc: \ud1b5\ud654\ub85c \uc0ac\uc6a9\ub420 \uc218 \uc788\ub294 \ubcf4\ud3b8\uc131 \ubc0f \ud3b8\uc758\uc131)\r\n\r\n1. \ub2e4\uc591\ud55c \uc54c\ud2b8\ucf54\uc778\ub4e4\uc758 \ub4f1\uc7a5\uc5d0 \uc55e\uc11c \ube44\ud2b8\ucf54\uc778\uc740 \uac00\uc0c1\ud654\ud3d0 \uc2dc\uc7a5\uc5d0\uc11c \ub3c5\ubcf4\uc801\uc774\uc5c8\uae30 \ub54c\ubb38\uc5d0, \ud604\uc7ac \uac00\uc7a5 \ubcf4\ud3b8\uc801\uc778 \uacb0\uc81c\uc218\ub2e8\uc73c\ub85c \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc2e4\uc0dd\ud65c\uc5d0\uc11c \uc774\ub97c \ud65c\uc6a9\ud560 \uc218 \uc788\ub294 \uac00\ub9f9\uc810\uc774 \uc54c\ud2b8\ucf54\uc778\ub4e4\ubcf4\ub2e4 \uc555\ub3c4\uc801\uc73c\ub85c \ub9ce\uc744 \ubfd0\ub9cc \uc544\ub2c8\ub77c, \uc774 \ub610\ud55c \uc99d\uac00\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc77c\ub840\ub85c \uc77c\ubcf8 \uc5c5\uccb4\ub4e4\uc774 \ube44\ud2b8\ucf54\uc778 \uacb0\uc81c \uc2dc\uc2a4\ud15c\uc744 \ub3c4\uc785\ud558\uba74\uc11c \uace7 \ube44\ud2b8\ucf54\uc778\uc744 \uc624\ud504\ub77c\uc778 \uc810\ud3ec 26\ub9cc \uacf3\uc5d0\uc11c \uc774\uc6a9\ud560 \uc218 \uc788\uac8c \ub420 \uac83\uc785\ub2c8\ub2e4. \r\n\r\n2. \uc5ec\ub7ec \ub098\ub77c\uc5d0\uc11c \ube44\ud2b8\ucf54\uc778\uc744 \uc815\uc2dd \uacb0\uc81c \uc218\ub2e8\uc73c\ub85c \uc778\uc815\ud558\uba74\uc11c, \uc2e4\ubb3c\ud654\ud3d0\uc640 \uac00\uc0c1\ud654\ud3d0\ub97c \uac70\ub798\ud560 \ub54c \ub354\ub294 \ubd80\uac00\uac00\uce58\uc138\uac00 \ubd80\uacfc\ub418\uc9c0 \uc54a\uac8c \ub41c\ub2e4\uace0 \ud569\ub2c8\ub2e4. \uc2e4\uc81c\ub85c \uc77c\ubcf8\uacfc \ud638\uc8fc\uc5d0\uc11c\ub294 \uc774\ubbf8 \ube44\ud2b8\ucf54\uc778\uc744 \ud569\ubc95\uc801 \uacb0\uc81c \uc218\ub2e8\uc73c\ub85c \uc778\uc815\ud558\uba74\uc11c \uc81c\ub3c4\uad8c \uc548\uc73c\ub85c \ub4e4\uc5ec\uc624\uace0 \uc788\uace0, \ubbf8\uad6d\uc5d0\uc11c\ub294 \ube44\ud2b8\ucf54\uc778 ETF \uc2b9\uc778 \ub178\ub825\ub3c4 \uc9c4\ud589\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uac01\uad6d\uc5d0 \ube44\ud2b8\ucf54\uc778\uc744 \uae30\ubc18\uc73c\ub85c \ud55c ATM \uae30\uacc4\ub3c4 \uc124\uce58\ub418\uc5c8\ub2e4\uace0 \ud569\ub2c8\ub2e4. ", - "lt": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "nl": "", - "no": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "pl": "", - "pt": "", - "ro": "", - "ru": "", - "sk": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "sl": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "sv": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", - "th": "", - "tr": "", - "uk": "", - "vi": "", - "zh": "", - "zh-tw": "" - }, - "detail_platforms": { - "": { - "contract_address": "", - "decimal_place": null - } - }, - "developer_data": { - "closed_issues": 7380, - "code_additions_deletions_4_weeks": { - "additions": 1570, - "deletions": -1948 - }, - "commit_count_4_weeks": 108, - "forks": 36426, - "last_4_weeks_commit_activity_series": [], - "pull_request_contributors": 846, - "pull_requests_merged": 11215, - "stars": 73168, - "subscribers": 3967, - "total_issues": 7743 - }, - "genesis_date": "2009-01-03", - "hashing_algorithm": "SHA-256", - "id": "bitcoin", - "image": { - "large": "https://assets.coingecko.com/coins/images/1/large/bitcoin.png?1696501400", - "small": "https://assets.coingecko.com/coins/images/1/small/bitcoin.png?1696501400", - "thumb": "https://assets.coingecko.com/coins/images/1/thumb/bitcoin.png?1696501400" - }, - "last_updated": "2024-04-15T06:04:06.295Z", - "links": { - "announcement_url": [ - "", - "" - ], - "bitcointalk_thread_identifier": null, - "blockchain_site": [ - "https://mempool.space/", - "https://blockchair.com/bitcoin/", - "https://btc.com/", - "https://btc.tokenview.io/", - "https://www.oklink.com/btc", - "https://3xpl.com/bitcoin", - "", - "", - "", - "" - ], - "chat_url": [ - "", - "", - "" - ], - "facebook_username": "bitcoins", - "homepage": [ - "http://www.bitcoin.org", - "", - "" - ], - "official_forum_url": [ - "https://bitcointalk.org/", - "", - "" - ], - "repos_url": { - "bitbucket": [], - "github": [ - "https://github.com/bitcoin/bitcoin", - "https://github.com/bitcoin/bips" - ] - }, - "subreddit_url": "https://www.reddit.com/r/Bitcoin/", - "telegram_channel_identifier": "", - "twitter_screen_name": "bitcoin", - "whitepaper": "https://bitcoin.org/bitcoin.pdf" - }, - "localization": { - "ar": "\u0628\u064a\u062a\u0643\u0648\u064a\u0646", - "bg": "Bitcoin", - "cs": "Bitcoin", - "da": "Bitcoin", - "de": "Bitcoin", - "el": "Bitcoin", - "en": "Bitcoin", - "es": "Bitcoin", - "fi": "Bitcoin", - "fr": "Bitcoin", - "he": "Bitcoin", - "hi": "Bitcoin", - "hr": "Bitcoin", - "hu": "Bitcoin", - "id": "Bitcoin", - "it": "Bitcoin", - "ja": "\u30d3\u30c3\u30c8\u30b3\u30a4\u30f3", - "ko": "\ube44\ud2b8\ucf54\uc778", - "lt": "Bitcoin", - "nl": "Bitcoin", - "no": "Bitcoin", - "pl": "Bitcoin", - "pt": "Bitcoin", - "ro": "Bitcoin", - "ru": "\u0411\u0438\u0442\u043a\u043e\u0438\u043d", - "sk": "Bitcoin", - "sl": "Bitcoin", - "sv": "Bitcoin", - "th": "\u0e1a\u0e34\u0e15\u0e04\u0e2d\u0e22\u0e19\u0e4c", - "tr": "Bitcoin", - "uk": "Bitcoin", - "vi": "Bitcoin", - "zh": "\u6bd4\u7279\u5e01", - "zh-tw": "\u6bd4\u7279\u5e63" - }, - "market_cap_rank": 1, - "market_data": { - "ath": { - "aed": 270832, - "ars": 62663223, - "aud": 111440, - "bch": 270.677, - "bdt": 8091216, - "bhd": 27794, - "bits": 1058236, - "bmd": 73738, - "bnb": 143062, - "brl": 380542, - "btc": 1.003301, - "cad": 99381, - "chf": 65815, - "clp": 70749614, - "cny": 530375, - "czk": 1703814, - "dkk": 502620, - "dot": 10635, - "eos": 91352, - "eth": 624.203, - "eur": 67405, - "gbp": 57639, - "gel": 195419, - "hkd": 576788, - "huf": 26873106, - "idr": 1155438168, - "ils": 270420, - "inr": 6110932, - "jpy": 11033797, - "krw": 98535553, - "kwd": 22651, - "link": 74906, - "lkr": 22592284, - "ltc": 853.295, - "mmk": 154750684, - "mxn": 1409247, - "myr": 345647, - "ngn": 118524884, - "nok": 777707, - "nzd": 120651, - "php": 4109170, - "pkr": 20569197, - "pln": 288843, - "rub": 6746469, - "sar": 276540, - "sats": 105823579, - "sek": 769988, - "sgd": 98281, - "thb": 2666077, - "try": 2368817, - "twd": 2333691, - "uah": 2856689, - "usd": 73738, - "vef": 8618768857, - "vnd": 1820914622, - "xag": 3040.05, - "xau": 37.72, - "xdr": 55169, - "xlm": 644476, - "xrp": 159288, - "yfi": 11.593182, - "zar": 1375794 - }, - "ath_change_percentage": { - "aed": -11.1369, - "ars": -9.35443, - "aud": -9.3981, - "bch": -55.12794, - "bdt": -11.13333, - "bhd": -11.14602, - "bits": -5.49448, - "bmd": -11.1248, - "bnb": -99.91972, - "brl": -11.85044, - "btc": -0.32896, - "cad": -9.34184, - "chf": -9.03412, - "clp": -10.64811, - "cny": -10.55394, - "czk": -8.53388, - "dkk": -8.71857, - "dot": -10.44196, - "eos": -7.6735, - "eth": -96.68085, - "eur": -8.7706, - "gbp": -8.81013, - "gel": -10.46001, - "hkd": -10.99464, - "huf": -10.23695, - "idr": -8.87858, - "ils": -9.37807, - "inr": -10.5292, - "jpy": -8.64011, - "krw": -7.99463, - "kwd": -10.97319, - "link": -93.80589, - "lkr": -13.43254, - "ltc": -3.86022, - "mmk": -11.09639, - "mxn": -22.90299, - "myr": -9.4184, - "ngn": -33.58513, - "nok": -8.34268, - "nzd": -8.71111, - "php": -9.49754, - "pkr": -11.46339, - "pln": -8.77535, - "rub": -9.35277, - "sar": -11.10354, - "sats": -5.49448, - "sek": -7.63788, - "sgd": -9.31854, - "thb": -9.6668, - "try": -10.35581, - "twd": -9.21084, - "uah": -9.55076, - "usd": -11.1248, - "vef": -99.99992, - "vnd": -9.68629, - "xag": -24.06463, - "xau": -26.35125, - "xdr": -10.43487, - "xlm": -8.51144, - "xrp": -18.51241, - "yfi": -20.78104, - "zar": -10.35178 - }, - "ath_date": { - "aed": "2024-03-14T07:10:36.635Z", - "ars": "2024-04-08T12:16:10.708Z", - "aud": "2024-03-14T07:10:36.635Z", - "bch": "2023-06-10T04:30:21.139Z", - "bdt": "2024-03-14T07:10:36.635Z", - "bhd": "2024-03-14T07:10:36.635Z", - "bits": "2021-05-19T16:00:11.072Z", - "bmd": "2024-03-14T07:10:36.635Z", - "bnb": "2017-10-19T00:00:00.000Z", - "brl": "2021-11-09T04:09:45.771Z", - "btc": "2019-10-15T16:00:56.136Z", - "cad": "2024-03-14T07:10:36.635Z", - "chf": "2024-04-08T12:16:10.708Z", - "clp": "2024-03-13T09:15:27.924Z", - "cny": "2024-03-14T07:10:36.635Z", - "czk": "2024-03-13T09:15:27.924Z", - "dkk": "2024-03-14T07:10:36.635Z", - "dot": "2024-04-13T20:31:46.112Z", - "eos": "2024-04-13T21:35:28.130Z", - "eth": "2015-10-20T00:00:00.000Z", - "eur": "2024-03-14T07:10:36.635Z", - "gbp": "2024-03-14T07:10:36.635Z", - "gel": "2024-03-13T09:15:27.924Z", - "hkd": "2024-03-14T07:10:36.635Z", - "huf": "2024-03-13T08:35:34.668Z", - "idr": "2024-04-08T12:16:10.708Z", - "ils": "2024-03-13T09:15:27.924Z", - "inr": "2024-03-14T07:10:36.635Z", - "jpy": "2024-04-08T12:16:10.708Z", - "krw": "2024-04-08T12:16:10.708Z", - "kwd": "2024-03-14T07:10:36.635Z", - "link": "2017-12-12T00:00:00.000Z", - "lkr": "2024-03-13T09:15:27.924Z", - "ltc": "2024-04-13T21:30:27.893Z", - "mmk": "2024-03-14T07:10:36.635Z", - "mxn": "2021-11-10T17:30:22.767Z", - "myr": "2024-03-14T07:10:36.635Z", - "ngn": "2024-03-14T07:10:36.635Z", - "nok": "2024-04-08T12:16:10.708Z", - "nzd": "2024-04-08T12:16:10.708Z", - "php": "2024-04-08T12:16:10.708Z", - "pkr": "2024-03-14T07:10:36.635Z", - "pln": "2024-03-13T09:15:27.924Z", - "rub": "2024-03-13T09:15:27.924Z", - "sar": "2024-03-14T07:10:36.635Z", - "sats": "2021-05-19T16:00:11.072Z", - "sek": "2024-04-12T12:36:25.803Z", - "sgd": "2024-03-14T07:10:36.635Z", - "thb": "2024-04-08T12:16:10.708Z", - "try": "2024-03-14T07:10:36.635Z", - "twd": "2024-04-08T12:16:10.708Z", - "uah": "2024-03-14T07:10:36.635Z", - "usd": "2024-03-14T07:10:36.635Z", - "vef": "2021-01-03T12:04:17.372Z", - "vnd": "2024-03-14T07:10:36.635Z", - "xag": "2024-03-13T09:15:27.924Z", - "xau": "2021-10-20T14:54:17.702Z", - "xdr": "2024-03-14T07:10:36.635Z", - "xlm": "2024-04-13T20:31:46.112Z", - "xrp": "2021-01-03T07:54:40.240Z", - "yfi": "2020-07-18T00:00:00.000Z", - "zar": "2024-03-13T08:35:34.668Z" - }, - "atl": { - "aed": 632.31, - "ars": 1478.98, - "aud": 72.61, - "bch": 3.513889, - "bdt": 9390.25, - "bhd": 45.91, - "bits": 950993, - "bmd": 121.77, - "bnb": 52.17, - "brl": 149.66, - "btc": 0.99895134, - "cad": 69.81, - "chf": 63.26, - "clp": 107408, - "cny": 407.23, - "czk": 4101.56, - "dkk": 382.47, - "dot": 991.882, - "eos": 908.141, - "eth": 6.779735, - "eur": 51.3, - "gbp": 43.9, - "gel": 102272, - "hkd": 514.37, - "huf": 46598, - "idr": 658780, - "ils": 672.18, - "inr": 3993.42, - "jpy": 6641.83, - "krw": 75594, - "kwd": 50.61, - "link": 598.477, - "lkr": 22646, - "ltc": 20.707835, - "mmk": 117588, - "mxn": 859.32, - "myr": 211.18, - "ngn": 10932.64, - "nok": 1316.03, - "nzd": 84.85, - "php": 2880.5, - "pkr": 17315.84, - "pln": 220.11, - "rub": 2206.43, - "sar": 646.04, - "sats": 95099268, - "sek": 443.81, - "sgd": 84.47, - "thb": 5644.35, - "try": 392.91, - "twd": 1998.66, - "uah": 553.37, - "usd": 67.81, - "vef": 766.19, - "vnd": 3672339, - "xag": 3.37, - "xau": 0.0531, - "xdr": 44.39, - "xlm": 21608, - "xrp": 9908, - "yfi": 0.23958075, - "zar": 666.26 - }, - "atl_change_percentage": { - "aed": 37961.74767, - "ars": 3840489.03314, - "aud": 138954.11357, - "bch": 3356.52215, - "bdt": 76472.9436, - "bhd": 53688.771, - "bits": 5.16287, - "bmd": 53718.46008, - "bnb": 120.1359, - "brl": 224041.03726, - "btc": 0.10498, - "cad": 128967.28681, - "chf": 94538.91309, - "clp": 58755.95099, - "cny": 116395.56671, - "czk": 37895.63034, - "dkk": 119857.57398, - "dot": 860.27386, - "eos": 9187.3365, - "eth": 205.59027, - "eur": 119774.1855, - "gbp": 119623.13172, - "gel": 71.09126, - "hkd": 99705.02795, - "huf": 51666.37968, - "idr": 159718.41226, - "ils": 36357.27106, - "inr": 136812.75251, - "jpy": 151672.35766, - "krw": 119827.82697, - "kwd": 39743.35058, - "link": 675.26408, - "lkr": 86260.98796, - "ltc": 3861.57424, - "mmk": 116900.87364, - "mxn": 126335.9366, - "myr": 148161.26777, - "ngn": 719928.52139, - "nok": 54064.94151, - "nzd": 129699.62787, - "php": 129005.95344, - "pkr": 105071.13568, - "pln": 119610.11621, - "rub": 277066.22812, - "sar": 37952.50529, - "sats": 5.16287, - "sek": 160145.34199, - "sgd": 105412.88707, - "thb": 42568.39547, - "try": 540357.10557, - "twd": 105908.17136, - "uah": 466832.30102, - "usd": 96546.07772, - "vef": 756.44522, - "vnd": 44681.68903, - "xag": 68406.74129, - "xau": 52210.54437, - "xdr": 111210.61678, - "xlm": 2628.68509, - "xrp": 1210.05502, - "yfi": 3733.36242, - "zar": 185017.94078 - }, - "atl_date": { - "aed": "2015-01-14T00:00:00.000Z", - "ars": "2015-01-14T00:00:00.000Z", - "aud": "2013-07-05T00:00:00.000Z", - "bch": "2017-08-02T00:00:00.000Z", - "bdt": "2013-09-08T00:00:00.000Z", - "bhd": "2013-09-08T00:00:00.000Z", - "bits": "2021-05-19T13:14:13.071Z", - "bmd": "2013-09-08T00:00:00.000Z", - "bnb": "2022-11-27T02:35:06.345Z", - "brl": "2013-07-05T00:00:00.000Z", - "btc": "2019-10-21T00:00:00.000Z", - "cad": "2013-07-05T00:00:00.000Z", - "chf": "2013-07-05T00:00:00.000Z", - "clp": "2015-01-14T00:00:00.000Z", - "cny": "2013-07-05T00:00:00.000Z", - "czk": "2015-01-14T00:00:00.000Z", - "dkk": "2013-07-05T00:00:00.000Z", - "dot": "2021-05-19T11:04:48.978Z", - "eos": "2019-04-11T00:00:00.000Z", - "eth": "2017-06-12T00:00:00.000Z", - "eur": "2013-07-05T00:00:00.000Z", - "gbp": "2013-07-05T00:00:00.000Z", - "gel": "2024-01-23T14:25:15.024Z", - "hkd": "2013-07-05T00:00:00.000Z", - "huf": "2015-01-14T00:00:00.000Z", - "idr": "2013-07-05T00:00:00.000Z", - "ils": "2015-01-14T00:00:00.000Z", - "inr": "2013-07-05T00:00:00.000Z", - "jpy": "2013-07-05T00:00:00.000Z", - "krw": "2013-07-05T00:00:00.000Z", - "kwd": "2015-01-14T00:00:00.000Z", - "link": "2020-08-16T08:13:13.338Z", - "lkr": "2015-01-14T00:00:00.000Z", - "ltc": "2013-11-28T00:00:00.000Z", - "mmk": "2013-09-08T00:00:00.000Z", - "mxn": "2013-07-05T00:00:00.000Z", - "myr": "2013-07-05T00:00:00.000Z", - "ngn": "2013-07-06T00:00:00.000Z", - "nok": "2015-01-14T00:00:00.000Z", - "nzd": "2013-07-05T00:00:00.000Z", - "php": "2013-07-05T00:00:00.000Z", - "pkr": "2015-01-14T00:00:00.000Z", - "pln": "2013-07-05T00:00:00.000Z", - "rub": "2013-07-05T00:00:00.000Z", - "sar": "2015-01-14T00:00:00.000Z", - "sats": "2021-05-19T13:14:13.071Z", - "sek": "2013-07-05T00:00:00.000Z", - "sgd": "2013-07-05T00:00:00.000Z", - "thb": "2015-01-14T00:00:00.000Z", - "try": "2015-01-14T00:00:00.000Z", - "twd": "2013-07-05T00:00:00.000Z", - "uah": "2013-07-06T00:00:00.000Z", - "usd": "2013-07-06T00:00:00.000Z", - "vef": "2013-09-08T00:00:00.000Z", - "vnd": "2015-01-14T00:00:00.000Z", - "xag": "2013-07-05T00:00:00.000Z", - "xau": "2013-07-05T00:00:00.000Z", - "xdr": "2013-07-05T00:00:00.000Z", - "xlm": "2018-11-20T00:00:00.000Z", - "xrp": "2018-12-25T00:00:00.000Z", - "yfi": "2020-09-12T20:09:36.122Z", - "zar": "2013-07-05T00:00:00.000Z" - }, - "circulating_supply": 19683087.0, - "current_price": { - "aed": 240627, - "ars": 56791369, - "aud": 100960, - "bch": 121.719, - "bdt": 7189120, - "bhd": 24692, - "bits": 999605, - "bmd": 65523, - "bnb": 115.184, - "brl": 335387, - "btc": 1.0, - "cad": 90086, - "chf": 59867, - "clp": 63204915, - "cny": 474296, - "czk": 1557203, - "dkk": 458697, - "dot": 9541, - "eos": 84558, - "eth": 20.714463, - "eur": 61479, - "gbp": 52560, - "gel": 174947, - "hkd": 513273, - "huf": 24107775, - "idr": 1052998393, - "ils": 245129, - "inr": 5466554, - "jpy": 10079564, - "krw": 90617725, - "kwd": 20162, - "link": 4647, - "lkr": 19554100, - "ltc": 821.202, - "mmk": 137554554, - "mxn": 1086240, - "myr": 313037, - "ngn": 78704192, - "nok": 712707, - "nzd": 110121, - "php": 3718175, - "pkr": 18208042, - "pln": 263548, - "rub": 6114403, - "sar": 245790, - "sats": 99960474, - "sek": 710899, - "sgd": 89106, - "thb": 2407638, - "try": 2122798, - "twd": 2118363, - "uah": 2583395, - "usd": 65523, - "vef": 6560.83, - "vnd": 1644244106, - "xag": 2301.62, - "xau": 27.76, - "xdr": 49404, - "xlm": 590829, - "xrp": 129925, - "yfi": 9.205028, - "zar": 1232358 - }, - "fdv_to_tvl_ratio": null, - "fully_diluted_valuation": { - "aed": 5040402883386, - "ars": 1189568626436124, - "aud": 2115400475693, - "bch": 2542857953, - "bdt": 150585995036216, - "bhd": 517203665889, - "bits": 20996071601807, - "bmd": 1372471853883, - "bnb": 2411310705, - "brl": 7025134431286, - "btc": 21000000, - "cad": 1887375256945, - "chf": 1254377513216, - "clp": 1323913799692770, - "cny": 9934912008704, - "czk": 32646467821486, - "dkk": 9610961987145, - "dot": 200408654995, - "eos": 1774068050929, - "eth": 435327254, - "eur": 1288171887674, - "gbp": 1101029860510, - "gel": 3664499849868, - "hkd": 10751460020756, - "huf": 505380061050554, - "idr": 22075665816568288, - "ils": 5136132795194, - "inr": 114512065606274, - "jpy": 211152756132580, - "krw": 1899008726395584, - "kwd": 422310961912, - "link": 97683105335, - "lkr": 409587489039714, - "ltc": 17254190810, - "mmk": 2881269132822732, - "mxn": 22750529896017, - "myr": 6556984281927, - "ngn": 1648567442280144, - "nok": 14938890861560, - "nzd": 2306849319535, - "php": 77889150179723, - "pkr": 381392464862261, - "pln": 5518071125052, - "rub": 128074582676470, - "sar": 5148416418287, - "sats": 2099607160180738, - "sek": 14899650518785, - "sgd": 1866321538707, - "thb": 50421184732032, - "try": 44475544705397, - "twd": 44379560886295, - "uah": 54112767568993, - "usd": 1372471853883, - "vef": 137425606729, - "vnd": 34440952077988660, - "xag": 48491503030, - "xau": 582188836, - "xdr": 1034825935694, - "xlm": 12408658510759, - "xrp": 2725881829000, - "yfi": 193039383, - "zar": 25836270717349 - }, - "high_24h": { - "aed": 241956, - "ars": 57034316, - "aud": 101689, - "bch": 135.007, - "bdt": 7213733, - "bhd": 24774, - "bits": 1006240, - "bmd": 65887, - "bnb": 117.054, - "brl": 337247, - "btc": 1.0, - "cad": 90627, - "chf": 60201, - "clp": 63556247, - "cny": 476795, - "czk": 1568017, - "dkk": 461605, - "dot": 9867, - "eos": 87761, - "eth": 21.234676, - "eur": 61874, - "gbp": 52879, - "gel": 175917, - "hkd": 516377, - "huf": 24272579, - "idr": 1061961159, - "ils": 248642, - "inr": 5508872, - "jpy": 10101742, - "krw": 90969108, - "kwd": 20264, - "link": 4784, - "lkr": 19621228, - "ltc": 834.803, - "mmk": 138027387, - "mxn": 1094536, - "myr": 314279, - "ngn": 79140858, - "nok": 716062, - "nzd": 110804, - "php": 3730239, - "pkr": 18279071, - "pln": 265220, - "rub": 6148327, - "sar": 246903, - "sats": 100624003, - "sek": 715523, - "sgd": 89617, - "thb": 2413428, - "try": 2134859, - "twd": 2126097, - "uah": 2592264, - "usd": 65887, - "vef": 6597.23, - "vnd": 1649644643, - "xag": 2341.76, - "xau": 27.9, - "xdr": 49573, - "xlm": 606521, - "xrp": 133203, - "yfi": 9.505071, - "zar": 1241950 - }, - "last_updated": "2024-04-15T06:04:06.295Z", - "low_24h": { - "aed": 230534, - "ars": 54215365, - "aud": 96753, - "bch": 120.114, - "bdt": 6872844, - "bhd": 23604, - "bits": 995785, - "bmd": 62773, - "bnb": 113.951, - "brl": 321311, - "btc": 1.0, - "cad": 86479, - "chf": 57386, - "clp": 59887552, - "cny": 454264, - "czk": 1494089, - "dkk": 440052, - "dot": 9481, - "eos": 83822, - "eth": 20.637338, - "eur": 58824, - "gbp": 50392, - "gel": 167604, - "hkd": 491975, - "huf": 23050679, - "idr": 1011765011, - "ils": 236470, - "inr": 5248548, - "jpy": 9621554, - "krw": 86664605, - "kwd": 19274.56, - "link": 4602, - "lkr": 18694015, - "ltc": 805.67, - "mmk": 131504822, - "mxn": 1044733, - "myr": 299428, - "ngn": 75421935, - "nok": 684246, - "nzd": 105625, - "php": 3551296, - "pkr": 17407155, - "pln": 252975, - "rub": 5858305, - "sar": 235481, - "sats": 99578538, - "sek": 682708, - "sgd": 85434, - "thb": 2286595, - "try": 2031502, - "twd": 2027761, - "uah": 2472084, - "usd": 62773, - "vef": 6285.48, - "vnd": 1571686181, - "xag": 2246.47, - "xau": 26.77, - "xdr": 47231, - "xlm": 581037, - "xrp": 129303, - "yfi": 9.124316, - "zar": 1181409 - }, - "market_cap": { - "aed": 4724318498511, - "ars": 1114970607933939, - "aud": 1982743409662, - "bch": 2383394968, - "bdt": 141142725775210, - "bhd": 484769750115, - "bits": 19679404952219, - "bmd": 1286403947859, - "bnb": 2260097067, - "brl": 6584587247510, - "btc": 19683087, - "cad": 1769017684957, - "chf": 1175715320165, - "clp": 1240890976183494, - "cny": 9311892257365, - "czk": 30599203160620, - "dkk": 9008257187936, - "dot": 187840999611, - "eos": 1662815990017, - "eth": 408027820, - "eur": 1207390444573, - "gbp": 1031984120667, - "gel": 3434698540783, - "hkd": 10077234426932, - "huf": 473687605224922, - "idr": 20691297659544744, - "ils": 4814045173874, - "inr": 107330997613238, - "jpy": 197911336630826, - "krw": 1779921617876356, - "kwd": 395827781160, - "link": 91557383845, - "lkr": 383902199089535, - "ltc": 16172178040, - "mmk": 2700584333893542, - "mxn": 21323840916162, - "myr": 6145794860895, - "ngn": 1545185542465121, - "nok": 14002070881504, - "nzd": 2162186469157, - "php": 73004710444931, - "pkr": 357475288906111, - "pln": 5172032096504, - "rub": 120043007300460, - "sar": 4825558489208, - "sats": 1967940495221924, - "sek": 13965291306231, - "sgd": 1749284248397, - "thb": 47259265034460, - "try": 41686476943272, - "twd": 41596512283178, - "uah": 50719348184346, - "usd": 1286403947859, - "vef": 128807627299, - "vnd": 32281155053041980, - "xag": 45450593948, - "xau": 545679691, - "xdr": 969931853434, - "xlm": 11630509762884, - "xrp": 2554941390091, - "yfi": 180933855, - "zar": 24216074489768 - }, - "market_cap_change_24h": 20514426424, - "market_cap_change_24h_in_currency": { - "aed": 75579750051, - "ars": 17760865230218, - "aud": 31619029048, - "bch": -209162728.46353197, - "bdt": 2544262019411, - "bhd": 7535729982, - "bits": 2636739477, - "bmd": 20514426424, - "bnb": 7529188, - "brl": 105005143093, - "btc": 1019, - "cad": 25064985752, - "chf": 18458108012, - "clp": 33192636462497, - "cny": 151156146549, - "czk": 469260305138, - "dkk": 134118464773, - "dot": -2646273675.7561646, - "eos": -15455072913.740723, - "eth": -4670409.560918391, - "eur": 19669601087, - "gbp": 15776116661, - "gel": 56039408073, - "hkd": 156015186114, - "huf": 6536395129792, - "idr": 287943530960940, - "ils": 41375841265, - "inr": 1488249318647, - "jpy": 3882120232888, - "krw": 32234544583298, - "kwd": 6046472726, - "link": -664685414.5523224, - "lkr": 6916827271257, - "ltc": -20447530.117485046, - "mmk": 48644970197278, - "mxn": 255641610920, - "myr": 109400677933, - "ngn": 24219282461059, - "nok": 203495331007, - "nzd": 32133668246, - "php": 1388913401701, - "pkr": 6440870010247, - "pln": 70517579354, - "rub": 1903849990092, - "sar": 76827127449, - "sats": 263673947657, - "sek": 197730049009, - "sgd": 26408609724, - "thb": 1289866883129, - "try": 718999450993, - "twd": 704483072266, - "uah": 867060520238, - "usd": 20514426424, - "vef": 2054109518, - "vnd": 602230164386196, - "xag": 148015761, - "xau": 5752492, - "xdr": 17475311617, - "xlm": -131453123902.14844, - "xrp": -18487323568.61963, - "yfi": -5310297.739972651, - "zar": 391666588402 - }, - "market_cap_change_percentage_24h": 1.62055, - "market_cap_change_percentage_24h_in_currency": { - "aed": 1.62581, - "ars": 1.61873, - "aud": 1.62055, - "bch": -8.06781, - "bdt": 1.83571, - "bhd": 1.57904, - "bits": 0.0134, - "bmd": 1.62055, - "bnb": 0.33425, - "brl": 1.62055, - "btc": 0.00518, - "cad": 1.43725, - "chf": 1.59499, - "clp": 2.74842, - "cny": 1.65004, - "czk": 1.55746, - "dkk": 1.51134, - "dot": -1.38921, - "eos": -0.92089, - "eth": -1.13168, - "eur": 1.65608, - "gbp": 1.55245, - "gel": 1.65863, - "hkd": 1.57254, - "huf": 1.3992, - "idr": 1.41126, - "ils": 0.86693, - "inr": 1.40609, - "jpy": 2.00079, - "krw": 1.84441, - "kwd": 1.55125, - "link": -0.72074, - "lkr": 1.83477, - "ltc": -0.12628, - "mmk": 1.83432, - "mxn": 1.2134, - "myr": 1.81235, - "ngn": 1.59236, - "nok": 1.47476, - "nzd": 1.50859, - "php": 1.9394, - "pkr": 1.83483, - "pln": 1.38229, - "rub": 1.61153, - "sar": 1.61785, - "sats": 0.0134, - "sek": 1.4362, - "sgd": 1.53282, - "thb": 2.80593, - "try": 1.75505, - "twd": 1.72279, - "uah": 1.73926, - "usd": 1.62055, - "vef": 1.62055, - "vnd": 1.90104, - "xag": 0.32673, - "xau": 1.06542, - "xdr": 1.83476, - "xlm": -1.11761, - "xrp": -0.71839, - "yfi": -2.85126, - "zar": 1.64397 - }, - "market_cap_fdv_ratio": 0.94, - "market_cap_rank": 1, - "max_supply": 21000000.0, - "mcap_to_tvl_ratio": null, - "price_change_24h": 1244, - "price_change_24h_in_currency": { - "aed": 4573.94, - "ars": 1077366, - "aud": 1886.46, - "bch": -10.11244905949232, - "bdt": 151381, - "bhd": 458.86, - "bits": 5.24, - "bmd": 1243.92, - "bnb": 0.86255416, - "brl": 6367.11, - "btc": 0.0, - "cad": 1532.18, - "chf": 1103.62, - "clp": 1880533, - "cny": 9132.77, - "czk": 27268, - "dkk": 8086.49, - "dot": -207.65433200253938, - "eos": -1306.7236785583373, - "eth": -0.25550878503632646, - "eur": 1168.68, - "gbp": 959.32, - "gel": 3385.53, - "hkd": 9494.77, - "huf": 386819, - "idr": 16958976, - "ils": 2782.45, - "inr": 92082, - "jpy": 227168, - "krw": 1873851, - "kwd": 369.26, - "link": -47.881939295943084, - "lkr": 411575, - "ltc": -3.2624894467991226, - "mmk": 2894650, - "mxn": 16441.19, - "myr": 6521.32, - "ngn": 1472724, - "nok": 12044.09, - "nzd": 1961.64, - "php": 81676, - "pkr": 383253, - "pln": 4503.52, - "rub": 115546, - "sar": 4659.75, - "sats": 523.62, - "sek": 11810.69, - "sgd": 1622.2, - "thb": 73408, - "try": 42556, - "twd": 41951, - "uah": 52001, - "usd": 1243.92, - "vef": 124.55, - "vnd": 35654918, - "xag": 1.25, - "xau": 0.339883, - "xdr": 1039.84, - "xlm": -7582.766253156122, - "xrp": -1138.215152540186, - "yfi": -0.2354930439985008, - "zar": 22604 - }, - "price_change_percentage_14d": -5.36348, - "price_change_percentage_14d_in_currency": { - "aed": -5.36116, - "ars": -4.36862, - "aud": -4.95563, - "bch": 19.35851, - "bdt": -5.35085, - "bhd": -5.3695, - "bits": 0.04589, - "bmd": -5.36348, - "bnb": -3.65497, - "brl": -3.4027, - "btc": 0.0, - "cad": -3.85637, - "chf": -4.12133, - "clp": -6.88595, - "cny": -5.24436, - "czk": -4.05464, - "dkk": -4.20402, - "dot": 27.44155, - "eos": 28.65535, - "eth": 5.23303, - "eur": -4.23267, - "gbp": -4.13965, - "gel": -6.24137, - "hkd": -5.26891, - "huf": -4.70921, - "idr": -4.40582, - "ils": -3.89199, - "inr": -5.31394, - "jpy": -3.84022, - "krw": -2.97813, - "kwd": -5.31794, - "link": 23.54408, - "lkr": -5.96013, - "ltc": 26.72993, - "mmk": -5.35322, - "mxn": -5.31342, - "myr": -4.28157, - "ngn": -20.00406, - "nok": -4.96924, - "nzd": -4.9275, - "php": -4.54002, - "pkr": -5.34533, - "pln": -4.47578, - "rub": -4.62336, - "sar": -5.34581, - "sats": 0.04589, - "sek": -3.87596, - "sgd": -4.62378, - "thb": -4.3289, - "try": -5.44607, - "twd": -4.26189, - "uah": -4.8368, - "usd": -5.36348, - "vef": -5.36348, - "vnd": -4.23545, - "xag": -16.04649, - "xau": -9.30301, - "xdr": -5.49308, - "xlm": 16.59179, - "xrp": 14.07561, - "yfi": 19.35157, - "zar": -5.59722 - }, - "price_change_percentage_1h_in_currency": { - "aed": 0.72229, - "ars": 0.88901, - "aud": 0.65808, - "bch": -0.91374, - "bdt": 0.71982, - "bhd": 0.72837, - "bits": -0.09766, - "bmd": 0.71982, - "bnb": 0.05237, - "brl": 0.71982, - "btc": 0.0, - "cad": 0.67991, - "chf": 0.65493, - "clp": 0.71982, - "cny": 0.72121, - "czk": 0.62814, - "dkk": 0.67459, - "dot": -0.99315, - "eos": -1.18237, - "eth": 0.13563, - "eur": 0.66907, - "gbp": 0.66899, - "gel": 0.71982, - "hkd": 0.71226, - "huf": 0.6079, - "idr": 0.63018, - "ils": -0.15266, - "inr": 0.71269, - "jpy": 0.75005, - "krw": 0.70559, - "kwd": 0.71982, - "link": -0.91796, - "lkr": 0.71982, - "ltc": -0.6307, - "mmk": 0.71982, - "mxn": 0.64902, - "myr": 0.71982, - "ngn": 0.71982, - "nok": 0.74991, - "nzd": 0.67639, - "php": 0.6666, - "pkr": 0.71982, - "pln": 0.71719, - "rub": 0.71982, - "sar": 0.75127, - "sats": -0.09766, - "sek": 0.66936, - "sgd": 0.71323, - "thb": 0.71943, - "try": 0.69589, - "twd": 0.70113, - "uah": 0.71982, - "usd": 0.71982, - "vef": 0.71982, - "vnd": 0.69452, - "xag": -0.11479, - "xau": 0.55129, - "xdr": 0.71982, - "xlm": -0.99604, - "xrp": -0.20402, - "yfi": -0.16786, - "zar": 0.53851 - }, - "price_change_percentage_1y": 115.21483, - "price_change_percentage_1y_in_currency": { - "aed": 115.22069, - "ars": 774.2355, - "aud": 122.37831, - "bch": -47.42182, - "bdt": 121.72214, - "bhd": 115.08869, - "bits": -0.05546, - "bmd": 115.21483, - "bnb": 24.91874, - "brl": 124.37188, - "btc": 0.0, - "cad": 118.88931, - "chf": 120.23159, - "clp": 160.337, - "cny": 126.71237, - "czk": 141.12328, - "dkk": 122.34292, - "dot": 109.42688, - "eos": 244.97416, - "eth": 42.27472, - "eur": 124.21349, - "gbp": 114.46729, - "gel": 128.02524, - "hkd": 114.76301, - "huf": 133.04346, - "idr": 133.97389, - "ils": 119.28865, - "inr": 119.37784, - "jpy": 147.41031, - "krw": 128.18651, - "kwd": 116.31645, - "link": 17.16628, - "lkr": 98.68818, - "ltc": 158.49705, - "mmk": 114.98836, - "mxn": 98.09358, - "myr": 133.57312, - "ngn": 456.5315, - "nok": 125.3689, - "nzd": 124.76039, - "php": 120.69069, - "pkr": 110.24947, - "pln": 105.06203, - "rub": 146.26788, - "sar": 115.23084, - "sats": -0.05546, - "sek": 126.01134, - "sgd": 120.02327, - "thb": 133.24606, - "try": 260.00671, - "twd": 127.9857, - "uah": 129.57435, - "usd": 115.21483, - "vef": 115.21483, - "vnd": 130.30956, - "xag": 91.97776, - "xau": 82.73633, - "xdr": 119.18435, - "xlm": 107.68482, - "xrp": 122.55077, - "yfi": 174.84046, - "zar": 123.65831 - }, - "price_change_percentage_200d": 148.18486, - "price_change_percentage_200d_in_currency": { - "aed": 148.14296, - "ars": 514.59167, - "aud": 143.84519, - "bch": 7.79232, - "bdt": 146.03664, - "bhd": 148.10058, - "bits": -0.02191, - "bmd": 148.18486, - "bnb": -7.7162, - "brl": 151.87045, - "btc": 0.0, - "cad": 152.92499, - "chf": 146.22005, - "clp": 163.34448, - "cny": 145.81453, - "czk": 154.28907, - "dkk": 144.73116, - "dot": 44.35016, - "eos": 79.41843, - "eth": 26.43593, - "eur": 144.58082, - "gbp": 141.72558, - "gel": 146.79835, - "hkd": 148.36964, - "huf": 144.49395, - "idr": 156.23494, - "ils": 141.36852, - "inr": 148.95289, - "jpy": 155.57584, - "krw": 153.10775, - "kwd": 146.90739, - "link": 34.32876, - "lkr": 127.85998, - "ltc": 97.55803, - "mmk": 147.1857, - "mxn": 132.61572, - "myr": 151.84859, - "ngn": 280.93893, - "nok": 151.14584, - "nzd": 147.86202, - "php": 147.20905, - "pkr": 138.29468, - "pln": 126.16039, - "rub": 139.43963, - "sar": 148.18942, - "sats": -0.02191, - "sek": 143.35683, - "sgd": 146.09348, - "thb": 148.08599, - "try": 193.89624, - "twd": 148.8244, - "uah": 164.03882, - "usd": 148.18486, - "vef": 148.18486, - "vnd": 155.09791, - "xag": 96.36314, - "xau": 97.26726, - "xdr": 145.34801, - "xlm": 152.0339, - "xrp": 144.31899, - "yfi": 79.8597, - "zar": 143.54881 - }, - "price_change_percentage_24h": 1.93518, - "price_change_percentage_24h_in_currency": { - "aed": 1.93767, - "ars": 1.93374, - "aud": 1.90409, - "bch": -7.67073, - "bdt": 2.15099, - "bhd": 1.89354, - "bits": 0.00052, - "bmd": 1.93518, - "bnb": 0.7545, - "brl": 1.93518, - "btc": 0.0, - "cad": 1.73022, - "chf": 1.87809, - "clp": 3.06653, - "cny": 1.96335, - "czk": 1.78228, - "dkk": 1.79456, - "dot": -2.13016, - "eos": -1.52184, - "eth": -1.21845, - "eur": 1.93778, - "gbp": 1.85911, - "gel": 1.97337, - "hkd": 1.88471, - "huf": 1.63071, - "idr": 1.6369, - "ils": 1.14813, - "inr": 1.71332, - "jpy": 2.30572, - "krw": 2.11153, - "kwd": 1.86565, - "link": -1.01992, - "lkr": 2.15006, - "ltc": -0.39571, - "mmk": 2.1496, - "mxn": 1.53685, - "myr": 2.12757, - "ngn": 1.9069, - "nok": 1.71896, - "nzd": 1.81365, - "php": 2.246, - "pkr": 2.15011, - "pln": 1.73851, - "rub": 1.92613, - "sar": 1.93246, - "sats": 0.00052, - "sek": 1.68944, - "sgd": 1.85429, - "thb": 3.14487, - "try": 2.04573, - "twd": 2.02037, - "uah": 2.05425, - "usd": 1.93518, - "vef": 1.93518, - "vnd": 2.21653, - "xag": 0.05439, - "xau": 1.23971, - "xdr": 2.15005, - "xlm": -1.26715, - "xrp": -0.86845, - "yfi": -2.49449, - "zar": 1.86852 - }, - "price_change_percentage_30d": -5.00563, - "price_change_percentage_30d_in_currency": { - "aed": -5.00576, - "ars": -3.17336, - "aud": -3.93724, - "bch": -27.60472, - "bdt": -5.03916, - "bhd": -5.02025, - "bits": -0.03911, - "bmd": -5.00563, - "bnb": 2.49075, - "brl": -2.6823, - "btc": 0.0, - "cad": -3.46587, - "chf": -1.87626, - "clp": -2.86068, - "cny": -4.44327, - "czk": -2.26045, - "dkk": -2.89969, - "dot": 45.43404, - "eos": 29.94202, - "eth": 11.46004, - "eur": -2.93412, - "gbp": -2.98852, - "gel": -4.46894, - "hkd": -4.8633, - "huf": -3.15582, - "idr": -2.43119, - "ils": -3.45727, - "inr": -4.38765, - "jpy": -1.95522, - "krw": -1.24621, - "kwd": -4.912, - "link": 29.84199, - "lkr": -7.769, - "ltc": 6.12858, - "mmk": -5.04068, - "mxn": -5.79232, - "myr": -3.5316, - "ngn": -29.17718, - "nok": -2.61993, - "nzd": -2.8518, - "php": -3.06945, - "pkr": -5.34209, - "pln": -3.31413, - "rub": -3.99678, - "sar": -4.98441, - "sats": -0.03911, - "sek": -0.4944, - "sgd": -3.39161, - "thb": -2.57347, - "try": -4.10672, - "twd": -2.86863, - "uah": -3.45855, - "usd": -5.00563, - "vef": -5.00563, - "vnd": -3.56344, - "xag": -15.97475, - "xau": -13.23725, - "xdr": -4.33789, - "xlm": 19.45433, - "xrp": 19.55096, - "yfi": 26.01146, - "zar": -4.83987 - }, - "price_change_percentage_60d": 26.05858, - "price_change_percentage_60d_in_currency": { - "aed": 26.04142, - "ars": 31.03994, - "aud": 26.0275, - "bch": -35.34248, - "bdt": 26.25258, - "bhd": 26.04185, - "bits": -0.026, - "bmd": 26.05858, - "bnb": -24.7978, - "brl": 29.83026, - "btc": 0.0, - "cad": 27.95593, - "chf": 30.11333, - "clp": 26.9522, - "cny": 28.0954, - "czk": 26.58054, - "dkk": 27.00652, - "dot": 38.83873, - "eos": 23.92823, - "eth": 10.48475, - "eur": 26.89165, - "gbp": 27.05565, - "gel": 26.77077, - "hkd": 26.29267, - "huf": 27.95202, - "idr": 29.73981, - "ils": 29.02687, - "inr": 26.7018, - "jpy": 29.12371, - "krw": 30.73394, - "kwd": 25.87898, - "link": 78.36569, - "lkr": 20.36361, - "ltc": 10.21076, - "mmk": 26.26405, - "mxn": 22.29884, - "myr": 25.99265, - "ngn": -0.09345, - "nok": 29.47244, - "nzd": 28.88498, - "php": 27.82461, - "pkr": 25.68646, - "pln": 25.32623, - "rub": 28.27957, - "sar": 26.08832, - "sats": -0.026, - "sek": 30.02586, - "sgd": 27.22141, - "thb": 28.16836, - "try": 32.73126, - "twd": 29.68147, - "uah": 30.45718, - "usd": 26.05858, - "vef": 26.05858, - "vnd": 29.39588, - "xag": -0.6713, - "xau": 6.38021, - "xdr": 26.20135, - "xlm": 30.69321, - "xrp": 36.27184, - "yfi": 35.87619, - "zar": 24.43684 - }, - "price_change_percentage_7d": -5.59405, - "price_change_percentage_7d_in_currency": { - "aed": -5.59662, - "ars": -5.0696, - "aud": -4.29982, - "bch": 21.94737, - "bdt": -5.68772, - "bhd": -5.7079, - "bits": -0.04404, - "bmd": -5.59405, - "bnb": -3.40342, - "brl": -4.44343, - "btc": 0.0, - "cad": -4.57355, - "chf": -4.58652, - "clp": -3.30073, - "cny": -4.34527, - "czk": -3.95036, - "dkk": -4.01494, - "dot": 18.20263, - "eos": 23.54302, - "eth": 2.12121, - "eur": -4.04978, - "gbp": -4.35883, - "gel": -5.72596, - "hkd": -5.54942, - "huf": -3.46145, - "idr": -4.52533, - "ils": -6.15332, - "inr": -5.39998, - "jpy": -4.32663, - "krw": -3.52013, - "kwd": -5.60325, - "link": 18.05229, - "lkr": -5.84782, - "ltc": 20.16446, - "mmk": -5.68839, - "mxn": -5.01326, - "myr": -5.16728, - "ngn": -12.59155, - "nok": -4.37925, - "nzd": -4.59633, - "php": -5.17965, - "pkr": -5.67266, - "pln": -3.94911, - "rub": -4.81274, - "sar": -5.58901, - "sats": -0.04404, - "sek": -3.75608, - "sgd": -4.85523, - "thb": -5.28725, - "try": -4.44972, - "twd": -4.97979, - "uah": -4.22101, - "usd": -5.59405, - "vef": -5.59405, - "vnd": -5.12024, - "xag": -7.85983, - "xau": -6.33038, - "xdr": -5.81914, - "xlm": 9.06641, - "xrp": 10.83287, - "yfi": 11.09686, - "zar": -5.08585 - }, - "roi": null, - "total_supply": 21000000.0, - "total_value_locked": null, - "total_volume": { - "aed": 136716912322, - "ars": 32267105583050, - "aud": 57362617643, - "bch": 69157106, - "bdt": 4084636359726, - "bhd": 14029119365, - "bits": 567944604224, - "bmd": 37228219236, - "bnb": 65444265, - "brl": 190556362981, - "btc": 567945, - "cad": 51184334063, - "chf": 34014418754, - "clp": 35911084839383, - "cny": 269480187761, - "czk": 884754689896, - "dkk": 260617265608, - "dot": 5420707026, - "eos": 48043174598, - "eth": 11769319, - "eur": 34930270175, - "gbp": 29863100027, - "gel": 99399345360, - "hkd": 291626138538, - "huf": 13697294939990, - "idr": 598281231300602, - "ils": 139274490984, - "inr": 3105927658870, - "jpy": 5726897626332, - "krw": 51486198520375, - "kwd": 11455160287, - "link": 2640178135, - "lkr": 11110036825259, - "ltc": 466581771, - "mmk": 78154257700088, - "mxn": 617168115506, - "myr": 177857817400, - "ngn": 44717296017992, - "nok": 404938004481, - "nzd": 62567494974, - "php": 2112552714904, - "pkr": 10345248433809, - "pln": 149739678465, - "rub": 3474015608366, - "sar": 139650495998, - "sats": 56794460422398, - "sek": 403910617314, - "sgd": 50627399903, - "thb": 1367945592190, - "try": 1206108678341, - "twd": 1203588290670, - "uah": 1467805673991, - "usd": 37228219236, - "vef": 3727661592, - "vnd": 934208822590098, - "xag": 1307710073, - "xau": 15770246, - "xdr": 28069593337, - "xlm": 335690881007, - "xrp": 73819252445, - "yfi": 5230013, - "zar": 700187714510 - } - }, - "name": "Bitcoin", - "platforms": { - "": "" - }, - "preview_listing": false, - "public_notice": null, - "sentiment_votes_down_percentage": 29.82, - "sentiment_votes_up_percentage": 70.18, - "status_updates": [], - "symbol": "btc", - "tickers": [ - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000114, - "eth": 20.725024, - "usd": 65557 - }, - "converted_volume": { - "btc": 49882, - "eth": 1033695, - "usd": 3269742283 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65507.12, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:02:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:01+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BTC_USDT?ref=37754157", - "trust_score": "green", - "volume": 50685.47549 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.013112, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99996334, - "eth": 20.721894, - "usd": 65547 - }, - "converted_volume": { - "btc": 17373, - "eth": 360008, - "usd": 1138762841 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65552.4, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:02:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "gdax", - "name": "Coinbase Exchange" - }, - "target": "USD", - "timestamp": "2024-04-15T06:02:01+00:00", - "token_info_url": null, - "trade_url": "https://www.coinbase.com/advanced-trade/spot/BTC-USD", - "trust_score": "green", - "volume": 17373.3242657 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010153, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99899801, - "eth": 20.699851, - "usd": 65489 - }, - "converted_volume": { - "btc": 8795, - "eth": 182242, - "usd": 576566323 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65434.0, - "last_fetch_at": "2024-04-15T06:03:13+00:00", - "last_traded_at": "2024-04-15T06:03:13+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "gate", - "name": "Gate.io" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:13+00:00", - "token_info_url": null, - "trade_url": "https://gate.io/trade/BTC_USDT", - "trust_score": "green", - "volume": 8937.7964850157 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010152, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.00031, - "eth": 20.727029, - "usd": 65575 - }, - "converted_volume": { - "btc": 2353, - "eth": 48753, - "usd": 154242462 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65575.1, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:02:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "kraken", - "name": "Kraken" - }, - "target": "USD", - "timestamp": "2024-04-15T06:02:01+00:00", - "token_info_url": null, - "trade_url": "https://pro.kraken.com/app/trade/BTC-USD", - "trust_score": "green", - "volume": 2352.14985306 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010153, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.9989003, - "eth": 20.697827, - "usd": 65483 - }, - "converted_volume": { - "btc": 17041, - "eth": 353097, - "usd": 1117110639 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65427.6, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:04:00+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "okex", - "name": "OKX" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:04:00+00:00", - "token_info_url": null, - "trade_url": "https://www.okx.com/trade-spot/btc-usdt", - "trust_score": "green", - "volume": 17317.62309571 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99971878, - "eth": 20.714786, - "usd": 65536 - }, - "converted_volume": { - "btc": 18707, - "eth": 387630, - "usd": 1226363168 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65481.21, - "last_fetch_at": "2024-04-15T06:03:19+00:00", - "last_traded_at": "2024-04-15T06:02:16+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bybit_spot", - "name": "Bybit" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:16+00:00", - "token_info_url": null, - "trade_url": "https://www.bybit.com/trade/spot/BTC/USDT", - "trust_score": "green", - "volume": 18991.40817 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000196, - "eth": 20.731398, - "usd": 65552 - }, - "converted_volume": { - "btc": 9275, - "eth": 192240, - "usd": 607854479 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65512.44, - "last_fetch_at": "2024-04-15T06:02:43+00:00", - "last_traded_at": "2024-04-15T06:02:43+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "mxc", - "name": "MEXC" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:43+00:00", - "token_info_url": null, - "trade_url": "https://www.mexc.com/exchange/BTC_USDT", - "trust_score": "green", - "volume": 9272.910331 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.030852, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99849358, - "eth": 20.691437, - "usd": 65450 - }, - "converted_volume": { - "btc": 20032, - "eth": 415115, - "usd": 1313073974 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65400.96, - "last_fetch_at": "2024-04-15T06:04:06+00:00", - "last_traded_at": "2024-04-15T06:04:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitget", - "name": "Bitget" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:04:06+00:00", - "token_info_url": null, - "trade_url": "https://www.bitget.com/spot/BTCUSDT", - "trust_score": "green", - "volume": 20357.584511 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.01055, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000155, - "eth": 20.730557, - "usd": 65549 - }, - "converted_volume": { - "btc": 11014, - "eth": 228285, - "usd": 721826378 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65509.78, - "last_fetch_at": "2024-04-15T06:02:57+00:00", - "last_traded_at": "2024-04-15T06:02:57+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "coinw", - "name": "CoinW" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:57+00:00", - "token_info_url": null, - "trade_url": "https://www.coinw.com/front/market", - "trust_score": "green", - "volume": 11012.0157 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010199, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.00072, - "eth": 20.731398, - "usd": 65501 - }, - "converted_volume": { - "btc": 601.391, - "eth": 12459, - "usd": 39363463 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65425.55, - "last_fetch_at": "2024-04-15T05:58:29+00:00", - "last_traded_at": "2024-04-15T05:58:29+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitunix", - "name": "Bitunix" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T05:58:29+00:00", - "token_info_url": null, - "trade_url": "https://www.bitunix.com/spot-trade?symbol=BTCUSDT", - "trust_score": "green", - "volume": 600.95858 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.014416, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99975938, - "eth": 20.715627, - "usd": 65539 - }, - "converted_volume": { - "btc": 10010, - "eth": 207407, - "usd": 656182561 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65524.23, - "last_fetch_at": "2024-04-15T06:03:19+00:00", - "last_traded_at": "2024-04-15T06:02:16+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bybit_spot", - "name": "Bybit" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:02:16+00:00", - "token_info_url": null, - "trade_url": "https://www.bybit.com/trade/spot/BTC/USDC", - "trust_score": "green", - "volume": 10169.39316 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010153, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99975221, - "eth": 20.722209, - "usd": 65523 - }, - "converted_volume": { - "btc": 5481, - "eth": 113601, - "usd": 359202162 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65483.4, - "last_fetch_at": "2024-04-15T06:02:48+00:00", - "last_traded_at": "2024-04-15T06:02:48+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "fastex", - "name": "Fastex" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:48+00:00", - "token_info_url": null, - "trade_url": "https://exchange.fastex.com/btc-usdt", - "trust_score": "green", - "volume": 5482.11240472 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.015019, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.9998179, - "eth": 20.721958, - "usd": 65527 - }, - "converted_volume": { - "btc": 12103, - "eth": 250841, - "usd": 793209801 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65502.23, - "last_fetch_at": "2024-04-15T06:01:37+00:00", - "last_traded_at": "2024-04-15T06:01:37+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "latoken", - "name": "LATOKEN" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:01:37+00:00", - "token_info_url": null, - "trade_url": "https://latoken.com/exchange/USDT-BTC", - "trust_score": "green", - "volume": 12105.104159975383 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99978371, - "eth": 20.72125, - "usd": 65525 - }, - "converted_volume": { - "btc": 271.255, - "eth": 5622, - "usd": 17777713 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65499.99, - "last_fetch_at": "2024-04-15T06:01:06+00:00", - "last_traded_at": "2024-04-15T06:01:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "wootrade", - "name": "WOO X" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:01:06+00:00", - "token_info_url": null, - "trade_url": "https://x.woo.network/spot", - "trust_score": "green", - "volume": 271.313366 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99992962, - "eth": 20.725886, - "usd": 65534 - }, - "converted_volume": { - "btc": 2323, - "eth": 48159, - "usd": 152276710 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65495.02, - "last_fetch_at": "2024-04-15T06:02:56+00:00", - "last_traded_at": "2024-04-15T06:02:56+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "tapbit", - "name": "Tapbit" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:56+00:00", - "token_info_url": null, - "trade_url": "https://www.tapbit.com/spot/exchange/BTC_USDT", - "trust_score": "green", - "volume": 2359.4414 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.019981, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000327, - "eth": 20.734117, - "usd": 65560 - }, - "converted_volume": { - "btc": 493.161, - "eth": 10222, - "usd": 32321196 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65521.03, - "last_fetch_at": "2024-04-15T06:02:20+00:00", - "last_traded_at": "2024-04-15T06:02:20+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "dcoin", - "name": "Dcoin" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:20+00:00", - "token_info_url": null, - "trade_url": "https://www.dcoin.com/currencyTrading/BTC_USDT", - "trust_score": "green", - "volume": 493.0 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010153, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99913183, - "eth": 20.702624, - "usd": 65498 - }, - "converted_volume": { - "btc": 2510, - "eth": 52002, - "usd": 164520868 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65483.1, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:04:00+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "okex", - "name": "OKX" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:04:00+00:00", - "token_info_url": null, - "trade_url": "https://www.okx.com/trade-spot/btc-usdc", - "trust_score": "green", - "volume": 2549.14862623 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99960421, - "eth": 20.708121, - "usd": 65503 - }, - "converted_volume": { - "btc": 1661, - "eth": 34404, - "usd": 108823393 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65514.06, - "last_fetch_at": "2024-04-15T06:00:21+00:00", - "last_traded_at": "2024-04-15T06:00:21+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "tapbit", - "name": "Tapbit" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:00:21+00:00", - "token_info_url": null, - "trade_url": "https://www.tapbit.com/spot/exchange/BTC_USDC", - "trust_score": "green", - "volume": 1686.4497 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010153, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99902091, - "eth": 20.702365, - "usd": 65485 - }, - "converted_volume": { - "btc": 4737, - "eth": 98168, - "usd": 310521384 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65435.5, - "last_fetch_at": "2024-04-15T06:04:03+00:00", - "last_traded_at": "2024-04-15T06:03:32+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "kucoin", - "name": "KuCoin" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:32+00:00", - "token_info_url": null, - "trade_url": "https://www.kucoin.com/trade/BTC-USDT", - "trust_score": "green", - "volume": 4741.88099147 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99916687, - "eth": 20.705389, - "usd": 65494 - }, - "converted_volume": { - "btc": 4974, - "eth": 103083, - "usd": 326067840 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65445.06, - "last_fetch_at": "2024-04-15T06:04:05+00:00", - "last_traded_at": "2024-04-15T06:03:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "crypto_com", - "name": "Crypto.com Exchange" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:05+00:00", - "token_info_url": null, - "trade_url": "https://crypto.com/exchange/trade/spot/BTC_USDT", - "trust_score": "green", - "volume": 4978.559 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010153, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000464, - "eth": 20.732262, - "usd": 65579 - }, - "converted_volume": { - "btc": 238.143, - "eth": 4935, - "usd": 15610041 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65530.0, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:02:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "kraken", - "name": "Kraken" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:01+00:00", - "token_info_url": null, - "trade_url": "https://pro.kraken.com/app/trade/BTC-USDT", - "trust_score": "green", - "volume": 238.03260039 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99861134, - "eth": 20.693877, - "usd": 65458 - }, - "converted_volume": { - "btc": 4532, - "eth": 93918, - "usd": 297078932 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65463.77, - "last_fetch_at": "2024-04-15T06:04:06+00:00", - "last_traded_at": "2024-04-15T06:04:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "crypto_com", - "name": "Crypto.com Exchange" - }, - "target": "USD", - "timestamp": "2024-04-15T06:04:06+00:00", - "token_info_url": null, - "trade_url": "https://crypto.com/exchange/trade/spot/BTC_USD", - "trust_score": "green", - "volume": 4538.4659 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.019998, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99899319, - "eth": 20.695463, - "usd": 65463 - }, - "converted_volume": { - "btc": 1273, - "eth": 26365, - "usd": 83396724 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65448.2, - "last_fetch_at": "2024-04-15T06:00:30+00:00", - "last_traded_at": "2024-04-15T06:00:30+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "c_patex", - "name": "C-Patex" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:00:30+00:00", - "token_info_url": null, - "trade_url": "https://c-patex.com/exchange/BTC/USDT", - "trust_score": "green", - "volume": 1273.95617714 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99891511, - "eth": 20.698134, - "usd": 65484 - }, - "converted_volume": { - "btc": 1617, - "eth": 33507, - "usd": 106008277 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65428.57, - "last_fetch_at": "2024-04-15T06:03:26+00:00", - "last_traded_at": "2024-04-15T06:03:26+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "huobi", - "name": "HTX" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:26+00:00", - "token_info_url": null, - "trade_url": "https://www.huobi.com/en-us/exchange/btc_usdt", - "trust_score": "green", - "volume": 1643.378588387279 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010581, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99902839, - "eth": 20.70252, - "usd": 65485 - }, - "converted_volume": { - "btc": 12235, - "eth": 253550, - "usd": 802020303 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65435.99, - "last_fetch_at": "2024-04-15T06:04:03+00:00", - "last_traded_at": "2024-04-15T06:04:03+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "digifinex", - "name": "DigiFinex" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:04:03+00:00", - "token_info_url": null, - "trade_url": "https://www.digifinex.com/en-ww/trade/USDT/BTC", - "trust_score": "green", - "volume": 12247.32512 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.03053, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99915068, - "eth": 20.705054, - "usd": 65493 - }, - "converted_volume": { - "btc": 932.416, - "eth": 19322, - "usd": 61118989 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65444.0, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:04:00+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitfinex", - "name": "Bitfinex" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:04:00+00:00", - "token_info_url": null, - "trade_url": "https://trading.bitfinex.com/t/BTC:UST?type=exchange", - "trust_score": "green", - "volume": 933.20893323 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010306, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99892625, - "eth": 20.698365, - "usd": 65484 - }, - "converted_volume": { - "btc": 3801, - "eth": 78764, - "usd": 249188280 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65429.3, - "last_fetch_at": "2024-04-15T06:03:43+00:00", - "last_traded_at": "2024-04-15T06:03:43+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "cointr", - "name": "CoinTR Pro" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:43+00:00", - "token_info_url": null, - "trade_url": "https://www.cointr.com/en-us/spot/BTC_USDT", - "trust_score": "green", - "volume": 3855.41176 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.01887, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99885236, - "eth": 20.698872, - "usd": 65474 - }, - "converted_volume": { - "btc": 1105, - "eth": 22895, - "usd": 72422064 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65424.46, - "last_fetch_at": "2024-04-15T06:04:02+00:00", - "last_traded_at": "2024-04-15T06:04:02+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitmax", - "name": "AscendEX (BitMax)" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:04:02+00:00", - "token_info_url": null, - "trade_url": "https://ascendex.com/en/cashtrade-spottrading/usdt/btc", - "trust_score": "green", - "volume": 1106.12272 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.001246, - "eth": 20.751553, - "usd": 65620 - }, - "converted_volume": { - "btc": 127.58, - "eth": 2644, - "usd": 8361461 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65595.78, - "last_fetch_at": "2024-04-15T06:01:33+00:00", - "last_traded_at": "2024-04-15T06:01:33+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitexlive", - "name": "Bitexlive" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:01:33+00:00", - "token_info_url": null, - "trade_url": "https://bitexlive.com/exchange/USDT-BTC", - "trust_score": "green", - "volume": 127.42152447279429 - }, - { - "base": "WBTC", - "bid_ask_spread_percentage": 0.010001, - "coin_id": "wrapped-bitcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 34.05727, - "eth": 705.757, - "usd": 2232421 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.9998, - "last_fetch_at": "2024-04-15T06:04:08+00:00", - "last_traded_at": "2024-04-15T06:03:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "okex", - "name": "OKX" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:03:06+00:00", - "token_info_url": null, - "trade_url": "https://www.okx.com/trade-spot/wbtc-btc", - "trust_score": "green", - "volume": 34.0029 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010611, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99975181, - "eth": 20.711179, - "usd": 65512 - }, - "converted_volume": { - "btc": 9743, - "eth": 201846, - "usd": 638469725 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65497.9, - "last_fetch_at": "2024-04-15T06:00:42+00:00", - "last_traded_at": "2024-04-15T06:00:42+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "p2pb2b", - "name": "P2B" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:00:42+00:00", - "token_info_url": null, - "trade_url": null, - "trust_score": "green", - "volume": 9745.769571 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.015742, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99985164, - "eth": 20.724269, - "usd": 65529 - }, - "converted_volume": { - "btc": 22032, - "eth": 456659, - "usd": 1443933949 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65504.44, - "last_fetch_at": "2024-04-15T06:02:09+00:00", - "last_traded_at": "2024-04-15T06:02:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "hotcoin_global", - "name": "Hotcoin Global" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:09+00:00", - "token_info_url": null, - "trade_url": "https://www.hotcoin.com/currencyExchange/btc_usdt", - "trust_score": "green", - "volume": 22035.004 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.012015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99994583, - "eth": 20.719491, - "usd": 65551 - }, - "converted_volume": { - "btc": 818.238, - "eth": 16954, - "usd": 53639464 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65536.45, - "last_fetch_at": "2024-04-15T06:03:12+00:00", - "last_traded_at": "2024-04-15T06:02:19+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bingx", - "name": "BingX" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:02:19+00:00", - "token_info_url": null, - "trade_url": "https://bingx.com/en-us/spot/BTCUSDC", - "trust_score": "green", - "volume": 831.629613 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000004, - "eth": 20.727421, - "usd": 65539 - }, - "converted_volume": { - "btc": 9206, - "eth": 190813, - "usd": 603340064 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65499.87, - "last_fetch_at": "2024-04-15T06:02:59+00:00", - "last_traded_at": "2024-04-15T06:02:59+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "lbank", - "name": "LBank" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:59+00:00", - "token_info_url": null, - "trade_url": "https://www.lbank.com/trade/btc_usdt", - "trust_score": "green", - "volume": 9205.8086 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.01194, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99980691, - "eth": 20.711928, - "usd": 65452 - }, - "converted_volume": { - "btc": 6489, - "eth": 134421, - "usd": 424787537 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65501.51, - "last_fetch_at": "2024-04-15T05:59:24+00:00", - "last_traded_at": "2024-04-15T05:59:24+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "toobit", - "name": "Toobit" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T05:59:24+00:00", - "token_info_url": null, - "trade_url": "https://www.toobit.com/en-US/spot/BTC_USDT", - "trust_score": "green", - "volume": 6591.918183 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010153, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99891251, - "eth": 20.69808, - "usd": 65484 - }, - "converted_volume": { - "btc": 10627, - "eth": 220195, - "usd": 696640358 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65428.4, - "last_fetch_at": "2024-04-15T06:03:41+00:00", - "last_traded_at": "2024-04-15T06:03:41+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "deepcoin", - "name": "Deepcoin" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:41+00:00", - "token_info_url": null, - "trade_url": "https://www.deepcoin.com/en/Spot?currentId=BTC", - "trust_score": "green", - "volume": 11548.36779416 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010778, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99894091, - "eth": 20.700707, - "usd": 65480 - }, - "converted_volume": { - "btc": 3351, - "eth": 69439, - "usd": 219647707 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65430.26, - "last_fetch_at": "2024-04-15T06:04:12+00:00", - "last_traded_at": "2024-04-15T06:04:12+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bingx", - "name": "BingX" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:04:12+00:00", - "token_info_url": null, - "trade_url": "https://bingx.com/en-us/spot/BTCUSDT", - "trust_score": "green", - "volume": 3402.516323 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010031, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99916229, - "eth": 20.703255, - "usd": 65500 - }, - "converted_volume": { - "btc": 1949, - "eth": 40385, - "usd": 127768170 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65444.76, - "last_fetch_at": "2024-04-15T06:03:38+00:00", - "last_traded_at": "2024-04-15T06:03:38+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "fameex", - "name": "FameEX" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:38+00:00", - "token_info_url": null, - "trade_url": "https://www.fameex.com/en-US/trade/btc-usdt", - "trust_score": "green", - "volume": 1982.316103 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.011726, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99988969, - "eth": 20.725058, - "usd": 65532 - }, - "converted_volume": { - "btc": 4876, - "eth": 101070, - "usd": 319577392 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65532.77, - "last_fetch_at": "2024-04-15T06:03:00+00:00", - "last_traded_at": "2024-04-15T06:03:00+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "lbank", - "name": "LBank" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:03:00+00:00", - "token_info_url": null, - "trade_url": "https://www.lbank.com/trade/btc_usdc", - "trust_score": "green", - "volume": 4876.692 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.050363, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000445, - "eth": 20.729842, - "usd": 65584 - }, - "converted_volume": { - "btc": 2195, - "eth": 45490, - "usd": 143919204 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65584.0, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:02:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitstamp", - "name": "Bitstamp" - }, - "target": "USD", - "timestamp": "2024-04-15T06:02:01+00:00", - "token_info_url": null, - "trade_url": "https://www.bitstamp.net/markets/btc/usd/", - "trust_score": "green", - "volume": 2194.4255364 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.012156, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000028, - "eth": 20.726308, - "usd": 65541 - }, - "converted_volume": { - "btc": 1977, - "eth": 40970, - "usd": 129554628 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65515.98, - "last_fetch_at": "2024-04-15T06:01:53+00:00", - "last_traded_at": "2024-04-15T06:01:53+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "coinstore", - "name": "Coinstore" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:01:53+00:00", - "token_info_url": null, - "trade_url": "https://www.coinstore.com/#/spot/BTCUSDT", - "trust_score": "green", - "volume": 2005.556418 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.011002, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99954727, - "eth": 20.706941, - "usd": 65499 - }, - "converted_volume": { - "btc": 227.745, - "eth": 4718, - "usd": 14923876 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65484.5, - "last_fetch_at": "2024-04-15T06:00:09+00:00", - "last_traded_at": "2024-04-15T06:00:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bit2me", - "name": "Bit2Me" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:00:09+00:00", - "token_info_url": null, - "trade_url": "https://pro.bit2me.com/exchange/BTC-USDT", - "trust_score": "green", - "volume": 232.02242882139998 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99979653, - "eth": 20.721515, - "usd": 65525 - }, - "converted_volume": { - "btc": 3705, - "eth": 76798, - "usd": 242850309 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65500.83, - "last_fetch_at": "2024-04-15T06:01:48+00:00", - "last_traded_at": "2024-04-15T06:01:48+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "biconomy", - "name": "Biconomy" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:01:48+00:00", - "token_info_url": null, - "trade_url": "https://www.biconomy.com/exchange/BTC_USDT", - "trust_score": "green", - "volume": 3763.57351379 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.024088, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99911149, - "eth": 20.697913, - "usd": 65471 - }, - "converted_volume": { - "btc": 555.211, - "eth": 11502, - "usd": 36382307 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65455.95, - "last_fetch_at": "2024-04-15T06:00:43+00:00", - "last_traded_at": "2024-04-15T06:00:43+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "dextrade", - "name": "Dex-Trade" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:00:43+00:00", - "token_info_url": null, - "trade_url": "https://dex-trade.com/spot/trading/BTCUSDT?interface=classic", - "trust_score": "green", - "volume": 555.70500253 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 1065, - "eth": 22063, - "usd": 69787756 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65540.0, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:02:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:02:01+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BTC_USDC?ref=37754157", - "trust_score": "green", - "volume": 1080.48255 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.018699, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99919602, - "eth": 20.699665, - "usd": 65476 - }, - "converted_volume": { - "btc": 42491, - "eth": 880247, - "usd": 2784351617 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65461.488, - "last_fetch_at": "2024-04-15T06:00:13+00:00", - "last_traded_at": "2024-04-15T06:00:13+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "orangex", - "name": "OrangeX" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:00:13+00:00", - "token_info_url": null, - "trade_url": "https://www.orangex.com/spot/BTC-USDT-SPOT", - "trust_score": "green", - "volume": 43147.57446 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.01998, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99909755, - "eth": 20.701914, - "usd": 65496 - }, - "converted_volume": { - "btc": 15387, - "eth": 318818, - "usd": 1008659691 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65440.52, - "last_fetch_at": "2024-04-15T06:03:11+00:00", - "last_traded_at": "2024-04-15T06:03:11+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "whitebit", - "name": "WhiteBIT" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:11+00:00", - "token_info_url": null, - "trade_url": "https://whitebit.com/trade/BTC_USDT", - "trust_score": "green", - "volume": 15400.408846 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.9995443, - "eth": 20.711171, - "usd": 65525 - }, - "converted_volume": { - "btc": 1026, - "eth": 21269, - "usd": 67289681 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65524.93, - "last_fetch_at": "2024-04-15T06:03:43+00:00", - "last_traded_at": "2024-04-15T06:03:43+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "hashkey_exchange", - "name": "HashKey Exchange" - }, - "target": "USD", - "timestamp": "2024-04-15T06:03:43+00:00", - "token_info_url": null, - "trade_url": "https://pro.hashkey.com/en-US/spot/BTC_USD", - "trust_score": "green", - "volume": 1043.07513 - }, - { - "base": "WBTC", - "bid_ask_spread_percentage": 0.019999, - "coin_id": "wrapped-bitcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.727345, - "usd": 65539 - }, - "converted_volume": { - "btc": 20.415532, - "eth": 423.16, - "usd": 1338010 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.0001, - "last_fetch_at": "2024-04-15T06:02:59+00:00", - "last_traded_at": "2024-04-15T05:44:46+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "gdax", - "name": "Coinbase Exchange" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T05:44:46+00:00", - "token_info_url": null, - "trade_url": "https://www.coinbase.com/advanced-trade/spot/WBTC-BTC", - "trust_score": "green", - "volume": 20.41349072 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010014, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99947827, - "eth": 20.728318, - "usd": 65305 - }, - "converted_volume": { - "btc": 2.458064, - "eth": 50.978, - "usd": 160607 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65267.51, - "last_fetch_at": "2024-04-15T05:52:14+00:00", - "last_traded_at": "2024-04-15T05:52:14+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "nominex", - "name": "Nominex" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T05:52:14+00:00", - "token_info_url": null, - "trade_url": "https://nominex.io/en/markets/BTC/USDT", - "trust_score": "green", - "volume": 2.45934737078525 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99892656, - "eth": 20.698371, - "usd": 65484 - }, - "converted_volume": { - "btc": 18635, - "eth": 386119, - "usd": 1221581999 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65429.32, - "last_fetch_at": "2024-04-15T06:03:21+00:00", - "last_traded_at": "2024-04-15T06:03:21+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitrue", - "name": "Bitrue" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:21+00:00", - "token_info_url": null, - "trade_url": "https://www.bitrue.com/trade/btc_usdt", - "trust_score": "green", - "volume": 18654.54 - }, - { - "base": "BNB", - "bid_ask_spread_percentage": 0.011547, - "coin_id": "binancecoin", - "converted_last": { - "btc": 1.0, - "eth": 20.720613, - "usd": 65555 - }, - "converted_volume": { - "btc": 386.913, - "eth": 8017, - "usd": 25363996 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.008658, - "last_fetch_at": "2024-04-15T06:03:02+00:00", - "last_traded_at": "2024-04-15T06:02:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:02:09+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BNB_BTC?ref=37754157", - "trust_score": "green", - "volume": 44779.297 - }, - { - "base": "SOL", - "bid_ask_spread_percentage": 0.014311, - "coin_id": "solana", - "converted_last": { - "btc": 1.0, - "eth": 20.727345, - "usd": 65539 - }, - "converted_volume": { - "btc": 890.62, - "eth": 18460, - "usd": 58370212 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0023193, - "last_fetch_at": "2024-04-15T06:02:11+00:00", - "last_traded_at": "2024-04-15T06:02:11+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:02:11+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/SOL_BTC?ref=37754157", - "trust_score": "green", - "volume": 400982.12 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.012032, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99977089, - "eth": 20.711574, - "usd": 65514 - }, - "converted_volume": { - "btc": 1612, - "eth": 33400, - "usd": 105648460 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65499.15, - "last_fetch_at": "2024-04-15T06:00:10+00:00", - "last_traded_at": "2024-04-15T06:00:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "trubit", - "name": "Trubit" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:00:10+00:00", - "token_info_url": null, - "trade_url": "https://www.trubit.com/pro/crypto-spot-trading/BTC/USDT", - "trust_score": "green", - "volume": 1637.73282 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.021227, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99988385, - "eth": 20.724937, - "usd": 65531 - }, - "converted_volume": { - "btc": 9538, - "eth": 197699, - "usd": 625114963 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65531.21, - "last_fetch_at": "2024-04-15T06:02:24+00:00", - "last_traded_at": "2024-04-15T06:02:24+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "p2pb2b", - "name": "P2B" - }, - "target": "USD", - "timestamp": "2024-04-15T06:02:24+00:00", - "token_info_url": null, - "trade_url": null, - "trust_score": "green", - "volume": 9539.194569 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.014845, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99910488, - "eth": 20.702066, - "usd": 65496 - }, - "converted_volume": { - "btc": 28.82228, - "eth": 597.215, - "usd": 1889439 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65441.0, - "last_fetch_at": "2024-04-15T06:03:43+00:00", - "last_traded_at": "2024-04-15T06:03:43+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "hashkey_exchange", - "name": "HashKey Exchange" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:43+00:00", - "token_info_url": null, - "trade_url": "https://pro.hashkey.com/en-US/spot/BTC_USDT", - "trust_score": "green", - "volume": 29.22561 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.014594, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.00037, - "eth": 20.735011, - "usd": 65563 - }, - "converted_volume": { - "btc": 161.75, - "eth": 3353, - "usd": 10600915 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65564.24, - "last_fetch_at": "2024-04-15T06:02:06+00:00", - "last_traded_at": "2024-04-15T06:02:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "xt", - "name": "XT.COM" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:02:06+00:00", - "token_info_url": null, - "trade_url": "https://www.xt.com/en/trade/btc_usdc", - "trust_score": "green", - "volume": 164.15749 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.039992, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99964145, - "eth": 20.708892, - "usd": 65505 - }, - "converted_volume": { - "btc": 820.687, - "eth": 17002, - "usd": 53778633 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65490.67, - "last_fetch_at": "2024-04-15T06:00:07+00:00", - "last_traded_at": "2024-04-15T06:00:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "pointpay", - "name": "PointPay" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:00:07+00:00", - "token_info_url": null, - "trade_url": "https://exchange.pointpay.io/trade-classic/BTC_USDT", - "trust_score": "green", - "volume": 833.9982099 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010458, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99892636, - "eth": 20.698367, - "usd": 65484 - }, - "converted_volume": { - "btc": 849.374, - "eth": 17600, - "usd": 55680532 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65429.3071352845, - "last_fetch_at": "2024-04-15T06:03:17+00:00", - "last_traded_at": "2024-04-15T06:03:17+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "btse", - "name": "BTSE" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:17+00:00", - "token_info_url": null, - "trade_url": "https://www.btse.com/en/trading/BTC-USDT", - "trust_score": "green", - "volume": 850.2866972738898 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99960253, - "eth": 20.717494, - "usd": 65513 - }, - "converted_volume": { - "btc": 11.062424, - "eth": 229.277, - "usd": 725018 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65488.12, - "last_fetch_at": "2024-04-15T06:01:10+00:00", - "last_traded_at": "2024-04-15T06:01:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitcointry_exchange", - "name": "Bitcointry Exchange" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:01:10+00:00", - "token_info_url": null, - "trade_url": "https://bitcointry.com/en/exchange/BTC_USDT", - "trust_score": "green", - "volume": 11.2423 - }, - { - "base": "SOL", - "bid_ask_spread_percentage": 0.014311, - "coin_id": "solana", - "converted_last": { - "btc": 1.0, - "eth": 20.71632, - "usd": 65529 - }, - "converted_volume": { - "btc": 2.444571, - "eth": 50.643, - "usd": 160190 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0023191, - "last_fetch_at": "2024-04-15T06:00:58+00:00", - "last_traded_at": "2024-04-15T06:00:58+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "toko_crypto", - "name": "TokoCrypto" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:00:58+00:00", - "token_info_url": null, - "trade_url": "https://www.tokocrypto.com/trade/SOLBTC", - "trust_score": "green", - "volume": 1054.1034884222327 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.020919, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99995573, - "eth": 20.726427, - "usd": 65536 - }, - "converted_volume": { - "btc": 64.389, - "eth": 1335, - "usd": 4220008 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65511.26, - "last_fetch_at": "2024-04-15T06:02:15+00:00", - "last_traded_at": "2024-04-15T06:02:15+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bittime", - "name": "Bittime" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:15+00:00", - "token_info_url": null, - "trade_url": "https://www.bittime.com/en/trade/BTC-USDT", - "trust_score": "green", - "volume": 65.6131 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.026886, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99990933, - "eth": 20.718735, - "usd": 65549 - }, - "converted_volume": { - "btc": 343.914, - "eth": 7126, - "usd": 22545204 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65548.86, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:02:02+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "gemini", - "name": "Gemini" - }, - "target": "USD", - "timestamp": "2024-04-15T06:02:02+00:00", - "token_info_url": null, - "trade_url": "https://exchange.gemini.com/trade/BTCUSD", - "trust_score": "green", - "volume": 343.94501843 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99930427, - "eth": 20.701907, - "usd": 65483 - }, - "converted_volume": { - "btc": 3435, - "eth": 71170, - "usd": 225122396 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65468.58, - "last_fetch_at": "2024-04-15T06:00:34+00:00", - "last_traded_at": "2024-04-15T06:00:34+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "citex", - "name": "CITEX" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:00:34+00:00", - "token_info_url": null, - "trade_url": "https://www.citex.info/zh_CN/v5/proTrade/BTC_USDT?type=spot", - "trust_score": "green", - "volume": 3475.26883 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.014141, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 50.103, - "eth": 1038, - "usd": 3284187 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.048265, - "last_fetch_at": "2024-04-15T06:04:12+00:00", - "last_traded_at": "2024-04-15T06:04:12+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitmart", - "name": "BitMart" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:04:12+00:00", - "token_info_url": null, - "trade_url": "https://www.bitmart.com/trade/en?symbol=ETH_BTC", - "trust_score": "green", - "volume": 1038.0764 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.020704, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 691.947, - "eth": 14339, - "usd": 45356432 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.04831, - "last_fetch_at": "2024-04-15T06:04:07+00:00", - "last_traded_at": "2024-04-15T06:04:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "okex", - "name": "OKX" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:04:07+00:00", - "token_info_url": null, - "trade_url": "https://www.okx.com/trade-spot/eth-btc", - "trust_score": "green", - "volume": 14479.412046 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.030326, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000368, - "eth": 20.730271, - "usd": 65573 - }, - "converted_volume": { - "btc": 63.905, - "eth": 1324, - "usd": 4188880 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65564.09, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:02:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "kraken", - "name": "Kraken" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:02:01+00:00", - "token_info_url": null, - "trade_url": "https://pro.kraken.com/app/trade/BTC-USDC", - "trust_score": "green", - "volume": 63.88104722 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.03068, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99258507, - "eth": 20.56271, - "usd": 65043 - }, - "converted_volume": { - "btc": 1.492724, - "eth": 30.923744, - "usd": 97816 - }, - "is_anomaly": false, - "is_stale": false, - "last": 64979.4, - "last_fetch_at": "2024-04-15T06:00:08+00:00", - "last_traded_at": "2024-04-15T05:54:42+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "kinesis_money", - "name": "Kinesis Money" - }, - "target": "USD", - "timestamp": "2024-04-15T05:54:42+00:00", - "token_info_url": null, - "trade_url": "https://kms.kinesis.money/guest-exchange/BTC/USD", - "trust_score": "green", - "volume": 1.50415758 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010031, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99855282, - "eth": 20.692664, - "usd": 65454 - }, - "converted_volume": { - "btc": 12359, - "eth": 256103, - "usd": 810095291 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65404.84, - "last_fetch_at": "2024-04-15T06:04:11+00:00", - "last_traded_at": "2024-04-15T06:04:11+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitmart", - "name": "BitMart" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:04:11+00:00", - "token_info_url": null, - "trade_url": "https://www.bitmart.com/trade/en?symbol=BTC_USDT", - "trust_score": "green", - "volume": 12376.52666 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.020704, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.720613, - "usd": 65555 - }, - "converted_volume": { - "btc": 275.557, - "eth": 5710, - "usd": 18064084 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0483, - "last_fetch_at": "2024-04-15T06:03:39+00:00", - "last_traded_at": "2024-04-15T06:01:49+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "gdax", - "name": "Coinbase Exchange" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:01:49+00:00", - "token_info_url": null, - "trade_url": "https://www.coinbase.com/advanced-trade/spot/ETH-BTC", - "trust_score": "green", - "volume": 5705.11364774 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.062432, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99972641, - "eth": 20.721674, - "usd": 65521 - }, - "converted_volume": { - "btc": 5000, - "eth": 103630, - "usd": 327673490 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65481.71, - "last_fetch_at": "2024-04-15T06:02:22+00:00", - "last_traded_at": "2024-04-15T06:02:22+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bigone", - "name": "BigONE" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:22+00:00", - "token_info_url": null, - "trade_url": "https://big.one/trade/BTC-USDT", - "trust_score": "green", - "volume": 5001.053594 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000262, - "eth": 20.732774, - "usd": 65556 - }, - "converted_volume": { - "btc": 5414, - "eth": 112225, - "usd": 354849486 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65531.32, - "last_fetch_at": "2024-04-15T06:02:04+00:00", - "last_traded_at": "2024-04-15T06:02:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "xt", - "name": "XT.COM" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:04+00:00", - "token_info_url": null, - "trade_url": "https://www.xt.com/en/trade/btc_usdt", - "trust_score": "green", - "volume": 5502.688843 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99913755, - "eth": 20.702743, - "usd": 65498 - }, - "converted_volume": { - "btc": 431.776, - "eth": 8947, - "usd": 28305016 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65443.14, - "last_fetch_at": "2024-04-15T06:03:58+00:00", - "last_traded_at": "2024-04-15T06:03:58+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "coinex", - "name": "CoinEx" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:58+00:00", - "token_info_url": null, - "trade_url": "https://www.coinex.com/trading?currency=USDT&dest=BTC#limit", - "trust_score": "green", - "volume": 438.89401329 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.030749, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 640.201, - "eth": 13267, - "usd": 41964564 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65499.63, - "last_fetch_at": "2024-04-15T06:04:00+00:00", - "last_traded_at": "2024-04-15T06:02:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "gdax", - "name": "Coinbase Exchange" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:02:01+00:00", - "token_info_url": null, - "trade_url": "https://www.coinbase.com/advanced-trade/spot/BTC-USDT", - "trust_score": "green", - "volume": 640.2011181 - }, - { - "base": "SOL", - "bid_ask_spread_percentage": 0.01432, - "coin_id": "solana", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 125.194, - "eth": 2594, - "usd": 8206357 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0023206, - "last_fetch_at": "2024-04-15T06:04:09+00:00", - "last_traded_at": "2024-04-15T06:03:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "kraken", - "name": "Kraken" - }, - "target": "XBT", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:03:09+00:00", - "token_info_url": null, - "trade_url": "https://pro.kraken.com/app/trade/SOL-XBT", - "trust_score": "green", - "volume": 53949.0565105 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.04168, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000535, - "eth": 20.736829, - "usd": 65574 - }, - "converted_volume": { - "btc": 1834, - "eth": 38003, - "usd": 120172718 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65575.09, - "last_fetch_at": "2024-04-15T06:01:58+00:00", - "last_traded_at": "2024-04-15T06:01:58+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitrue", - "name": "Bitrue" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:01:58+00:00", - "token_info_url": null, - "trade_url": "https://www.bitrue.com/trade/btc_usdc", - "trust_score": "green", - "volume": 1832.63 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.020725, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.715928, - "usd": 65465 - }, - "converted_volume": { - "btc": 212.638, - "eth": 4405, - "usd": 13920339 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.04825, - "last_fetch_at": "2024-04-15T05:59:54+00:00", - "last_traded_at": "2024-04-15T05:59:54+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "azbit", - "name": "Azbit" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T05:59:54+00:00", - "token_info_url": null, - "trade_url": "https://azbit.com/exchange/ETH_BTC?referralCode=OH5QDS1", - "trust_score": "green", - "volume": 4449.573 - }, - { - "base": "AVAX", - "bid_ask_spread_percentage": 0.021442, - "coin_id": "avalanche-2", - "converted_last": { - "btc": 1.0, - "eth": 20.71632, - "usd": 65529 - }, - "converted_volume": { - "btc": 14.091021, - "eth": 291.914, - "usd": 923367 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0005596, - "last_fetch_at": "2024-04-15T06:00:30+00:00", - "last_traded_at": "2024-04-15T06:00:30+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "c_patex", - "name": "C-Patex" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:00:30+00:00", - "token_info_url": null, - "trade_url": "https://c-patex.com/exchange/AVAX/BTC", - "trust_score": "green", - "volume": 25180.52432349 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.041399, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 221.005, - "eth": 4580, - "usd": 14486678 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.04826, - "last_fetch_at": "2024-04-15T06:04:08+00:00", - "last_traded_at": "2024-04-15T05:52:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "kraken", - "name": "Kraken" - }, - "target": "XBT", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T05:52:04+00:00", - "token_info_url": null, - "trade_url": "https://pro.kraken.com/app/trade/ETH-XBT", - "trust_score": "green", - "volume": 4579.46994148 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.013116, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99903662, - "eth": 20.70269, - "usd": 65486 - }, - "converted_volume": { - "btc": 540.692, - "eth": 11205, - "usd": 35441860 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65476.86, - "last_fetch_at": "2024-04-15T06:04:04+00:00", - "last_traded_at": "2024-04-15T06:04:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "digifinex", - "name": "DigiFinex" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:04:04+00:00", - "token_info_url": null, - "trade_url": "https://www.digifinex.com/en-ww/trade/USDC/BTC", - "trust_score": "green", - "volume": 541.21374 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010153, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99988557, - "eth": 20.720283, - "usd": 65542 - }, - "converted_volume": { - "btc": 188.21, - "eth": 3900, - "usd": 12337002 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65532.5, - "last_fetch_at": "2024-04-15T06:04:04+00:00", - "last_traded_at": "2024-04-15T06:03:32+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "kucoin", - "name": "KuCoin" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:03:32+00:00", - "token_info_url": null, - "trade_url": "https://www.kucoin.com/trade/BTC-USDC", - "trust_score": "green", - "volume": 188.23181671 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.193705, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99904854, - "eth": 20.700898, - "usd": 65492 - }, - "converted_volume": { - "btc": 183.274, - "eth": 3798, - "usd": 12014523 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65437.31, - "last_fetch_at": "2024-04-15T06:03:52+00:00", - "last_traded_at": "2024-04-15T06:03:52+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bcex", - "name": "BCEX" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:03:52+00:00", - "token_info_url": null, - "trade_url": "https://www.bcex.kr/market/btcusdt", - "trust_score": "green", - "volume": 183.449032 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.037257, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.725732, - "usd": 65539 - }, - "converted_volume": { - "btc": 1837, - "eth": 38065, - "usd": 120369658 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.04825, - "last_fetch_at": "2024-04-15T06:01:57+00:00", - "last_traded_at": "2024-04-15T06:01:57+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitrue", - "name": "Bitrue" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:01:57+00:00", - "token_info_url": null, - "trade_url": "https://www.bitrue.com/trade/eth_btc", - "trust_score": "green", - "volume": 38064.583 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.012071, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.720613, - "usd": 65555 - }, - "converted_volume": { - "btc": 30.381281, - "eth": 629.519, - "usd": 1991639 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.048247, - "last_fetch_at": "2024-04-15T06:03:21+00:00", - "last_traded_at": "2024-04-15T06:01:39+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "crypto_com", - "name": "Crypto.com Exchange" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:01:39+00:00", - "token_info_url": null, - "trade_url": "https://crypto.com/exchange/trade/spot/ETH_BTC", - "trust_score": "green", - "volume": 629.703 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.084918, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.715928, - "usd": 65465 - }, - "converted_volume": { - "btc": 102.814, - "eth": 2130, - "usd": 6730678 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.048261, - "last_fetch_at": "2024-04-15T05:59:18+00:00", - "last_traded_at": "2024-04-15T05:59:18+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "pionex", - "name": "Pionex" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T05:59:18+00:00", - "token_info_url": null, - "trade_url": "https://www.pionex.com/en/trade/ETH_BTC/Bot", - "trust_score": "green", - "volume": 2151.0237 - }, - { - "base": "WBTC", - "bid_ask_spread_percentage": 0.079952, - "coin_id": "wrapped-bitcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.725732, - "usd": 65539 - }, - "converted_volume": { - "btc": 506.561, - "eth": 10499, - "usd": 33199406 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.0003, - "last_fetch_at": "2024-04-15T06:01:58+00:00", - "last_traded_at": "2024-04-15T06:01:58+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitrue", - "name": "Bitrue" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:01:58+00:00", - "token_info_url": null, - "trade_url": "https://www.bitrue.com/trade/wbtc_btc", - "trust_score": "green", - "volume": 506.409 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.04967, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 15.2065, - "eth": 315.119, - "usd": 996771 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.048318, - "last_fetch_at": "2024-04-15T06:04:06+00:00", - "last_traded_at": "2024-04-15T06:04:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitget", - "name": "Bitget" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:04:06+00:00", - "token_info_url": null, - "trade_url": "https://www.bitget.com/spot/ETHBTC", - "trust_score": "green", - "volume": 318.2444 - }, - { - "base": "WBTC", - "bid_ask_spread_percentage": 0.019994, - "coin_id": "wrapped-bitcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.720613, - "usd": 65555 - }, - "converted_volume": { - "btc": 7.673313, - "eth": 158.996, - "usd": 503023 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.0005, - "last_fetch_at": "2024-04-15T06:03:20+00:00", - "last_traded_at": "2024-04-15T05:45:19+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bybit_spot", - "name": "Bybit" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T05:45:19+00:00", - "token_info_url": null, - "trade_url": "https://www.bybit.com/trade/spot/WBTC/BTC", - "trust_score": "green", - "volume": 7.6684 - }, - { - "base": "BNB", - "bid_ask_spread_percentage": 0.021879, - "coin_id": "binancecoin", - "converted_last": { - "btc": 1.0, - "eth": 20.715928, - "usd": 65465 - }, - "converted_volume": { - "btc": 6.373968, - "eth": 132.043, - "usd": 417271 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0086846, - "last_fetch_at": "2024-04-15T05:59:17+00:00", - "last_traded_at": "2024-04-15T05:59:17+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "pionex", - "name": "Pionex" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T05:59:17+00:00", - "token_info_url": null, - "trade_url": "https://www.pionex.com/en/trade/BNB_BTC/Bot", - "trust_score": "green", - "volume": 738.22 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.065464, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99848261, - "eth": 20.69121, - "usd": 65450 - }, - "converted_volume": { - "btc": 92.747, - "eth": 1922, - "usd": 6079453 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65440.55, - "last_fetch_at": "2024-04-15T06:04:07+00:00", - "last_traded_at": "2024-04-15T06:04:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitget", - "name": "Bitget" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:04:07+00:00", - "token_info_url": null, - "trade_url": "https://www.bitget.com/spot/BTCUSDC", - "trust_score": "green", - "volume": 94.13951 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.069359, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000346, - "eth": 20.734513, - "usd": 65561 - }, - "converted_volume": { - "btc": 60.426, - "eth": 1252, - "usd": 3960233 - }, - "is_anomaly": false, - "is_stale": false, - "last": 52591.0, - "last_fetch_at": "2024-04-15T06:02:02+00:00", - "last_traded_at": "2024-04-15T06:02:02+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitstamp", - "name": "Bitstamp" - }, - "target": "GBP", - "timestamp": "2024-04-15T06:02:02+00:00", - "token_info_url": null, - "trade_url": "https://www.bitstamp.net/markets/btc/gbp/", - "trust_score": "green", - "volume": 60.40486513 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.110142, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99907776, - "eth": 20.706618, - "usd": 65478 - }, - "converted_volume": { - "btc": 148.187, - "eth": 3071, - "usd": 9712017 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65478.38, - "last_fetch_at": "2024-04-15T06:01:34+00:00", - "last_traded_at": "2024-04-15T06:01:34+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "cryptology", - "name": "Cryptology" - }, - "target": "USD", - "timestamp": "2024-04-15T06:01:34+00:00", - "token_info_url": null, - "trade_url": "https://cryptology.com/app/next/trading/BTC_USD", - "trust_score": "green", - "volume": 148.324030091976 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.052994, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99993818, - "eth": 20.726063, - "usd": 65535 - }, - "converted_volume": { - "btc": 33.462484, - "eth": 693.588, - "usd": 2193092 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65547.88, - "last_fetch_at": "2024-04-15T06:02:04+00:00", - "last_traded_at": "2024-04-15T06:02:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "xt", - "name": "XT.COM" - }, - "target": "DAI", - "target_coin_id": "dai", - "timestamp": "2024-04-15T06:02:04+00:00", - "token_info_url": null, - "trade_url": "https://www.xt.com/en/trade/btc_dai", - "trust_score": "green", - "volume": 34.08866 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.036794, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99935953, - "eth": 20.703052, - "usd": 65487 - }, - "converted_volume": { - "btc": 2447, - "eth": 50702, - "usd": 160378110 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65472.2, - "last_fetch_at": "2024-04-15T06:00:52+00:00", - "last_traded_at": "2024-04-15T06:00:52+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "probit", - "name": "ProBit Global" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:00:52+00:00", - "token_info_url": null, - "trade_url": "https://www.probit.com/app/exchange/BTC-USDT", - "trust_score": "green", - "volume": 2449.01453218 - }, - { - "base": "SOL", - "bid_ask_spread_percentage": 0.017692, - "coin_id": "solana", - "converted_last": { - "btc": 1.0, - "eth": 20.716487, - "usd": 65454 - }, - "converted_volume": { - "btc": 0.03601747, - "eth": 0.74615547, - "usd": 2357.49 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.002316, - "last_fetch_at": "2024-04-15T05:58:45+00:00", - "last_traded_at": "2024-04-15T05:58:45+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "nominex", - "name": "Nominex" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T05:58:45+00:00", - "token_info_url": null, - "trade_url": "https://nominex.io/en/markets/SOL/BTC", - "trust_score": "green", - "volume": 15.551585492 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.041399, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 260.579, - "eth": 5400, - "usd": 17080684 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.04831, - "last_fetch_at": "2024-04-15T06:04:03+00:00", - "last_traded_at": "2024-04-15T06:04:03+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "digifinex", - "name": "DigiFinex" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:04:03+00:00", - "token_info_url": null, - "trade_url": "https://www.digifinex.com/en-ww/trade/BTC/ETH", - "trust_score": "green", - "volume": 5393.888 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.045768, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99914415, - "eth": 20.707994, - "usd": 65483 - }, - "converted_volume": { - "btc": 46.275312, - "eth": 959.09, - "usd": 3032829 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65458.09, - "last_fetch_at": "2024-04-15T06:01:34+00:00", - "last_traded_at": "2024-04-15T06:01:34+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "cryptology", - "name": "Cryptology" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:01:34+00:00", - "token_info_url": null, - "trade_url": "https://cryptology.com/app/next/trading/BTC_USDT", - "trust_score": "green", - "volume": 46.314950153703 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.103413, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.722654, - "usd": 65549 - }, - "converted_volume": { - "btc": 952.398, - "eth": 19736, - "usd": 62428772 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.048344, - "last_fetch_at": "2024-04-15T06:04:05+00:00", - "last_traded_at": "2024-04-15T06:04:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "bitfinex", - "name": "Bitfinex" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:04:05+00:00", - "token_info_url": null, - "trade_url": "https://trading.bitfinex.com/t/ETH:BTC?type=exchange", - "trust_score": "green", - "volume": 19700.44011516 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000341, - "eth": 20.72767, - "usd": 65577 - }, - "converted_volume": { - "btc": 3.95163, - "eth": 81.88, - "usd": 259048 - }, - "is_anomaly": false, - "is_stale": false, - "last": 65562.32, - "last_fetch_at": "2024-04-15T06:03:43+00:00", - "last_traded_at": "2024-04-15T06:03:43+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "hashkey_exchange", - "name": "HashKey Exchange" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:03:43+00:00", - "token_info_url": null, - "trade_url": "https://pro.hashkey.com/en-US/spot/BTC_USDC", - "trust_score": "green", - "volume": 3.99917 - }, - { - "base": "SOL", - "bid_ask_spread_percentage": 0.084187, - "coin_id": "solana", - "converted_last": { - "btc": 1.0, - "eth": 20.720613, - "usd": 65555 - }, - "converted_volume": { - "btc": 178.313, - "eth": 3695, - "usd": 11689246 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0023172, - "last_fetch_at": "2024-04-15T06:03:13+00:00", - "last_traded_at": "2024-04-15T06:03:13+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "whitebit", - "name": "WhiteBIT" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:03:13+00:00", - "token_info_url": null, - "trade_url": "https://whitebit.com/trade/SOL_BTC", - "trust_score": "green", - "volume": 76951.74 - } - ], - "watchlist_portfolio_users": 1550472, - "web_slug": "bitcoin" -} \ No newline at end of file diff --git a/data/bitcoin_historic_data.json b/data/bitcoin_historic_data.json deleted file mode 100644 index 5a512d6..0000000 --- a/data/bitcoin_historic_data.json +++ /dev/null @@ -1,265 +0,0 @@ -{ - "community_data": { - "facebook_likes": null, - "reddit_accounts_active_48h": null, - "reddit_average_comments_48h": 0.0, - "reddit_average_posts_48h": 0.0, - "reddit_subscribers": null, - "twitter_followers": 6582131 - }, - "developer_data": { - "closed_issues": null, - "code_additions_deletions_4_weeks": { - "additions": null, - "deletions": null - }, - "commit_count_4_weeks": null, - "forks": null, - "pull_request_contributors": null, - "pull_requests_merged": null, - "stars": null, - "subscribers": null, - "total_issues": null - }, - "id": "bitcoin", - "image": { - "small": "https://assets.coingecko.com/coins/images/1/small/bitcoin.png?1696501400", - "thumb": "https://assets.coingecko.com/coins/images/1/thumb/bitcoin.png?1696501400" - }, - "localization": { - "ar": "\u0628\u064a\u062a\u0643\u0648\u064a\u0646", - "bg": "Bitcoin", - "cs": "Bitcoin", - "da": "Bitcoin", - "de": "Bitcoin", - "el": "Bitcoin", - "en": "Bitcoin", - "es": "Bitcoin", - "fi": "Bitcoin", - "fr": "Bitcoin", - "he": "Bitcoin", - "hi": "Bitcoin", - "hr": "Bitcoin", - "hu": "Bitcoin", - "id": "Bitcoin", - "it": "Bitcoin", - "ja": "\u30d3\u30c3\u30c8\u30b3\u30a4\u30f3", - "ko": "\ube44\ud2b8\ucf54\uc778", - "lt": "Bitcoin", - "nl": "Bitcoin", - "no": "Bitcoin", - "pl": "Bitcoin", - "pt": "Bitcoin", - "ro": "Bitcoin", - "ru": "\u0411\u0438\u0442\u043a\u043e\u0438\u043d", - "sk": "Bitcoin", - "sl": "Bitcoin", - "sv": "Bitcoin", - "th": "\u0e1a\u0e34\u0e15\u0e04\u0e2d\u0e22\u0e19\u0e4c", - "tr": "Bitcoin", - "uk": "Bitcoin", - "vi": "Bitcoin", - "zh": "\u6bd4\u7279\u5e01", - "zh-tw": "\u6bd4\u7279\u5e63" - }, - "market_data": { - "current_price": { - "aed": 259001.6861947916, - "ars": 61023686.583561584, - "aud": 108375.20104560806, - "bch": 112.20813298250434, - "bdt": 7749395.99956911, - "bhd": 26581.750148205203, - "bits": 1000170.3016025926, - "bmd": 70527.88997578963, - "bnb": 115.78138098427453, - "brl": 357414.1880303094, - "btc": 1.0, - "cad": 96547.95600822772, - "chf": 64410.86502240951, - "clp": 66859734.41814887, - "cny": 510100.0170388962, - "czk": 1670661.1313520023, - "dkk": 489849.13240647747, - "dot": 8386.440040080632, - "eos": 66737.13366301444, - "eth": 19.924668047127653, - "eur": 65668.16571700791, - "gbp": 56262.49578194659, - "gel": 189014.74513511674, - "hkd": 552610.7027218033, - "huf": 25691159.217535943, - "idr": 1128285580.3940792, - "ils": 263548.971900981, - "inr": 5882939.6422676, - "jpy": 10787184.34948507, - "krw": 96206742.07652484, - "kwd": 21688.17250223507, - "link": 4052.13577812557, - "lkr": 21087336.02732187, - "ltc": 729.6658522511008, - "mmk": 148266676.1160134, - "mxn": 1160952.191463029, - "myr": 334866.4216050496, - "ngn": 87444709.66538252, - "nok": 764693.3574707515, - "nzd": 118049.72329725696, - "php": 3990150.7803810695, - "pkr": 19615447.174683213, - "pln": 280149.6150598126, - "rub": 6562862.637132963, - "sar": 264550.9616338669, - "sats": 100017030.16025926, - "sek": 756525.5225326553, - "sgd": 95501.39264887694, - "thb": 2590877.30220562, - "try": 2277352.6201072503, - "twd": 2274799.510490125, - "uah": 2747558.747765004, - "usd": 70527.88997578963, - "vef": 7061.957623275814, - "vnd": 1759458646.701559, - "xag": 2526.5727932412924, - "xau": 30.20497943993144, - "xdr": 53244.18420254268, - "xlm": 544318.5045640197, - "xrp": 114238.63462103158, - "yfi": 8.507794594957806, - "zar": 1325282.880385516 - }, - "market_cap": { - "aed": 5096174916973.308, - "ars": 1200726881002292.2, - "aud": 2131346069609.1328, - "bch": 2211155624.888421, - "bdt": 152478843265119.75, - "bhd": 523028441801.9317, - "bits": 19677980756967.375, - "bmd": 1387722485989.3584, - "bnb": 2277940038.780421, - "brl": 7032422469999.675, - "btc": 19679168.0, - "cad": 1899482621205.056, - "chf": 1266851857459.6846, - "clp": 1315547039493052.5, - "cny": 10036702879918.033, - "czk": 32855717578284.125, - "dkk": 9636310249647.959, - "dot": 164961562689.4068, - "eos": 1315231171455.799, - "eth": 392203831.67806304, - "eur": 1291829474485.008, - "gbp": 1106866882939.9158, - "gel": 3719096262451.478, - "hkd": 10873201178635.13, - "huf": 505339137722135.8, - "idr": 22206726626541190, - "ils": 5185648324257.462, - "inr": 115754031888596.02, - "jpy": 212192019595638.03, - "krw": 1892985304525653.2, - "kwd": 426741317111.5587, - "link": 79803114180.03412, - "lkr": 414919124686326.7, - "ltc": 14361437264.145685, - "mmk": 2917328172439625, - "mxn": 22840385624650.24, - "myr": 6588906363477.473, - "ngn": 1720581601478765.8, - "nok": 15042231764106.508, - "nzd": 2321848449318.295, - "php": 78511096281535.94, - "pkr": 385957911492722.4, - "pln": 5510966555758.0, - "rub": 129132348311216.67, - "sar": 5205363697615.922, - "sats": 1967798075696737.2, - "sek": 14877578491143.879, - "sgd": 1878976246029.5928, - "thb": 50953006518071.234, - "try": 44809697844844.984, - "twd": 44717278302723.1, - "uah": 54061578435979.13, - "usd": 1387722485989.3584, - "vef": 138952652522.11444, - "vnd": 34619500569693868, - "xag": 49661467077.58581, - "xau": 594028487.3526046, - "xdr": 1047644438127.8354, - "xlm": 10718939951605.854, - "xrp": 2247509581703.3086, - "yfi": 167527008.87283584, - "zar": 26066979176824.055 - }, - "total_volume": { - "aed": 140936910749.52737, - "ars": 33206308406680.566, - "aud": 58972844005.88626, - "bch": 61058550.83751316, - "bdt": 4216868038197.2715, - "bhd": 14464576672.239328, - "bits": 544247084265.22644, - "bmd": 38378062633.13138, - "bnb": 63002949.5096232, - "brl": 194488508005.92, - "btc": 544247.0842652264, - "cad": 52536996414.560486, - "chf": 35049456504.83466, - "clp": 36382019595582.24, - "cny": 277573175800.38605, - "czk": 909097628750.4824, - "dkk": 266553567542.34695, - "dot": 4563518364.688065, - "eos": 36315305853.5288, - "eth": 10842096.063266711, - "eur": 35733622227.3955, - "gbp": 30615485416.578438, - "gel": 102853207856.79237, - "hkd": 300705553052.506, - "huf": 13979957686339.473, - "idr": 613961578707192.2, - "ils": 143411336337.79874, - "inr": 3201227573026.5054, - "jpy": 5869893977287.353, - "krw": 52351323347541.39, - "kwd": 11801714796.439522, - "link": 2204987569.3748846, - "lkr": 11474766976585.502, - "ltc": 397050894.1719748, - "mmk": 80679966242288.81, - "mxn": 631737259307.401, - "myr": 182219041382.108, - "ngn": 47583424736314.26, - "nok": 416111265745.0298, - "nzd": 64237277991.46075, - "php": 2171258159256.8513, - "pkr": 10673832160657.148, - "pln": 152444649586.1974, - "rub": 3571210671792.208, - "sar": 143956573473.62753, - "sats": 54424708426522.64, - "sek": 411666702311.4868, - "sgd": 51967504343.14742, - "thb": 1409837319859.3977, - "try": 1239231480230.0784, - "twd": 1237842194362.7583, - "uah": 1495096220036.218, - "usd": 38378062633.13138, - "vef": 3842795411.455444, - "vnd": 957417188670984.2, - "xag": 1374845737.473013, - "xau": 16436172.883891182, - "xdr": 28973057848.13094, - "xlm": 296193316824.0437, - "xrp": 62163457266.5418, - "yfi": 4629553.981370922, - "zar": 721158529023.222 - } - }, - "name": "Bitcoin", - "public_interest_stats": { - "alexa_rank": null, - "bing_matches": null - }, - "symbol": "btc" -} \ No newline at end of file diff --git a/data/bitcoin_recent_data.json b/data/bitcoin_recent_data.json deleted file mode 100644 index cc37c5b..0000000 --- a/data/bitcoin_recent_data.json +++ /dev/null @@ -1,3464 +0,0 @@ -{ - "market_caps": [ - [ - 1713078668131, - 1275455288640.9524 - ], - [ - 1713078941797, - 1275455288640.9524 - ], - [ - 1713079296379, - 1275949035811.4026 - ], - [ - 1713079533007, - 1275949035811.4026 - ], - [ - 1713079869987, - 1271102073281.5183 - ], - [ - 1713080135745, - 1271102073281.5183 - ], - [ - 1713080451141, - 1274428526921.8313 - ], - [ - 1713080740390, - 1274428526921.8313 - ], - [ - 1713081086028, - 1269628248745.4268 - ], - [ - 1713081384006, - 1269628248745.4268 - ], - [ - 1713081636151, - 1268458618544.3992 - ], - [ - 1713081945380, - 1268458618544.3992 - ], - [ - 1713082271278, - 1271884844507.7385 - ], - [ - 1713082522264, - 1271884844507.7385 - ], - [ - 1713082853885, - 1271517334794.1987 - ], - [ - 1713083170746, - 1271517334794.1987 - ], - [ - 1713083414599, - 1271517334794.1987 - ], - [ - 1713083779999, - 1276279322656.779 - ], - [ - 1713084076648, - 1275427164776.582 - ], - [ - 1713084366339, - 1275427164776.582 - ], - [ - 1713084643677, - 1275427164776.582 - ], - [ - 1713084936805, - 1270100821118.0547 - ], - [ - 1713085261207, - 1271525011077.361 - ], - [ - 1713085554661, - 1271525011077.361 - ], - [ - 1713085901350, - 1273523359042.5715 - ], - [ - 1713086159879, - 1273523359042.5715 - ], - [ - 1713086459920, - 1269217995951.5066 - ], - [ - 1713086733360, - 1269217995951.5066 - ], - [ - 1713087014562, - 1266463185302.351 - ], - [ - 1713087338222, - 1266463185302.351 - ], - [ - 1713087674172, - 1261823559122.8086 - ], - [ - 1713087932273, - 1261823559122.8086 - ], - [ - 1713088268646, - 1264440845013.1948 - ], - [ - 1713088509792, - 1264440845013.1948 - ], - [ - 1713088836272, - 1264440845013.1948 - ], - [ - 1713089155141, - 1260724939967.3042 - ], - [ - 1713089472604, - 1264806490601.0542 - ], - [ - 1713089748826, - 1264806490601.0542 - ], - [ - 1713090050456, - 1264806490601.0542 - ], - [ - 1713090355639, - 1265517256287.4922 - ], - [ - 1713090672417, - 1265797011893.706 - ], - [ - 1713090935420, - 1265797011893.706 - ], - [ - 1713091230261, - 1265797011893.706 - ], - [ - 1713091514254, - 1271125083173.237 - ], - [ - 1713091904810, - 1270105819889.4731 - ], - [ - 1713092128543, - 1270105819889.4731 - ], - [ - 1713092518034, - 1269379535560.1938 - ], - [ - 1713092728146, - 1269379535560.1938 - ], - [ - 1713093047463, - 1265343873255.0417 - ], - [ - 1713093309989, - 1265343873255.0417 - ], - [ - 1713093633748, - 1262086301095.851 - ], - [ - 1713093929275, - 1262086301095.851 - ], - [ - 1713094220996, - 1262086301095.851 - ], - [ - 1713094528164, - 1261908668959.2754 - ], - [ - 1713094844940, - 1261959430866.4915 - ], - [ - 1713095148705, - 1261959430866.4915 - ], - [ - 1713095471499, - 1260244049475.1091 - ], - [ - 1713095792084, - 1260244049475.1091 - ], - [ - 1713096090274, - 1260244049475.1091 - ], - [ - 1713096319151, - 1260244049475.1091 - ], - [ - 1713096618703, - 1268300460679.99 - ], - [ - 1713096960832, - 1263889453921.8003 - ], - [ - 1713097255369, - 1269000662523.2908 - ], - [ - 1713097536866, - 1269000662523.2908 - ], - [ - 1713097824477, - 1269000662523.2908 - ], - [ - 1713098168184, - 1265473689490.4963 - ], - [ - 1713098425591, - 1265473689490.4963 - ], - [ - 1713098720852, - 1269441570155.377 - ], - [ - 1713099022010, - 1269441570155.377 - ], - [ - 1713099352520, - 1276647246634.035 - ], - [ - 1713099675448, - 1276647246634.035 - ], - [ - 1713099970185, - 1270358861135.9956 - ], - [ - 1713100239517, - 1274909019127.3745 - ], - [ - 1713100554493, - 1274909019127.3745 - ], - [ - 1713100841842, - 1274909019127.3745 - ], - [ - 1713101198091, - 1274392632765.7058 - ], - [ - 1713101468578, - 1272268390189.8157 - ], - [ - 1713101754272, - 1272268390189.8157 - ], - [ - 1713102119463, - 1270377398921.248 - ], - [ - 1713102408522, - 1270377398921.248 - ], - [ - 1713102692965, - 1269212999291.562 - ], - [ - 1713102967771, - 1269212999291.562 - ], - [ - 1713103241256, - 1269212999291.562 - ], - [ - 1713103556755, - 1267580116798.8145 - ], - [ - 1713103867458, - 1267580116798.8145 - ], - [ - 1713104204517, - 1260326624107.1528 - ], - [ - 1713104409596, - 1260326624107.1528 - ], - [ - 1713104735693, - 1260494821281.7603 - ], - [ - 1713105089623, - 1258816773635.8374 - ], - [ - 1713105363153, - 1258816773635.8374 - ], - [ - 1713105681007, - 1251276371121.283 - ], - [ - 1713105933390, - 1251276371121.283 - ], - [ - 1713106248155, - 1254053694201.9954 - ], - [ - 1713106563143, - 1254053694201.9954 - ], - [ - 1713106853771, - 1258315211129.235 - ], - [ - 1713107171857, - 1258315211129.235 - ], - [ - 1713107481677, - 1260516961923.566 - ], - [ - 1713107714896, - 1260516961923.566 - ], - [ - 1713108060660, - 1262131744466.1667 - ], - [ - 1713108393429, - 1262131744466.1667 - ], - [ - 1713108688304, - 1267287044442.5864 - ], - [ - 1713108997431, - 1267287044442.5864 - ], - [ - 1713109262753, - 1264432678975.3298 - ], - [ - 1713109621558, - 1264432678975.3298 - ], - [ - 1713109855862, - 1263516178958.0261 - ], - [ - 1713110131473, - 1263516178958.0261 - ], - [ - 1713110514240, - 1263356789174.9841 - ], - [ - 1713110725406, - 1263356789174.9841 - ], - [ - 1713111052782, - 1267980935816.0342 - ], - [ - 1713111407766, - 1267980935816.0342 - ], - [ - 1713111649951, - 1269987287579.0068 - ], - [ - 1713111906192, - 1269987287579.0068 - ], - [ - 1713112227343, - 1272590343774.4048 - ], - [ - 1713112566811, - 1272590343774.4048 - ], - [ - 1713112823437, - 1272590343774.4048 - ], - [ - 1713113135048, - 1270692994781.3867 - ], - [ - 1713113461798, - 1266604784146.0771 - ], - [ - 1713113731213, - 1266604784146.0771 - ], - [ - 1713114092166, - 1268062847074.4421 - ], - [ - 1713114315236, - 1268062847074.4421 - ], - [ - 1713114624300, - 1268062847074.4421 - ], - [ - 1713114988901, - 1271272610644.9326 - ], - [ - 1713115287435, - 1249884833570.9004 - ], - [ - 1713115583769, - 1249884833570.9004 - ], - [ - 1713115814428, - 1249884833570.9004 - ], - [ - 1713116121846, - 1239004647577.992 - ], - [ - 1713116436183, - 1239004647577.992 - ], - [ - 1713116790111, - 1261546627133.0288 - ], - [ - 1713117106895, - 1257755945557.0251 - ], - [ - 1713117399183, - 1257755945557.0251 - ], - [ - 1713117719436, - 1257755945557.0251 - ], - [ - 1713117924706, - 1257755945557.0251 - ], - [ - 1713118242995, - 1256389587586.412 - ], - [ - 1713118537956, - 1265973099434.4507 - ], - [ - 1713118854590, - 1266239571213.0027 - ], - [ - 1713119122197, - 1266239571213.0027 - ], - [ - 1713119475717, - 1267852642136.904 - ], - [ - 1713119717576, - 1267852642136.904 - ], - [ - 1713120054118, - 1270791206910.7314 - ], - [ - 1713120331319, - 1270791206910.7314 - ], - [ - 1713120605463, - 1270791206910.7314 - ], - [ - 1713121001658, - 1267961204337.0244 - ], - [ - 1713121289851, - 1268012323265.406 - ], - [ - 1713121553337, - 1268012323265.406 - ], - [ - 1713121868150, - 1262950691565.3792 - ], - [ - 1713122189939, - 1262950691565.3792 - ], - [ - 1713122544983, - 1262238545738.822 - ], - [ - 1713122752646, - 1262238545738.822 - ], - [ - 1713123073540, - 1260264044549.3533 - ], - [ - 1713123318944, - 1260264044549.3533 - ], - [ - 1713123669696, - 1264085574078.562 - ], - [ - 1713124004277, - 1264085574078.562 - ], - [ - 1713124235753, - 1263536484886.2458 - ], - [ - 1713124565711, - 1263536484886.2458 - ], - [ - 1713124921699, - 1263589899165.0176 - ], - [ - 1713125119642, - 1263589899165.0176 - ], - [ - 1713125435384, - 1263589899165.0176 - ], - [ - 1713125753228, - 1266758994285.183 - ], - [ - 1713126021601, - 1266758994285.183 - ], - [ - 1713126374068, - 1261933945692.2046 - ], - [ - 1713126721614, - 1262970659593.7136 - ], - [ - 1713126955034, - 1262970659593.7136 - ], - [ - 1713127287835, - 1262764345164.0107 - ], - [ - 1713127534471, - 1262764345164.0107 - ], - [ - 1713127843773, - 1256026668070.5981 - ], - [ - 1713128138588, - 1256026668070.5981 - ], - [ - 1713128402175, - 1256026668070.5981 - ], - [ - 1713128710919, - 1257536781084.5615 - ], - [ - 1713129004586, - 1257536781084.5615 - ], - [ - 1713129343828, - 1254184224113.744 - ], - [ - 1713129663815, - 1253833136911.0396 - ], - [ - 1713129994014, - 1253833136911.0396 - ], - [ - 1713130266685, - 1251997119326.286 - ], - [ - 1713130528724, - 1251997119326.286 - ], - [ - 1713130837923, - 1251997119326.286 - ], - [ - 1713131192656, - 1250564134929.1326 - ], - [ - 1713131451525, - 1250564134929.1326 - ], - [ - 1713131778849, - 1252319743418.2244 - ], - [ - 1713132111212, - 1254242023104.8691 - ], - [ - 1713132382876, - 1254242023104.8691 - ], - [ - 1713132622336, - 1254242023104.8691 - ], - [ - 1713132977572, - 1283080146861.0598 - ], - [ - 1713133278636, - 1279897926454.1084 - ], - [ - 1713133572563, - 1279897926454.1084 - ], - [ - 1713133848571, - 1286500292966.1248 - ], - [ - 1713134195019, - 1286500292966.1248 - ], - [ - 1713134429251, - 1286500292966.1248 - ], - [ - 1713134793585, - 1289389193877.6665 - ], - [ - 1713135086634, - 1280058432646.291 - ], - [ - 1713135344827, - 1280058432646.291 - ], - [ - 1713135616360, - 1286856118638.8206 - ], - [ - 1713136213115, - 1286856118638.8206 - ], - [ - 1713136561545, - 1283545848275.273 - ], - [ - 1713136853137, - 1286886940750.1453 - ], - [ - 1713137149117, - 1286886940750.1453 - ], - [ - 1713137420667, - 1286886940750.1453 - ], - [ - 1713137703119, - 1291305332767.4954 - ], - [ - 1713138092469, - 1292022473181.2131 - ], - [ - 1713138312156, - 1292022473181.2131 - ], - [ - 1713138691533, - 1293286386553.3967 - ], - [ - 1713138958553, - 1293286386553.3967 - ], - [ - 1713139262167, - 1293286386553.3967 - ], - [ - 1713139580003, - 1293286386553.3967 - ], - [ - 1713139851471, - 1288628705129.0474 - ], - [ - 1713140142378, - 1292613104862.044 - ], - [ - 1713140433107, - 1292613104862.044 - ], - [ - 1713140737884, - 1293023214330.31 - ], - [ - 1713141021737, - 1290756088237.6157 - ], - [ - 1713141345784, - 1290756088237.6157 - ], - [ - 1713141620836, - 1290756088237.6157 - ], - [ - 1713142003116, - 1287465638925.415 - ], - [ - 1713142232044, - 1291391053905.467 - ], - [ - 1713142529558, - 1291391053905.467 - ], - [ - 1713142877460, - 1288859834232.529 - ], - [ - 1713143125186, - 1288859834232.529 - ], - [ - 1713143492899, - 1287814730545.486 - ], - [ - 1713143753805, - 1287814730545.486 - ], - [ - 1713144056058, - 1291134783232.8318 - ], - [ - 1713144326659, - 1291134783232.8318 - ], - [ - 1713144666959, - 1289843820267.8618 - ], - [ - 1713144959152, - 1289843820267.8618 - ], - [ - 1713145217784, - 1289843820267.8618 - ], - [ - 1713145512142, - 1289635333784.122 - ], - [ - 1713145874774, - 1283719590164.4756 - ], - [ - 1713146153150, - 1283719590164.4756 - ], - [ - 1713146513559, - 1285347212622.0022 - ], - [ - 1713146753854, - 1285347212622.0022 - ], - [ - 1713147058808, - 1285293059042.2422 - ], - [ - 1713147367825, - 1285293059042.2422 - ], - [ - 1713147675701, - 1285972129450.156 - ], - [ - 1713147936436, - 1285972129450.156 - ], - [ - 1713148213564, - 1285972129450.156 - ], - [ - 1713148530100, - 1285322439513.9216 - ], - [ - 1713148804593, - 1281497512300.7202 - ], - [ - 1713149157055, - 1281497512300.7202 - ], - [ - 1713149459267, - 1284076439907.566 - ], - [ - 1713149762332, - 1284076439907.566 - ], - [ - 1713150047204, - 1283449488828.4724 - ], - [ - 1713150388409, - 1283449488828.4724 - ], - [ - 1713150695379, - 1283356697934.4287 - ], - [ - 1713150940191, - 1283356697934.4287 - ], - [ - 1713151278248, - 1285523795771.8535 - ], - [ - 1713151561035, - 1285523795771.8535 - ], - [ - 1713151845061, - 1285618054654.499 - ], - [ - 1713152147528, - 1285618054654.499 - ], - [ - 1713152412942, - 1285618054654.499 - ], - [ - 1713152709374, - 1285144585312.9907 - ], - [ - 1713153029078, - 1286142927001.833 - ], - [ - 1713153386690, - 1286142927001.833 - ], - [ - 1713153699126, - 1282757178488.9004 - ], - [ - 1713153950321, - 1282757178488.9004 - ], - [ - 1713154226904, - 1282757178488.9004 - ], - [ - 1713154553688, - 1275285491248.378 - ], - [ - 1713154801200, - 1275285491248.378 - ], - [ - 1713155158556, - 1278223971840.3997 - ], - [ - 1713155401357, - 1278223971840.3997 - ], - [ - 1713155742881, - 1278325723984.2012 - ], - [ - 1713156086054, - 1278360270855.7393 - ], - [ - 1713156329625, - 1278360270855.7393 - ], - [ - 1713156617968, - 1278360270855.7393 - ], - [ - 1713156991057, - 1277281707718.5613 - ], - [ - 1713157262909, - 1279055378783.3743 - ], - [ - 1713157557699, - 1279055378783.3743 - ], - [ - 1713157868244, - 1279055378783.3743 - ], - [ - 1713158102495, - 1280630251791.1382 - ], - [ - 1713158435384, - 1281094280108.4968 - ], - [ - 1713158777616, - 1281094280108.4968 - ], - [ - 1713159093346, - 1282802291944.3015 - ], - [ - 1713159390764, - 1282802291944.3015 - ], - [ - 1713159723124, - 1284224248875.4663 - ], - [ - 1713159950745, - 1284224248875.4663 - ], - [ - 1713160253014, - 1284224248875.4663 - ], - [ - 1713160516671, - 1286403947858.7358 - ], - [ - 1713160963538, - 1286403947858.7358 - ], - [ - 1713161119038, - 1286403947858.7358 - ], - [ - 1713161485931, - 1288808251952.082 - ], - [ - 1713161747284, - 1289643473755.4336 - ], - [ - 1713162073676, - 1293598256230.0403 - ], - [ - 1713162323214, - 1293598256230.0403 - ], - [ - 1713162672005, - 1303804283589.5615 - ], - [ - 1713162992956, - 1303804283589.5615 - ], - [ - 1713163282782, - 1305414283664.028 - ], - [ - 1713163550148, - 1305414283664.028 - ], - [ - 1713163829128, - 1303455951656.913 - ], - [ - 1713164184374, - 1303455951656.913 - ], - [ - 1713164529123, - 1307780123641.0579 - ], - [ - 1713164755122, - 1307780123641.0579 - ], - [ - 1713165029000, - 1307780123641.0579 - ] - ], - "prices": [ - [ - 1713078668131, - 64799.63500497382 - ], - [ - 1713078941797, - 64796.1938984663 - ], - [ - 1713079296379, - 64829.152417401936 - ], - [ - 1713079533007, - 64670.11743331007 - ], - [ - 1713079869987, - 64581.87696722744 - ], - [ - 1713080135745, - 64616.48543980062 - ], - [ - 1713080451141, - 64750.35151946434 - ], - [ - 1713080740390, - 64609.42874362672 - ], - [ - 1713081086028, - 64455.74235814819 - ], - [ - 1713081384006, - 64358.35907550367 - ], - [ - 1713081636151, - 64446.993656420476 - ], - [ - 1713081945380, - 64434.061961656036 - ], - [ - 1713082271278, - 64604.859949165795 - ], - [ - 1713082522264, - 64646.639385277565 - ], - [ - 1713082853885, - 64602.35947027696 - ], - [ - 1713083170746, - 64686.05306521227 - ], - [ - 1713083414599, - 64839.42342679456 - ], - [ - 1713083779999, - 64761.84248147418 - ], - [ - 1713084076648, - 64786.46643339912 - ], - [ - 1713084366339, - 64700.67464741839 - ], - [ - 1713084643677, - 64560.168906295075 - ], - [ - 1713084936805, - 64471.599366691924 - ], - [ - 1713085261207, - 64614.26325506407 - ], - [ - 1713085554661, - 64655.66767040135 - ], - [ - 1713085901350, - 64577.439559880644 - ], - [ - 1713086159879, - 64422.89197655564 - ], - [ - 1713086459920, - 64474.60578955001 - ], - [ - 1713086733360, - 64361.71648690148 - ], - [ - 1713087014562, - 64345.47044777117 - ], - [ - 1713087338222, - 64445.96772315467 - ], - [ - 1713087674172, - 64078.875448442566 - ], - [ - 1713087932273, - 64073.84508063834 - ], - [ - 1713088268646, - 64280.62605091006 - ], - [ - 1713088509792, - 64109.71506868069 - ], - [ - 1713088836272, - 64053.8838620585 - ], - [ - 1713089155141, - 64283.59056470875 - ], - [ - 1713089472604, - 64279.33740894013 - ], - [ - 1713089748826, - 64338.126830560956 - ], - [ - 1713090050456, - 64297.34835800337 - ], - [ - 1713090355639, - 64221.12481211818 - ], - [ - 1713090672417, - 64370.90834087947 - ], - [ - 1713090935420, - 64501.79752096551 - ], - [ - 1713091230261, - 64582.18413201865 - ], - [ - 1713091514254, - 64554.7857402072 - ], - [ - 1713091904810, - 64523.1905426991 - ], - [ - 1713092128543, - 64501.31596456863 - ], - [ - 1713092518034, - 64511.58251350723 - ], - [ - 1713092728146, - 64483.09124578953 - ], - [ - 1713093047463, - 64288.37594155818 - ], - [ - 1713093309989, - 64245.62914740719 - ], - [ - 1713093633748, - 64122.86834472754 - ], - [ - 1713093929275, - 64014.88221406506 - ], - [ - 1713094220996, - 64113.71959950288 - ], - [ - 1713094528164, - 64114.85750102222 - ], - [ - 1713094844940, - 64116.298656740255 - ], - [ - 1713095148705, - 64002.429876566064 - ], - [ - 1713095471499, - 64135.08254139733 - ], - [ - 1713095792084, - 64087.419057398074 - ], - [ - 1713096090274, - 64211.166129415 - ], - [ - 1713096319151, - 64363.09216142919 - ], - [ - 1713096618703, - 64404.76452897579 - ], - [ - 1713096960832, - 64273.74786295667 - ], - [ - 1713097255369, - 64458.27110646496 - ], - [ - 1713097536866, - 64356.554074826614 - ], - [ - 1713097824477, - 64294.625258466534 - ], - [ - 1713098168184, - 64381.653854031174 - ], - [ - 1713098425591, - 64471.13895697557 - ], - [ - 1713098720852, - 64517.861420799825 - ], - [ - 1713099022010, - 64862.31755844404 - ], - [ - 1713099352520, - 64577.80944355987 - ], - [ - 1713099675448, - 64545.552213204566 - ], - [ - 1713099970185, - 64445.92729229856 - ], - [ - 1713100239517, - 64773.898530283295 - ], - [ - 1713100554493, - 64752.36962673994 - ], - [ - 1713100841842, - 64747.6626520431 - ], - [ - 1713101198091, - 64607.08525007082 - ], - [ - 1713101468578, - 64639.65482947727 - ], - [ - 1713101754272, - 64545.82205091235 - ], - [ - 1713102119463, - 64541.60142800545 - ], - [ - 1713102408522, - 64515.12461300972 - ], - [ - 1713102692965, - 64404.50988759558 - ], - [ - 1713102967771, - 64423.68130917267 - ], - [ - 1713103241256, - 64401.45951151034 - ], - [ - 1713103556755, - 64187.959394566606 - ], - [ - 1713103867458, - 64032.895035426816 - ], - [ - 1713104204517, - 64059.88707193954 - ], - [ - 1713104409596, - 64070.77231302487 - ], - [ - 1713104735693, - 63952.440036535416 - ], - [ - 1713105089623, - 64072.08677034335 - ], - [ - 1713105363153, - 64038.37177132553 - ], - [ - 1713105681007, - 63636.19796615313 - ], - [ - 1713105933390, - 63806.50307780631 - ], - [ - 1713106248155, - 63714.127367825786 - ], - [ - 1713106563143, - 63817.01931112987 - ], - [ - 1713106853771, - 63930.55908964325 - ], - [ - 1713107171857, - 64095.53376757362 - ], - [ - 1713107481677, - 64045.08997371969 - ], - [ - 1713107714896, - 64069.4100797993 - ], - [ - 1713108060660, - 64058.67697241258 - ], - [ - 1713108393429, - 64032.13798409785 - ], - [ - 1713108688304, - 64432.39929303867 - ], - [ - 1713108997431, - 64172.52653248531 - ], - [ - 1713109262753, - 64177.39912578418 - ], - [ - 1713109621558, - 64151.01655560557 - ], - [ - 1713109855862, - 64187.74938099064 - ], - [ - 1713110131473, - 64128.931217458885 - ], - [ - 1713110514240, - 64209.14311299379 - ], - [ - 1713110725406, - 64277.94752775814 - ], - [ - 1713111052782, - 64421.53901590831 - ], - [ - 1713111407766, - 64429.370510018336 - ], - [ - 1713111649951, - 64523.474514090536 - ], - [ - 1713111906192, - 64460.616334246224 - ], - [ - 1713112227343, - 64655.70670323125 - ], - [ - 1713112566811, - 64556.12519432256 - ], - [ - 1713112823437, - 64560.194550678454 - ], - [ - 1713113135048, - 64431.068589401766 - ], - [ - 1713113461798, - 64370.65707592285 - ], - [ - 1713113731213, - 64427.76150713616 - ], - [ - 1713114092166, - 64469.73739474453 - ], - [ - 1713114315236, - 64430.15700218899 - ], - [ - 1713114624300, - 64595.16954549111 - ], - [ - 1713114988901, - 63612.329610011046 - ], - [ - 1713115287435, - 63493.353835968155 - ], - [ - 1713115583769, - 62773.14587683068 - ], - [ - 1713115814428, - 62949.17919851881 - ], - [ - 1713116121846, - 64046.20053075739 - ], - [ - 1713116436183, - 64094.4526349609 - ], - [ - 1713116790111, - 63983.85008024461 - ], - [ - 1713117106895, - 63899.59716945824 - ], - [ - 1713117399183, - 63858.46769949263 - ], - [ - 1713117719436, - 63917.36091347992 - ], - [ - 1713117924706, - 63814.38392012541 - ], - [ - 1713118242995, - 64067.46942167713 - ], - [ - 1713118537956, - 64307.83958289507 - ], - [ - 1713118854590, - 64332.84103192316 - ], - [ - 1713119122197, - 64182.121353783616 - ], - [ - 1713119475717, - 64413.87162024887 - ], - [ - 1713119717576, - 64610.11428401463 - ], - [ - 1713120054118, - 64568.90617490219 - ], - [ - 1713120331319, - 64530.70742507903 - ], - [ - 1713120605463, - 64424.73748115177 - ], - [ - 1713121001658, - 64551.65633976138 - ], - [ - 1713121289851, - 64425.001702958536 - ], - [ - 1713121553337, - 64224.98671635193 - ], - [ - 1713121868150, - 64164.38079826706 - ], - [ - 1713122189939, - 64119.768017290866 - ], - [ - 1713122544983, - 64131.57675918281 - ], - [ - 1713122752646, - 64135.80684445484 - ], - [ - 1713123073540, - 64028.77351337365 - ], - [ - 1713123318944, - 64221.646531627965 - ], - [ - 1713123669696, - 64186.021551433776 - ], - [ - 1713124004277, - 64190.093723274294 - ], - [ - 1713124235753, - 64195.344368292404 - ], - [ - 1713124565711, - 64222.81342567288 - ], - [ - 1713124921699, - 64169.69478670586 - ], - [ - 1713125119642, - 64299.11935463285 - ], - [ - 1713125435384, - 64358.86473166789 - ], - [ - 1713125753228, - 63991.402912946825 - ], - [ - 1713126021601, - 64103.40765267242 - ], - [ - 1713126374068, - 64058.463149620875 - ], - [ - 1713126721614, - 64186.75571490492 - ], - [ - 1713126955034, - 64202.03393319561 - ], - [ - 1713127287835, - 64162.76426115536 - ], - [ - 1713127534471, - 64130.47832938083 - ], - [ - 1713127843773, - 63813.55680427061 - ], - [ - 1713128138588, - 63788.95383119805 - ], - [ - 1713128402175, - 63897.18106697196 - ], - [ - 1713128710919, - 63782.09969638456 - ], - [ - 1713129004586, - 63724.65913117977 - ], - [ - 1713129343828, - 63715.859781881525 - ], - [ - 1713129663815, - 63540.557494228044 - ], - [ - 1713129994014, - 63457.12314610861 - ], - [ - 1713130266685, - 63657.23217775925 - ], - [ - 1713130528724, - 63635.71785842155 - ], - [ - 1713130837923, - 63535.989192634515 - ], - [ - 1713131192656, - 63468.352833844016 - ], - [ - 1713131451525, - 63580.64716795299 - ], - [ - 1713131778849, - 63732.62225976313 - ], - [ - 1713132111212, - 63687.02377470387 - ], - [ - 1713132382876, - 64697.88544499747 - ], - [ - 1713132622336, - 65187.950161161665 - ], - [ - 1713132977572, - 64919.37380160135 - ], - [ - 1713133278636, - 64827.14062785836 - ], - [ - 1713133572563, - 64970.457535233174 - ], - [ - 1713133848571, - 65361.630499539795 - ], - [ - 1713134195019, - 65131.655894729935 - ], - [ - 1713134429251, - 65513.81658238155 - ], - [ - 1713134793585, - 65117.333243691966 - ], - [ - 1713135086634, - 65012.2983514484 - ], - [ - 1713135344827, - 65196.99172181765 - ], - [ - 1713135616360, - 65379.668634786976 - ], - [ - 1713136213115, - 65187.51147857574 - ], - [ - 1713136561545, - 65428.586460807055 - ], - [ - 1713136853137, - 65381.21132256905 - ], - [ - 1713137149117, - 65664.2707846564 - ], - [ - 1713137420667, - 65605.65089105272 - ], - [ - 1713137703119, - 65444.1564077509 - ], - [ - 1713138092469, - 65695.22310834801 - ], - [ - 1713138312156, - 65683.56457272776 - ], - [ - 1713138691533, - 65729.15753259252 - ], - [ - 1713138958553, - 65752.66004728881 - ], - [ - 1713139262167, - 65680.45176385739 - ], - [ - 1713139580003, - 65492.54960316516 - ], - [ - 1713139851471, - 65534.06489551496 - ], - [ - 1713140142378, - 65886.65835874534 - ], - [ - 1713140433107, - 65692.80221158291 - ], - [ - 1713140737884, - 65496.621263915724 - ], - [ - 1713141021737, - 65577.55957102524 - ], - [ - 1713141345784, - 65644.24164216778 - ], - [ - 1713141620836, - 65410.38651815132 - ], - [ - 1713142003116, - 65668.469138038 - ], - [ - 1713142232044, - 65609.81934441584 - ], - [ - 1713142529558, - 65538.15769594883 - ], - [ - 1713142877460, - 65523.69853788071 - ], - [ - 1713143125186, - 65467.045799300504 - ], - [ - 1713143492899, - 65416.98331561387 - ], - [ - 1713143753805, - 65481.29484577715 - ], - [ - 1713144056058, - 65595.0821086475 - ], - [ - 1713144326659, - 65594.77008840525 - ], - [ - 1713144666959, - 65577.69327005248 - ], - [ - 1713144959152, - 65605.14942935081 - ], - [ - 1713145217784, - 65525.62415102383 - ], - [ - 1713145512142, - 65493.13453488164 - ], - [ - 1713145874774, - 65239.20592862448 - ], - [ - 1713146153150, - 65289.49490927451 - ], - [ - 1713146513559, - 65326.77079714483 - ], - [ - 1713146753854, - 65381.53506741772 - ], - [ - 1713147058808, - 65290.045586330045 - ], - [ - 1713147367825, - 65234.50609127009 - ], - [ - 1713147675701, - 65301.186549398044 - ], - [ - 1713147936436, - 65248.9886613812 - ], - [ - 1713148213564, - 65301.16834944369 - ], - [ - 1713148530100, - 65294.13397128143 - ], - [ - 1713148804593, - 65106.84184568476 - ], - [ - 1713149157055, - 65023.375835712286 - ], - [ - 1713149459267, - 65207.913118902456 - ], - [ - 1713149762332, - 65194.785694320206 - ], - [ - 1713150047204, - 65206.01256264595 - ], - [ - 1713150388409, - 65198.657433011824 - ], - [ - 1713150695379, - 65244.054306922204 - ], - [ - 1713150940191, - 65312.114230224324 - ], - [ - 1713151278248, - 65314.66716106769 - ], - [ - 1713151561035, - 65337.93355011996 - ], - [ - 1713151845061, - 65318.59861484318 - ], - [ - 1713152147528, - 65225.590559861266 - ], - [ - 1713152412942, - 65292.109196412675 - ], - [ - 1713152709374, - 65360.36950344497 - ], - [ - 1713153029078, - 65329.22732498709 - ], - [ - 1713153386690, - 65195.81503436893 - ], - [ - 1713153699126, - 65183.00029114841 - ], - [ - 1713153950321, - 65183.74548356216 - ], - [ - 1713154226904, - 64904.475908752196 - ], - [ - 1713154553688, - 64825.414309429754 - ], - [ - 1713154801200, - 64963.29915418014 - ], - [ - 1713155158556, - 64944.056426014984 - ], - [ - 1713155401357, - 64942.59723721784 - ], - [ - 1713155742881, - 64962.31847859692 - ], - [ - 1713156086054, - 64900.3815491356 - ], - [ - 1713156329625, - 64963.85155329242 - ], - [ - 1713156617968, - 64892.468784998324 - ], - [ - 1713156991057, - 64909.19340633505 - ], - [ - 1713157262909, - 64977.77063893974 - ], - [ - 1713157557699, - 65054.84690284183 - ], - [ - 1713157868244, - 65062.48954577478 - ], - [ - 1713158102495, - 65035.25033046898 - ], - [ - 1713158435384, - 65086.064529658586 - ], - [ - 1713158777616, - 65193.298930984914 - ], - [ - 1713159093346, - 65148.443471557184 - ], - [ - 1713159390764, - 65239.50232153907 - ], - [ - 1713159723124, - 65253.10412230733 - ], - [ - 1713159950745, - 65243.30076889045 - ], - [ - 1713160253014, - 65355.802565864586 - ], - [ - 1713160516671, - 65352.86472954902 - ], - [ - 1713160963538, - 65535.173579147835 - ], - [ - 1713161119038, - 65502.52120366328 - ], - [ - 1713161485931, - 65476.47162658286 - ], - [ - 1713161747284, - 65674.9326113866 - ], - [ - 1713162073676, - 66126.44402292857 - ], - [ - 1713162323214, - 65942.87211414445 - ], - [ - 1713162672005, - 66504.95327979198 - ], - [ - 1713162992956, - 66271.51562059346 - ], - [ - 1713163282782, - 66308.23811149973 - ], - [ - 1713163550148, - 66420.62970715722 - ], - [ - 1713163829128, - 66222.0865441375 - ], - [ - 1713164184374, - 66477.30325572634 - ], - [ - 1713164529123, - 66570.16139354806 - ], - [ - 1713164755122, - 66399.3708301682 - ], - [ - 1713165029000, - 66337.980987144 - ] - ], - "total_volumes": [ - [ - 1713078668131, - 48434345937.89631 - ], - [ - 1713078941797, - 49547499481.93951 - ], - [ - 1713079296379, - 55654821890.62134 - ], - [ - 1713079533007, - 55600197627.53494 - ], - [ - 1713079869987, - 55846928624.177345 - ], - [ - 1713080135745, - 55620219132.81103 - ], - [ - 1713080451141, - 55748582948.37887 - ], - [ - 1713080740390, - 55977708009.93812 - ], - [ - 1713081086028, - 55802384085.50955 - ], - [ - 1713081384006, - 55529217412.84542 - ], - [ - 1713081636151, - 56143742610.11272 - ], - [ - 1713081945380, - 55672903271.26812 - ], - [ - 1713082271278, - 57574779259.6423 - ], - [ - 1713082522264, - 58497569890.72701 - ], - [ - 1713082853885, - 58638286970.19994 - ], - [ - 1713083170746, - 56849340522.290215 - ], - [ - 1713083414599, - 59190034786.15116 - ], - [ - 1713083779999, - 58952639581.349945 - ], - [ - 1713084076648, - 51428825105.100136 - ], - [ - 1713084366339, - 50881349979.424194 - ], - [ - 1713084643677, - 51828018408.558945 - ], - [ - 1713084936805, - 52409859415.23168 - ], - [ - 1713085261207, - 51814135942.66182 - ], - [ - 1713085554661, - 51832214938.85499 - ], - [ - 1713085901350, - 52444794093.50031 - ], - [ - 1713086159879, - 50980932708.55876 - ], - [ - 1713086459920, - 59283683876.433815 - ], - [ - 1713086733360, - 58626974483.93372 - ], - [ - 1713087014562, - 58655274112.604744 - ], - [ - 1713087338222, - 59455598865.501114 - ], - [ - 1713087674172, - 52987165958.373604 - ], - [ - 1713087932273, - 53084890834.501114 - ], - [ - 1713088268646, - 53113471115.32829 - ], - [ - 1713088509792, - 48880664205.82397 - ], - [ - 1713088836272, - 60380781954.168205 - ], - [ - 1713089155141, - 53888496217.41289 - ], - [ - 1713089472604, - 53104829295.0094 - ], - [ - 1713089748826, - 53347066813.22738 - ], - [ - 1713090050456, - 60586074780.27269 - ], - [ - 1713090355639, - 60470181130.249664 - ], - [ - 1713090672417, - 60617254344.68702 - ], - [ - 1713090935420, - 61294519105.109276 - ], - [ - 1713091230261, - 53345266535.75267 - ], - [ - 1713091514254, - 55908623300.09459 - ], - [ - 1713091904810, - 60405896303.48688 - ], - [ - 1713092128543, - 60845310039.222984 - ], - [ - 1713092518034, - 60433604299.11095 - ], - [ - 1713092728146, - 52897833559.408745 - ], - [ - 1713093047463, - 61043836684.738846 - ], - [ - 1713093309989, - 60416643763.08985 - ], - [ - 1713093633748, - 60616496956.77455 - ], - [ - 1713093929275, - 60746887308.2556 - ], - [ - 1713094220996, - 60352385198.34871 - ], - [ - 1713094528164, - 60863193387.64101 - ], - [ - 1713094844940, - 60552540499.268906 - ], - [ - 1713095148705, - 60949701602.662834 - ], - [ - 1713095471499, - 60953841569.64094 - ], - [ - 1713095792084, - 60879330483.23703 - ], - [ - 1713096090274, - 61507240157.99032 - ], - [ - 1713096319151, - 61519082641.625854 - ], - [ - 1713096618703, - 60496958932.105385 - ], - [ - 1713096960832, - 61064131064.89222 - ], - [ - 1713097255369, - 61016026746.29451 - ], - [ - 1713097536866, - 52641476862.91262 - ], - [ - 1713097824477, - 54199880177.41124 - ], - [ - 1713098168184, - 54276861038.21184 - ], - [ - 1713098425591, - 61311636947.45501 - ], - [ - 1713098720852, - 51271613243.09329 - ], - [ - 1713099022010, - 62261337644.93674 - ], - [ - 1713099352520, - 62012212927.431786 - ], - [ - 1713099675448, - 52167847401.93232 - ], - [ - 1713099970185, - 54279224233.660225 - ], - [ - 1713100239517, - 62302562034.250565 - ], - [ - 1713100554493, - 60686672766.18087 - ], - [ - 1713100841842, - 54110403771.908554 - ], - [ - 1713101198091, - 62098833308.70962 - ], - [ - 1713101468578, - 54210878882.893776 - ], - [ - 1713101754272, - 62370960055.55911 - ], - [ - 1713102119463, - 54765273137.51007 - ], - [ - 1713102408522, - 54714055179.3131 - ], - [ - 1713102692965, - 62060891148.29249 - ], - [ - 1713102967771, - 53555341359.03585 - ], - [ - 1713103241256, - 55261028938.18758 - ], - [ - 1713103556755, - 62731381241.61017 - ], - [ - 1713103867458, - 60010718942.326805 - ], - [ - 1713104204517, - 58632809569.08002 - ], - [ - 1713104409596, - 62025643717.38022 - ], - [ - 1713104735693, - 62354740179.01198 - ], - [ - 1713105089623, - 60296731354.396034 - ], - [ - 1713105363153, - 55270357518.51287 - ], - [ - 1713105681007, - 64305004587.15981 - ], - [ - 1713105933390, - 64140881844.973175 - ], - [ - 1713106248155, - 64024882510.09017 - ], - [ - 1713106563143, - 63896194040.52925 - ], - [ - 1713106853771, - 64169597339.13461 - ], - [ - 1713107171857, - 65254504506.483116 - ], - [ - 1713107481677, - 65188442527.354675 - ], - [ - 1713107714896, - 57599273928.482956 - ], - [ - 1713108060660, - 65058912276.67543 - ], - [ - 1713108393429, - 43565073470.60411 - ], - [ - 1713108688304, - 66030660983.27784 - ], - [ - 1713108997431, - 65844553663.56704 - ], - [ - 1713109262753, - 63907625256.19073 - ], - [ - 1713109621558, - 57520891264.49526 - ], - [ - 1713109855862, - 65374768921.993706 - ], - [ - 1713110131473, - 47669234834.17017 - ], - [ - 1713110514240, - 65443286793.81673 - ], - [ - 1713110725406, - 65420854027.21368 - ], - [ - 1713111052782, - 65451191786.9021 - ], - [ - 1713111407766, - 65394773393.61664 - ], - [ - 1713111649951, - 66126464444.99787 - ], - [ - 1713111906192, - 65438964562.27666 - ], - [ - 1713112227343, - 58839374879.776115 - ], - [ - 1713112566811, - 57985808477.34811 - ], - [ - 1713112823437, - 56757818040.182465 - ], - [ - 1713113135048, - 58551625621.445114 - ], - [ - 1713113461798, - 65902711853.54361 - ], - [ - 1713113731213, - 58104869125.1544 - ], - [ - 1713114092166, - 58456326414.127266 - ], - [ - 1713114315236, - 58084368832.26261 - ], - [ - 1713114624300, - 58159076293.076935 - ], - [ - 1713114988901, - 66109933274.7342 - ], - [ - 1713115287435, - 65285792804.41976 - ], - [ - 1713115583769, - 66141970598.40857 - ], - [ - 1713115814428, - 65395500674.75313 - ], - [ - 1713116121846, - 67536475672.47291 - ], - [ - 1713116436183, - 66719859426.19396 - ], - [ - 1713116790111, - 58728639242.19755 - ], - [ - 1713117106895, - 67514879894.254745 - ], - [ - 1713117399183, - 66433599156.960464 - ], - [ - 1713117719436, - 66607524118.65308 - ], - [ - 1713117924706, - 56197205777.09624 - ], - [ - 1713118242995, - 67039628392.18292 - ], - [ - 1713118537956, - 66437016623.557495 - ], - [ - 1713118854590, - 66152016177.38264 - ], - [ - 1713119122197, - 66493573923.04456 - ], - [ - 1713119475717, - 66686016872.078545 - ], - [ - 1713119717576, - 66927426379.98761 - ], - [ - 1713120054118, - 64404836720.12558 - ], - [ - 1713120331319, - 66592228126.89078 - ], - [ - 1713120605463, - 55940857587.919945 - ], - [ - 1713121001658, - 66997739435.62649 - ], - [ - 1713121289851, - 66868374737.99116 - ], - [ - 1713121553337, - 66856610040.90396 - ], - [ - 1713121868150, - 66166571887.082825 - ], - [ - 1713122189939, - 66171113337.55775 - ], - [ - 1713122544983, - 57370777025.73085 - ], - [ - 1713122752646, - 60863587881.41263 - ], - [ - 1713123073540, - 66397069724.45867 - ], - [ - 1713123318944, - 66569305216.35051 - ], - [ - 1713123669696, - 57572674987.88734 - ], - [ - 1713124004277, - 57066794062.999176 - ], - [ - 1713124235753, - 59201533111.1913 - ], - [ - 1713124565711, - 65669011426.03656 - ], - [ - 1713124921699, - 56614232529.73231 - ], - [ - 1713125119642, - 62459750155.66234 - ], - [ - 1713125435384, - 61081892919.473785 - ], - [ - 1713125753228, - 60252202680.68047 - ], - [ - 1713126021601, - 58697537219.043205 - ], - [ - 1713126374068, - 57662559309.88336 - ], - [ - 1713126721614, - 47073001115.127 - ], - [ - 1713126955034, - 49978401492.90142 - ], - [ - 1713127287835, - 56283753610.20984 - ], - [ - 1713127534471, - 55985253989.33059 - ], - [ - 1713127843773, - 56413899809.759445 - ], - [ - 1713128138588, - 53299970908.27808 - ], - [ - 1713128402175, - 54841574821.209915 - ], - [ - 1713128710919, - 53680473265.64694 - ], - [ - 1713129004586, - 54466525849.6421 - ], - [ - 1713129343828, - 53132981274.98977 - ], - [ - 1713129663815, - 52235705964.5861 - ], - [ - 1713129994014, - 53439516416.532524 - ], - [ - 1713130266685, - 53669232897.14572 - ], - [ - 1713130528724, - 51343831414.15203 - ], - [ - 1713130837923, - 53193709441.83408 - ], - [ - 1713131192656, - 45275005850.1335 - ], - [ - 1713131451525, - 52741527117.88461 - ], - [ - 1713131778849, - 52150478616.265625 - ], - [ - 1713132111212, - 47157325911.907906 - ], - [ - 1713132382876, - 52823532639.38505 - ], - [ - 1713132622336, - 45320123924.8546 - ], - [ - 1713132977572, - 46227329189.56017 - ], - [ - 1713133278636, - 46285554141.06244 - ], - [ - 1713133572563, - 46099541603.84165 - ], - [ - 1713133848571, - 46499891275.97759 - ], - [ - 1713134195019, - 52736051277.26574 - ], - [ - 1713134429251, - 53104752257.884415 - ], - [ - 1713134793585, - 52431359908.7218 - ], - [ - 1713135086634, - 52366291370.814644 - ], - [ - 1713135344827, - 51794441459.56803 - ], - [ - 1713135616360, - 51914943362.58875 - ], - [ - 1713136213115, - 50983232467.77076 - ], - [ - 1713136561545, - 50208630471.269356 - ], - [ - 1713136853137, - 49210283042.443016 - ], - [ - 1713137149117, - 50910962872.26603 - ], - [ - 1713137420667, - 50409218691.82676 - ], - [ - 1713137703119, - 50134528227.8087 - ], - [ - 1713138092469, - 50592902256.20707 - ], - [ - 1713138312156, - 42788990606.73951 - ], - [ - 1713138691533, - 43484509377.33137 - ], - [ - 1713138958553, - 40292911692.95434 - ], - [ - 1713139262167, - 49664661449.75928 - ], - [ - 1713139580003, - 49904867254.967896 - ], - [ - 1713139851471, - 49431373602.843475 - ], - [ - 1713140142378, - 38509774092.56459 - ], - [ - 1713140433107, - 43296583270.115166 - ], - [ - 1713140737884, - 49742656499.35905 - ], - [ - 1713141021737, - 42433749130.47302 - ], - [ - 1713141345784, - 41955361594.14116 - ], - [ - 1713141620836, - 49174578950.60249 - ], - [ - 1713142003116, - 31974457315.02175 - ], - [ - 1713142232044, - 49067567969.89141 - ], - [ - 1713142529558, - 42829084765.56108 - ], - [ - 1713142877460, - 48949370291.70352 - ], - [ - 1713143125186, - 48784985790.95008 - ], - [ - 1713143492899, - 47969890345.93624 - ], - [ - 1713143753805, - 48672039285.95206 - ], - [ - 1713144056058, - 48876644152.01932 - ], - [ - 1713144326659, - 48431573023.60009 - ], - [ - 1713144666959, - 43511932724.67409 - ], - [ - 1713144959152, - 48541041957.86382 - ], - [ - 1713145217784, - 48059131436.76012 - ], - [ - 1713145512142, - 40974347652.05268 - ], - [ - 1713145874774, - 48368890295.36408 - ], - [ - 1713146153150, - 48202755421.64283 - ], - [ - 1713146513559, - 48130097046.50184 - ], - [ - 1713146753854, - 48218642719.1259 - ], - [ - 1713147058808, - 47751839648.34066 - ], - [ - 1713147367825, - 47751782335.34761 - ], - [ - 1713147675701, - 47565877837.341705 - ], - [ - 1713147936436, - 47752415603.92801 - ], - [ - 1713148213564, - 47677133503.387054 - ], - [ - 1713148530100, - 47573770072.35697 - ], - [ - 1713148804593, - 47865932275.17259 - ], - [ - 1713149157055, - 47735089111.65422 - ], - [ - 1713149459267, - 47789616909.42585 - ], - [ - 1713149762332, - 40143645212.91042 - ], - [ - 1713150047204, - 40928450742.648346 - ], - [ - 1713150388409, - 35749639533.61922 - ], - [ - 1713150695379, - 29743868153.867126 - ], - [ - 1713150940191, - 46431993046.13426 - ], - [ - 1713151278248, - 39744726217.30939 - ], - [ - 1713151561035, - 45683799393.55028 - ], - [ - 1713151845061, - 37671127696.25917 - ], - [ - 1713152147528, - 45358813720.31782 - ], - [ - 1713152412942, - 33309181117.676918 - ], - [ - 1713152709374, - 45490649114.58497 - ], - [ - 1713153029078, - 46557061331.19948 - ], - [ - 1713153386690, - 46811944828.09099 - ], - [ - 1713153699126, - 45771552711.98197 - ], - [ - 1713153950321, - 45616702202.22862 - ], - [ - 1713154226904, - 46190081506.549255 - ], - [ - 1713154553688, - 46063132666.90498 - ], - [ - 1713154801200, - 45621847550.29387 - ], - [ - 1713155158556, - 29701950278.918243 - ], - [ - 1713155401357, - 43197358565.240456 - ], - [ - 1713155742881, - 40608370467.43495 - ], - [ - 1713156086054, - 40076377435.22952 - ], - [ - 1713156329625, - 44742400209.548935 - ], - [ - 1713156617968, - 45276424217.06693 - ], - [ - 1713156991057, - 44137310293.635704 - ], - [ - 1713157262909, - 45076719918.31025 - ], - [ - 1713157557699, - 44799755949.581825 - ], - [ - 1713157868244, - 44657004590.113045 - ], - [ - 1713158102495, - 44320033656.123146 - ], - [ - 1713158435384, - 44487926675.6862 - ], - [ - 1713158777616, - 44472460046.258255 - ], - [ - 1713159093346, - 44269656706.02203 - ], - [ - 1713159390764, - 44453372517.178566 - ], - [ - 1713159723124, - 44251591474.821236 - ], - [ - 1713159950745, - 26953874766.379337 - ], - [ - 1713160253014, - 44269133749.71166 - ], - [ - 1713160516671, - 38381345556.568985 - ], - [ - 1713160963538, - 38294871961.13445 - ], - [ - 1713161119038, - 25296007411.619644 - ], - [ - 1713161485931, - 43647957515.41043 - ], - [ - 1713161747284, - 44467912361.1444 - ], - [ - 1713162073676, - 44189803593.275505 - ], - [ - 1713162323214, - 44742148668.5343 - ], - [ - 1713162672005, - 39693046036.20026 - ], - [ - 1713162992956, - 39455580689.63942 - ], - [ - 1713163282782, - 39389689565.20105 - ], - [ - 1713163550148, - 39542060125.55685 - ], - [ - 1713163829128, - 40004882240.28067 - ], - [ - 1713164184374, - 45779762751.06531 - ], - [ - 1713164529123, - 45750163114.96653 - ], - [ - 1713164755122, - 45419284526.89403 - ], - [ - 1713165029000, - 45536576648.36389 - ] - ] -} \ No newline at end of file diff --git a/data/bitcoin_ticker.json b/data/bitcoin_ticker.json deleted file mode 100644 index 01cf21d..0000000 --- a/data/bitcoin_ticker.json +++ /dev/null @@ -1,3205 +0,0 @@ -{ - "name": "Bitcoin", - "tickers": [ - { - "base": "BTC", - "bid_ask_spread_percentage": 0.010015, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.000216, - "eth": 20.454209, - "usd": 66450 - }, - "converted_volume": { - "btc": 50255, - "eth": 1027706, - "usd": 3338747229 - }, - "is_anomaly": false, - "is_stale": false, - "last": 66324.12, - "last_fetch_at": "2024-04-15T06:46:00+00:00", - "last_traded_at": "2024-04-15T06:45:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "USDT", - "target_coin_id": "tether", - "timestamp": "2024-04-15T06:45:01+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BTC_USDT?ref=37754157", - "trust_score": "green", - "volume": 51628.41541 - }, - { - "base": "WBTC", - "bid_ask_spread_percentage": 0.019997, - "coin_id": "wrapped-bitcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.434353, - "usd": 66352 - }, - "converted_volume": { - "btc": 374.967, - "eth": 7662, - "usd": 24879612 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.0005, - "last_fetch_at": "2024-04-15T06:35:05+00:00", - "last_traded_at": "2024-04-15T06:35:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:35:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/WBTC_BTC?ref=37754157", - "trust_score": "green", - "volume": 374.78251 - }, - { - "base": "ETH", - "bid_ask_spread_percentage": 0.020437, - "coin_id": "ethereum", - "converted_last": { - "btc": 1.0, - "eth": 20.439019, - "usd": 66399 - }, - "converted_volume": { - "btc": 1923, - "eth": 39307, - "usd": 127694376 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.04889, - "last_fetch_at": "2024-04-15T06:31:02+00:00", - "last_traded_at": "2024-04-15T06:29:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:29:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ETH_BTC?ref=37754157", - "trust_score": "green", - "volume": 40195.3803 - }, - { - "base": "BNB", - "bid_ask_spread_percentage": 0.011547, - "coin_id": "binancecoin", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 394.294, - "eth": 8066, - "usd": 26180658 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.008677, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:46:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:46:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BNB_BTC?ref=37754157", - "trust_score": "green", - "volume": 45650.735 - }, - { - "base": "SOL", - "bid_ask_spread_percentage": 0.014272, - "coin_id": "solana", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 906.021, - "eth": 18535, - "usd": 60158650 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0023412, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/SOL_BTC?ref=37754157", - "trust_score": "green", - "volume": 406975.16 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.015995, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.449783, - "usd": 66436 - }, - "converted_volume": { - "btc": 1074, - "eth": 21970, - "usd": 71373884 - }, - "is_anomaly": false, - "is_stale": false, - "last": 66374.7, - "last_fetch_at": "2024-04-15T06:46:00+00:00", - "last_traded_at": "2024-04-15T06:45:01+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "USDC", - "target_coin_id": "usd-coin", - "timestamp": "2024-04-15T06:45:01+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BTC_USDC?ref=37754157", - "trust_score": "green", - "volume": 1103.08706 - }, - { - "base": "AVAX", - "bid_ask_spread_percentage": 0.017274, - "coin_id": "avalanche-2", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 182.682, - "eth": 3737, - "usd": 12129877 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.000579, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/AVAX_BTC?ref=37754157", - "trust_score": "green", - "volume": 326063.88 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.053905, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99948947, - "eth": 20.446664, - "usd": 66365 - }, - "converted_volume": { - "btc": 160.223, - "eth": 3278, - "usd": 10638582 - }, - "is_anomaly": false, - "is_stale": false, - "last": 66394.57, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:45:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "TUSD", - "target_coin_id": "true-usd", - "timestamp": "2024-04-15T06:45:10+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BTC_TUSD?ref=37754157", - "trust_score": "green", - "volume": 164.19952 - }, - { - "base": "BCH", - "bid_ask_spread_percentage": 0.03655, - "coin_id": "bitcoin-cash", - "converted_last": { - "btc": 1.0, - "eth": 20.495958, - "usd": 65984 - }, - "converted_volume": { - "btc": 126.491, - "eth": 2593, - "usd": 8346354 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.00826, - "last_fetch_at": "2024-04-15T06:26:09+00:00", - "last_traded_at": "2024-04-15T06:26:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:26:09+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BCH_BTC?ref=37754157", - "trust_score": "green", - "volume": 16110.782 - }, - { - "base": "DOGE", - "bid_ask_spread_percentage": 0.396825, - "coin_id": "dogecoin", - "converted_last": { - "btc": 1.0, - "eth": 20.438868, - "usd": 66339 - }, - "converted_volume": { - "btc": 425.025, - "eth": 8687, - "usd": 28195855 - }, - "is_anomaly": false, - "is_stale": false, - "last": 2.52e-06, - "last_fetch_at": "2024-04-15T06:36:07+00:00", - "last_traded_at": "2024-04-15T06:35:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:35:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/DOGE_BTC?ref=37754157", - "trust_score": "green", - "volume": 175733831.0 - }, - { - "base": "ENA", - "bid_ask_spread_percentage": 0.057078, - "coin_id": "ethena", - "converted_last": { - "btc": 1.0, - "eth": 20.442791, - "usd": 66402 - }, - "converted_volume": { - "btc": 161.016, - "eth": 3292, - "usd": 10691776 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.8e-05, - "last_fetch_at": "2024-04-15T06:33:05+00:00", - "last_traded_at": "2024-04-15T06:33:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:33:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ENA_BTC?ref=37754157", - "trust_score": "green", - "volume": 9182693.93 - }, - { - "base": "LINK", - "bid_ask_spread_percentage": 0.0456, - "coin_id": "chainlink", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 99.378, - "eth": 2033, - "usd": 6598572 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0002195, - "last_fetch_at": "2024-04-15T06:46:03+00:00", - "last_traded_at": "2024-04-15T06:45:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:10+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/LINK_BTC?ref=37754157", - "trust_score": "green", - "volume": 466524.22 - }, - { - "base": "LTC", - "bid_ask_spread_percentage": 0.080515, - "coin_id": "litecoin", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 76.124, - "eth": 1557, - "usd": 5054546 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.001243, - "last_fetch_at": "2024-04-15T06:46:03+00:00", - "last_traded_at": "2024-04-15T06:45:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/LTC_BTC?ref=37754157", - "trust_score": "green", - "volume": 62490.917 - }, - { - "base": "ETC", - "bid_ask_spread_percentage": 0.023815, - "coin_id": "ethereum-classic", - "converted_last": { - "btc": 1.0, - "eth": 20.448816, - "usd": 66419 - }, - "converted_volume": { - "btc": 47.150577, - "eth": 964.173, - "usd": 3131680 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0004202, - "last_fetch_at": "2024-04-15T06:32:09+00:00", - "last_traded_at": "2024-04-15T06:32:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:32:09+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ETC_BTC?ref=37754157", - "trust_score": "green", - "volume": 116336.19 - }, - { - "base": "XRP", - "bid_ask_spread_percentage": 0.129032, - "coin_id": "ripple", - "converted_last": { - "btc": 1.0, - "eth": 20.445418, - "usd": 66134 - }, - "converted_volume": { - "btc": 294.044, - "eth": 6012, - "usd": 19446476 - }, - "is_anomaly": false, - "is_stale": false, - "last": 7.72e-06, - "last_fetch_at": "2024-04-15T06:30:21+00:00", - "last_traded_at": "2024-04-15T06:30:21+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:30:21+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/XRP_BTC?ref=37754157", - "trust_score": "green", - "volume": 38550821.0 - }, - { - "base": "FET", - "bid_ask_spread_percentage": 0.056306, - "coin_id": "fetch-ai", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 166.596, - "eth": 3408, - "usd": 11061753 - }, - "is_anomaly": false, - "is_stale": false, - "last": 3.555e-05, - "last_fetch_at": "2024-04-15T06:46:03+00:00", - "last_traded_at": "2024-04-15T06:45:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/FET_BTC?ref=37754157", - "trust_score": "green", - "volume": 5007600.0 - }, - { - "base": "WLD", - "bid_ask_spread_percentage": 0.051144, - "coin_id": "worldcoin-wld", - "converted_last": { - "btc": 1.0, - "eth": 20.427233, - "usd": 66276 - }, - "converted_volume": { - "btc": 59.256, - "eth": 1210, - "usd": 3927275 - }, - "is_anomaly": false, - "is_stale": false, - "last": 7.864e-05, - "last_fetch_at": "2024-04-15T06:38:07+00:00", - "last_traded_at": "2024-04-15T06:38:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:38:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/WLD_BTC?ref=37754157", - "trust_score": "green", - "volume": 777885.9 - }, - { - "base": "MATIC", - "bid_ask_spread_percentage": 0.089206, - "coin_id": "matic-network", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 60.013, - "eth": 1228, - "usd": 3984765 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.121e-05, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/MATIC_BTC?ref=37754157", - "trust_score": "green", - "volume": 5600521.0 - }, - { - "base": "ADA", - "bid_ask_spread_percentage": 0.13624, - "coin_id": "cardano", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 139.083, - "eth": 2845, - "usd": 9234912 - }, - "is_anomaly": false, - "is_stale": false, - "last": 7.34e-06, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ADA_BTC?ref=37754157", - "trust_score": "green", - "volume": 19469497.2 - }, - { - "base": "SUI", - "bid_ask_spread_percentage": 0.054975, - "coin_id": "sui", - "converted_last": { - "btc": 1.0, - "eth": 20.445418, - "usd": 66134 - }, - "converted_volume": { - "btc": 26.066364, - "eth": 532.938, - "usd": 1723885 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.861e-05, - "last_fetch_at": "2024-04-15T06:30:22+00:00", - "last_traded_at": "2024-04-15T06:30:22+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:30:22+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/SUI_BTC?ref=37754157", - "trust_score": "green", - "volume": 1457801.4 - }, - { - "base": "SEI", - "bid_ask_spread_percentage": 0.120919, - "coin_id": "sei-network", - "converted_last": { - "btc": 1.0, - "eth": 20.439258, - "usd": 66354 - }, - "converted_volume": { - "btc": 19.167599, - "eth": 391.771, - "usd": 1271846 - }, - "is_anomaly": false, - "is_stale": false, - "last": 8.45e-06, - "last_fetch_at": "2024-04-15T06:34:06+00:00", - "last_traded_at": "2024-04-15T06:34:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:34:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/SEI_BTC?ref=37754157", - "trust_score": "green", - "volume": 2335849.9 - }, - { - "base": "WIF", - "bid_ask_spread_percentage": 0.085929, - "coin_id": "dogwifcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.447831, - "usd": 66099 - }, - "converted_volume": { - "btc": 210.662, - "eth": 4308, - "usd": 13924487 - }, - "is_anomaly": false, - "is_stale": false, - "last": 4.645e-05, - "last_fetch_at": "2024-04-15T06:29:07+00:00", - "last_traded_at": "2024-04-15T06:29:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:29:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/WIF_BTC?ref=37754157", - "trust_score": "green", - "volume": 4784953.98 - }, - { - "base": "ATOM", - "bid_ask_spread_percentage": 0.076336, - "coin_id": "cosmos", - "converted_last": { - "btc": 1.0, - "eth": 20.43209, - "usd": 66311 - }, - "converted_volume": { - "btc": 15.419872, - "eth": 315.06, - "usd": 1022505 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0001309, - "last_fetch_at": "2024-04-15T06:42:06+00:00", - "last_traded_at": "2024-04-15T06:42:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:42:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ATOM_BTC?ref=37754157", - "trust_score": "green", - "volume": 120093.77 - }, - { - "base": "RUNE", - "bid_ask_spread_percentage": 0.059439, - "coin_id": "thorchain", - "converted_last": { - "btc": 1.0, - "eth": 20.427233, - "usd": 66276 - }, - "converted_volume": { - "btc": 19.103868, - "eth": 390.239, - "usd": 1266134 - }, - "is_anomaly": false, - "is_stale": false, - "last": 8.447e-05, - "last_fetch_at": "2024-04-15T06:38:07+00:00", - "last_traded_at": "2024-04-15T06:38:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:38:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/RUNE_BTC?ref=37754157", - "trust_score": "green", - "volume": 236257.4 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.092325, - "coin_id": "bitcoin", - "converted_last": { - "btc": 0.99966859, - "eth": 20.442039, - "usd": 66397 - }, - "converted_volume": { - "btc": 36.965171, - "eth": 755.894, - "usd": 2455179 - }, - "is_anomaly": false, - "is_stale": false, - "last": 66409.98, - "last_fetch_at": "2024-04-15T06:32:05+00:00", - "last_traded_at": "2024-04-15T06:30:21+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "DAI", - "target_coin_id": "dai", - "timestamp": "2024-04-15T06:30:21+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BTC_DAI?ref=37754157", - "trust_score": "green", - "volume": 38.17104 - }, - { - "base": "ARB", - "bid_ask_spread_percentage": 0.054201, - "coin_id": "arbitrum", - "converted_last": { - "btc": 1.0, - "eth": 20.495958, - "usd": 65984 - }, - "converted_volume": { - "btc": 29.257415, - "eth": 599.659, - "usd": 1930515 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.847e-05, - "last_fetch_at": "2024-04-15T06:26:08+00:00", - "last_traded_at": "2024-04-15T06:25:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:25:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ARB_BTC?ref=37754157", - "trust_score": "green", - "volume": 1664915.4 - }, - { - "base": "OP", - "bid_ask_spread_percentage": 0.055157, - "coin_id": "optimism", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 26.543819, - "eth": 543.01, - "usd": 1762477 - }, - "is_anomaly": false, - "is_stale": false, - "last": 3.625e-05, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:45:11+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:11+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/OP_BTC?ref=37754157", - "trust_score": "green", - "volume": 758980.35 - }, - { - "base": "FTM", - "bid_ask_spread_percentage": 0.089526, - "coin_id": "fantom", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 45.399836, - "eth": 928.749, - "usd": 3014493 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.12e-05, - "last_fetch_at": "2024-04-15T06:46:03+00:00", - "last_traded_at": "2024-04-15T06:44:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:44:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/FTM_BTC?ref=37754157", - "trust_score": "green", - "volume": 4266183.0 - }, - { - "base": "TRX", - "bid_ask_spread_percentage": 0.574713, - "coin_id": "tron", - "converted_last": { - "btc": 1.0, - "eth": 20.414974, - "usd": 66319 - }, - "converted_volume": { - "btc": 38.498859, - "eth": 785.953, - "usd": 2553197 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.73e-06, - "last_fetch_at": "2024-04-15T06:40:10+00:00", - "last_traded_at": "2024-04-15T06:40:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:40:10+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/TRX_BTC?ref=37754157", - "trust_score": "green", - "volume": 22260947.0 - }, - { - "base": "DOT", - "bid_ask_spread_percentage": 0.093897, - "coin_id": "polkadot", - "converted_last": { - "btc": 1.0, - "eth": 20.438868, - "usd": 66339 - }, - "converted_volume": { - "btc": 27.446965, - "eth": 560.985, - "usd": 1820811 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0001067, - "last_fetch_at": "2024-04-15T06:36:08+00:00", - "last_traded_at": "2024-04-15T06:35:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:35:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/DOT_BTC?ref=37754157", - "trust_score": "green", - "volume": 265465.31 - }, - { - "base": "STX", - "bid_ask_spread_percentage": 0.143885, - "coin_id": "blockstack", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 75.572, - "eth": 1546, - "usd": 5017872 - }, - "is_anomaly": false, - "is_stale": false, - "last": 4.176e-05, - "last_fetch_at": "2024-04-15T06:46:03+00:00", - "last_traded_at": "2024-04-15T06:45:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/STX_BTC?ref=37754157", - "trust_score": "green", - "volume": 1828908.3 - }, - { - "base": "NEAR", - "bid_ask_spread_percentage": 0.101983, - "coin_id": "near", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 35.27231, - "eth": 721.569, - "usd": 2342038 - }, - "is_anomaly": false, - "is_stale": false, - "last": 8.821e-05, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:44:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:44:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/NEAR_BTC?ref=37754157", - "trust_score": "green", - "volume": 414719.1 - }, - { - "base": "INJ", - "bid_ask_spread_percentage": 0.152168, - "coin_id": "injective-protocol", - "converted_last": { - "btc": 1.0, - "eth": 20.439258, - "usd": 66354 - }, - "converted_volume": { - "btc": 39.033005, - "eth": 797.806, - "usd": 2589995 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.000405, - "last_fetch_at": "2024-04-15T06:34:06+00:00", - "last_traded_at": "2024-04-15T06:34:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:34:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/INJ_BTC?ref=37754157", - "trust_score": "green", - "volume": 100473.6 - }, - { - "base": "FIL", - "bid_ask_spread_percentage": 0.102145, - "coin_id": "filecoin", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 26.498509, - "eth": 542.083, - "usd": 1759468 - }, - "is_anomaly": false, - "is_stale": false, - "last": 9.78e-05, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/FIL_BTC?ref=37754157", - "trust_score": "green", - "volume": 284909.22 - }, - { - "base": "AUCTION", - "bid_ask_spread_percentage": 0.03885, - "coin_id": "auction", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 2.573679, - "eth": 52.65, - "usd": 170889 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0002571, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:45:12+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:12+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/AUCTION_BTC?ref=37754157", - "trust_score": "green", - "volume": 10210.29 - }, - { - "base": "MKR", - "bid_ask_spread_percentage": 0.084069, - "coin_id": "maker", - "converted_last": { - "btc": 1.0, - "eth": 20.448816, - "usd": 66419 - }, - "converted_volume": { - "btc": 15.491433, - "eth": 316.781, - "usd": 1028921 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0474, - "last_fetch_at": "2024-04-15T06:32:05+00:00", - "last_traded_at": "2024-04-15T06:31:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:31:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/MKR_BTC?ref=37754157", - "trust_score": "green", - "volume": 336.653 - }, - { - "base": "AGIX", - "bid_ask_spread_percentage": 0.143575, - "coin_id": "singularitynet", - "converted_last": { - "btc": 1.0, - "eth": 20.443068, - "usd": 66437 - }, - "converted_volume": { - "btc": 36.05157, - "eth": 737.005, - "usd": 2395147 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.394e-05, - "last_fetch_at": "2024-04-15T06:44:07+00:00", - "last_traded_at": "2024-04-15T06:44:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:44:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/AGIX_BTC?ref=37754157", - "trust_score": "green", - "volume": 2767578.0 - }, - { - "base": "QNT", - "bid_ask_spread_percentage": 0.123153, - "coin_id": "quant-network", - "converted_last": { - "btc": 1.0, - "eth": 20.43209, - "usd": 66311 - }, - "converted_volume": { - "btc": 26.531725, - "eth": 542.099, - "usd": 1759342 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.001623, - "last_fetch_at": "2024-04-15T06:42:06+00:00", - "last_traded_at": "2024-04-15T06:40:11+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:40:11+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/QNT_BTC?ref=37754157", - "trust_score": "green", - "volume": 17039.306 - }, - { - "base": "NEO", - "bid_ask_spread_percentage": 0.17673, - "coin_id": "neo", - "converted_last": { - "btc": 1.0, - "eth": 20.442791, - "usd": 66402 - }, - "converted_volume": { - "btc": 67.631, - "eth": 1383, - "usd": 4490813 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0003514, - "last_fetch_at": "2024-04-15T06:33:04+00:00", - "last_traded_at": "2024-04-15T06:33:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:33:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/NEO_BTC?ref=37754157", - "trust_score": "green", - "volume": 228612.63 - }, - { - "base": "SAGA", - "bid_ask_spread_percentage": 0.092109, - "coin_id": "saga-2", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 34.961663, - "eth": 715.214, - "usd": 2321411 - }, - "is_anomaly": false, - "is_stale": false, - "last": 6.508e-05, - "last_fetch_at": "2024-04-15T06:46:06+00:00", - "last_traded_at": "2024-04-15T06:45:12+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:12+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/SAGA_BTC?ref=37754157", - "trust_score": "green", - "volume": 528172.4 - }, - { - "base": "MANA", - "bid_ask_spread_percentage": 0.144509, - "coin_id": "decentraland", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 7.603933, - "eth": 155.554, - "usd": 504892 - }, - "is_anomaly": false, - "is_stale": false, - "last": 6.93e-06, - "last_fetch_at": "2024-04-15T06:46:03+00:00", - "last_traded_at": "2024-04-15T06:45:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/MANA_BTC?ref=37754157", - "trust_score": "green", - "volume": 1128668.0 - }, - { - "base": "ORDI", - "bid_ask_spread_percentage": 0.17452, - "coin_id": "ordinals", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 29.316168, - "eth": 599.724, - "usd": 1946557 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0007447, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:45:11+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:11+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ORDI_BTC?ref=37754157", - "trust_score": "green", - "volume": 40761.63 - }, - { - "base": "ICP", - "bid_ask_spread_percentage": 0.146556, - "coin_id": "internet-computer", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 25.769895, - "eth": 527.178, - "usd": 1711089 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0002047, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:43:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:43:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ICP_BTC?ref=37754157", - "trust_score": "green", - "volume": 132468.62 - }, - { - "base": "SAND", - "bid_ask_spread_percentage": 0.143062, - "coin_id": "the-sandbox", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 31.607327, - "eth": 646.594, - "usd": 2098687 - }, - "is_anomaly": false, - "is_stale": false, - "last": 6.98e-06, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:09+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/SAND_BTC?ref=37754157", - "trust_score": "green", - "volume": 4713297.0 - }, - { - "base": "APT", - "bid_ask_spread_percentage": 0.140817, - "coin_id": "aptos", - "converted_last": { - "btc": 1.0, - "eth": 20.428445, - "usd": 66393 - }, - "converted_volume": { - "btc": 12.234445, - "eth": 249.931, - "usd": 812286 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.00014917, - "last_fetch_at": "2024-04-15T06:43:06+00:00", - "last_traded_at": "2024-04-15T06:43:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:43:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/APT_BTC?ref=37754157", - "trust_score": "green", - "volume": 84806.28 - }, - { - "base": "DYDX", - "bid_ask_spread_percentage": 0.174317, - "coin_id": "dydx", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 7.378668, - "eth": 150.946, - "usd": 489934 - }, - "is_anomaly": false, - "is_stale": false, - "last": 3.451e-05, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:46:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:46:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/DYDX_BTC?ref=37754157", - "trust_score": "green", - "volume": 226888.19 - }, - { - "base": "AR", - "bid_ask_spread_percentage": 0.14022, - "coin_id": "arweave", - "converted_last": { - "btc": 1.0, - "eth": 20.436196, - "usd": 66283 - }, - "converted_volume": { - "btc": 24.98786, - "eth": 510.657, - "usd": 1656274 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0004316, - "last_fetch_at": "2024-04-15T06:37:02+00:00", - "last_traded_at": "2024-04-15T06:36:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:36:10+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/AR_BTC?ref=37754157", - "trust_score": "green", - "volume": 62228.09 - }, - { - "base": "TNSR", - "bid_ask_spread_percentage": 0.26738, - "coin_id": "tensor", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 16.370784, - "eth": 334.899, - "usd": 1087000 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.503e-05, - "last_fetch_at": "2024-04-15T06:46:06+00:00", - "last_traded_at": "2024-04-15T06:45:12+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:12+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/TNSR_BTC?ref=37754157", - "trust_score": "green", - "volume": 1095094.9 - }, - { - "base": "AAVE", - "bid_ask_spread_percentage": 0.148148, - "coin_id": "aave", - "converted_last": { - "btc": 1.0, - "eth": 20.439258, - "usd": 66354 - }, - "converted_volume": { - "btc": 11.565492, - "eth": 236.39, - "usd": 767416 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.001372, - "last_fetch_at": "2024-04-15T06:34:05+00:00", - "last_traded_at": "2024-04-15T06:34:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:34:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/AAVE_BTC?ref=37754157", - "trust_score": "green", - "volume": 8737.255 - }, - { - "base": "DASH", - "bid_ask_spread_percentage": 0.084692, - "coin_id": "dash", - "converted_last": { - "btc": 1.0, - "eth": 20.428445, - "usd": 66393 - }, - "converted_volume": { - "btc": 4.881179, - "eth": 99.715, - "usd": 324078 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0004725, - "last_fetch_at": "2024-04-15T06:43:03+00:00", - "last_traded_at": "2024-04-15T06:42:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:42:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/DASH_BTC?ref=37754157", - "trust_score": "green", - "volume": 10644.326 - }, - { - "base": "GRT", - "bid_ask_spread_percentage": 0.240385, - "coin_id": "the-graph", - "converted_last": { - "btc": 1.0, - "eth": 20.443068, - "usd": 66437 - }, - "converted_volume": { - "btc": 9.571591, - "eth": 195.673, - "usd": 635905 - }, - "is_anomaly": false, - "is_stale": false, - "last": 4.16e-06, - "last_fetch_at": "2024-04-15T06:44:09+00:00", - "last_traded_at": "2024-04-15T06:44:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:44:09+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/GRT_BTC?ref=37754157", - "trust_score": "green", - "volume": 2463342.0 - }, - { - "base": "OCEAN", - "bid_ask_spread_percentage": 0.14782, - "coin_id": "ocean-protocol", - "converted_last": { - "btc": 1.0, - "eth": 20.46404, - "usd": 65996 - }, - "converted_volume": { - "btc": 10.972513, - "eth": 224.542, - "usd": 724147 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.391e-05, - "last_fetch_at": "2024-04-15T06:28:05+00:00", - "last_traded_at": "2024-04-15T06:28:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:28:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/OCEAN_BTC?ref=37754157", - "trust_score": "green", - "volume": 827699.0 - }, - { - "base": "SCRT", - "bid_ask_spread_percentage": 0.286123, - "coin_id": "secret", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 1.072783, - "eth": 21.946036, - "usd": 71231 - }, - "is_anomaly": false, - "is_stale": false, - "last": 6.98e-06, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:11+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:11+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/SCRT_BTC?ref=37754157", - "trust_score": "green", - "volume": 158161.8 - }, - { - "base": "LDO", - "bid_ask_spread_percentage": 0.092736, - "coin_id": "lido-dao", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 3.545125, - "eth": 72.523, - "usd": 235392 - }, - "is_anomaly": false, - "is_stale": false, - "last": 3.236e-05, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:44:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:44:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/LDO_BTC?ref=37754157", - "trust_score": "green", - "volume": 113578.72 - }, - { - "base": "BTC", - "bid_ask_spread_percentage": 0.185556, - "coin_id": "bitcoin", - "converted_last": { - "btc": 1.0, - "eth": 20.422264, - "usd": 66311 - }, - "converted_volume": { - "btc": 0.7653538, - "eth": 15.630258, - "usd": 50751 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1076581670.0, - "last_fetch_at": "2024-04-15T06:41:04+00:00", - "last_traded_at": "2024-04-15T06:34:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BIDR", - "target_coin_id": "binanceidr", - "timestamp": "2024-04-15T06:34:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BTC_BIDR?ref=37754157", - "trust_score": "green", - "volume": 0.77768 - }, - { - "base": "W", - "bid_ask_spread_percentage": 0.195695, - "coin_id": "wormhole", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 18.781203, - "eth": 384.209, - "usd": 1247049 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.022e-05, - "last_fetch_at": "2024-04-15T06:46:06+00:00", - "last_traded_at": "2024-04-15T06:45:12+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:12+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/W_BTC?ref=37754157", - "trust_score": "green", - "volume": 1900174.7 - }, - { - "base": "PYTH", - "bid_ask_spread_percentage": 0.104384, - "coin_id": "pyth-network", - "converted_last": { - "btc": 1.0, - "eth": 20.43209, - "usd": 66311 - }, - "converted_volume": { - "btc": 6.753219, - "eth": 137.982, - "usd": 447812 - }, - "is_anomaly": false, - "is_stale": false, - "last": 9.58e-06, - "last_fetch_at": "2024-04-15T06:42:07+00:00", - "last_traded_at": "2024-04-15T06:40:14+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:40:14+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/PYTH_BTC?ref=37754157", - "trust_score": "green", - "volume": 729007.9 - }, - { - "base": "NEXO", - "bid_ask_spread_percentage": 0.254065, - "coin_id": "nexo", - "converted_last": { - "btc": 1.0, - "eth": 20.447831, - "usd": 66099 - }, - "converted_volume": { - "btc": 8.673779, - "eth": 177.36, - "usd": 573325 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.968e-05, - "last_fetch_at": "2024-04-15T06:29:05+00:00", - "last_traded_at": "2024-04-15T06:27:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:27:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/NEXO_BTC?ref=37754157", - "trust_score": "green", - "volume": 437137.93 - }, - { - "base": "GAS", - "bid_ask_spread_percentage": 0.113379, - "coin_id": "gas", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 7.525019, - "eth": 153.94, - "usd": 499652 - }, - "is_anomaly": false, - "is_stale": false, - "last": 8.79e-05, - "last_fetch_at": "2024-04-15T06:46:03+00:00", - "last_traded_at": "2024-04-15T06:45:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/GAS_BTC?ref=37754157", - "trust_score": "green", - "volume": 93313.1 - }, - { - "base": "BLZ", - "bid_ask_spread_percentage": 0.162075, - "coin_id": "bluzelle", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 24.146155, - "eth": 493.96, - "usd": 1603275 - }, - "is_anomaly": false, - "is_stale": false, - "last": 6.15e-06, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:46:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:46:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BLZ_BTC?ref=37754157", - "trust_score": "green", - "volume": 3892258.0 - }, - { - "base": "AXS", - "bid_ask_spread_percentage": 0.088106, - "coin_id": "axie-infinity", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 12.030465, - "eth": 246.109, - "usd": 798808 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0001134, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/AXS_BTC?ref=37754157", - "trust_score": "green", - "volume": 109127.87 - }, - { - "base": "HBAR", - "bid_ask_spread_percentage": 0.775194, - "coin_id": "hedera-hashgraph", - "converted_last": { - "btc": 1.0, - "eth": 20.442791, - "usd": 66402 - }, - "converted_volume": { - "btc": 14.125763, - "eth": 288.77, - "usd": 937978 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.3e-06, - "last_fetch_at": "2024-04-15T06:33:04+00:00", - "last_traded_at": "2024-04-15T06:33:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:33:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/HBAR_BTC?ref=37754157", - "trust_score": "green", - "volume": 11336776.0 - }, - { - "base": "ALT", - "bid_ask_spread_percentage": 0.146628, - "coin_id": "altlayer", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 14.916618, - "eth": 305.151, - "usd": 990445 - }, - "is_anomaly": false, - "is_stale": false, - "last": 6.84e-06, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:44:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:44:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ALT_BTC?ref=37754157", - "trust_score": "green", - "volume": 2281447.0 - }, - { - "base": "POLYX", - "bid_ask_spread_percentage": 0.140647, - "coin_id": "polymesh", - "converted_last": { - "btc": 1.0, - "eth": 20.495958, - "usd": 65984 - }, - "converted_volume": { - "btc": 13.581056, - "eth": 278.357, - "usd": 896130 - }, - "is_anomaly": false, - "is_stale": false, - "last": 7.07e-06, - "last_fetch_at": "2024-04-15T06:26:09+00:00", - "last_traded_at": "2024-04-15T06:26:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:26:09+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/POLYX_BTC?ref=37754157", - "trust_score": "green", - "volume": 1975696.1 - }, - { - "base": "PENDLE", - "bid_ask_spread_percentage": 0.469979, - "coin_id": "pendle", - "converted_last": { - "btc": 1.0, - "eth": 20.427233, - "usd": 66276 - }, - "converted_volume": { - "btc": 12.393197, - "eth": 253.159, - "usd": 821376 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.00010448, - "last_fetch_at": "2024-04-15T06:38:06+00:00", - "last_traded_at": "2024-04-15T06:38:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:38:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/PENDLE_BTC?ref=37754157", - "trust_score": "green", - "volume": 127427.0 - }, - { - "base": "EDU", - "bid_ask_spread_percentage": 0.224719, - "coin_id": "edu-coin", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 1.25206, - "eth": 25.613533, - "usd": 83135 - }, - "is_anomaly": false, - "is_stale": false, - "last": 8.87e-06, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:43:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:43:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/EDU_BTC?ref=37754157", - "trust_score": "green", - "volume": 144796.0 - }, - { - "base": "PIXEL", - "bid_ask_spread_percentage": 0.285307, - "coin_id": "pixels", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 10.191862, - "eth": 208.496, - "usd": 676727 - }, - "is_anomaly": false, - "is_stale": false, - "last": 7e-06, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:45:11+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:11+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/PIXEL_BTC?ref=37754157", - "trust_score": "green", - "volume": 1536019.0 - }, - { - "base": "VET", - "bid_ask_spread_percentage": 1.408451, - "coin_id": "vechain", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 50.59, - "eth": 1035, - "usd": 3359132 - }, - "is_anomaly": false, - "is_stale": false, - "last": 7.1e-07, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:10+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/VET_BTC?ref=37754157", - "trust_score": "green", - "volume": 77476942.0 - }, - { - "base": "THETA", - "bid_ask_spread_percentage": 0.2658, - "coin_id": "theta-token", - "converted_last": { - "btc": 1.0, - "eth": 20.448816, - "usd": 66419 - }, - "converted_volume": { - "btc": 6.223105, - "eth": 127.255, - "usd": 413331 - }, - "is_anomaly": false, - "is_stale": false, - "last": 3.378e-05, - "last_fetch_at": "2024-04-15T06:32:08+00:00", - "last_traded_at": "2024-04-15T06:32:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:32:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/THETA_BTC?ref=37754157", - "trust_score": "green", - "volume": 192897.3 - }, - { - "base": "EGLD", - "bid_ask_spread_percentage": 0.154799, - "coin_id": "elrond-erd-2", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 10.797647, - "eth": 220.889, - "usd": 716950 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.000644, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:44:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:44:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/EGLD_BTC?ref=37754157", - "trust_score": "green", - "volume": 17480.75 - }, - { - "base": "1INCH", - "bid_ask_spread_percentage": 0.151976, - "coin_id": "1inch", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 1.632922, - "eth": 33.404862, - "usd": 108424 - }, - "is_anomaly": false, - "is_stale": false, - "last": 6.57e-06, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:46:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:46:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/1INCH_BTC?ref=37754157", - "trust_score": "green", - "volume": 256681.9 - }, - { - "base": "CTK", - "bid_ask_spread_percentage": 0.089767, - "coin_id": "certik", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 3.718726, - "eth": 76.074, - "usd": 246919 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.117e-05, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/CTK_BTC?ref=37754157", - "trust_score": "green", - "volume": 335189.4 - }, - { - "base": "METIS", - "bid_ask_spread_percentage": 0.216216, - "coin_id": "metis-token", - "converted_last": { - "btc": 1.0, - "eth": 20.442791, - "usd": 66402 - }, - "converted_volume": { - "btc": 26.439958, - "eth": 540.507, - "usd": 1755665 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.000929, - "last_fetch_at": "2024-04-15T06:33:04+00:00", - "last_traded_at": "2024-04-15T06:33:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:33:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/METIS_BTC?ref=37754157", - "trust_score": "green", - "volume": 28878.753 - }, - { - "base": "YFI", - "bid_ask_spread_percentage": 0.090744, - "coin_id": "yearn-finance", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 1.976263, - "eth": 40.428635, - "usd": 131221 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.1101, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:40:14+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:40:14+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/YFI_BTC?ref=37754157", - "trust_score": "green", - "volume": 18.3672 - }, - { - "base": "ZRX", - "bid_ask_spread_percentage": 0.130719, - "coin_id": "0x", - "converted_last": { - "btc": 1.0, - "eth": 20.447831, - "usd": 66099 - }, - "converted_volume": { - "btc": 2.390995, - "eth": 48.890666, - "usd": 158042 - }, - "is_anomaly": false, - "is_stale": false, - "last": 7.78e-06, - "last_fetch_at": "2024-04-15T06:29:04+00:00", - "last_traded_at": "2024-04-15T06:29:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:29:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ZRX_BTC?ref=37754157", - "trust_score": "green", - "volume": 314257.0 - }, - { - "base": "XLM", - "bid_ask_spread_percentage": 0.581395, - "coin_id": "stellar", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 22.559127, - "eth": 461.494, - "usd": 1497898 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.72e-06, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:43:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:43:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/XLM_BTC?ref=37754157", - "trust_score": "green", - "volume": 13467519.0 - }, - { - "base": "DUSK", - "bid_ask_spread_percentage": 0.166945, - "coin_id": "dusk-network", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 7.226648, - "eth": 147.836, - "usd": 479840 - }, - "is_anomaly": false, - "is_stale": false, - "last": 5.99e-06, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:46:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:46:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/DUSK_BTC?ref=37754157", - "trust_score": "green", - "volume": 1285928.0 - }, - { - "base": "UNI", - "bid_ask_spread_percentage": 0.254453, - "coin_id": "uniswap", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 21.731595, - "eth": 444.566, - "usd": 1442951 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0001178, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/UNI_BTC?ref=37754157", - "trust_score": "green", - "volume": 192937.81 - }, - { - "base": "CFX", - "bid_ask_spread_percentage": 0.263158, - "coin_id": "conflux-token", - "converted_last": { - "btc": 1.0, - "eth": 20.42071, - "usd": 66264 - }, - "converted_volume": { - "btc": 20.226535, - "eth": 413.04, - "usd": 1340286 - }, - "is_anomaly": false, - "is_stale": false, - "last": 4e-06, - "last_fetch_at": "2024-04-15T06:39:04+00:00", - "last_traded_at": "2024-04-15T06:39:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:39:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/CFX_BTC?ref=37754157", - "trust_score": "green", - "volume": 5375983.0 - }, - { - "base": "ZEC", - "bid_ask_spread_percentage": 0.232019, - "coin_id": "zcash", - "converted_last": { - "btc": 1.0, - "eth": 20.449783, - "usd": 66436 - }, - "converted_volume": { - "btc": 6.420568, - "eth": 131.299, - "usd": 426557 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.000344, - "last_fetch_at": "2024-04-15T06:45:08+00:00", - "last_traded_at": "2024-04-15T06:45:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ZEC_BTC?ref=37754157", - "trust_score": "green", - "volume": 19391.925 - }, - { - "base": "ARKM", - "bid_ask_spread_percentage": 0.241158, - "coin_id": "arkham", - "converted_last": { - "btc": 1.0, - "eth": 20.447831, - "usd": 66099 - }, - "converted_volume": { - "btc": 5.019684, - "eth": 102.642, - "usd": 331794 - }, - "is_anomaly": false, - "is_stale": false, - "last": 2.499e-05, - "last_fetch_at": "2024-04-15T06:29:08+00:00", - "last_traded_at": "2024-04-15T06:29:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:29:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ARKM_BTC?ref=37754157", - "trust_score": "green", - "volume": 210929.0 - }, - { - "base": "FLOW", - "bid_ask_spread_percentage": 0.20562, - "coin_id": "flow", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 1.51505, - "eth": 30.993533, - "usd": 100597 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.455e-05, - "last_fetch_at": "2024-04-15T06:46:06+00:00", - "last_traded_at": "2024-04-15T06:43:08+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:43:08+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/FLOW_BTC?ref=37754157", - "trust_score": "green", - "volume": 106904.3 - }, - { - "base": "PAXG", - "bid_ask_spread_percentage": 0.167926, - "coin_id": "pax-gold", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 12.611963, - "eth": 258.004, - "usd": 837419 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.03573, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:41:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:41:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/PAXG_BTC?ref=37754157", - "trust_score": "green", - "volume": 335.6404 - }, - { - "base": "LQTY", - "bid_ask_spread_percentage": 0.309406, - "coin_id": "liquity", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 1.981897, - "eth": 40.543872, - "usd": 131595 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.615e-05, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:45:11+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:11+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/LQTY_BTC?ref=37754157", - "trust_score": "green", - "volume": 128263.4 - }, - { - "base": "ROSE", - "bid_ask_spread_percentage": 0.653595, - "coin_id": "oasis-network", - "converted_last": { - "btc": 1.0, - "eth": 20.495958, - "usd": 65984 - }, - "converted_volume": { - "btc": 3.611289, - "eth": 74.017, - "usd": 238287 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.53e-06, - "last_fetch_at": "2024-04-15T06:26:10+00:00", - "last_traded_at": "2024-04-15T06:26:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:26:10+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ROSE_BTC?ref=37754157", - "trust_score": "green", - "volume": 2520142.0 - }, - { - "base": "YGG", - "bid_ask_spread_percentage": 0.143575, - "coin_id": "yield-guild-games", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 13.849772, - "eth": 283.326, - "usd": 919608 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.392e-05, - "last_fetch_at": "2024-04-15T06:46:05+00:00", - "last_traded_at": "2024-04-15T06:45:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:09+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/YGG_BTC?ref=37754157", - "trust_score": "green", - "volume": 1035244.3 - }, - { - "base": "SSV", - "bid_ask_spread_percentage": 0.244021, - "coin_id": "ssv-network", - "converted_last": { - "btc": 1.0, - "eth": 20.427233, - "usd": 66276 - }, - "converted_volume": { - "btc": 9.441022, - "eth": 192.854, - "usd": 625716 - }, - "is_anomaly": false, - "is_stale": false, - "last": 0.0006096, - "last_fetch_at": "2024-04-15T06:38:06+00:00", - "last_traded_at": "2024-04-15T06:38:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:38:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/SSV_BTC?ref=37754157", - "trust_score": "green", - "volume": 15896.83 - }, - { - "base": "IMX", - "bid_ask_spread_percentage": 0.11672, - "coin_id": "immutable-x", - "converted_last": { - "btc": 1.0, - "eth": 20.427233, - "usd": 66276 - }, - "converted_volume": { - "btc": 3.120625, - "eth": 63.746, - "usd": 206824 - }, - "is_anomaly": false, - "is_stale": false, - "last": 3.427e-05, - "last_fetch_at": "2024-04-15T06:38:06+00:00", - "last_traded_at": "2024-04-15T06:38:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:38:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/IMX_BTC?ref=37754157", - "trust_score": "green", - "volume": 95096.65 - }, - { - "base": "ALGO", - "bid_ask_spread_percentage": 0.359712, - "coin_id": "algorand", - "converted_last": { - "btc": 1.0, - "eth": 20.447831, - "usd": 66099 - }, - "converted_volume": { - "btc": 11.017145, - "eth": 225.277, - "usd": 728219 - }, - "is_anomaly": false, - "is_stale": false, - "last": 2.77e-06, - "last_fetch_at": "2024-04-15T06:29:04+00:00", - "last_traded_at": "2024-04-15T06:29:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:29:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ALGO_BTC?ref=37754157", - "trust_score": "green", - "volume": 4054087.0 - }, - { - "base": "AXL", - "bid_ask_spread_percentage": 0.464846, - "coin_id": "axelar", - "converted_last": { - "btc": 1.0, - "eth": 20.448816, - "usd": 66419 - }, - "converted_volume": { - "btc": 2.373172, - "eth": 48.528567, - "usd": 157623 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.714e-05, - "last_fetch_at": "2024-04-15T06:32:09+00:00", - "last_traded_at": "2024-04-15T06:25:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:25:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/AXL_BTC?ref=37754157", - "trust_score": "green", - "volume": 141799.22 - }, - { - "base": "CRV", - "bid_ask_spread_percentage": 0.286944, - "coin_id": "curve-dao-token", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 2.760186, - "eth": 56.465, - "usd": 183273 - }, - "is_anomaly": false, - "is_stale": false, - "last": 6.96e-06, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:09+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:09+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/CRV_BTC?ref=37754157", - "trust_score": "green", - "volume": 401668.9 - }, - { - "base": "TFUEL", - "bid_ask_spread_percentage": 0.719424, - "coin_id": "theta-fuel", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 15.179843, - "eth": 310.536, - "usd": 1007923 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.38e-06, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/TFUEL_BTC?ref=37754157", - "trust_score": "green", - "volume": 11381598.0 - }, - { - "base": "ENJ", - "bid_ask_spread_percentage": 0.192308, - "coin_id": "enjincoin", - "converted_last": { - "btc": 1.0, - "eth": 20.46404, - "usd": 65996 - }, - "converted_volume": { - "btc": 3.664904, - "eth": 74.999, - "usd": 241871 - }, - "is_anomaly": false, - "is_stale": false, - "last": 5.2e-06, - "last_fetch_at": "2024-04-15T06:28:04+00:00", - "last_traded_at": "2024-04-15T06:28:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:28:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/ENJ_BTC?ref=37754157", - "trust_score": "green", - "volume": 732184.4 - }, - { - "base": "SUSHI", - "bid_ask_spread_percentage": 0.127389, - "coin_id": "sushi", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 0.82452409, - "eth": 16.867378, - "usd": 54747 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.571e-05, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:43:05+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:43:05+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/SUSHI_BTC?ref=37754157", - "trust_score": "green", - "volume": 54186.0 - }, - { - "base": "XTZ", - "bid_ask_spread_percentage": 0.179748, - "coin_id": "tezos", - "converted_last": { - "btc": 1.0, - "eth": 20.414974, - "usd": 66319 - }, - "converted_volume": { - "btc": 2.998504, - "eth": 61.214, - "usd": 198857 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.666e-05, - "last_fetch_at": "2024-04-15T06:40:10+00:00", - "last_traded_at": "2024-04-15T06:39:03+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:39:03+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/XTZ_BTC?ref=37754157", - "trust_score": "green", - "volume": 187937.9 - }, - { - "base": "CAKE", - "bid_ask_spread_percentage": 0.160883, - "coin_id": "pancakeswap-token", - "converted_last": { - "btc": 1.0, - "eth": 20.495958, - "usd": 65984 - }, - "converted_volume": { - "btc": 2.02142, - "eth": 41.430949, - "usd": 133381 - }, - "is_anomaly": false, - "is_stale": false, - "last": 4.362e-05, - "last_fetch_at": "2024-04-15T06:26:10+00:00", - "last_traded_at": "2024-04-15T06:26:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:26:10+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/CAKE_BTC?ref=37754157", - "trust_score": "green", - "volume": 47317.69 - }, - { - "base": "XAI", - "bid_ask_spread_percentage": 0.086957, - "coin_id": "xai-blockchain", - "converted_last": { - "btc": 1.0, - "eth": 20.427233, - "usd": 66276 - }, - "converted_volume": { - "btc": 2.491767, - "eth": 50.9, - "usd": 165145 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.15e-05, - "last_fetch_at": "2024-04-15T06:38:07+00:00", - "last_traded_at": "2024-04-15T06:38:07+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:38:07+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/XAI_BTC?ref=37754157", - "trust_score": "green", - "volume": 223669.4 - }, - { - "base": "BADGER", - "bid_ask_spread_percentage": 0.208737, - "coin_id": "badger-dao", - "converted_last": { - "btc": 1.0, - "eth": 20.479787, - "usd": 66000 - }, - "converted_volume": { - "btc": 1.035932, - "eth": 21.215661, - "usd": 68371 - }, - "is_anomaly": false, - "is_stale": false, - "last": 6.699e-05, - "last_fetch_at": "2024-04-15T06:27:08+00:00", - "last_traded_at": "2024-04-15T06:25:04+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:25:04+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/BADGER_BTC?ref=37754157", - "trust_score": "green", - "volume": 15945.54 - }, - { - "base": "IOTA", - "bid_ask_spread_percentage": 0.269542, - "coin_id": "iota", - "converted_last": { - "btc": 1.0, - "eth": 20.457108, - "usd": 66399 - }, - "converted_volume": { - "btc": 1.470201, - "eth": 30.076067, - "usd": 97620 - }, - "is_anomaly": false, - "is_stale": false, - "last": 3.71e-06, - "last_fetch_at": "2024-04-15T06:46:04+00:00", - "last_traded_at": "2024-04-15T06:45:10+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:45:10+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/IOTA_BTC?ref=37754157", - "trust_score": "green", - "volume": 408676.0 - }, - { - "base": "OM", - "bid_ask_spread_percentage": 0.268577, - "coin_id": "mantra-dao", - "converted_last": { - "btc": 1.0, - "eth": 20.439258, - "usd": 66354 - }, - "converted_volume": { - "btc": 5.648196, - "eth": 115.445, - "usd": 374780 - }, - "is_anomaly": false, - "is_stale": false, - "last": 1.146e-05, - "last_fetch_at": "2024-04-15T06:34:06+00:00", - "last_traded_at": "2024-04-15T06:34:06+00:00", - "market": { - "has_trading_incentive": false, - "identifier": "binance", - "name": "Binance" - }, - "target": "BTC", - "target_coin_id": "bitcoin", - "timestamp": "2024-04-15T06:34:06+00:00", - "token_info_url": null, - "trade_url": "https://www.binance.com/en/trade/OM_BTC?ref=37754157", - "trust_score": "green", - "volume": 517139.0 - } - ] -} \ No newline at end of file diff --git a/data/coins.json b/data/coins.json deleted file mode 100644 index 365b85d..0000000 --- a/data/coins.json +++ /dev/null @@ -1,69202 +0,0 @@ -[ - { - "id": "01coin", - "name": "01coin", - "symbol": "zoc" - }, - { - "id": "0chain", - "name": "Zus", - "symbol": "zcn" - }, - { - "id": "0-knowledge-network", - "name": "0 Knowledge Network", - "symbol": "0kn" - }, - { - "id": "0-mee", - "name": "O-MEE", - "symbol": "ome" - }, - { - "id": "0vix-protocol", - "name": "0VIX Protocol", - "symbol": "vix" - }, - { - "id": "0vm", - "name": "0VM", - "symbol": "zerovm" - }, - { - "id": "0x", - "name": "0x Protocol", - "symbol": "zrx" - }, - { - "id": "0x0-ai-ai-smart-contract", - "name": "0x0.ai: AI Smart Contract", - "symbol": "0x0" - }, - { - "id": "0x1-tools-ai-multi-tool", - "name": "0x1.tools: AI Multi-tool", - "symbol": "0x1" - }, - { - "id": "0x404", - "name": "0x404", - "symbol": "xfour" - }, - { - "id": "0xaiswap", - "name": "0xAISwap", - "symbol": "0xaiswap" - }, - { - "id": "0xanon", - "name": "0xAnon", - "symbol": "0xanon" - }, - { - "id": "0xbet", - "name": "0xBET", - "symbol": "0xbet" - }, - { - "id": "0xblack", - "name": "0xBlack", - "symbol": "0xb" - }, - { - "id": "0xcoco", - "name": "0xCoco", - "symbol": "coco" - }, - { - "id": "0xconnect", - "name": "0xConnect", - "symbol": "0xcon" - }, - { - "id": "0xdao", - "name": "0xDAO", - "symbol": "oxd" - }, - { - "id": "0xdefcafe", - "name": "0xDEFCAFE", - "symbol": "cafe" - }, - { - "id": "0xengage", - "name": "0xEngage", - "symbol": "engage" - }, - { - "id": "0xfair", - "name": "0xFair", - "symbol": "fair" - }, - { - "id": "0xfreelance", - "name": "0xFreelance", - "symbol": "0xfree" - }, - { - "id": "0xgambit", - "name": "0xgambit", - "symbol": "0xg" - }, - { - "id": "0xgasless", - "name": "0xGasless (OLD)", - "symbol": "0xgas" - }, - { - "id": "0xgasless-2", - "name": "0xGasless", - "symbol": "0xgas" - }, - { - "id": "0xgpu-ai", - "name": "0xGPU.ai", - "symbol": "0xg" - }, - { - "id": "0x-leverage", - "name": "0x Leverage", - "symbol": "oxl" - }, - { - "id": "0xliquidity", - "name": "0xLiquidity", - "symbol": "0xlp" - }, - { - "id": "0xlsd", - "name": "0xLSD", - "symbol": "0xlsd" - }, - { - "id": "0xmonero", - "name": "0xMonero", - "symbol": "0xmr" - }, - { - "id": "0xnude", - "name": "0xNude", - "symbol": "nude" - }, - { - "id": "0xnumber", - "name": "0xNumber", - "symbol": "oxn" - }, - { - "id": "0xos-ai", - "name": "0xOS AI", - "symbol": "0xos" - }, - { - "id": "0xs", - "name": "0xS", - "symbol": "$0xs" - }, - { - "id": "0xscans", - "name": "0xScans", - "symbol": "scan" - }, - { - "id": "0xsnipeproai", - "name": "0xSnipeProAi", - "symbol": "0xspai" - }, - { - "id": "0xtools", - "name": "0xTools", - "symbol": "0xt" - }, - { - "id": "0xvault", - "name": "0xVault", - "symbol": "vault" - }, - { - "id": "0xvpn-org", - "name": "0xVPN.org", - "symbol": "vpn" - }, - { - "id": "1000bonk", - "name": "1000BONK", - "symbol": "1000bonk" - }, - { - "id": "1000btt", - "name": "1000BTT", - "symbol": "1000btt" - }, - { - "id": "1000rats", - "name": "1000RATS", - "symbol": "1000rats" - }, - { - "id": "1000sats-ordinals", - "name": "1000SATS (Ordinals)", - "symbol": "1000sats" - }, - { - "id": "1000shib", - "name": "1000SHIB", - "symbol": "1000shib" - }, - { - "id": "1000troll", - "name": "1000TROLL", - "symbol": "1000troll" - }, - { - "id": "12ships", - "name": "12Ships", - "symbol": "tshp" - }, - { - "id": "16dao", - "name": "16DAO", - "symbol": "16dao" - }, - { - "id": "1art", - "name": "OneArt", - "symbol": "1art" - }, - { - "id": "1ex", - "name": "1ex", - "symbol": "1ex" - }, - { - "id": "1hive-water", - "name": "1Hive Water", - "symbol": "water" - }, - { - "id": "1inch", - "name": "1inch", - "symbol": "1inch" - }, - { - "id": "1inch-yvault", - "name": "1INCH yVault", - "symbol": "yv1inch" - }, - { - "id": "1long", - "name": "1LONG", - "symbol": "1long" - }, - { - "id": "1million-nfts", - "name": "1MillionNFTs", - "symbol": "1mil" - }, - { - "id": "1minbet", - "name": "1minBET", - "symbol": "1mb" - }, - { - "id": "1move token", - "name": "1Move Token", - "symbol": "1mt" - }, - { - "id": "1reward-token", - "name": "1Reward Token", - "symbol": "1rt" - }, - { - "id": "1safu", - "name": "1SAFU", - "symbol": "safu" - }, - { - "id": "1sol", - "name": "1Sol", - "symbol": "1sol" - }, - { - "id": "-2", - "name": "\u20bf", - "symbol": "\u20bf" - }, - { - "id": "2024", - "name": "2024", - "symbol": "2024" - }, - { - "id": "2024pump", - "name": "2024PUMP", - "symbol": "pump" - }, - { - "id": "2049", - "name": "2049", - "symbol": "2049" - }, - { - "id": "2080", - "name": "2080", - "symbol": "2080" - }, - { - "id": "20weth-80bal", - "name": "20WETH-80BAL", - "symbol": "20weth-80bal" - }, - { - "id": "21million", - "name": "21Million", - "symbol": "21m" - }, - { - "id": "28", - "name": "28", - "symbol": "28" - }, - { - "id": "28vck", - "name": "28VCK", - "symbol": "vck" - }, - { - "id": "2acoin", - "name": "2ACoin", - "symbol": "arms" - }, - { - "id": "2dai-io", - "name": "2DAI.io", - "symbol": "2dai" - }, - { - "id": "2fai", - "name": "2FAI", - "symbol": "2fai" - }, - { - "id": "2g-carbon-coin", - "name": "2G Carbon Coin", - "symbol": "2gcc" - }, - { - "id": "2moon", - "name": "2MOON", - "symbol": "moon" - }, - { - "id": "2omb-finance", - "name": "2omb", - "symbol": "2omb" - }, - { - "id": "2share", - "name": "2SHARE", - "symbol": "2shares" - }, - { - "id": "-3", - "name": "Meow Meow Coin", - "symbol": "meow" - }, - { - "id": "300fit", - "name": "300FIT", - "symbol": "fit" - }, - { - "id": "3a-lending-protocol", - "name": "3A", - "symbol": "a3a" - }, - { - "id": "3d3d", - "name": "3d3d", - "symbol": "3d3d" - }, - { - "id": "3dpass", - "name": "3DPass", - "symbol": "p3d" - }, - { - "id": "3-kingdoms-multiverse", - "name": "3 Kingdoms Multiverse", - "symbol": "3km" - }, - { - "id": "3space-art", - "name": "3SPACE ART", - "symbol": "pace" - }, - { - "id": "3wild", - "name": "3WILD", - "symbol": "3wild" - }, - { - "id": "404aliens", - "name": "404Aliens", - "symbol": "404a" - }, - { - "id": "404-bakery", - "name": "404 Bakery", - "symbol": "bake" - }, - { - "id": "404blocks", - "name": "404Blocks", - "symbol": "404blocks" - }, - { - "id": "404wheels", - "name": "404WHEELS", - "symbol": "404wheels" - }, - { - "id": "4096", - "name": "4096", - "symbol": "4096" - }, - { - "id": "42-coin", - "name": "42-coin", - "symbol": "42" - }, - { - "id": "4chan", - "name": "4Chan", - "symbol": "4chan" - }, - { - "id": "4dcoin", - "name": "4DCoin", - "symbol": "4dc" - }, - { - "id": "4d-twin-maps-2", - "name": "4D Twin Maps", - "symbol": "4dmaps" - }, - { - "id": "4int", - "name": "4INT", - "symbol": "4int" - }, - { - "id": "4jnet", - "name": "4JNET", - "symbol": "4jnet" - }, - { - "id": "4-next-unicorn", - "name": "4 Next Unicorn", - "symbol": "nxtu" - }, - { - "id": "50cal", - "name": "50cal", - "symbol": "50cal" - }, - { - "id": "50cent", - "name": "50Cent", - "symbol": "50c" - }, - { - "id": "5g-cash", - "name": "5G-CASH", - "symbol": "vgc" - }, - { - "id": "5ire", - "name": "5ire", - "symbol": "5ire" - }, - { - "id": "5mc", - "name": "5mc", - "symbol": "5mc" - }, - { - "id": "69420", - "name": "69420", - "symbol": "69420" - }, - { - "id": "777", - "name": "777", - "symbol": "777" - }, - { - "id": "888tron", - "name": "888tron", - "symbol": "888" - }, - { - "id": "88mph", - "name": "88mph", - "symbol": "mph" - }, - { - "id": "8bit-chain", - "name": "8Bit Chain", - "symbol": "w8bit" - }, - { - "id": "8bitearn", - "name": "8BITEARN", - "symbol": "8bit" - }, - { - "id": "8pay", - "name": "8Pay", - "symbol": "8pay" - }, - { - "id": "90s-crypto-exchange", - "name": "90s Crypto Exchange", - "symbol": "90s" - }, - { - "id": "99starz", - "name": "99Starz", - "symbol": "stz" - }, - { - "id": "9inch", - "name": "9inch", - "symbol": "9inch" - }, - { - "id": "9inch-eth", - "name": "9inch ETH", - "symbol": "9inch" - }, - { - "id": "a3s", - "name": "A3S", - "symbol": "aa" - }, - { - "id": "a4-finance", - "name": "A4 Finance", - "symbol": "a4" - }, - { - "id": "a51-finance", - "name": "A51 Finance", - "symbol": "a51" - }, - { - "id": "aada-finance", - "name": "Lenfi", - "symbol": "lenfi" - }, - { - "id": "aag-ventures", - "name": "AAG", - "symbol": "aag" - }, - { - "id": "aardvark", - "name": "Aardvark [OLD]", - "symbol": "ardvrk" - }, - { - "id": "aardvark-2", - "name": "Aardvark", - "symbol": "vark" - }, - { - "id": "aarma", - "name": "Aarma", - "symbol": "arma" - }, - { - "id": "aastoken", - "name": "AASToken", - "symbol": "aast" - }, - { - "id": "aave", - "name": "Aave", - "symbol": "aave" - }, - { - "id": "aave-aave", - "name": "Aave AAVE", - "symbol": "aaave" - }, - { - "id": "aave-amm-bptbalweth", - "name": "Aave AMM BptBALWETH", - "symbol": "aammbptbalweth" - }, - { - "id": "aave-amm-bptwbtcweth", - "name": "Aave AMM BptWBTCWETH", - "symbol": "aammbptwbtcweth" - }, - { - "id": "aave-amm-dai", - "name": "Aave AMM DAI", - "symbol": "aammdai" - }, - { - "id": "aave-amm-uniaaveweth", - "name": "Aave AMM UniAAVEWETH", - "symbol": "aammuniaaveweth" - }, - { - "id": "aave-amm-unibatweth", - "name": "Aave AMM UniBATWETH", - "symbol": "aammunibatweth" - }, - { - "id": "aave-amm-unicrvweth", - "name": "Aave AMM UniCRVWETH", - "symbol": "aammunicrvweth" - }, - { - "id": "aave-amm-unidaiusdc", - "name": "Aave AMM UniDAIUSDC", - "symbol": "aammunidaiusdc" - }, - { - "id": "aave-amm-unidaiweth", - "name": "Aave AMM UniDAIWETH", - "symbol": "aammunidaiweth" - }, - { - "id": "aave-amm-unilinkweth", - "name": "Aave AMM UniLINKWETH", - "symbol": "aammunilinkweth" - }, - { - "id": "aave-amm-unimkrweth", - "name": "Aave AMM UniMKRWETH", - "symbol": "aammunimkrweth" - }, - { - "id": "aave-amm-unirenweth", - "name": "Aave AMM UniRENWETH", - "symbol": "aammunirenweth" - }, - { - "id": "aave-amm-unisnxweth", - "name": "Aave AMM UniSNXWETH", - "symbol": "aammunisnxweth" - }, - { - "id": "aave-amm-uniuniweth", - "name": "Aave AMM UniUNIWETH", - "symbol": "aammuniuniweth" - }, - { - "id": "aave-amm-uniusdcweth", - "name": "Aave AMM UniUSDCWETH", - "symbol": "aammuniusdcweth" - }, - { - "id": "aave-amm-uniwbtcusdc", - "name": "Aave AMM UniWBTCUSDC", - "symbol": "aammuniwbtcusdc" - }, - { - "id": "aave-amm-uniwbtcweth", - "name": "Aave AMM UniWBTCWETH", - "symbol": "aammuniwbtcweth" - }, - { - "id": "aave-amm-uniyfiweth", - "name": "Aave AMM UniYFIWETH", - "symbol": "aammuniyfiweth" - }, - { - "id": "aave-amm-usdc", - "name": "Aave AMM USDC", - "symbol": "aammusdc" - }, - { - "id": "aave-amm-usdt", - "name": "Aave AMM USDT", - "symbol": "aammusdt" - }, - { - "id": "aave-amm-wbtc", - "name": "Aave AMM WBTC", - "symbol": "aammwbtc" - }, - { - "id": "aave-amm-weth", - "name": "Aave AMM WETH", - "symbol": "aammweth" - }, - { - "id": "aave-bal", - "name": "Aave BAL", - "symbol": "abal" - }, - { - "id": "aave-balancer-pool-token", - "name": "Aave Balancer Pool Token", - "symbol": "abpt" - }, - { - "id": "aave-bat", - "name": "Aave BAT", - "symbol": "abat" - }, - { - "id": "aave-bat-v1", - "name": "Aave BAT v1", - "symbol": "abat" - }, - { - "id": "aave-busd", - "name": "Aave BUSD", - "symbol": "abusd" - }, - { - "id": "aave-busd-v1", - "name": "Aave BUSD v1", - "symbol": "abusd" - }, - { - "id": "aave-crv", - "name": "Aave CRV", - "symbol": "acrv" - }, - { - "id": "aave-dai", - "name": "Aave DAI", - "symbol": "adai" - }, - { - "id": "aave-dai-v1", - "name": "Aave DAI v1", - "symbol": "adai" - }, - { - "id": "aave-enj", - "name": "Aave ENJ", - "symbol": "aenj" - }, - { - "id": "aave-enj-v1", - "name": "Aave ENJ v1", - "symbol": "aenj" - }, - { - "id": "aave-eth-v1", - "name": "Aave ETH v1", - "symbol": "aeth" - }, - { - "id": "aavegotchi", - "name": "Aavegotchi", - "symbol": "ghst" - }, - { - "id": "aavegotchi-alpha", - "name": "Aavegotchi ALPHA", - "symbol": "alpha" - }, - { - "id": "aavegotchi-fomo", - "name": "Aavegotchi FOMO", - "symbol": "fomo" - }, - { - "id": "aavegotchi-fud", - "name": "Aavegotchi FUD", - "symbol": "fud" - }, - { - "id": "aavegotchi-kek", - "name": "Aavegotchi KEK", - "symbol": "kek" - }, - { - "id": "aave-gusd", - "name": "Aave GUSD", - "symbol": "agusd" - }, - { - "id": "aave-interest-bearing-steth", - "name": "Aave Interest Bearing STETH", - "symbol": "asteth" - }, - { - "id": "aave-knc", - "name": "Aave KNC", - "symbol": "aknc" - }, - { - "id": "aave-knc-v1", - "name": "Aave KNC v1", - "symbol": "aknc" - }, - { - "id": "aave-link", - "name": "Aave LINK", - "symbol": "alink" - }, - { - "id": "aave-link-v1", - "name": "Aave LINK v1", - "symbol": "alink" - }, - { - "id": "aave-mana", - "name": "Aave MANA", - "symbol": "amana" - }, - { - "id": "aave-mana-v1", - "name": "Aave MANA v1", - "symbol": "amana" - }, - { - "id": "aave-mkr", - "name": "Aave MKR", - "symbol": "amkr" - }, - { - "id": "aave-mkr-v1", - "name": "Aave MKR v1", - "symbol": "amkr" - }, - { - "id": "aave-polygon-aave", - "name": "Aave Polygon AAVE", - "symbol": "amaave" - }, - { - "id": "aave-polygon-dai", - "name": "Aave Polygon DAI", - "symbol": "amdai" - }, - { - "id": "aave-polygon-usdc", - "name": "Aave Polygon USDC", - "symbol": "amusdc" - }, - { - "id": "aave-polygon-usdt", - "name": "Aave Polygon USDT", - "symbol": "amusdt" - }, - { - "id": "aave-polygon-wbtc", - "name": "Aave Polygon WBTC", - "symbol": "amwbtc" - }, - { - "id": "aave-polygon-weth", - "name": "Aave Polygon WETH", - "symbol": "amweth" - }, - { - "id": "aave-polygon-wmatic", - "name": "Aave Polygon WMATIC", - "symbol": "amwmatic" - }, - { - "id": "aave-rai", - "name": "Aave RAI", - "symbol": "arai" - }, - { - "id": "aave-ren", - "name": "Aave REN", - "symbol": "aren" - }, - { - "id": "aave-ren-v1", - "name": "Aave REN v1", - "symbol": "aren" - }, - { - "id": "aave-snx", - "name": "Aave SNX", - "symbol": "asnx" - }, - { - "id": "aave-snx-v1", - "name": "Aave SNX v1", - "symbol": "asnx" - }, - { - "id": "aave-stkgho", - "name": "Aave stkGHO", - "symbol": "stkgho" - }, - { - "id": "aave-susd", - "name": "Aave SUSD", - "symbol": "asusd" - }, - { - "id": "aave-susd-v1", - "name": "Aave SUSD v1", - "symbol": "asusd" - }, - { - "id": "aave-tusd", - "name": "Aave TUSD", - "symbol": "atusd" - }, - { - "id": "aave-tusd-v1", - "name": "Aave TUSD v1", - "symbol": "atusd" - }, - { - "id": "aave-uni", - "name": "Aave UNI", - "symbol": "auni" - }, - { - "id": "aave-usdc", - "name": "Aave v2 USDC", - "symbol": "ausdc" - }, - { - "id": "aave-usdc-v1", - "name": "Aave USDC v1", - "symbol": "ausdc" - }, - { - "id": "aave-usdt", - "name": "Aave USDT", - "symbol": "ausdt" - }, - { - "id": "aave-usdt-v1", - "name": "Aave USDT v1", - "symbol": "ausdt" - }, - { - "id": "aave-v3-1inch", - "name": "Aave v3 1INCH", - "symbol": "a1inch" - }, - { - "id": "aave-v3-aave", - "name": "Aave v3 AAVE", - "symbol": "aaave" - }, - { - "id": "aave-v3-ageur", - "name": "Aave v3 agEUR", - "symbol": "aageur" - }, - { - "id": "aave-v3-arb", - "name": "Aave v3 ARB", - "symbol": "aarb" - }, - { - "id": "aave-v3-bal", - "name": "Aave v3 BAL", - "symbol": "abal" - }, - { - "id": "aave-v3-btc-b", - "name": "Aave v3 BTC.b", - "symbol": "abtc.b" - }, - { - "id": "aave-v3-cbeth", - "name": "Aave v3 cbETH", - "symbol": "acbeth" - }, - { - "id": "aave-v3-crv", - "name": "Aave v3 CRV", - "symbol": "acrv" - }, - { - "id": "aave-v3-dai", - "name": "Aave v3 DAI", - "symbol": "adai" - }, - { - "id": "aave-v3-dpi", - "name": "Aave v3 DPI", - "symbol": "adpi" - }, - { - "id": "aave-v3-ens", - "name": "Aave v3 ENS", - "symbol": "aens" - }, - { - "id": "aave-v3-eure", - "name": "Aave v3 EURe", - "symbol": "aeure" - }, - { - "id": "aave-v3-eurs", - "name": "Aave v3 EURS", - "symbol": "aeurs" - }, - { - "id": "aave-v3-frax", - "name": "Aave v3 FRAX", - "symbol": "afrax" - }, - { - "id": "aave-v3-ghst", - "name": "Aave v3 GHST", - "symbol": "aghst" - }, - { - "id": "aave-v3-gno", - "name": "Aave v3 GNO", - "symbol": "agno" - }, - { - "id": "aave-v3-knc", - "name": "Aave v3 KNC", - "symbol": "aknc" - }, - { - "id": "aave-v3-ldo", - "name": "Aave v3 LDO", - "symbol": "aldo" - }, - { - "id": "aave-v3-link", - "name": "Aave v3 LINK", - "symbol": "alink" - }, - { - "id": "aave-v3-lusd", - "name": "Aave v3 LUSD", - "symbol": "alusd" - }, - { - "id": "aave-v3-mai", - "name": "Aave v3 MAI", - "symbol": "amai" - }, - { - "id": "aave-v3-maticx", - "name": "Aave v3 MaticX", - "symbol": "amaticx" - }, - { - "id": "aave-v3-metis", - "name": "Aave v3 Metis", - "symbol": "ametis" - }, - { - "id": "aave-v3-mkr", - "name": "Aave v3 MKR", - "symbol": "amkr" - }, - { - "id": "aave-v3-op", - "name": "Aave v3 OP", - "symbol": "aop" - }, - { - "id": "aave-v3-reth", - "name": "Aave v3 rETH", - "symbol": "areth" - }, - { - "id": "aave-v3-rpl", - "name": "Aave v3 RPL", - "symbol": "arpl" - }, - { - "id": "aave-v3-savax", - "name": "Aave v3 sAVAX", - "symbol": "asavax" - }, - { - "id": "aave-v3-sdai", - "name": "Aave v3 sDAI", - "symbol": "asdai" - }, - { - "id": "aave-v3-snx", - "name": "Aave v3 SNX", - "symbol": "asnx" - }, - { - "id": "aave-v3-stg", - "name": "Aave v3 STG", - "symbol": "astg" - }, - { - "id": "aave-v3-stmatic", - "name": "Aave v3 stMATIC", - "symbol": "astmatic" - }, - { - "id": "aave-v3-susd", - "name": "Aave v3 sUSD", - "symbol": "asusd" - }, - { - "id": "aave-v3-sushi", - "name": "Aave v3 SUSHI", - "symbol": "asushi" - }, - { - "id": "aave-v3-uni", - "name": "Aave v3 UNI", - "symbol": "auni" - }, - { - "id": "aave-v3-usdbc", - "name": "Aave v3 USDbC", - "symbol": "ausdbc" - }, - { - "id": "aave-v3-usdc", - "name": "Aave v3 USDC", - "symbol": "ausdc" - }, - { - "id": "aave-v3-usdc-e", - "name": "Aave v3 USDC.e", - "symbol": "ausdc.e" - }, - { - "id": "aave-v3-usdt", - "name": "Aave v3 USDT", - "symbol": "ausdt" - }, - { - "id": "aave-v3-wavax", - "name": "Aave v3 WAVAX", - "symbol": "awavax" - }, - { - "id": "aave-v3-wbtc", - "name": "Aave v3 WBTC", - "symbol": "awbtc" - }, - { - "id": "aave-v3-weth", - "name": "Aave v3 WETH", - "symbol": "aweth" - }, - { - "id": "aave-v3-wmatic", - "name": "Aave v3 WMATIC", - "symbol": "awmatic" - }, - { - "id": "aave-v3-wsteth", - "name": "Aave v3 wstETH", - "symbol": "awsteth" - }, - { - "id": "aave-wbtc", - "name": "Aave WBTC", - "symbol": "awbtc" - }, - { - "id": "aave-wbtc-v1", - "name": "Aave WBTC v1", - "symbol": "awbtc" - }, - { - "id": "aave-weth", - "name": "Aave WETH", - "symbol": "aweth" - }, - { - "id": "aave-xsushi", - "name": "Aave XSUSHI", - "symbol": "axsushi" - }, - { - "id": "aave-yfi", - "name": "Aave YFI", - "symbol": "ayfi" - }, - { - "id": "aave-yvault", - "name": "Aave yVault", - "symbol": "yvaave" - }, - { - "id": "aave-zrx", - "name": "Aave ZRX", - "symbol": "azrx" - }, - { - "id": "aave-zrx-v1", - "name": "Aave ZRX v1", - "symbol": "azrx" - }, - { - "id": "abachi-2", - "name": "Abachi", - "symbol": "abi" - }, - { - "id": "abble", - "name": "Abble", - "symbol": "aabl" - }, - { - "id": "abcmeta", - "name": "ABCMETA", - "symbol": "meta" - }, - { - "id": "abc-pos-pool", - "name": "ABC PoS Pool", - "symbol": "abc" - }, - { - "id": "abel-finance", - "name": "ABEL Finance", - "symbol": "abel" - }, - { - "id": "abelian", - "name": "Abelian", - "symbol": "abel" - }, - { - "id": "abey", - "name": "Abey", - "symbol": "abey" - }, - { - "id": "able-finance", - "name": "Able Finance", - "symbol": "able" - }, - { - "id": "aboat-token-2", - "name": "Aboat Token", - "symbol": "aboat" - }, - { - "id": "abond", - "name": "ApeBond", - "symbol": "abond" - }, - { - "id": "absolute-sync-token", - "name": "Absolute Sync", - "symbol": "ast" - }, - { - "id": "abyss-world", - "name": "Abyss World", - "symbol": "awt" - }, - { - "id": "acala", - "name": "Acala", - "symbol": "aca" - }, - { - "id": "acala-dollar-acala", - "name": "Acala Dollar (Acala)", - "symbol": "ausd" - }, - { - "id": "access-protocol", - "name": "Access Protocol", - "symbol": "acs" - }, - { - "id": "acent", - "name": "Acent", - "symbol": "ace" - }, - { - "id": "acetoken", - "name": "ACEToken", - "symbol": "ace" - }, - { - "id": "acet-token", - "name": "Acet", - "symbol": "act" - }, - { - "id": "achain", - "name": "Achain", - "symbol": "act" - }, - { - "id": "achi", - "name": "achi", - "symbol": "achi" - }, - { - "id": "achi-inu", - "name": "ACHI INU", - "symbol": "achi" - }, - { - "id": "acid", - "name": "Acid", - "symbol": "acid" - }, - { - "id": "ackchyually", - "name": "ackchyually", - "symbol": "actly" - }, - { - "id": "acknoledger", - "name": "AcknoLedger", - "symbol": "ack" - }, - { - "id": "acmfinance", - "name": "acmFinance", - "symbol": "acm" - }, - { - "id": "ac-milan-fan-token", - "name": "AC Milan Fan Token", - "symbol": "acm" - }, - { - "id": "acoconut", - "name": "ACoconut", - "symbol": "ac" - }, - { - "id": "acorn-protocol", - "name": "Acorn Protocol", - "symbol": "acn" - }, - { - "id": "acquire-fi", - "name": "Acquire.Fi", - "symbol": "acq" - }, - { - "id": "acria", - "name": "Acria.AI", - "symbol": "acria" - }, - { - "id": "acria-ai-aimarket", - "name": "Acria.AI AIMARKET", - "symbol": "aimarket" - }, - { - "id": "across-protocol", - "name": "Across Protocol", - "symbol": "acx" - }, - { - "id": "acryptos", - "name": "ACryptoS [OLD]", - "symbol": "acs" - }, - { - "id": "acryptos-2", - "name": "ACryptoS", - "symbol": "acs" - }, - { - "id": "acryptosi", - "name": "ACryptoSI", - "symbol": "acsi" - }, - { - "id": "actinium", - "name": "Actinium", - "symbol": "acm" - }, - { - "id": "action-coin", - "name": "Action Coin", - "symbol": "actn" - }, - { - "id": "acurast", - "name": "Acurast", - "symbol": "acu" - }, - { - "id": "acute-angle-cloud", - "name": "Double-A Chain", - "symbol": "aac" - }, - { - "id": "adacash", - "name": "ADAcash", - "symbol": "adacash" - }, - { - "id": "adadao", - "name": "ADADao", - "symbol": "adao" - }, - { - "id": "adadex", - "name": "Adadex", - "symbol": "adex" - }, - { - "id": "adamant", - "name": "Adamant", - "symbol": "addy" - }, - { - "id": "adamant-messenger", - "name": "ADAMANT Messenger", - "symbol": "adm" - }, - { - "id": "adanaspor-fan-token", - "name": "Adanaspor Fan Token", - "symbol": "adana" - }, - { - "id": "adapad", - "name": "ADAPad", - "symbol": "adapad" - }, - { - "id": "ada-peepos", - "name": "FREN", - "symbol": "fren" - }, - { - "id": "adappter-token", - "name": "Adappter", - "symbol": "adp" - }, - { - "id": "adapt3r-digital-treasury-bill-fund", - "name": "Adapt3r Digital Treasury Bill Fund", - "symbol": "tfbill" - }, - { - "id": "adaswap", - "name": "AdaSwap", - "symbol": "asw" - }, - { - "id": "ada-the-dog", - "name": "ADA the Dog", - "symbol": "ada" - }, - { - "id": "adax", - "name": "ADAX", - "symbol": "adax" - }, - { - "id": "adazoo", - "name": "ADAZOO", - "symbol": "zoo" - }, - { - "id": "add-finance", - "name": "Add Finance", - "symbol": "add" - }, - { - "id": "addy", - "name": "Addy", - "symbol": "addy" - }, - { - "id": "adex", - "name": "AdEx", - "symbol": "adx" - }, - { - "id": "adil-chain", - "name": "ADIL Chain", - "symbol": "adil" - }, - { - "id": "a-dog-in-the-matrix", - "name": "A DOG IN THE MATRIX", - "symbol": "matrix" - }, - { - "id": "ado-network", - "name": "ADO Protocol", - "symbol": "ado" - }, - { - "id": "adonis-2", - "name": "Adonis", - "symbol": "adon" - }, - { - "id": "adreward", - "name": "ADreward", - "symbol": "ad" - }, - { - "id": "adroverse", - "name": "Adroverse", - "symbol": "adr" - }, - { - "id": "adshares", - "name": "Adshares", - "symbol": "ads" - }, - { - "id": "adult-playground", - "name": "Adult Playground", - "symbol": "adult" - }, - { - "id": "adv3nture-xyz-gemstone", - "name": "Adv3nture.xyz Gemstone", - "symbol": "gem" - }, - { - "id": "adv3nture-xyz-gold", - "name": "Adv3nture.xyz Gold", - "symbol": "gold" - }, - { - "id": "advanced-united-continent", - "name": "Advanced United Continent", - "symbol": "auc" - }, - { - "id": "advantis", - "name": "Advantis", - "symbol": "advt" - }, - { - "id": "adventure-gold", - "name": "Adventure Gold", - "symbol": "agld" - }, - { - "id": "adventurer-gold", - "name": "Adventurer Gold", - "symbol": "gold" - }, - { - "id": "advertise-coin", - "name": "Advertise Coin", - "symbol": "adco" - }, - { - "id": "aeggs", - "name": "aEGGS", - "symbol": "aeggs" - }, - { - "id": "aegis", - "name": "Aegis", - "symbol": "ags" - }, - { - "id": "aegis-ai", - "name": "Aegis Ai", - "symbol": "aegis" - }, - { - "id": "aegis-token-f7934368-2fb3-4091-9edc-39283e87f55d", - "name": "Onsen Token", - "symbol": "on" - }, - { - "id": "aelf", - "name": "aelf", - "symbol": "elf" - }, - { - "id": "aelin", - "name": "Aelin", - "symbol": "aelin" - }, - { - "id": "aelysir", - "name": "Aelysir", - "symbol": "ael" - }, - { - "id": "aeon", - "name": "Aeon", - "symbol": "aeon" - }, - { - "id": "aeonodex", - "name": "AEONODEX", - "symbol": "aeonodex" - }, - { - "id": "aepos-network", - "name": "AePos Network", - "symbol": "aepos" - }, - { - "id": "aerarium-fi", - "name": "Aerarium Fi", - "symbol": "aera" - }, - { - "id": "aerdrop", - "name": "Aerdrop", - "symbol": "aer" - }, - { - "id": "aergo", - "name": "Aergo", - "symbol": "aergo" - }, - { - "id": "aerodrome-finance", - "name": "Aerodrome Finance", - "symbol": "aero" - }, - { - "id": "aeron", - "name": "Aeron", - "symbol": "arnx" - }, - { - "id": "aerovek-aviation", - "name": "Aerovek Aviation", - "symbol": "aero" - }, - { - "id": "aesirx", - "name": "AesirX", - "symbol": "aesirx" - }, - { - "id": "aet", - "name": "AET", - "symbol": "aet" - }, - { - "id": "aeternity", - "name": "Aeternity", - "symbol": "ae" - }, - { - "id": "aether-games", - "name": "Aether Games", - "symbol": "aeg" - }, - { - "id": "aethir", - "name": "Aethir", - "symbol": "ath" - }, - { - "id": "aeusd", - "name": "aeUSD", - "symbol": "aeusd" - }, - { - "id": "aevo-exchange", - "name": "Aevo", - "symbol": "aevo" - }, - { - "id": "aevum-ore", - "name": "Aevum", - "symbol": "aevum" - }, - { - "id": "aezora", - "name": "Azzure", - "symbol": "azr" - }, - { - "id": "afen-blockchain", - "name": "AFEN Blockchain", - "symbol": "afen" - }, - { - "id": "affinity", - "name": "Affinity", - "symbol": "afnty" - }, - { - "id": "affyn", - "name": "Affyn", - "symbol": "fyn" - }, - { - "id": "afin-coin", - "name": "Asian Fintech", - "symbol": "afin" - }, - { - "id": "afkdao", - "name": "AFKDAO", - "symbol": "afk" - }, - { - "id": "afk-trading-bot", - "name": "AFK Trading Bot", - "symbol": "afk" - }, - { - "id": "afreum", - "name": "Afreum", - "symbol": "afr" - }, - { - "id": "africarare", - "name": "Africarare", - "symbol": "ubu" - }, - { - "id": "afrix", - "name": "Afrix", - "symbol": "afx" - }, - { - "id": "afrostar", - "name": "Afrostar", - "symbol": "afro" - }, - { - "id": "aftermath-staked-sui", - "name": "Aftermath Staked SUI", - "symbol": "afsui" - }, - { - "id": "a-fund-baby", - "name": "A Fund Baby", - "symbol": "fund" - }, - { - "id": "afyonspor-fan-token", - "name": "Afyonspor Fan Token", - "symbol": "afyon" - }, - { - "id": "aga-carbon-credit", - "name": "AGA Carbon Credit", - "symbol": "agac" - }, - { - "id": "aga-carbon-rewards", - "name": "AGA Carbon Rewards", - "symbol": "acar" - }, - { - "id": "aga-rewards", - "name": "Edcoin", - "symbol": "edc" - }, - { - "id": "agatech", - "name": "Agatech", - "symbol": "agata" - }, - { - "id": "aga-token", - "name": "AGA", - "symbol": "aga" - }, - { - "id": "agave-token", - "name": "Agave", - "symbol": "agve" - }, - { - "id": "agenor", - "name": "Agenor", - "symbol": "age" - }, - { - "id": "a-gently-used-2001-honda", - "name": "A Gently Used 2001 Honda", - "symbol": "usedcar" - }, - { - "id": "a-gently-used-nokia-3310", - "name": "A Gently Used Nokia 3310", - "symbol": "usedphone" - }, - { - "id": "age-of-apes", - "name": "AGE OF APES", - "symbol": "apes" - }, - { - "id": "ageofgods", - "name": "AgeOfGods", - "symbol": "aog" - }, - { - "id": "ageur", - "name": "EURA", - "symbol": "eura" - }, - { - "id": "ageur-plenty-bridge", - "name": "agEUR (Plenty Bridge)", - "symbol": "egeur.e" - }, - { - "id": "agg", - "name": "AGG", - "symbol": "agg" - }, - { - "id": "agii", - "name": "AGII", - "symbol": "agii" - }, - { - "id": "agile", - "name": "Agile", - "symbol": "agl" - }, - { - "id": "agility", - "name": "Agility", - "symbol": "agi" - }, - { - "id": "agnus-ai", - "name": "Agnus AI", - "symbol": "agn" - }, - { - "id": "agoras-currency-of-tau", - "name": "Agoras: Currency of Tau", - "symbol": "agrs" - }, - { - "id": "agoric", - "name": "Agoric", - "symbol": "bld" - }, - { - "id": "agos", - "name": "AGOS", - "symbol": "agos" - }, - { - "id": "agrello", - "name": "Agrello", - "symbol": "dlt" - }, - { - "id": "agri", - "name": "Agri", - "symbol": "agri" - }, - { - "id": "agricoin", - "name": "Agricoin", - "symbol": "agn" - }, - { - "id": "agrinode", - "name": "AgriNode", - "symbol": "agn" - }, - { - "id": "agritech", - "name": "Agritech", - "symbol": "agt" - }, - { - "id": "agro-global", - "name": "Agro Global Token", - "symbol": "agro" - }, - { - "id": "ahatoken", - "name": "AhaToken", - "symbol": "aht" - }, - { - "id": "a-hunters-dream", - "name": "A Hunters Dream", - "symbol": "caw" - }, - { - "id": "aiakita", - "name": "AiAkita", - "symbol": "aia" - }, - { - "id": "aiakitax", - "name": "AiAkitaX", - "symbol": "aix" - }, - { - "id": "ai-analysis-token", - "name": "AI Analysis Token", - "symbol": "aiat" - }, - { - "id": "aibot", - "name": "Aibot", - "symbol": "aibot" - }, - { - "id": "aicb", - "name": "AICB", - "symbol": "aicb" - }, - { - "id": "aichain", - "name": "AICHAIN", - "symbol": "ait" - }, - { - "id": "ai-code", - "name": "AI CODE", - "symbol": "aicode" - }, - { - "id": "aicoin-2", - "name": "AICoin", - "symbol": "ai" - }, - { - "id": "ai-coinova", - "name": "AI Coinova", - "symbol": "aicn" - }, - { - "id": "ai-com", - "name": "AI.COM", - "symbol": "ai.com" - }, - { - "id": "ai-community", - "name": "AI Community", - "symbol": "ai" - }, - { - "id": "aicore", - "name": "AICORE", - "symbol": "aicore" - }, - { - "id": "aicrew", - "name": "AICrew", - "symbol": "aicr" - }, - { - "id": "aidi-finance-2", - "name": "Aidi Finance", - "symbol": "aidi" - }, - { - "id": "ai-dogemini", - "name": "AI DogeMini", - "symbol": "aidogemini" - }, - { - "id": "ai-dragon", - "name": "AI Dragon", - "symbol": "chatgpt" - }, - { - "id": "aiearn", - "name": "AIEarn", - "symbol": "aie" - }, - { - "id": "aienglish", - "name": "AIENGLISH", - "symbol": "aien" - }, - { - "id": "aifi-protocol", - "name": "AiFi Protocol", - "symbol": "aifi" - }, - { - "id": "ai-floki", - "name": "AI Floki", - "symbol": "aifloki" - }, - { - "id": "aigc-ordinals", - "name": "AIGC (Ordinals)", - "symbol": "aigc" - }, - { - "id": "a-i-genesis", - "name": "A.I Genesis", - "symbol": "aig" - }, - { - "id": "aigentx", - "name": "AIgentX", - "symbol": "aix" - }, - { - "id": "aihub", - "name": "AIHub", - "symbol": "aih" - }, - { - "id": "ai-inu", - "name": "AI INU", - "symbol": "aiinu" - }, - { - "id": "ailayer", - "name": "AiLayer", - "symbol": "aly" - }, - { - "id": "aimage", - "name": "AIMAGE", - "symbol": "mage" - }, - { - "id": "aimage-tools", - "name": "AiMage Tools", - "symbol": "aimage" - }, - { - "id": "aimalls", - "name": "AiMalls", - "symbol": "ait" - }, - { - "id": "aimbot", - "name": "Aimbot AI", - "symbol": "aimbot" - }, - { - "id": "aimedis-new", - "name": "Aimedis (NEW)", - "symbol": "aimx" - }, - { - "id": "aimee", - "name": "Aimee", - "symbol": "$aimee" - }, - { - "id": "ai-meta-club", - "name": "AI Meta Club", - "symbol": "amc" - }, - { - "id": "ainalysis", - "name": "AInalysis", - "symbol": "ail" - }, - { - "id": "ai-network", - "name": "AI Network", - "symbol": "ain" - }, - { - "id": "ains-domains", - "name": "Ains domains", - "symbol": "ains" - }, - { - "id": "ainu-token", - "name": "Ainu", - "symbol": "ainu" - }, - { - "id": "aion", - "name": "Aion", - "symbol": "aion" - }, - { - "id": "aioz-network", - "name": "AIOZ Network", - "symbol": "aioz" - }, - { - "id": "aipad", - "name": "AIPad", - "symbol": "aipad" - }, - { - "id": "ai-pin", - "name": "AI PIN", - "symbol": "ai" - }, - { - "id": "ai-power-grid", - "name": "AI Power Grid", - "symbol": "aipg" - }, - { - "id": "aiptp", - "name": "AiPTP", - "symbol": "atmt" - }, - { - "id": "air", - "name": "AIR", - "symbol": "air" - }, - { - "id": "airb", - "name": "AIRB", - "symbol": "airb" - }, - { - "id": "airbloc-protocol", - "name": "Airbloc", - "symbol": "abl" - }, - { - "id": "airealm-tech", - "name": "AiRealm Tech", - "symbol": "airm" - }, - { - "id": "airight", - "name": "aiRight", - "symbol": "airi" - }, - { - "id": "airnft-token", - "name": "AirNFT", - "symbol": "airt" - }, - { - "id": "airpuff", - "name": "Airpuff", - "symbol": "apuff" - }, - { - "id": "airswap", - "name": "AirSwap", - "symbol": "ast" - }, - { - "id": "airtnt", - "name": "AirTnT", - "symbol": "airtnt" - }, - { - "id": "airtor-protocol", - "name": "AirTor Protocol", - "symbol": "ator" - }, - { - "id": "aishiba", - "name": "AiShiba", - "symbol": "shibai" - }, - { - "id": "aisignal", - "name": "AISignal", - "symbol": "aisig" - }, - { - "id": "aisociety", - "name": "AISociety", - "symbol": "ais" - }, - { - "id": "ai-supreme", - "name": "AI Supreme", - "symbol": "aisp" - }, - { - "id": "ai-surf", - "name": "AI Surf", - "symbol": "aisc" - }, - { - "id": "aiswap", - "name": "AISwap", - "symbol": "aiswap" - }, - { - "id": "ai-technology", - "name": "AI Technology", - "symbol": "aitek" - }, - { - "id": "aitk", - "name": "AITK", - "symbol": "aitk" - }, - { - "id": "aitom", - "name": "AITom", - "symbol": "aitom" - }, - { - "id": "ait-protocol", - "name": "AIT Protocol", - "symbol": "ait" - }, - { - "id": "ai-trader", - "name": "AI Trader", - "symbol": "ait" - }, - { - "id": "aitravis", - "name": "AITravis", - "symbol": "tai" - }, - { - "id": "aittcoin", - "name": "Aittcoin", - "symbol": "aitt" - }, - { - "id": "ai-waifu", - "name": "AI Waifu", - "symbol": "$wai" - }, - { - "id": "aiwork", - "name": "AiWork", - "symbol": "awo" - }, - { - "id": "ai-x", - "name": "AI-X", - "symbol": "x" - }, - { - "id": "ajna-protocol", - "name": "Ajna Protocol", - "symbol": "ajna" - }, - { - "id": "ajuna-network", - "name": "Ajuna Network", - "symbol": "baju" - }, - { - "id": "akamaru", - "name": "Akamaru", - "symbol": "aku" - }, - { - "id": "akash-network", - "name": "Akash Network", - "symbol": "akt" - }, - { - "id": "akino-inu", - "name": "Akino INU", - "symbol": "aki" - }, - { - "id": "aki-protocol", - "name": "Aki Network", - "symbol": "aki" - }, - { - "id": "akitaaaaaa", - "name": "AKITAAAAAA", - "symbol": "aaaaaa" - }, - { - "id": "akita-inu", - "name": "Akita Inu", - "symbol": "akita" - }, - { - "id": "akita-inu-2", - "name": "Akita Inu", - "symbol": "akt" - }, - { - "id": "akita-inu-3", - "name": "Akita Inu", - "symbol": "akita" - }, - { - "id": "akita-inu-asa", - "name": "Akita Inu ASA", - "symbol": "akta" - }, - { - "id": "akitavax", - "name": "Akitavax", - "symbol": "akitax" - }, - { - "id": "akiverse-governance-token", - "name": "Akiverse Governance Token", - "symbol": "akv" - }, - { - "id": "akropolis", - "name": "Akropolis", - "symbol": "akro" - }, - { - "id": "akropolis-delphi", - "name": "Delphi", - "symbol": "adel" - }, - { - "id": "aktio", - "name": "Aktio", - "symbol": "aktio" - }, - { - "id": "aktionariat-alan-frei-company-tokenized-shares", - "name": "Aktionariat Alan Frei Company Tokenized Shares", - "symbol": "afs" - }, - { - "id": "aktionariat-art-leasing-and-invest-ag-tokenized-shares", - "name": "Aktionariat Art Leasing And Invest AG Tokenized Shares", - "symbol": "arts" - }, - { - "id": "aktionariat-axelra-early-stage-ag-tokenized-shares", - "name": "Aktionariat Axelra Early Stage AG Tokenized Shares", - "symbol": "axras" - }, - { - "id": "aktionariat-ayurveda-ag-tokenized-shares", - "name": "Aktionariat AyurVeda AG Tokenized Shares", - "symbol": "veda" - }, - { - "id": "aktionariat-bee-digital-growth-ag-tokenized-shares", - "name": "Aktionariat BEE Digital Growth AG Tokenized Shares", - "symbol": "bees" - }, - { - "id": "aktionariat-boss-info-ag-tokenized-shares", - "name": "Aktionariat Boss Info AG Tokenized Shares", - "symbol": "boss" - }, - { - "id": "aktionariat-carnault-ag-tokenized-shares", - "name": "Aktionariat Carnault AG Tokenized Shares", - "symbol": "cas" - }, - { - "id": "aktionariat-clever-forever-education-ag-tokenized-shares", - "name": "Aktionariat Clever Forever Education AG Tokenized Shares", - "symbol": "cfes" - }, - { - "id": "aktionariat-ddc-schweiz-ag-tokenized-shares", - "name": "Aktionariat DDC Schweiz AG Tokenized Shares", - "symbol": "ddcs" - }, - { - "id": "aktionariat-ehc-kloten-sport-ag-tokenized-shares", - "name": "Aktionariat EHC Kloten Sport AG Tokenized Shares", - "symbol": "ehck" - }, - { - "id": "aktionariat-fieldoo-ag-tokenized-shares", - "name": "Aktionariat Fieldoo AG Tokenized Shares", - "symbol": "fdos" - }, - { - "id": "aktionariat-finelli-studios-ag-tokenized-shares", - "name": "Aktionariat Finelli Studios AG Tokenized Shares", - "symbol": "fnls" - }, - { - "id": "aktionariat-green-consensus-ag-tokenized-shares", - "name": "Aktionariat Green Consensus AG Tokenized Shares", - "symbol": "dgcs" - }, - { - "id": "aktionariat-green-monkey-club-ag-tokenized-shares", - "name": "Aktionariat Green Monkey Club AG Tokenized Shares", - "symbol": "gmcs" - }, - { - "id": "aktionariat-outlawz-food-ag-tokenized-shares", - "name": "Aktionariat Outlawz Food AG Tokenized Shares", - "symbol": "vegs" - }, - { - "id": "aktionariat-parknsleep-ag-tokenized-shares", - "name": "Aktionariat Parknsleep AG Tokenized Shares", - "symbol": "pns" - }, - { - "id": "aktionariat-pension-dynamics-ag-tokenized-shares", - "name": "Aktionariat Pension Dynamics AG Tokenized Shares", - "symbol": "pds" - }, - { - "id": "aktionariat-realunit-schweiz-ag-tokenized-shares", - "name": "Aktionariat RealUnit Schweiz AG Tokenized Shares", - "symbol": "realu" - }, - { - "id": "aktionariat-servicehunter-ag-tokenized-shares", - "name": "Aktionariat ServiceHunter AG Tokenized Shares", - "symbol": "dqts" - }, - { - "id": "aktionariat-sia-swiss-influencer-award-ag-tokenized-shares", - "name": "Aktionariat SIA Swiss Influencer Award AG Tokenized Shares", - "symbol": "sias" - }, - { - "id": "aktionariat-sportsparadise-switzerland-ag-tokenized-shares", - "name": "Aktionariat Sportsparadise Switzerland AG Tokenized Shares", - "symbol": "spos" - }, - { - "id": "aktionariat-tbo-co-comon-accelerator-holding-ag-tokenized-shares", - "name": "Aktionariat TBo c/o Comon Accelerator Holding AG Tokenized Shares", - "symbol": "tbos" - }, - { - "id": "aktionariat-technologies-of-understanding-ag-tokenized-shares", - "name": "Aktionariat Technologies of Understanding AG Tokenized Shares", - "symbol": "vids" - }, - { - "id": "aktionariat-tv-plus-ag-tokenized-shares", - "name": "Aktionariat TV PLUS AG Tokenized Shares", - "symbol": "tvpls" - }, - { - "id": "aktionariat-vereign-ag-tokenized-shares", - "name": "Aktionariat Vereign AG Tokenized Shares", - "symbol": "vrgns" - }, - { - "id": "aladdin-dao", - "name": "Aladdin DAO", - "symbol": "ald" - }, - { - "id": "aladdin-sdcrv", - "name": "Aladdin sdCRV", - "symbol": "asdcrv" - }, - { - "id": "alan-musk", - "name": "Alan Musk", - "symbol": "musk" - }, - { - "id": "alan-the-alien", - "name": "Alan the Alien", - "symbol": "alan" - }, - { - "id": "alanyaspor-fan-token", - "name": "Alanyaspor Fan Token", - "symbol": "ala" - }, - { - "id": "alaska-gold-rush", - "name": "Alaska Gold Rush", - "symbol": "carat" - }, - { - "id": "alaya", - "name": "Alaya", - "symbol": "atp" - }, - { - "id": "albedo", - "name": "ALBEDO", - "symbol": "albedo" - }, - { - "id": "albemarle-meme-token", - "name": "Albemarle Meme Token", - "symbol": "albemarle" - }, - { - "id": "albert", - "name": "Albert", - "symbol": "albert" - }, - { - "id": "alchemist", - "name": "Alchemist", - "symbol": "mist" - }, - { - "id": "alchemix", - "name": "Alchemix", - "symbol": "alcx" - }, - { - "id": "alchemix-eth", - "name": "Alchemix ETH", - "symbol": "aleth" - }, - { - "id": "alchemix-usd", - "name": "Alchemix USD", - "symbol": "alusd" - }, - { - "id": "alchemy-pay", - "name": "Alchemy Pay", - "symbol": "ach" - }, - { - "id": "aldrin", - "name": "Aldrin", - "symbol": "rin" - }, - { - "id": "alea", - "name": "Alea", - "symbol": "alea" - }, - { - "id": "aleph", - "name": "Aleph.im", - "symbol": "aleph" - }, - { - "id": "aleph-im-wormhole", - "name": "Aleph.im (Wormhole)", - "symbol": "aleph" - }, - { - "id": "alephium", - "name": "Alephium", - "symbol": "alph" - }, - { - "id": "aleph-zero", - "name": "Aleph Zero", - "symbol": "azero" - }, - { - "id": "alethea-artificial-liquid-intelligence-token", - "name": "Artificial Liquid Intelligence", - "symbol": "ali" - }, - { - "id": "alex-b20", - "name": "ALEX $B20", - "symbol": "$b20" - }, - { - "id": "alexgo", - "name": "ALEX Lab", - "symbol": "alex" - }, - { - "id": "alex-wrapped-usdt", - "name": "Bridged Tether (Alex Bridge)", - "symbol": "susdt" - }, - { - "id": "alfa-romeo-racing-orlen-fan-token", - "name": "Alfa Romeo Racing ORLEN Fan Token", - "symbol": "sauber" - }, - { - "id": "alfa-society", - "name": "alfa.society", - "symbol": "alfa" - }, - { - "id": "alfprotocol", - "name": "AlfProtocol", - "symbol": "alf" - }, - { - "id": "algebra", - "name": "Algebra", - "symbol": "algb" - }, - { - "id": "algo-casino-chips", - "name": "Algo-Casino Chips", - "symbol": "chip" - }, - { - "id": "algomint", - "name": "Algomint", - "symbol": "gomint" - }, - { - "id": "algorand", - "name": "Algorand", - "symbol": "algo" - }, - { - "id": "algory", - "name": "Algory", - "symbol": "alg" - }, - { - "id": "algostable", - "name": "AlgoStable", - "symbol": "stbl" - }, - { - "id": "algostake", - "name": "AlgoStake", - "symbol": "stke" - }, - { - "id": "alibabacoin", - "name": "ABBC", - "symbol": "abbc" - }, - { - "id": "alibaba-tokenized-stock-defichain", - "name": "Alibaba Tokenized Stock Defichain", - "symbol": "dbaba" - }, - { - "id": "alice-ai", - "name": "Alice AI", - "symbol": "alice" - }, - { - "id": "alicenet", - "name": "AliceNet", - "symbol": "alca" - }, - { - "id": "alien", - "name": "Alien", - "symbol": "alien" - }, - { - "id": "alienb", - "name": "AlienB", - "symbol": "alienb" - }, - { - "id": "alienbase", - "name": "AlienBase", - "symbol": "alb" - }, - { - "id": "alien-chicken-farm", - "name": "Alien Chicken Farm", - "symbol": "acf" - }, - { - "id": "alienfi", - "name": "AlienFi", - "symbol": "alien" - }, - { - "id": "alien-finance", - "name": "Alien Finance", - "symbol": "alien" - }, - { - "id": "alienform", - "name": "AlienForm", - "symbol": "a4m" - }, - { - "id": "alien-milady-fumo", - "name": "Alien Milady Fumo", - "symbol": "fumo" - }, - { - "id": "alienswap", - "name": "AlienSwap", - "symbol": "alien" - }, - { - "id": "alien-worlds", - "name": "Alien Worlds", - "symbol": "tlm" - }, - { - "id": "alif-coin", - "name": "AliF Coin", - "symbol": "alif" - }, - { - "id": "alink-ai", - "name": "ALINK AI", - "symbol": "alink" - }, - { - "id": "alita", - "name": "Alita", - "symbol": "ali" - }, - { - "id": "alita-2", - "name": "ALITA", - "symbol": "alme" - }, - { - "id": "alitaai", - "name": "AlitaAI", - "symbol": "alita" - }, - { - "id": "alitas", - "name": "Alitas", - "symbol": "alt" - }, - { - "id": "alium-finance", - "name": "Alium Finance", - "symbol": "alm" - }, - { - "id": "alkimi", - "name": "Alkimi", - "symbol": "$ads" - }, - { - "id": "all-art", - "name": "ALL.ART", - "symbol": "aart" - }, - { - "id": "allbridge", - "name": "Allbridge", - "symbol": "abr" - }, - { - "id": "all-coins-yield-capital", - "name": "All Coins Yield Capital", - "symbol": "acyc" - }, - { - "id": "alldomains", - "name": "AllDomains", - "symbol": "all" - }, - { - "id": "allianceblock-nexera", - "name": "AllianceBlock Nexera", - "symbol": "nxra" - }, - { - "id": "alliance-fan-token", - "name": "Alliance Fan Token", - "symbol": "all" - }, - { - "id": "alliance-x-trading", - "name": "Alliance X Trading", - "symbol": "axt" - }, - { - "id": "all-in", - "name": "All In", - "symbol": "allin" - }, - { - "id": "all-in-gpt", - "name": "All In GPT", - "symbol": "aigpt" - }, - { - "id": "all-in-one-wallet", - "name": "All In One Wallet", - "symbol": "aio" - }, - { - "id": "allium-finance", - "name": "Allium Finance", - "symbol": "alm" - }, - { - "id": "allpaycoin", - "name": "ALLPAYCOIN", - "symbol": "apcg" - }, - { - "id": "allsafe", - "name": "AllSafe", - "symbol": "asafe" - }, - { - "id": "all-street-bets", - "name": "All Street Bets", - "symbol": "bets" - }, - { - "id": "alltoscan", - "name": "Alltoscan", - "symbol": "ats" - }, - { - "id": "ally", - "name": "Ally", - "symbol": "aly" - }, - { - "id": "all-your-base", - "name": "All Your Base", - "symbol": "yobase" - }, - { - "id": "all-your-base-2", - "name": "All Your Base", - "symbol": "ayb" - }, - { - "id": "almira-wallet", - "name": "Almira Wallet", - "symbol": "almr" - }, - { - "id": "alongside-crypto-market-index", - "name": "Alongside Crypto Market Index", - "symbol": "amkt" - }, - { - "id": "alon-mars", - "name": "Alon Mars", - "symbol": "alonmars" - }, - { - "id": "alpaca", - "name": "Alpaca City", - "symbol": "alpa" - }, - { - "id": "alpaca-finance", - "name": "Alpaca Finance", - "symbol": "alpaca" - }, - { - "id": "alpha-2", - "name": "ALPHA", - "symbol": "alpha" - }, - { - "id": "alpha-ai", - "name": "Alpha Ai", - "symbol": "alpha ai" - }, - { - "id": "alphabet", - "name": "Alphabet", - "symbol": "alt" - }, - { - "id": "alphabet-erc404", - "name": "Alphabet", - "symbol": "alphabet" - }, - { - "id": "alpha-bot-calls", - "name": "Alpha Bot Calls", - "symbol": "abc" - }, - { - "id": "alphabyte", - "name": "ALPHABYTE", - "symbol": "$alpha" - }, - { - "id": "alphacoin", - "name": "Alpha Coin", - "symbol": "alpha" - }, - { - "id": "alpha-finance", - "name": "Stella", - "symbol": "alpha" - }, - { - "id": "alpha-gardeners", - "name": "Alpha Gardeners", - "symbol": "ag" - }, - { - "id": "alphai", - "name": "alphAI", - "symbol": "\u03b1ai" - }, - { - "id": "alphakek-ai", - "name": "AlphaKEK.AI", - "symbol": "aikek" - }, - { - "id": "alphanova", - "name": "AlphaNova", - "symbol": "anva" - }, - { - "id": "alpha-quark-token", - "name": "Alpha Quark", - "symbol": "aqt" - }, - { - "id": "alpha-rabbit", - "name": "Alpha Rabbit", - "symbol": "arabbit" - }, - { - "id": "alpha-radar-bot", - "name": "Alpha Radar AI", - "symbol": "arbot" - }, - { - "id": "alpharushai", - "name": "AlphaRushAI", - "symbol": "rushai" - }, - { - "id": "alphascan", - "name": "AlphaScan AI", - "symbol": "ascn" - }, - { - "id": "alpha-shards", - "name": "Alpha Shards", - "symbol": "alpha" - }, - { - "id": "alpha-shares-v2", - "name": "Alpha Shares V2", - "symbol": "$alpha" - }, - { - "id": "alphr", - "name": "Alphr", - "symbol": "alphr" - }, - { - "id": "alpine", - "name": "Alpine", - "symbol": "alp" - }, - { - "id": "alpine-f1-team-fan-token", - "name": "Alpine F1 Team Fan Token", - "symbol": "alpine" - }, - { - "id": "altair", - "name": "Altair", - "symbol": "air" - }, - { - "id": "altava", - "name": "ALTAVA", - "symbol": "tava" - }, - { - "id": "altbase", - "name": "Altbase", - "symbol": "altb" - }, - { - "id": "altctrl", - "name": "AltCTRL", - "symbol": "ctrl" - }, - { - "id": "alter", - "name": "Alter", - "symbol": "alter" - }, - { - "id": "altered-state-token", - "name": "Altered State Machine", - "symbol": "asto" - }, - { - "id": "alterna-network", - "name": "Alterna Network", - "symbol": "altn" - }, - { - "id": "altfi", - "name": "AltFi", - "symbol": "alt" - }, - { - "id": "altfins", - "name": "altFINS", - "symbol": "afins" - }, - { - "id": "althea", - "name": "ALTHEA", - "symbol": "althea" - }, - { - "id": "altitude", - "name": "Altitude", - "symbol": "altd" - }, - { - "id": "altlayer", - "name": "AltLayer", - "symbol": "alt" - }, - { - "id": "alt-markets", - "name": "Alt Markets", - "symbol": "amx" - }, - { - "id": "altsignals", - "name": "AltSignals", - "symbol": "asi" - }, - { - "id": "altura", - "name": "Altura", - "symbol": "alu" - }, - { - "id": "aluna", - "name": "Aluna", - "symbol": "aln" - }, - { - "id": "alva", - "name": "ALVA", - "symbol": "aa" - }, - { - "id": "alvara-protocol", - "name": "Alvara Protocol", - "symbol": "alva" - }, - { - "id": "alvey-chain", - "name": "Alvey Chain", - "symbol": "walv" - }, - { - "id": "amar-token", - "name": "Amar Token", - "symbol": "amar" - }, - { - "id": "amasa", - "name": "Amasa", - "symbol": "amas" - }, - { - "id": "amateras", - "name": "Amateras", - "symbol": "amt" - }, - { - "id": "amaterasufi-izanagi", - "name": "AmaterasuFi Izanagi", - "symbol": "iza" - }, - { - "id": "amaterasu-omikami", - "name": "AMATERASU OMIKAMI", - "symbol": "omikami" - }, - { - "id": "amaurot", - "name": "AMAUROT", - "symbol": "ama" - }, - { - "id": "amax-network", - "name": "AMAX Network", - "symbol": "amax" - }, - { - "id": "amazewallet", - "name": "AmazeToken", - "symbol": "amt" - }, - { - "id": "amazingteamdao", - "name": "AmazingTeamDAO", - "symbol": "amazingteam" - }, - { - "id": "amazon-tokenized-stock-defichain", - "name": "Amazon Tokenized Stock Defichain", - "symbol": "damzn" - }, - { - "id": "amazy", - "name": "Amazy", - "symbol": "azy" - }, - { - "id": "ambbi", - "name": "AMBBi (Ordinals)", - "symbol": "amb" - }, - { - "id": "amber", - "name": "AirDAO", - "symbol": "amb" - }, - { - "id": "amberdao", - "name": "AmberDAO", - "symbol": "amber" - }, - { - "id": "ambire-wallet", - "name": "Ambire Wallet", - "symbol": "wallet" - }, - { - "id": "ambit-finance", - "name": "Ambit Finance", - "symbol": "ambt" - }, - { - "id": "ambit-usd", - "name": "Ambit USD", - "symbol": "ausd" - }, - { - "id": "ambo", - "name": "AMBO", - "symbol": "ambo" - }, - { - "id": "ambra", - "name": "Ambra", - "symbol": "ambr" - }, - { - "id": "amepay", - "name": "AME Chain", - "symbol": "ame" - }, - { - "id": "american-shiba", - "name": "American Shiba", - "symbol": "ushiba" - }, - { - "id": "amino", - "name": "Amino", - "symbol": "$amo" - }, - { - "id": "ammx", - "name": "AMMX", - "symbol": "ammx" - }, - { - "id": "ammyi-coin", - "name": "AMMYI Coin", - "symbol": "ami" - }, - { - "id": "amnis-aptos", - "name": "Amnis Aptos", - "symbol": "amapt" - }, - { - "id": "amnis-staked-aptos-coin", - "name": "Amnis Staked Aptos Coin", - "symbol": "stapt" - }, - { - "id": "amo", - "name": "AMO Coin", - "symbol": "amo" - }, - { - "id": "amond", - "name": "AmonD", - "symbol": "amon" - }, - { - "id": "amperechain", - "name": "AmpereChain", - "symbol": "ampere" - }, - { - "id": "ampleforth", - "name": "Ampleforth", - "symbol": "ampl" - }, - { - "id": "ampleforth-governance-token", - "name": "Ampleforth Governance", - "symbol": "forth" - }, - { - "id": "amplifi-dao", - "name": "AmpliFi DAO", - "symbol": "agg" - }, - { - "id": "amp-token", - "name": "Amp", - "symbol": "amp" - }, - { - "id": "amulet-protocol", - "name": "Amulet Protocol", - "symbol": "amu" - }, - { - "id": "amulet-staked-sol", - "name": "Amulet Staked SOL", - "symbol": "amtsol" - }, - { - "id": "anagata", - "name": "Anagata", - "symbol": "aha" - }, - { - "id": "analos", - "name": "analoS", - "symbol": "analos" - }, - { - "id": "analysoor", - "name": "Analysoor", - "symbol": "zero" - }, - { - "id": "anarchy", - "name": "Anarchy", - "symbol": "anarchy" - }, - { - "id": "anchored-coins-chf", - "name": "Anchored Coins ACHF", - "symbol": "achf" - }, - { - "id": "anchored-coins-eur", - "name": "Anchored Coins AEUR", - "symbol": "aeur" - }, - { - "id": "anchor-protocol", - "name": "Anchor Protocol", - "symbol": "anc" - }, - { - "id": "anchorswap", - "name": "AnchorSwap", - "symbol": "anchor" - }, - { - "id": "ancient-world", - "name": "Ancient World", - "symbol": "tai" - }, - { - "id": "andrea-von-speed", - "name": "Andrea Von Speed", - "symbol": "vonspeed" - }, - { - "id": "andromeda-2", - "name": "Andromeda", - "symbol": "andr" - }, - { - "id": "anduschain", - "name": "Anduschain", - "symbol": "deb" - }, - { - "id": "andy", - "name": "Andy", - "symbol": "andy" - }, - { - "id": "andy-bsc", - "name": "Andy Bsc", - "symbol": "andy" - }, - { - "id": "andyerc", - "name": "AndyBlast", - "symbol": "andy" - }, - { - "id": "andy-on-base", - "name": "Andy", - "symbol": "andy" - }, - { - "id": "andy-on-sol", - "name": "Andy on SOL", - "symbol": "andy" - }, - { - "id": "andy-the-wisguy", - "name": "ANDY the Wisguy", - "symbol": "andy" - }, - { - "id": "angle-protocol", - "name": "ANGLE", - "symbol": "angle" - }, - { - "id": "angle-staked-agusd", - "name": "Angle Staked USDA", - "symbol": "stusd" - }, - { - "id": "angle-usd", - "name": "USDA", - "symbol": "usda" - }, - { - "id": "angola", - "name": "Angola", - "symbol": "agla" - }, - { - "id": "angryb", - "name": "Angryb", - "symbol": "anb" - }, - { - "id": "angry-birds", - "name": "Angry Birds", - "symbol": "brd" - }, - { - "id": "angry-bulls-club", - "name": "Angry Bulls Club", - "symbol": "abc" - }, - { - "id": "angry-doge", - "name": "Angry Doge", - "symbol": "anfd" - }, - { - "id": "anima", - "name": "ANIMA", - "symbol": "anima" - }, - { - "id": "animal-army", - "name": "Animal army", - "symbol": "animal" - }, - { - "id": "animal-concerts-token", - "name": "Animal Concerts", - "symbol": "anml" - }, - { - "id": "animalfam", - "name": "AnimalFam", - "symbol": "totofo" - }, - { - "id": "animalia", - "name": "Animalia", - "symbol": "anim" - }, - { - "id": "anime-base", - "name": "Anime", - "symbol": "anime" - }, - { - "id": "animeswap", - "name": "AnimeSwap", - "symbol": "ani" - }, - { - "id": "anime-token", - "name": "Anime", - "symbol": "ani" - }, - { - "id": "anita-max-wynn", - "name": "Anita Max Wynn", - "symbol": "wynn" - }, - { - "id": "aniverse", - "name": "Aniverse", - "symbol": "anv" - }, - { - "id": "aniverse-metaverse", - "name": "Aniverse Metaverse", - "symbol": "aniv" - }, - { - "id": "ankaragucu-fan-token", - "name": "Ankarag\u00fcc\u00fc Fan Token", - "symbol": "anka" - }, - { - "id": "ankr", - "name": "Ankr Network", - "symbol": "ankr" - }, - { - "id": "ankreth", - "name": "Ankr Staked ETH", - "symbol": "ankreth" - }, - { - "id": "ankr-reward-bearing-ftm", - "name": "Ankr Staked FTM", - "symbol": "ankrftm" - }, - { - "id": "ankr-reward-earning-matic", - "name": "Ankr Staked MATIC", - "symbol": "ankrmatic" - }, - { - "id": "ankr-staked-bnb", - "name": "Ankr Staked BNB", - "symbol": "ankrbnb" - }, - { - "id": "anokas-network", - "name": "Anokas Network", - "symbol": "anok" - }, - { - "id": "anomus-coin", - "name": "Anomus Coin", - "symbol": "anom" - }, - { - "id": "anon", - "name": "ANON", - "symbol": "anon" - }, - { - "id": "anonbot", - "name": "Anonbot", - "symbol": "anonbot" - }, - { - "id": "anon-erc404", - "name": "Anon", - "symbol": "anon" - }, - { - "id": "anonify", - "name": "Anonify", - "symbol": "oni" - }, - { - "id": "anon-inu", - "name": "Anon Inu", - "symbol": "ainu" - }, - { - "id": "anontech", - "name": "AnonTech", - "symbol": "atec" - }, - { - "id": "anon-ton", - "name": "ANON", - "symbol": "anon" - }, - { - "id": "anon-web3", - "name": "Anon Web3", - "symbol": "aw3" - }, - { - "id": "anonym-chain", - "name": "Anonym Chain", - "symbol": "anc" - }, - { - "id": "another-world", - "name": "Another World", - "symbol": "awm" - }, - { - "id": "anrkey-x", - "name": "AnRKey X", - "symbol": "$anrx" - }, - { - "id": "ansem-s-cat", - "name": "Ansem's Cat", - "symbol": "hobbes" - }, - { - "id": "ansom", - "name": "ansom", - "symbol": "ansom" - }, - { - "id": "answer-governance", - "name": "Answer Governance", - "symbol": "agov" - }, - { - "id": "antara-raiders-royals", - "name": "Antara Token", - "symbol": "antt" - }, - { - "id": "ante-casino", - "name": "Ante Casino", - "symbol": "chance" - }, - { - "id": "antfarm-governance-token", - "name": "Antfarm Governance Token", - "symbol": "agt" - }, - { - "id": "antfarm-token", - "name": "Antfarm Token", - "symbol": "atf" - }, - { - "id": "antibot", - "name": "AntiBot", - "symbol": "atb" - }, - { - "id": "anti-global-warming-token", - "name": "ANTI GLOBAL WARMING TOKEN", - "symbol": "$agw" - }, - { - "id": "antimatter", - "name": "Bitune", - "symbol": "tune" - }, - { - "id": "antmons", - "name": "Antmons", - "symbol": "ams" - }, - { - "id": "antnetworx", - "name": "AntNetworX (OLD)", - "symbol": "antx" - }, - { - "id": "antofy", - "name": "Antofy", - "symbol": "abn" - }, - { - "id": "anty-the-anteater", - "name": "Anty the Anteater", - "symbol": "anty" - }, - { - "id": "anubit", - "name": "Anubit", - "symbol": "anb" - }, - { - "id": "any-inu", - "name": "Any Inu", - "symbol": "ai" - }, - { - "id": "anypad", - "name": "Anypad", - "symbol": "apad" - }, - { - "id": "anyswap", - "name": "Anyswap", - "symbol": "any" - }, - { - "id": "anzen-private-credit", - "name": "Anzen Private Credit", - "symbol": "pct" - }, - { - "id": "aok", - "name": "AOK", - "symbol": "aok" - }, - { - "id": "apass-coin", - "name": "APass Coin", - "symbol": "apc" - }, - { - "id": "ape-2", - "name": "APE", - "symbol": "ape" - }, - { - "id": "apecoin", - "name": "ApeCoin", - "symbol": "ape" - }, - { - "id": "aped", - "name": "Aped", - "symbol": "aped" - }, - { - "id": "aped-2", - "name": "Aped", - "symbol": "aped" - }, - { - "id": "apedao", - "name": "ApeDAO", - "symbol": "apein" - }, - { - "id": "apedoge", - "name": "Apedoge", - "symbol": "aped" - }, - { - "id": "apegpt", - "name": "ApeGPT", - "symbol": "apegpt" - }, - { - "id": "ape-in", - "name": "Ape In", - "symbol": "apein" - }, - { - "id": "ape_in_records", - "name": "Ape In Records", - "symbol": "air" - }, - { - "id": "apeironnft", - "name": "Apeiron", - "symbol": "aprs" - }, - { - "id": "apenft", - "name": "APENFT", - "symbol": "nft" - }, - { - "id": "apepudgyclonexazukimilady", - "name": "ApePudgyCloneXAzukiMilady", - "symbol": "nft" - }, - { - "id": "apes", - "name": "APES", - "symbol": "apes" - }, - { - "id": "apes-go-bananas", - "name": "Apes Go Bananas", - "symbol": "agb" - }, - { - "id": "apeswap-finance", - "name": "ApeSwap", - "symbol": "banana" - }, - { - "id": "apewifhat", - "name": "ApeWifHat", - "symbol": "apewifhat" - }, - { - "id": "apexcoin-global", - "name": "Apex Coin", - "symbol": "acx" - }, - { - "id": "apexit-finance", - "name": "ApeXit Finance", - "symbol": "apex" - }, - { - "id": "apex-token-2", - "name": "ApeX", - "symbol": "apex" - }, - { - "id": "apf-coin", - "name": "APF coin", - "symbol": "apfc" - }, - { - "id": "api3", - "name": "API3", - "symbol": "api3" - }, - { - "id": "apidae", - "name": "Apidae", - "symbol": "apt" - }, - { - "id": "aping", - "name": "aping", - "symbol": "aping" - }, - { - "id": "apin-pulse", - "name": "Apin Pulse", - "symbol": "apc" - }, - { - "id": "apis-finance", - "name": "Apis finance", - "symbol": "bep-20" - }, - { - "id": "apm-coin", - "name": "apM Coin", - "symbol": "apm" - }, - { - "id": "apollo", - "name": "Apollo", - "symbol": "apl" - }, - { - "id": "apollo-2", - "name": "Apollo", - "symbol": "apollo" - }, - { - "id": "apollo-crypto", - "name": "Apollo Crypto", - "symbol": "apollo" - }, - { - "id": "apollon-limassol", - "name": "Apollon Limassol Fan Token", - "symbol": "apl" - }, - { - "id": "apollo-token", - "name": "Apollo Token", - "symbol": "apollo" - }, - { - "id": "apollox-2", - "name": "APX", - "symbol": "apx" - }, - { - "id": "appcoins", - "name": "AppCoins", - "symbol": "appc" - }, - { - "id": "appics", - "name": "Appics", - "symbol": "apx" - }, - { - "id": "apple-cat", - "name": "Apple Cat", - "symbol": "$acat" - }, - { - "id": "apple-pie", - "name": "Apple Pie", - "symbol": "pie" - }, - { - "id": "apple-tokenized-stock-defichain", - "name": "Apple Tokenized Stock Defichain", - "symbol": "daapl" - }, - { - "id": "apricot", - "name": "Apricot", - "symbol": "aprt" - }, - { - "id": "april", - "name": "April", - "symbol": "april" - }, - { - "id": "apron", - "name": "Apron", - "symbol": "apn" - }, - { - "id": "apsis", - "name": "Apsis", - "symbol": "aps" - }, - { - "id": "aptopad", - "name": "Aptopad", - "symbol": "apd" - }, - { - "id": "aptos", - "name": "Aptos", - "symbol": "apt" - }, - { - "id": "aptos-launch-token", - "name": "AptosLaunch Token", - "symbol": "alt" - }, - { - "id": "apu-apustaja-base", - "name": "Apu Apustaja", - "symbol": "apu" - }, - { - "id": "apu-s-club", - "name": "Apu Apustaja", - "symbol": "apu" - }, - { - "id": "apwine", - "name": "Spectra", - "symbol": "apw" - }, - { - "id": "apy-finance", - "name": "APY.Finance", - "symbol": "apy" - }, - { - "id": "apyswap", - "name": "APYSwap", - "symbol": "apys" - }, - { - "id": "apy-vision", - "name": "APY.vision", - "symbol": "vision" - }, - { - "id": "aqtis", - "name": "AQTIS", - "symbol": "aqtis" - }, - { - "id": "aquadao", - "name": "AquaDAO", - "symbol": "$aqua" - }, - { - "id": "aqua-goat", - "name": "Aqua Goat", - "symbol": "aquagoat" - }, - { - "id": "aqualibre", - "name": "Aqualibre", - "symbol": "aqla" - }, - { - "id": "aquanee", - "name": "Aquanee", - "symbol": "aqdc" - }, - { - "id": "aquari", - "name": "Aquari", - "symbol": "aquari" - }, - { - "id": "aquarius", - "name": "Aquarius", - "symbol": "aqua" - }, - { - "id": "aquariuscoin", - "name": "AquariusCoin", - "symbol": "arco" - }, - { - "id": "aquarius-loan", - "name": "Aquarius Loan", - "symbol": "ars" - }, - { - "id": "arab-cat", - "name": "Arab cat", - "symbol": "arab" - }, - { - "id": "arabianchain", - "name": "ArabianChain", - "symbol": "dubx" - }, - { - "id": "arabian-dragon", - "name": "Arabian Dragon", - "symbol": "agon" - }, - { - "id": "arabic", - "name": "Arabic", - "symbol": "abic" - }, - { - "id": "arable-protocol", - "name": "Arable Protocol", - "symbol": "acre" - }, - { - "id": "arafi", - "name": "AraFi", - "symbol": "ara" - }, - { - "id": "aragon", - "name": "Aragon", - "symbol": "ant" - }, - { - "id": "ara-token", - "name": "Ara", - "symbol": "ara" - }, - { - "id": "arbdoge-ai", - "name": "ArbDoge AI", - "symbol": "aidoge" - }, - { - "id": "arbidoge", - "name": "ArbiDoge", - "symbol": "adoge" - }, - { - "id": "arbinyan", - "name": "ArbiNYAN", - "symbol": "nyan" - }, - { - "id": "arbipad", - "name": "ArbiPad", - "symbol": "arbi" - }, - { - "id": "arbismart-token", - "name": "ArbiSmart", - "symbol": "rbis" - }, - { - "id": "arbiten-10share", - "name": "ArbiTen 10SHARE", - "symbol": "10share" - }, - { - "id": "arbitrove-alp", - "name": "Arbitrove ALP", - "symbol": "alp" - }, - { - "id": "arbitrum", - "name": "Arbitrum", - "symbol": "arb" - }, - { - "id": "arbitrum-bridged-usdt-arbitrum", - "name": "Arbitrum Bridged USDT (Arbitrum)", - "symbol": "usdt" - }, - { - "id": "arbitrum-charts", - "name": "Arbitrum Charts", - "symbol": "arcs" - }, - { - "id": "arbitrum-ecosystem-index", - "name": "Arbitrum Ecosystem Index", - "symbol": "arbi" - }, - { - "id": "arbitrum-exchange", - "name": "Arbidex", - "symbol": "arx" - }, - { - "id": "arbitrumpad", - "name": "ArbitrumPad", - "symbol": "arbpad" - }, - { - "id": "arbius", - "name": "Arbius", - "symbol": "aius" - }, - { - "id": "arb-protocol", - "name": "ARB Protocol", - "symbol": "arb" - }, - { - "id": "arbshib", - "name": "ArbShib", - "symbol": "aishib" - }, - { - "id": "arbswap", - "name": "Arbswap", - "symbol": "arbs" - }, - { - "id": "arbuz", - "name": "ARBUZ", - "symbol": "arbuz" - }, - { - "id": "arc", - "name": "Arc", - "symbol": "arc" - }, - { - "id": "arcade-2", - "name": "Arcade", - "symbol": "arc" - }, - { - "id": "arcade-arcoin", - "name": "Arcade Arcoin", - "symbol": "arcn" - }, - { - "id": "arcadefi", - "name": "ArcadeFi", - "symbol": "arcade" - }, - { - "id": "arcade-protocol", - "name": "Arcade", - "symbol": "arcd" - }, - { - "id": "arcadeum", - "name": "Arcadeum", - "symbol": "arc" - }, - { - "id": "arcadium", - "name": "Arcadium", - "symbol": "arcadium" - }, - { - "id": "arcana-token", - "name": "Arcana Network", - "symbol": "xar" - }, - { - "id": "arcanedex", - "name": "ArcaneDEX", - "symbol": "arc" - }, - { - "id": "arcblock", - "name": "Arcblock", - "symbol": "abt" - }, - { - "id": "arch-aggressive-portfolio", - "name": "Arch Aggressive Portfolio", - "symbol": "aagg" - }, - { - "id": "archangel-token", - "name": "ArchAngel", - "symbol": "archa" - }, - { - "id": "arch-balanced-portfolio", - "name": "Arch Balanced Portfolio", - "symbol": "abal" - }, - { - "id": "archerswap-bow", - "name": "Archerswap BOW", - "symbol": "bow" - }, - { - "id": "archerswap-hunter", - "name": "ArcherSwap Hunter", - "symbol": "hunt" - }, - { - "id": "arch-ethereum-div-yield", - "name": "Arch Ethereum Div. Yield", - "symbol": "aedy" - }, - { - "id": "arch-ethereum-web3", - "name": "Arch Ethereum Web3", - "symbol": "web3" - }, - { - "id": "archethic", - "name": "Archethic", - "symbol": "uco" - }, - { - "id": "archimedes", - "name": "Archimedes Finance", - "symbol": "arch" - }, - { - "id": "architex", - "name": "Architex", - "symbol": "arcx" - }, - { - "id": "archi-token", - "name": "Archi Token", - "symbol": "archi" - }, - { - "id": "archive-ai", - "name": "Archive AI", - "symbol": "arcai" - }, - { - "id": "archloot", - "name": "ArchLoot", - "symbol": "alt" - }, - { - "id": "arch-usd-div-yield", - "name": "Arch USD Div. Yield", - "symbol": "addy" - }, - { - "id": "archway", - "name": "Archway", - "symbol": "arch" - }, - { - "id": "arcona", - "name": "Arcona", - "symbol": "arcona" - }, - { - "id": "arcs", - "name": "ARCS", - "symbol": "arx" - }, - { - "id": "ardana", - "name": "Ardana", - "symbol": "dana" - }, - { - "id": "ardor", - "name": "Ardor", - "symbol": "ardr" - }, - { - "id": "area", - "name": "AREA", - "symbol": "area" - }, - { - "id": "aree-shards", - "name": "Aree Shards", - "symbol": "aes" - }, - { - "id": "arena-supply-crate", - "name": "ARENA SUPPLY CRATE", - "symbol": "sply" - }, - { - "id": "arena-token", - "name": "ArenaSwap", - "symbol": "arena" - }, - { - "id": "areon-network", - "name": "Areon Network", - "symbol": "area" - }, - { - "id": "ares3-network", - "name": "Ares3 Network", - "symbol": "ares" - }, - { - "id": "ares-protocol", - "name": "Ares Protocol", - "symbol": "ares" - }, - { - "id": "argentine-football-association-fan-token", - "name": "Argentine Football Association Fan Token", - "symbol": "arg" - }, - { - "id": "argo", - "name": "ArGoApp", - "symbol": "argo" - }, - { - "id": "argocoin", - "name": "Argocoin", - "symbol": "agc" - }, - { - "id": "argo-finance", - "name": "Argo Finance", - "symbol": "argo" - }, - { - "id": "argon", - "name": "Argon", - "symbol": "argon" - }, - { - "id": "argonon-helium", - "name": "Argonon Helium", - "symbol": "arg" - }, - { - "id": "ari10", - "name": "Ari10", - "symbol": "ari10" - }, - { - "id": "aria-currency", - "name": "aRIA Currency", - "symbol": "ria" - }, - { - "id": "arianee", - "name": "Arianee", - "symbol": "aria20" - }, - { - "id": "arion", - "name": "Arion", - "symbol": "arion" - }, - { - "id": "arise-chikun", - "name": "Arise Chikun", - "symbol": "chikun" - }, - { - "id": "ari-swap", - "name": "Ari Swap", - "symbol": "ari" - }, - { - "id": "arithfi", - "name": "ArithFi", - "symbol": "atf" - }, - { - "id": "ariva", - "name": "Ariva", - "symbol": "arv" - }, - { - "id": "arix", - "name": "Arix", - "symbol": "arix" - }, - { - "id": "arizona-iced-tea", - "name": "Arizona Iced Tea", - "symbol": "99cents" - }, - { - "id": "ark", - "name": "ARK", - "symbol": "ark" - }, - { - "id": "arkadiko-protocol", - "name": "Arkadiko", - "symbol": "diko" - }, - { - "id": "arken-finance", - "name": "Arken Finance", - "symbol": "$arken" - }, - { - "id": "arker-2", - "name": "Arker", - "symbol": "arker" - }, - { - "id": "arkham", - "name": "Arkham", - "symbol": "arkm" - }, - { - "id": "ark-innovation-etf-defichain", - "name": "ARK Innovation ETF Defichain", - "symbol": "darkk" - }, - { - "id": "arkitech", - "name": "ArkiTech", - "symbol": "arki" - }, - { - "id": "arkreen-token", - "name": "Arkreen Token", - "symbol": "akre" - }, - { - "id": "ark-rivals", - "name": "Ark Rivals", - "symbol": "arkn" - }, - { - "id": "arkstart", - "name": "ArkStart", - "symbol": "arks" - }, - { - "id": "armor", - "name": "ARMOR", - "symbol": "armor" - }, - { - "id": "armour-wallet", - "name": "Armour Wallet", - "symbol": "armour" - }, - { - "id": "army-of-fortune-gem", - "name": "Army of Fortune Gem", - "symbol": "afg" - }, - { - "id": "army-of-fortune-metaverse", - "name": "Army of Fortune Metaverse", - "symbol": "afc" - }, - { - "id": "arowana-token", - "name": "Arowana", - "symbol": "arw" - }, - { - "id": "arpa", - "name": "ARPA", - "symbol": "arpa" - }, - { - "id": "arqma", - "name": "ArQmA", - "symbol": "arq" - }, - { - "id": "arrland-arrc", - "name": "Arrland ARRC", - "symbol": "arrc" - }, - { - "id": "arrland-rum", - "name": "Arrland RUM", - "symbol": "rum" - }, - { - "id": "arsenal-fan-token", - "name": "Arsenal Fan Token", - "symbol": "afc" - }, - { - "id": "artbyte", - "name": "ArtByte", - "symbol": "aby" - }, - { - "id": "artcoin", - "name": "ArtCoin", - "symbol": "ac" - }, - { - "id": "artcpaclub", - "name": "ArtCPAclub", - "symbol": "cpa-97530" - }, - { - "id": "art-de-finance", - "name": "Art de Finance", - "symbol": "adf" - }, - { - "id": "artem", - "name": "Artem", - "symbol": "artem" - }, - { - "id": "artemis", - "name": "Artemis", - "symbol": "mis" - }, - { - "id": "artemisai", - "name": "ArtemisAI", - "symbol": "atai" - }, - { - "id": "artemis-vision", - "name": "Artemis Vision", - "symbol": "arv" - }, - { - "id": "artery", - "name": "Artery", - "symbol": "artr" - }, - { - "id": "artgpt", - "name": "artGPT", - "symbol": "agpt" - }, - { - "id": "arth", - "name": "ARTH", - "symbol": "arth" - }, - { - "id": "arthswap", - "name": "ArthSwap", - "symbol": "arsw" - }, - { - "id": "artichoke", - "name": "Artichoke", - "symbol": "choke" - }, - { - "id": "artificial-idiot", - "name": "Artificial idiot", - "symbol": "aii" - }, - { - "id": "artificial-intelligence", - "name": "Artificial Intelligence", - "symbol": "ai" - }, - { - "id": "artificial-intelligence-2", - "name": "Artificial Intelligence", - "symbol": "aid" - }, - { - "id": "artificial-neural-network-ordinals", - "name": "Artificial Neural Network (Ordinals)", - "symbol": "ainn" - }, - { - "id": "artificial-robotic-tapestry-volts", - "name": "Artificial Robotic Tapestry VOLTS", - "symbol": "volts" - }, - { - "id": "arti-project", - "name": "Arti Project", - "symbol": "arti" - }, - { - "id": "artizen", - "name": "Artizen", - "symbol": "atnt" - }, - { - "id": "artl", - "name": "ARTL", - "symbol": "artl" - }, - { - "id": "artmeta", - "name": "ArtMeta", - "symbol": "$mart" - }, - { - "id": "artrade", - "name": "Artrade", - "symbol": "atr" - }, - { - "id": "artt-network", - "name": "ARTT Network", - "symbol": "artt" - }, - { - "id": "artx", - "name": "ARTX", - "symbol": "artx" - }, - { - "id": "artyfact", - "name": "Artyfact", - "symbol": "arty" - }, - { - "id": "arweave", - "name": "Arweave", - "symbol": "ar" - }, - { - "id": "aryacoin", - "name": "Aryacoin", - "symbol": "aya" - }, - { - "id": "aryze-eeur", - "name": "ARYZE eEUR", - "symbol": "eeur" - }, - { - "id": "aryze-egbp", - "name": "ARYZE eGBP", - "symbol": "egbp" - }, - { - "id": "aryze-eusd", - "name": "ARYZE eUSD", - "symbol": "eusd" - }, - { - "id": "asan-verse", - "name": "ASAN VERSE", - "symbol": "asan" - }, - { - "id": "asap-sniper-bot", - "name": "Asap Sniper Bot", - "symbol": "asap" - }, - { - "id": "ascend-2", - "name": "Ascend", - "symbol": "asc" - }, - { - "id": "asct-avax-inscription", - "name": "ASCT AVAX INSCRIPTION", - "symbol": "asct" - }, - { - "id": "asd", - "name": "AscendEx", - "symbol": "asd" - }, - { - "id": "asdi", - "name": "ASDI", - "symbol": "asdi" - }, - { - "id": "asdi-reward", - "name": "ASDI Reward", - "symbol": "asdir" - }, - { - "id": "asgardx", - "name": "AsgardX", - "symbol": "odin" - }, - { - "id": "ash", - "name": "ASH", - "symbol": "ash" - }, - { - "id": "ash-dao", - "name": "ASH DAO", - "symbol": "ash" - }, - { - "id": "ashswap", - "name": "AshSwap", - "symbol": "ash" - }, - { - "id": "ash-token", - "name": "Ash Token", - "symbol": "ash" - }, - { - "id": "asia-coin", - "name": "Asia Coin", - "symbol": "asia" - }, - { - "id": "asic-token-pulsechain", - "name": "ASIC Token (Pulsechain)", - "symbol": "asic" - }, - { - "id": "asix", - "name": "ASIX", - "symbol": "asix" - }, - { - "id": "askobar-network", - "name": "Asko", - "symbol": "asko" - }, - { - "id": "asmatch", - "name": "AsMatch", - "symbol": "asm" - }, - { - "id": "as-monaco-fan-token", - "name": "AS Monaco Fan Token", - "symbol": "asm" - }, - { - "id": "aspo-world", - "name": "ASPO World", - "symbol": "aspo" - }, - { - "id": "asr-coin", - "name": "ASR Coin", - "symbol": "asr" - }, - { - "id": "as-roma-fan-token", - "name": "AS Roma Fan Token", - "symbol": "asr" - }, - { - "id": "assangedao", - "name": "AssangeDAO", - "symbol": "justice" - }, - { - "id": "assaplay", - "name": "AssaPlay", - "symbol": "assa" - }, - { - "id": "assemble-protocol", - "name": "Assemble Protocol", - "symbol": "asm" - }, - { - "id": "assent-protocol", - "name": "Assent Protocol", - "symbol": "asnt" - }, - { - "id": "assetlink", - "name": "AssetLink", - "symbol": "aset" - }, - { - "id": "assetmantle", - "name": "AssetMantle", - "symbol": "mntl" - }, - { - "id": "astar", - "name": "Astar", - "symbol": "astr" - }, - { - "id": "astar-moonbeam", - "name": "Astar (Moonbeam)", - "symbol": "$xcastr" - }, - { - "id": "astarter", - "name": "Astarter", - "symbol": "aa" - }, - { - "id": "aster", - "name": "Aster", - "symbol": "atc" - }, - { - "id": "asterix", - "name": "Asterix", - "symbol": "astx" - }, - { - "id": "asteroids", - "name": "Asteroids", - "symbol": "roids" - }, - { - "id": "aston-martin-cognizant-fan-token", - "name": "Aston Martin Cognizant Fan Token", - "symbol": "am" - }, - { - "id": "aston-villa-fan-token", - "name": "Aston Villa Fan Token", - "symbol": "avl" - }, - { - "id": "astraai", - "name": "AstraAI", - "symbol": "astra" - }, - { - "id": "astra-dao-2", - "name": "Astra DAO", - "symbol": "astradao" - }, - { - "id": "astrafer", - "name": "Astrafer", - "symbol": "astrafer" - }, - { - "id": "astral-credits", - "name": "Astral Credits", - "symbol": "xac" - }, - { - "id": "astrals-glxy", - "name": "Astrals GLXY", - "symbol": "glxy" - }, - { - "id": "astra-nova", - "name": "Astra Nova", - "symbol": "$rvv" - }, - { - "id": "astra-protocol-2", - "name": "Astra Protocol", - "symbol": "astra" - }, - { - "id": "astrazion", - "name": "AstraZion", - "symbol": "aznt" - }, - { - "id": "astriddao-token", - "name": "AstridDAO", - "symbol": "atid" - }, - { - "id": "astrid-restaked-cbeth", - "name": "Astrid Restaked cbETH", - "symbol": "rcbeth" - }, - { - "id": "astrid-restaked-reth", - "name": "Astrid Restaked rETH", - "symbol": "rreth" - }, - { - "id": "astrid-restaked-steth", - "name": "Astrid Restaked stETH", - "symbol": "rsteth" - }, - { - "id": "astro-2", - "name": "Astro", - "symbol": "astro" - }, - { - "id": "astroai", - "name": "AstroAI", - "symbol": "astroai" - }, - { - "id": "astro-babies", - "name": "Astro Babies", - "symbol": "abb" - }, - { - "id": "astrobits", - "name": "ASTROBITS", - "symbol": "astrb" - }, - { - "id": "astro-cash", - "name": "Astro Cash", - "symbol": "astro" - }, - { - "id": "astroelon", - "name": "AstroElon", - "symbol": "elonone" - }, - { - "id": "astrolescent", - "name": "Astrolescent", - "symbol": "astrl" - }, - { - "id": "astro-pepe", - "name": "Astro Pepe", - "symbol": "astropepe" - }, - { - "id": "astropepex", - "name": "AstroPepeX", - "symbol": "apx" - }, - { - "id": "astroport", - "name": "Astroport Classic", - "symbol": "astroc" - }, - { - "id": "astroport-fi", - "name": "Astroport", - "symbol": "astro" - }, - { - "id": "astrospaces-io", - "name": "AstroSpaces.io", - "symbol": "spaces" - }, - { - "id": "astroswap", - "name": "AstroSwap", - "symbol": "astro" - }, - { - "id": "astrotools", - "name": "AstroTools", - "symbol": "astro" - }, - { - "id": "astrovault", - "name": "Astrovault", - "symbol": "axv" - }, - { - "id": "astrovault-xarch", - "name": "xARCH_Astrovault", - "symbol": "xarch" - }, - { - "id": "astrovault-xatom", - "name": "xATOM_Astrovault", - "symbol": "xatom" - }, - { - "id": "astrovault-xjkl", - "name": "xJKL_Astrovault", - "symbol": "xjkl" - }, - { - "id": "astro-x", - "name": "Astro-X", - "symbol": "astrox" - }, - { - "id": "asva", - "name": "Asva Labs", - "symbol": "asva" - }, - { - "id": "asx-capital", - "name": "ASX Capital", - "symbol": "asx" - }, - { - "id": "asyagro", - "name": "ASYAGRO", - "symbol": "asy" - }, - { - "id": "asymetrix", - "name": "Asymetrix", - "symbol": "asx" - }, - { - "id": "atalexv2", - "name": "atALEXv2", - "symbol": "atalexv2" - }, - { - "id": "atalis", - "name": "Atalis", - "symbol": "als" - }, - { - "id": "atari", - "name": "Atari", - "symbol": "atri" - }, - { - "id": "atc-launchpad", - "name": "ATC Launchpad", - "symbol": "atcp" - }, - { - "id": "atem-network", - "name": "Atem Network", - "symbol": "atem" - }, - { - "id": "aternos-chain", - "name": "Aternos Chain", - "symbol": "atr" - }, - { - "id": "athenadao-token", - "name": "AthenaDAO", - "symbol": "ath" - }, - { - "id": "athena-dexfi", - "name": "Athena DexFi", - "symbol": "ath" - }, - { - "id": "athena-finance", - "name": "Athena Finance", - "symbol": "ath" - }, - { - "id": "athena-returns-olea", - "name": "Olea Token", - "symbol": "olea" - }, - { - "id": "athenas", - "name": "Athenas", - "symbol": "athenasv2" - }, - { - "id": "athenas-ai", - "name": "Athenas AI", - "symbol": "ath" - }, - { - "id": "atheneum", - "name": "Atheneum", - "symbol": "aem" - }, - { - "id": "athens", - "name": "Athens", - "symbol": "ath" - }, - { - "id": "athos-finance", - "name": "Athos Finance", - "symbol": "ath" - }, - { - "id": "athos-finance-usd", - "name": "Athos Finance USD", - "symbol": "athusd" - }, - { - "id": "atlantis-loans", - "name": "Atlantis Loans", - "symbol": "atl" - }, - { - "id": "atlas-aggregator", - "name": "Atlas Aggregator", - "symbol": "ata" - }, - { - "id": "atlas-dex", - "name": "Atlas DEX", - "symbol": "ats" - }, - { - "id": "atlas-fc-fan-token", - "name": "Atlas FC Fan Token", - "symbol": "atlas" - }, - { - "id": "atlas-navi", - "name": "Atlas Navi", - "symbol": "navi" - }, - { - "id": "atlas-protocol", - "name": "Atlas Protocol", - "symbol": "atp" - }, - { - "id": "atlas-usv", - "name": "Atlas USV", - "symbol": "usv" - }, - { - "id": "atletico-madrid", - "name": "Atletico Madrid Fan Token", - "symbol": "atm" - }, - { - "id": "atomicals", - "name": "Atomicals", - "symbol": "atomarc20" - }, - { - "id": "atomic-wallet-coin", - "name": "Atomic Wallet Coin", - "symbol": "awc" - }, - { - "id": "atomone", - "name": "AtomOne", - "symbol": "atom1" - }, - { - "id": "atpay", - "name": "AtPay", - "symbol": "atpay" - }, - { - "id": "atrno", - "name": "ATRNO", - "symbol": "atrno" - }, - { - "id": "atrofarm", - "name": "Atrofarm", - "symbol": "atrofa" - }, - { - "id": "atromg8", - "name": "ATROMG8", - "symbol": "ag8" - }, - { - "id": "atropine", - "name": "Atropine", - "symbol": "pine" - }, - { - "id": "attack-wagon", - "name": "Attack Wagon", - "symbol": "atk" - }, - { - "id": "attila", - "name": "Attila", - "symbol": "att" - }, - { - "id": "auction", - "name": "Bounce", - "symbol": "auction" - }, - { - "id": "auctus", - "name": "Auctus", - "symbol": "auc" - }, - { - "id": "audify", - "name": "Audify", - "symbol": "audi" - }, - { - "id": "auditchain", - "name": "Auditchain", - "symbol": "audt" - }, - { - "id": "audius", - "name": "Audius", - "symbol": "audio" - }, - { - "id": "audius-wormhole", - "name": "Audius (Wormhole)", - "symbol": "audio" - }, - { - "id": "augur", - "name": "Augur", - "symbol": "rep" - }, - { - "id": "augury-finance", - "name": "Augury Finance", - "symbol": "omen" - }, - { - "id": "aura", - "name": "$AURA", - "symbol": "$aura" - }, - { - "id": "aura-bal", - "name": "Aura BAL", - "symbol": "aurabal" - }, - { - "id": "auradx", - "name": "AuradX", - "symbol": "dalle2" - }, - { - "id": "aura-finance", - "name": "Aura Finance", - "symbol": "aura" - }, - { - "id": "aura-network", - "name": "Aura Network", - "symbol": "aura" - }, - { - "id": "aura-network-old", - "name": "Aura Network [OLD]", - "symbol": "aura" - }, - { - "id": "aureo", - "name": "AUREO", - "symbol": "aur" - }, - { - "id": "aureus", - "name": "Aureus", - "symbol": "aur" - }, - { - "id": "aureus-nummus-gold", - "name": "Aureus Nummus Gold", - "symbol": "ang" - }, - { - "id": "aurigami", - "name": "Aurigami", - "symbol": "ply" - }, - { - "id": "aurinko-network", - "name": "Aurinko Network", - "symbol": "ark" - }, - { - "id": "aurix", - "name": "Aurix", - "symbol": "aur" - }, - { - "id": "aurora", - "name": "Aurora Chain", - "symbol": "aoa" - }, - { - "id": "auroracoin", - "name": "Auroracoin", - "symbol": "aur" - }, - { - "id": "aurora-dao", - "name": "IDEX", - "symbol": "idex" - }, - { - "id": "aurora-near", - "name": "Aurora", - "symbol": "aurora" - }, - { - "id": "auroratoken", - "name": "AuroraToken", - "symbol": "aurora" - }, - { - "id": "aurora-token", - "name": "Aurora Dimension", - "symbol": "$adtx" - }, - { - "id": "aurory", - "name": "Aurory", - "symbol": "aury" - }, - { - "id": "aurum-gold", - "name": "Aurum Crypto Gold", - "symbol": "acg" - }, - { - "id": "aurusx", - "name": "AurusX", - "symbol": "ax" - }, - { - "id": "ausdc", - "name": "SpaceShipX aUSDC", - "symbol": "ausdc" - }, - { - "id": "ausd-seed-acala", - "name": "aUSD SEED (Acala)", - "symbol": "aseed" - }, - { - "id": "ausd-seed-karura", - "name": "aUSD SEED (Karura)", - "symbol": "aseed" - }, - { - "id": "australian-crypto-coin-green", - "name": "Australian Crypto Coin Green", - "symbol": "accg" - }, - { - "id": "australian-safe-shepherd", - "name": "Australian Safe Shepherd", - "symbol": "ass" - }, - { - "id": "autentic", - "name": "Autentic", - "symbol": "aut" - }, - { - "id": "authencity", - "name": "Authencity", - "symbol": "auth" - }, - { - "id": "autism", - "name": "Autism", - "symbol": "autism" - }, - { - "id": "auto", - "name": "Auto", - "symbol": "auto" - }, - { - "id": "autoair-ai", - "name": "AutoAir AI", - "symbol": "aai" - }, - { - "id": "autobahn-network", - "name": "Autobahn Network", - "symbol": "txl" - }, - { - "id": "autocrypto", - "name": "AutoCrypto", - "symbol": "au" - }, - { - "id": "automata", - "name": "Automata", - "symbol": "ata" - }, - { - "id": "autominingtoken", - "name": "AutoMiningToken", - "symbol": "amt" - }, - { - "id": "auton", - "name": "Auton", - "symbol": "atn" - }, - { - "id": "autonio", - "name": "Autonio", - "symbol": "niox" - }, - { - "id": "autonolas", - "name": "Autonolas", - "symbol": "olas" - }, - { - "id": "autoshark", - "name": "AutoShark", - "symbol": "jaws" - }, - { - "id": "autosingle", - "name": "AutoSingle", - "symbol": "autos" - }, - { - "id": "autumn", - "name": "Autumn", - "symbol": "autumn" - }, - { - "id": "aux-coin", - "name": "AUX Coin", - "symbol": "aux" - }, - { - "id": "avabot", - "name": "Avabot", - "symbol": "avb" - }, - { - "id": "avadex-token", - "name": "AvaDex Token", - "symbol": "avex" - }, - { - "id": "ava-foundation-bridged-ava-bsc", - "name": "AVA Foundation Bridged AVA (BSC)", - "symbol": "ava" - }, - { - "id": "avalanche-2", - "name": "Avalanche", - "symbol": "avax" - }, - { - "id": "avalanche-wormhole", - "name": "Avalanche (Wormhole)", - "symbol": "avax" - }, - { - "id": "avalaunch", - "name": "Avalaunch", - "symbol": "xava" - }, - { - "id": "avalox", - "name": "Avalox", - "symbol": "avalox" - }, - { - "id": "avante", - "name": "Avante", - "symbol": "axt" - }, - { - "id": "avaocado-dao", - "name": "Avocado DAO", - "symbol": "avg" - }, - { - "id": "avatago", - "name": "AVATAGO", - "symbol": "agt" - }, - { - "id": "avata-network", - "name": "AVATA Network", - "symbol": "avat" - }, - { - "id": "avatar404", - "name": "Avatar404", - "symbol": "" - }, - { - "id": "avatar-musk-verse", - "name": "Avatar Musk Verse", - "symbol": "amv" - }, - { - "id": "avatly-2", - "name": "Avatly", - "symbol": "avatly" - }, - { - "id": "avav-asc-20", - "name": "AVAV (ASC-20)", - "symbol": "avav" - }, - { - "id": "avax-has-no-chill", - "name": "AVAX HAS NO CHILL", - "symbol": "nochill" - }, - { - "id": "avaxlama", - "name": "Lama", - "symbol": "lama" - }, - { - "id": "avaxtars", - "name": "Avaxtars", - "symbol": "avxt" - }, - { - "id": "avaxtech", - "name": "AvaxTech", - "symbol": "atech" - }, - { - "id": "avbot", - "name": "AVBOT", - "symbol": "avbot" - }, - { - "id": "aventis-metaverse", - "name": "Aventis Metaverse", - "symbol": "avtm" - }, - { - "id": "aventus", - "name": "Aventus", - "symbol": "avt" - }, - { - "id": "avenue-hamilton-token", - "name": "Avenue Hamilton Token", - "symbol": "aht" - }, - { - "id": "aves", - "name": "AVES", - "symbol": "avs" - }, - { - "id": "avian-network", - "name": "AVIAN", - "symbol": "avn" - }, - { - "id": "aviator", - "name": "Aviator", - "symbol": "avi" - }, - { - "id": "avinoc", - "name": "AVINOC", - "symbol": "avinoc" - }, - { - "id": "avive", - "name": "Avive", - "symbol": "avive" - }, - { - "id": "avme", - "name": "AVME", - "symbol": "avme" - }, - { - "id": "avnrich", - "name": "AVNRich", - "symbol": "avn" - }, - { - "id": "avocado-bg", - "name": "AVOCADO BG", - "symbol": "avo" - }, - { - "id": "avolend", - "name": "Avolend", - "symbol": "avo" - }, - { - "id": "avoteo", - "name": "Avoteo", - "symbol": "avo" - }, - { - "id": "awkward-look-monkey-club", - "name": "Awkward Look Monkey Club", - "symbol": "almc" - }, - { - "id": "axe", - "name": "Axe", - "symbol": "axe" - }, - { - "id": "axe-2", - "name": "AXE", - "symbol": "axe" - }, - { - "id": "axe-cap", - "name": "Axe Cap", - "symbol": "axe" - }, - { - "id": "axel", - "name": "AXEL", - "symbol": "axel" - }, - { - "id": "axelar", - "name": "Axelar", - "symbol": "axl" - }, - { - "id": "axelar-bridged-usdc-cosmos", - "name": "Axelar Bridged USDC (Cosmos)", - "symbol": "usdc.axl" - }, - { - "id": "axelar-usdt", - "name": "Bridged Tether (Axelar)", - "symbol": "axlusdt" - }, - { - "id": "axia", - "name": "Axia", - "symbol": "axiav3" - }, - { - "id": "axial-token", - "name": "Axial Token", - "symbol": "axial" - }, - { - "id": "axie-infinity", - "name": "Axie Infinity", - "symbol": "axs" - }, - { - "id": "axie-infinity-shard-wormhole", - "name": "Axie Infinity Shard (Wormhole)", - "symbol": "axset" - }, - { - "id": "axiodex", - "name": "AxioDex", - "symbol": "axn" - }, - { - "id": "axion", - "name": "Axion", - "symbol": "axn" - }, - { - "id": "axis-defi", - "name": "Axis DeFi", - "symbol": "axis" - }, - { - "id": "axis-token", - "name": "AXIS", - "symbol": "axis" - }, - { - "id": "axle-games", - "name": "Axle Games", - "symbol": "axle" - }, - { - "id": "axl-inu", - "name": "AXL INU", - "symbol": "axl" - }, - { - "id": "axlusdc", - "name": "Axelar Bridged USDC", - "symbol": "axlusdc" - }, - { - "id": "axlwbtc", - "name": "axlWBTC", - "symbol": "axlwbtc" - }, - { - "id": "axlweth", - "name": "Axelar Wrapped Ether", - "symbol": "axleth" - }, - { - "id": "axo", - "name": "Axo", - "symbol": "axo" - }, - { - "id": "axondao-governance-token", - "name": "AxonDAO Governance Token", - "symbol": "axgt" - }, - { - "id": "ayin", - "name": "Ayin", - "symbol": "ayin" - }, - { - "id": "azbit", - "name": "Azbit", - "symbol": "az" - }, - { - "id": "azcoiner", - "name": "AZCoiner", - "symbol": "azc" - }, - { - "id": "azit", - "name": "azit", - "symbol": "azit" - }, - { - "id": "azmask", - "name": "AZMASK", - "symbol": "azm" - }, - { - "id": "azuki", - "name": "Azuki", - "symbol": "azuki" - }, - { - "id": "azuma-coin", - "name": "Azuma Coin", - "symbol": "azum" - }, - { - "id": "azure", - "name": "Azure", - "symbol": "azr" - }, - { - "id": "azure-wallet", - "name": "Azure Wallet", - "symbol": "azure" - }, - { - "id": "azur-token", - "name": "AZUR Token", - "symbol": "azur" - }, - { - "id": "b20", - "name": "B20", - "symbol": "b20" - }, - { - "id": "b2b-token", - "name": "B2B Token", - "symbol": "b2b" - }, - { - "id": "b2share", - "name": "B2SHARE", - "symbol": "b2share" - }, - { - "id": "baanx", - "name": "Baanx", - "symbol": "bxx" - }, - { - "id": "baasid", - "name": "BaaSid", - "symbol": "baas" - }, - { - "id": "baba", - "name": "BABA", - "symbol": "baba" - }, - { - "id": "babacoin", - "name": "Babacoin", - "symbol": "bbc" - }, - { - "id": "babb", - "name": "BABB", - "symbol": "bax" - }, - { - "id": "babelfish-2", - "name": "Babelfish", - "symbol": "$fish" - }, - { - "id": "baby", - "name": "Baby", - "symbol": "baby" - }, - { - "id": "babyakita", - "name": "BabyAkita", - "symbol": "babyakita" - }, - { - "id": "baby-alienb", - "name": "Baby AlienB", - "symbol": "baby" - }, - { - "id": "baby-alvey", - "name": "Baby Alvey", - "symbol": "balvey" - }, - { - "id": "baby-aptos", - "name": "Baby Aptos", - "symbol": "baptos" - }, - { - "id": "baby-arbitrum", - "name": "Baby Arbitrum", - "symbol": "barb" - }, - { - "id": "baby-arof", - "name": "BABY AROF", - "symbol": "baby arof" - }, - { - "id": "baby-bali", - "name": "Baby Bali", - "symbol": "bb" - }, - { - "id": "babybnbtiger", - "name": "BabyBNBTiger", - "symbol": "babybnbtig" - }, - { - "id": "babybonk", - "name": "BabyBonk", - "symbol": "babybonk" - }, - { - "id": "babybonk-2", - "name": "BabyBonk", - "symbol": "babybonk" - }, - { - "id": "babyboo", - "name": "BabyBoo", - "symbol": "babyboo" - }, - { - "id": "baby-boo", - "name": "Baby Boo", - "symbol": "boo" - }, - { - "id": "baby-brett", - "name": "Baby Brett", - "symbol": "babybrett" - }, - { - "id": "babybtc-token", - "name": "BABYBTC TOKEN", - "symbol": "babybtc" - }, - { - "id": "baby-cat", - "name": "Baby Cat", - "symbol": "babycat" - }, - { - "id": "baby-coq-inu", - "name": "Baby Coq Inu", - "symbol": "bcoq" - }, - { - "id": "babydoge2-0", - "name": "Babydoge2.0", - "symbol": "babydoge2.0" - }, - { - "id": "babydogearmy", - "name": "BabyDogeARMY", - "symbol": "army" - }, - { - "id": "baby-doge-cash", - "name": "Baby Doge Cash", - "symbol": "babydogecash" - }, - { - "id": "baby-doge-ceo", - "name": "Baby Doge CEO", - "symbol": "babyceo" - }, - { - "id": "babydoge-ceo", - "name": "BabyDoge CEO", - "symbol": "bceo" - }, - { - "id": "baby-doge-coin", - "name": "Baby Doge Coin", - "symbol": "babydoge" - }, - { - "id": "baby-doge-inu", - "name": "Baby Doge Inu", - "symbol": "$babydogeinu" - }, - { - "id": "babydogwifhat", - "name": "babydogwifhat", - "symbol": "babywif" - }, - { - "id": "babydojo", - "name": "BabyDojo", - "symbol": "babydojo" - }, - { - "id": "baby-dragon", - "name": "Baby Dragon", - "symbol": "babydragon" - }, - { - "id": "baby-dragon-2", - "name": "Baby Dragon", - "symbol": "babydragon" - }, - { - "id": "baby-elon", - "name": "Baby Elon", - "symbol": "babyelon" - }, - { - "id": "babyfloki", - "name": "BabyFloki", - "symbol": "babyfloki" - }, - { - "id": "baby-floki", - "name": "Baby Floki", - "symbol": "babyfloki" - }, - { - "id": "baby-floki-coin", - "name": "Baby Floki Coin", - "symbol": "babyflokicoin" - }, - { - "id": "baby-floki-inu", - "name": "Baby Floki Inu", - "symbol": "bfloki" - }, - { - "id": "baby-g", - "name": "Baby G", - "symbol": "babyg" - }, - { - "id": "baby-gemini", - "name": "Baby Gemini", - "symbol": "babygemini" - }, - { - "id": "baby-grok", - "name": "Baby Grok", - "symbol": "babygrok" - }, - { - "id": "baby-grok-2", - "name": "Baby GROK", - "symbol": "brok" - }, - { - "id": "baby-grok-3", - "name": "Baby Grok", - "symbol": "babygrok" - }, - { - "id": "babygrokceo", - "name": "BabyGrokCEO", - "symbol": "babygrokce" - }, - { - "id": "babygrok-x", - "name": "BabyGrok X", - "symbol": "babygrok x" - }, - { - "id": "babykitty", - "name": "BabyKitty", - "symbol": "babykitty" - }, - { - "id": "baby-lambo-inu", - "name": "Baby Lambo Inu", - "symbol": "blinu" - }, - { - "id": "babylong", - "name": "BABYLONG", - "symbol": "$babylong" - }, - { - "id": "baby-long", - "name": "Baby Long", - "symbol": "babylong" - }, - { - "id": "babylons", - "name": "Babylons", - "symbol": "babi" - }, - { - "id": "baby-lovely-inu", - "name": "Baby Lovely Inu", - "symbol": "blovely" - }, - { - "id": "baby-luffy", - "name": "Baby Luffy", - "symbol": "blf" - }, - { - "id": "baby-memecoin", - "name": "Baby Memecoin", - "symbol": "babymeme" - }, - { - "id": "baby-meme-coin", - "name": "Baby Meme Coin", - "symbol": "babymeme" - }, - { - "id": "baby-musk", - "name": "Baby Musk", - "symbol": "babymusk" - }, - { - "id": "baby-musk-2", - "name": "Baby Musk", - "symbol": "babymusk" - }, - { - "id": "babymyro", - "name": "Babymyro", - "symbol": "babymyro" - }, - { - "id": "baby-myro", - "name": "Baby Myro", - "symbol": "babymyro" - }, - { - "id": "babymyro-2", - "name": "BabyMyro", - "symbol": "babymyro" - }, - { - "id": "babypandora", - "name": "BabyPandora", - "symbol": "babypandor" - }, - { - "id": "babypepe", - "name": "BabyPepe", - "symbol": "babypepe" - }, - { - "id": "baby-pepe", - "name": "Baby Pepe", - "symbol": "baby pepe" - }, - { - "id": "baby-pepe-2", - "name": "Baby Pepe", - "symbol": "babypepe" - }, - { - "id": "babypepe-2", - "name": "Babypepe", - "symbol": "babypepe" - }, - { - "id": "baby-pepe-erc20", - "name": "Baby Pepe", - "symbol": "babypepe" - }, - { - "id": "babypepefi", - "name": "Babypepefi", - "symbol": "babypepe" - }, - { - "id": "baby-pepe-fork", - "name": "Baby Pepe Fork", - "symbol": "babypork" - }, - { - "id": "babyrabbit", - "name": "Babyrabbit", - "symbol": "babyrabbit" - }, - { - "id": "baby-rats", - "name": "Baby Rats", - "symbol": "babyrats" - }, - { - "id": "baby-richard-heart", - "name": "Baby Richard Heart", - "symbol": "$brich" - }, - { - "id": "babyrwa", - "name": "BabyRWA", - "symbol": "babyrwa" - }, - { - "id": "baby-samo-coin", - "name": "Baby Samo Coin", - "symbol": "baby" - }, - { - "id": "baby-shark", - "name": "Baby Shark", - "symbol": "shark" - }, - { - "id": "baby-shark-2", - "name": "Baby Shark", - "symbol": "babyshark" - }, - { - "id": "baby-shark-tank", - "name": "Baby Shark Tank", - "symbol": "bashtank" - }, - { - "id": "babyshiba", - "name": "BabyShiba", - "symbol": "baby shiba" - }, - { - "id": "baby-shiba-inu", - "name": "Baby Shiba Inu", - "symbol": "babyshibainu" - }, - { - "id": "baby-shiba-inu-erc", - "name": "Baby Shiba Inu", - "symbol": "babyshib" - }, - { - "id": "babysmurf9000", - "name": "BabySmurf9000", - "symbol": "bs9000" - }, - { - "id": "babysnek", - "name": "BabySNEK", - "symbol": "babysnek" - }, - { - "id": "babysol", - "name": "BabySOL", - "symbol": "babysol" - }, - { - "id": "baby-sora", - "name": "Baby Sora", - "symbol": "babysora" - }, - { - "id": "baby-squid-game", - "name": "Baby Squid Game", - "symbol": "bsg" - }, - { - "id": "babyswap", - "name": "BabySwap", - "symbol": "baby" - }, - { - "id": "baby-tomcat", - "name": "Baby Tomcat", - "symbol": "babytomcat" - }, - { - "id": "baby-troll", - "name": "Baby Troll", - "symbol": "babytroll" - }, - { - "id": "babytrump", - "name": "BABYTRUMP", - "symbol": "babytrump" - }, - { - "id": "baby-wall-street-memes", - "name": "BABY WALL STREET MEMES", - "symbol": "bwsm" - }, - { - "id": "babywhale", - "name": "BabyWhale", - "symbol": "bbw" - }, - { - "id": "baby-x", - "name": "Baby X", - "symbol": "babyx" - }, - { - "id": "babyxrp", - "name": "BabyXrp", - "symbol": "bbyxrp" - }, - { - "id": "babyx-swap", - "name": "BabyX Swap", - "symbol": "babyx" - }, - { - "id": "baby-zeek", - "name": "Baby Zeek", - "symbol": "kitten" - }, - { - "id": "backbone-labs-staked-huahua", - "name": "Backbone Labs Staked HUAHUA", - "symbol": "bhuahua" - }, - { - "id": "backbone-labs-staked-juno", - "name": "Backbone Labs Staked JUNO", - "symbol": "bjuno" - }, - { - "id": "backbone-labs-staked-luna", - "name": "Backbone Labs Staked LUNA", - "symbol": "bluna" - }, - { - "id": "backbone-labs-staked-whale", - "name": "Backbone Labs Staked WHALE", - "symbol": "bwhale" - }, - { - "id": "backed-coinbase-global", - "name": "Backed Coinbase Global", - "symbol": "bcoin" - }, - { - "id": "backed-cspx-core-s-p-500", - "name": "Backed CSPX Core S&P 500", - "symbol": "bcspx" - }, - { - "id": "backed-erna-bond", - "name": "Backed ERNA $ Bond", - "symbol": "berna" - }, - { - "id": "backed-ernx-bond", - "name": "Backed ERNX \u20ac Bond", - "symbol": "bernx" - }, - { - "id": "backed-govies-0-6-months-euro", - "name": "Backed GOVIES 0-6 months EURO", - "symbol": "bc3m" - }, - { - "id": "backed-high-high-yield-corp-bond", - "name": "Backed HIGH \u20ac High Yield Corp Bond", - "symbol": "bhigh" - }, - { - "id": "backed-ib01-treasury-bond-0-1yr", - "name": "Backed IB01 $ Treasury Bond 0-1yr", - "symbol": "bib01" - }, - { - "id": "backed-ibta-treasury-bond-1-3yr", - "name": "Backed IBTA $ Treasury Bond 1-3yr", - "symbol": "bibta" - }, - { - "id": "backed-niu-technologies", - "name": "Backed NIU Technologies", - "symbol": "bniu" - }, - { - "id": "backed-zpr1-1-3-month-t-bill", - "name": "Backed ZPR1 $ 1-3 Month T-Bill", - "symbol": "bzpr1" - }, - { - "id": "backstage-pass-notes", - "name": "Backstage Pass Notes", - "symbol": "notes" - }, - { - "id": "bacon-2", - "name": "Bacon", - "symbol": "bacon" - }, - { - "id": "bacondao", - "name": "BaconDAO", - "symbol": "bacon" - }, - { - "id": "badger-dao", - "name": "Badger", - "symbol": "badger" - }, - { - "id": "badger-sett-badger", - "name": "Badger Sett Badger", - "symbol": "bbadger" - }, - { - "id": "bad-idea-ai", - "name": "Bad Idea AI", - "symbol": "bad" - }, - { - "id": "bad-santa", - "name": "Bad Santa", - "symbol": "bad" - }, - { - "id": "bafi-finance-token", - "name": "Bafi Finance", - "symbol": "bafi" - }, - { - "id": "bag", - "name": "Bag", - "symbol": "bag" - }, - { - "id": "bagholder", - "name": "Bagholder", - "symbol": "bag" - }, - { - "id": "bahamas", - "name": "Bahamas", - "symbol": "bahamas" - }, - { - "id": "bai-stablecoin", - "name": "BAI Stablecoin", - "symbol": "bai" - }, - { - "id": "baked-token", - "name": "Baked", - "symbol": "baked" - }, - { - "id": "bakerytoken", - "name": "BakerySwap", - "symbol": "bake" - }, - { - "id": "bakerytools", - "name": "BakeryTools", - "symbol": "tbake" - }, - { - "id": "baklava", - "name": "Baklava", - "symbol": "bava" - }, - { - "id": "balance-ai", - "name": "Balance AI", - "symbol": "bai" - }, - { - "id": "balanced-dollars", - "name": "Balanced Dollars", - "symbol": "bnusd" - }, - { - "id": "balance-network-finance", - "name": "Balance Network Finance", - "symbol": "balance" - }, - { - "id": "balancer", - "name": "Balancer", - "symbol": "bal" - }, - { - "id": "balancer-80-bal-20-weth", - "name": "Balancer 80 BAL 20 WETH", - "symbol": "b-80bal-20weth" - }, - { - "id": "balancer-80-rdnt-20-weth", - "name": "Balancer 80 RDNT 20 WETH", - "symbol": "dlp" - }, - { - "id": "balancer-stable-usd", - "name": "Balancer Stable USD", - "symbol": "stabal3" - }, - { - "id": "balancer-usdc-usdbc-axlusdc", - "name": "Balancer USDC/USDbC/axlUSDC", - "symbol": "usdc-usdbc-axlusdc" - }, - { - "id": "balance-tokens", - "name": "Balanced", - "symbol": "baln" - }, - { - "id": "bald", - "name": "Bald", - "symbol": "bald" - }, - { - "id": "bald-dog", - "name": "Bald Dog", - "symbol": "baldo" - }, - { - "id": "bali-united-fc-fan-token", - "name": "Bali United FC Fan Token", - "symbol": "bufc" - }, - { - "id": "ball-coin", - "name": "BALL Coin", - "symbol": "ball" - }, - { - "id": "ballswap", - "name": "BallSwap", - "symbol": "bsp" - }, - { - "id": "ball-token", - "name": "Ball", - "symbol": "ball" - }, - { - "id": "balpha", - "name": "bAlpha", - "symbol": "balpha" - }, - { - "id": "bambi", - "name": "Bambi", - "symbol": "bam" - }, - { - "id": "bamboo-coin", - "name": "Bamboo Coin", - "symbol": "bmbo" - }, - { - "id": "bamboo-defi", - "name": "Bamboo DeFi", - "symbol": "bamboo" - }, - { - "id": "bamboo-token-c90b31ff-8355-41d6-a495-2b16418524c2", - "name": "PandaFarm (BBO)", - "symbol": "bbo" - }, - { - "id": "banana", - "name": "Banana", - "symbol": "banana" - }, - { - "id": "bananacat", - "name": "BananaCat", - "symbol": "bcat" - }, - { - "id": "bananacat-sol", - "name": "BananaCat (Sol)", - "symbol": "bcat" - }, - { - "id": "bananace", - "name": "Bananace", - "symbol": "nana" - }, - { - "id": "banana-gun", - "name": "Banana Gun", - "symbol": "banana" - }, - { - "id": "banana-market-ordinals", - "name": "Banana Market (Ordinals)", - "symbol": "bnan" - }, - { - "id": "bananatok", - "name": "BananaTok", - "symbol": "bna" - }, - { - "id": "banana-token", - "name": "Chimpion", - "symbol": "bnana" - }, - { - "id": "banano", - "name": "Banano", - "symbol": "ban" - }, - { - "id": "bancor", - "name": "Bancor Network", - "symbol": "bnt" - }, - { - "id": "bancor-governance-token", - "name": "Bancor Governance", - "symbol": "vbnt" - }, - { - "id": "band-protocol", - "name": "Band Protocol", - "symbol": "band" - }, - { - "id": "bands", - "name": "BANDS", - "symbol": "bands" - }, - { - "id": "bandwidth-ai", - "name": "Bandwidth AI", - "symbol": "bps" - }, - { - "id": "bandzai-token", - "name": "BandZai Token", - "symbol": "bzai" - }, - { - "id": "banger", - "name": "BANGER", - "symbol": "banger" - }, - { - "id": "bank", - "name": "Bank", - "symbol": "$bank" - }, - { - "id": "bankbrc", - "name": "BANK (Ordinals)", - "symbol": "bank" - }, - { - "id": "bank-btc", - "name": "Bank BTC", - "symbol": "bankbtc" - }, - { - "id": "bank-btc-2", - "name": "Bank BTC", - "symbol": "bankbtc" - }, - { - "id": "bankera", - "name": "Bankera", - "symbol": "bnk" - }, - { - "id": "bankercoin", - "name": "Bankercoin", - "symbol": "$bank" - }, - { - "id": "bankers-dream", - "name": "Bankers Dream", - "symbol": "bank$" - }, - { - "id": "bankless-bed-index", - "name": "Bankless BED Index", - "symbol": "bed" - }, - { - "id": "bankless-dao", - "name": "Bankless DAO", - "symbol": "bank" - }, - { - "id": "bankroll-vault", - "name": "Bankroll Vault", - "symbol": "vlt" - }, - { - "id": "banksocial", - "name": "BankSocial", - "symbol": "bsl" - }, - { - "id": "banque-universal", - "name": "Banque Universal", - "symbol": "cbu" - }, - { - "id": "bantu", - "name": "Bantu", - "symbol": "xbn" - }, - { - "id": "banus-finance", - "name": "Banus Finance", - "symbol": "banus" - }, - { - "id": "banx", - "name": "BANX", - "symbol": "banx" - }, - { - "id": "baobaosol", - "name": "BaoBaoSol", - "symbol": "baos" - }, - { - "id": "baoeth-eth-stablepool", - "name": "baoETH-ETH StablePool", - "symbol": "b-baoeth-eth-bpt" - }, - { - "id": "bao-finance", - "name": "Bao Finance", - "symbol": "bao" - }, - { - "id": "bao-finance-v2", - "name": "Bao Finance V2", - "symbol": "bao" - }, - { - "id": "barbiecrashbandicootrfk88", - "name": "BarbieCrashBandicootRFK88", - "symbol": "solana" - }, - { - "id": "bark", - "name": "Bark", - "symbol": "bark" - }, - { - "id": "bark-ai", - "name": "Bark AI", - "symbol": "bark" - }, - { - "id": "bark-gas-token", - "name": "Bark Gas Token", - "symbol": "bark" - }, - { - "id": "barking", - "name": "Barking", - "symbol": "bark" - }, - { - "id": "barley-finance", - "name": "Barley Finance", - "symbol": "barl" - }, - { - "id": "barnbridge", - "name": "BarnBridge", - "symbol": "bond" - }, - { - "id": "barsik", - "name": "BARSIK", - "symbol": "barsik" - }, - { - "id": "barter", - "name": "Barter", - "symbol": "brtr" - }, - { - "id": "base", - "name": "Base", - "symbol": "base" - }, - { - "id": "baseai", - "name": "BaseAI", - "symbol": "baseai" - }, - { - "id": "baseape", - "name": "Baseape", - "symbol": "bape" - }, - { - "id": "base-baboon", - "name": "Base Baboon", - "symbol": "boon" - }, - { - "id": "basebank", - "name": "BaseBank", - "symbol": "bbank" - }, - { - "id": "base-book", - "name": "BASE BOOK", - "symbol": "$bbook" - }, - { - "id": "basebros", - "name": "BaseBros", - "symbol": "bros" - }, - { - "id": "basedai", - "name": "BasedAI", - "symbol": "basedai" - }, - { - "id": "based-ai", - "name": "Based AI", - "symbol": "bai" - }, - { - "id": "based-baby", - "name": "Based Baby", - "symbol": "bbb" - }, - { - "id": "based-bober", - "name": "based bober", - "symbol": "bober" - }, - { - "id": "based-brett", - "name": "Brett", - "symbol": "brett" - }, - { - "id": "based-brians", - "name": "Based Brians", - "symbol": "cap" - }, - { - "id": "basedchad", - "name": "BASEDChad", - "symbol": "based" - }, - { - "id": "based-chad", - "name": "Based Chad", - "symbol": "chad" - }, - { - "id": "based-degen-apes", - "name": "Based Degen Apes", - "symbol": "apes" - }, - { - "id": "based-eth", - "name": "Based ETH", - "symbol": "bsdeth" - }, - { - "id": "based-farm", - "name": "Based Farm", - "symbol": "based" - }, - { - "id": "based-finance", - "name": "Based Finance", - "symbol": "based" - }, - { - "id": "based-fink", - "name": "Based Fink", - "symbol": "fink" - }, - { - "id": "based-floki", - "name": "Based Floki", - "symbol": "bloki" - }, - { - "id": "based-markets", - "name": "based.markets", - "symbol": "based" - }, - { - "id": "based-money-finance", - "name": "Based Money Finance", - "symbol": "based" - }, - { - "id": "base-dog", - "name": "Base DOG", - "symbol": "dog" - }, - { - "id": "based-peaches", - "name": "Based Peaches", - "symbol": "peach" - }, - { - "id": "based-peng", - "name": "Based Peng", - "symbol": "beng" - }, - { - "id": "based-potato", - "name": "Based Potato", - "symbol": "potato" - }, - { - "id": "based-rate", - "name": "Based Rate", - "symbol": "brate" - }, - { - "id": "based-rate-share", - "name": "Based Rate Share", - "symbol": "bshare" - }, - { - "id": "based-shiba-inu", - "name": "Based Shiba Inu", - "symbol": "bshib" - }, - { - "id": "based-street-bets", - "name": "Based Street Bets", - "symbol": "bsb" - }, - { - "id": "basedswap", - "name": "BasedSwap", - "symbol": "bsw" - }, - { - "id": "base-god", - "name": "Base God", - "symbol": "tybg" - }, - { - "id": "baseic", - "name": "Baseic", - "symbol": "baseic" - }, - { - "id": "baseinu", - "name": "BaseInu", - "symbol": "binu" - }, - { - "id": "base-inu", - "name": "Base Inu", - "symbol": "binu" - }, - { - "id": "base-name-service", - "name": "Base Name Service", - "symbol": "bns" - }, - { - "id": "basenji", - "name": "Basenji", - "symbol": "benji" - }, - { - "id": "base-pro-shops", - "name": "Base Pro Shops", - "symbol": "bps" - }, - { - "id": "base-protocol", - "name": "Base Protocol", - "symbol": "base" - }, - { - "id": "basesafe", - "name": "BaseSafe", - "symbol": "safe" - }, - { - "id": "base-street", - "name": "Base Street", - "symbol": "street" - }, - { - "id": "baseswap", - "name": "BaseSwap", - "symbol": "bswap" - }, - { - "id": "basetama", - "name": "Basetama", - "symbol": "btama" - }, - { - "id": "base-velocimeter", - "name": "Base Velocimeter", - "symbol": "bvm" - }, - { - "id": "basex", - "name": "BaseX", - "symbol": "bsx" - }, - { - "id": "basexchange", - "name": "BaseXchange", - "symbol": "bex" - }, - { - "id": "baseyield", - "name": "BaseYield", - "symbol": "bay" - }, - { - "id": "basic-attention-token", - "name": "Basic Attention", - "symbol": "bat" - }, - { - "id": "basic-dog-meme", - "name": "Basic Dog Meme", - "symbol": "dog" - }, - { - "id": "basilisk", - "name": "Basilisk", - "symbol": "bsx" - }, - { - "id": "basis-cash", - "name": "Basis Cash", - "symbol": "bac" - }, - { - "id": "basis-gold-share-heco", - "name": "Basis Gold Share (Heco)", - "symbol": "bags" - }, - { - "id": "basis-markets", - "name": "basis.markets", - "symbol": "basis" - }, - { - "id": "basis-share", - "name": "Basis Share", - "symbol": "bas" - }, - { - "id": "basket", - "name": "Basket", - "symbol": "bskt" - }, - { - "id": "basketball-legends", - "name": "Basketball Legends", - "symbol": "bbl" - }, - { - "id": "basketcoin", - "name": "BasketCoin", - "symbol": "bskt" - }, - { - "id": "baskonia-fan-token", - "name": "Baskonia Fan Token", - "symbol": "bkn" - }, - { - "id": "baso-finance", - "name": "Baso Finance", - "symbol": "baso" - }, - { - "id": "bass-exchange", - "name": "Bass Exchange", - "symbol": "$bass" - }, - { - "id": "bata", - "name": "Bata", - "symbol": "bta" - }, - { - "id": "batcat", - "name": "batcat", - "symbol": "btc" - }, - { - "id": "battlefly", - "name": "BattleFly", - "symbol": "gfly" - }, - { - "id": "battle-for-giostone", - "name": "Battle For Giostone", - "symbol": "bfg" - }, - { - "id": "battleforten", - "name": "BattleForTEN", - "symbol": "bft" - }, - { - "id": "battle-infinity", - "name": "Battle Infinity", - "symbol": "ibat" - }, - { - "id": "battle-of-guardians-share", - "name": "Battle of Guardians Share", - "symbol": "bgs" - }, - { - "id": "battle-pets", - "name": "Hello Pets", - "symbol": "pet" - }, - { - "id": "battle-saga", - "name": "Battle Saga", - "symbol": "btl" - }, - { - "id": "battleverse", - "name": "BattleVerse", - "symbol": "bvc" - }, - { - "id": "battle-world", - "name": "Battle World", - "symbol": "bwo" - }, - { - "id": "bawls-onu", - "name": "Bawls onu", - "symbol": "$bawls" - }, - { - "id": "bayc-fraction-token", - "name": "BAYC Fraction Token", - "symbol": "" - }, - { - "id": "bayesian", - "name": "Bayesian", - "symbol": "baye" - }, - { - "id": "bazaars", - "name": "Bazaars", - "symbol": "bzr" - }, - { - "id": "bazed-games", - "name": "Bazed Games", - "symbol": "bazed" - }, - { - "id": "bbcgoldcoin", - "name": "BBCGoldCoin", - "symbol": "bbcg" - }, - { - "id": "bb-gaming", - "name": "BB Gaming", - "symbol": "bb" - }, - { - "id": "bbs-network", - "name": "BBS Network", - "symbol": "bbs" - }, - { - "id": "bcoq-inu", - "name": "BCOQ INU", - "symbol": "bcoq" - }, - { - "id": "bcpay-fintech", - "name": "BCPAY FinTech", - "symbol": "bcpay" - }, - { - "id": "b-cube-ai", - "name": "B-cube.ai", - "symbol": "bcube" - }, - { - "id": "bdollar", - "name": "bDollar", - "symbol": "bdo" - }, - { - "id": "beacon", - "name": "Beacon", - "symbol": "becn" - }, - { - "id": "beam", - "name": "BEAM", - "symbol": "beam" - }, - { - "id": "beam-2", - "name": "Beam", - "symbol": "beam" - }, - { - "id": "beam-bridged-avax-beam", - "name": "Beam Bridged AVAX (Beam)", - "symbol": "avax" - }, - { - "id": "beam-bridged-usdc-beam", - "name": "Beam Bridged USDC (Beam)", - "symbol": "usdc" - }, - { - "id": "beamcat", - "name": "BEAMCAT", - "symbol": "bcat" - }, - { - "id": "beamswap", - "name": "BeamSwap", - "symbol": "glint" - }, - { - "id": "beamx", - "name": "BEAMX", - "symbol": "beamx" - }, - { - "id": "bean", - "name": "Bean", - "symbol": "bean" - }, - { - "id": "bean-2", - "name": "Bean", - "symbol": "bean" - }, - { - "id": "bean-cash", - "name": "Bean Cash", - "symbol": "bitb" - }, - { - "id": "beany", - "name": "Beany", - "symbol": "beany" - }, - { - "id": "bear", - "name": "Bear", - "symbol": "bear" - }, - { - "id": "bear-2", - "name": "Bear", - "symbol": "bear" - }, - { - "id": "beardy-dragon", - "name": "Bearded Dragon", - "symbol": "beardy" - }, - { - "id": "bear-inu", - "name": "Bear Inu", - "symbol": "bear" - }, - { - "id": "bear-scrub-money", - "name": "Bear Scrub Money", - "symbol": "bear" - }, - { - "id": "beat-2", - "name": "Beat", - "symbol": "beat" - }, - { - "id": "beatgen-nft", - "name": "BeatGen NFT", - "symbol": "bgn" - }, - { - "id": "beautifulprincessdisorder", - "name": "BeautifulPrincessDisorder", - "symbol": "bpd" - }, - { - "id": "beauty-bakery-linked-operation-transaction-technology", - "name": "Beauty Bakery Linked Operation Transaction Technology", - "symbol": "lott" - }, - { - "id": "bebe", - "name": "BEBE", - "symbol": "bebe" - }, - { - "id": "bebe-2", - "name": "BEBE", - "symbol": "bebe" - }, - { - "id": "bebe-on-base", - "name": "Bebe on Base", - "symbol": "bebe" - }, - { - "id": "becoswap-token", - "name": "BecoSwap", - "symbol": "beco" - }, - { - "id": "beebox", - "name": "Beebox", - "symbol": "xbbc" - }, - { - "id": "beecasinogames", - "name": "beecasinogames", - "symbol": "beecasino" - }, - { - "id": "beechat", - "name": "BeeChat", - "symbol": "chat" - }, - { - "id": "beef", - "name": "BEEF", - "symbol": "beef" - }, - { - "id": "beefy-escrowed-fantom", - "name": "Beefy Escrowed Fantom", - "symbol": "beftm" - }, - { - "id": "beefy-finance", - "name": "Beefy", - "symbol": "bifi" - }, - { - "id": "bee-launchpad", - "name": "BEE Launchpad", - "symbol": "bees" - }, - { - "id": "beenode", - "name": "Beenode", - "symbol": "bnode" - }, - { - "id": "beep-coin", - "name": "BEEP Coin", - "symbol": "beep" - }, - { - "id": "beer-money", - "name": "Beer Money", - "symbol": "beer" - }, - { - "id": "beethoven-x", - "name": "Beethoven X", - "symbol": "beets" - }, - { - "id": "bee-tools", - "name": "Bee Tools", - "symbol": "buzz" - }, - { - "id": "beetroot", - "name": "BEETroot", - "symbol": "beet" - }, - { - "id": "befasterholdertoken", - "name": "BeFaster Holder Token", - "symbol": "bfht" - }, - { - "id": "befe", - "name": "BEFE", - "symbol": "befe" - }, - { - "id": "befi-labs", - "name": "BeFi Labs", - "symbol": "befi" - }, - { - "id": "befitter", - "name": "beFITTER", - "symbol": "fiu" - }, - { - "id": "befitter-health", - "name": "beFITTER Health", - "symbol": "hee" - }, - { - "id": "befy", - "name": "BEFY", - "symbol": "befy" - }, - { - "id": "beg", - "name": "Beg", - "symbol": "beg" - }, - { - "id": "beholder", - "name": "Behodler", - "symbol": "eye" - }, - { - "id": "bela", - "name": "Bela Aqua", - "symbol": "aqua" - }, - { - "id": "beldex", - "name": "Beldex", - "symbol": "bdx" - }, - { - "id": "belifex", - "name": "Belifex", - "symbol": "befx" - }, - { - "id": "bella-protocol", - "name": "Bella Protocol", - "symbol": "bel" - }, - { - "id": "bellcoin", - "name": "Bellcoin", - "symbol": "bell" - }, - { - "id": "bell-curve-money", - "name": "Bell Curve Money", - "symbol": "bell" - }, - { - "id": "bellscoin", - "name": "Bellscoin", - "symbol": "bel" - }, - { - "id": "belt", - "name": "Belt", - "symbol": "belt" - }, - { - "id": "beluga-cat", - "name": "Beluga Cat", - "symbol": "beluga" - }, - { - "id": "beluga-fi", - "name": "Beluga.fi", - "symbol": "beluga" - }, - { - "id": "bemchain", - "name": "Bemchain", - "symbol": "bcn" - }, - { - "id": "bemo-staked-ton", - "name": "bemo Staked TON", - "symbol": "stton" - }, - { - "id": "ben-2", - "name": "Ben", - "symbol": "ben" - }, - { - "id": "bencoin", - "name": "BENCOIN", - "symbol": "$ben" - }, - { - "id": "benddao", - "name": "BendDAO", - "symbol": "bend" - }, - { - "id": "benddao-bdin-ordinals", - "name": "BendDAO BDIN (Ordinals)", - "symbol": "bdin" - }, - { - "id": "benft-solutions", - "name": "BeNFT Solutions", - "symbol": "beai" - }, - { - "id": "beni", - "name": "Beni", - "symbol": "beni" - }, - { - "id": "benji-bananas", - "name": "Benji Bananas", - "symbol": "benji" - }, - { - "id": "benqi", - "name": "BENQI", - "symbol": "qi" - }, - { - "id": "benqi-liquid-staked-avax", - "name": "BENQI Liquid Staked AVAX", - "symbol": "savax" - }, - { - "id": "ben-s-finale", - "name": "Ben's Finale", - "symbol": "finale" - }, - { - "id": "bent-finance", - "name": "Bent Finance", - "symbol": "bent" - }, - { - "id": "benzene", - "name": "Benzene", - "symbol": "bzn" - }, - { - "id": "beoble", - "name": "Beoble", - "symbol": "bbl" - }, - { - "id": "bep20-leo", - "name": "BEP20 LEO", - "symbol": "bleo" - }, - { - "id": "bepay", - "name": "bePAY Finance", - "symbol": "becoin" - }, - { - "id": "bepe", - "name": "BEPE", - "symbol": "bepe" - }, - { - "id": "bepro-network", - "name": "Bepro", - "symbol": "bepro" - }, - { - "id": "berachain-bera", - "name": "Berachain BERA", - "symbol": "bera" - }, - { - "id": "beradex", - "name": "Beradex", - "symbol": "brdx" - }, - { - "id": "bergerdoge", - "name": "BergerDoge", - "symbol": "bergerdoge" - }, - { - "id": "bermuda", - "name": "Bermuda", - "symbol": "bmda" - }, - { - "id": "berry", - "name": "Berry", - "symbol": "berry" - }, - { - "id": "berry-data", - "name": "Berry Data", - "symbol": "bry" - }, - { - "id": "berry-pixels", - "name": "Berry", - "symbol": "berry" - }, - { - "id": "berryswap", - "name": "BerrySwap", - "symbol": "berry" - }, - { - "id": "besa-gaming-company", - "name": "Besa Gaming Company", - "symbol": "besa" - }, - { - "id": "besiktas", - "name": "Be\u015fikta\u015f", - "symbol": "bjk" - }, - { - "id": "beskar", - "name": "Beskar", - "symbol": "bsk-baa025" - }, - { - "id": "bet45", - "name": "Bet45", - "symbol": "b45" - }, - { - "id": "betacarbon", - "name": "BetaCarbon", - "symbol": "bcau" - }, - { - "id": "beta-finance", - "name": "Beta Finance", - "symbol": "beta" - }, - { - "id": "betai", - "name": "BetAI", - "symbol": "bai" - }, - { - "id": "betbot", - "name": "BetBot", - "symbol": "bbot" - }, - { - "id": "betbuinu", - "name": "BetbuInu", - "symbol": "crypto" - }, - { - "id": "betero", - "name": "Betero", - "symbol": "bte" - }, - { - "id": "betit", - "name": "BetIT", - "symbol": "betit" - }, - { - "id": "bet-lounge", - "name": "Bet Lounge", - "symbol": "betz" - }, - { - "id": "betswap-gg", - "name": "Betswap.gg", - "symbol": "bsgg" - }, - { - "id": "betswirl", - "name": "BetSwirl", - "symbol": "bets" - }, - { - "id": "betted", - "name": "Green Games", - "symbol": "betted" - }, - { - "id": "betterbelong", - "name": "LONG", - "symbol": "long" - }, - { - "id": "betterfan", - "name": "BetterFan", - "symbol": "bff" - }, - { - "id": "betterment-digital", - "name": "Betterment Digital", - "symbol": "bemd" - }, - { - "id": "beyond-finance", - "name": "NBX", - "symbol": "byn" - }, - { - "id": "beyond-protocol", - "name": "Beyond Protocol", - "symbol": "bp" - }, - { - "id": "bezoge-earth", - "name": "Bezoge Earth", - "symbol": "bezoge" - }, - { - "id": "bfg-token", - "name": "BetFury", - "symbol": "bfg" - }, - { - "id": "bficgold", - "name": "BFICGOLD", - "symbol": "bficgold" - }, - { - "id": "bficoin", - "name": "BFICoin", - "symbol": "bfic" - }, - { - "id": "bfk-warzone", - "name": "BFK WARZONE", - "symbol": "bfk" - }, - { - "id": "bg-trade", - "name": "BG Trade", - "symbol": "bgt" - }, - { - "id": "bhbd", - "name": "bHBD", - "symbol": "bhbd" - }, - { - "id": "bhive", - "name": "bHIVE", - "symbol": "bhive" - }, - { - "id": "bhnetwork", - "name": "BHNetwork", - "symbol": "bhat" - }, - { - "id": "bho-network", - "name": "BHO Network", - "symbol": "bho" - }, - { - "id": "biaocoin", - "name": "Biaocoin", - "symbol": "biao" - }, - { - "id": "biao-coin", - "name": "Biao Coin", - "symbol": "biao" - }, - { - "id": "bibi", - "name": "BIBI", - "symbol": "bibi" - }, - { - "id": "bibi2-0", - "name": "BIBI2.0", - "symbol": "bibi2.0" - }, - { - "id": "biblecoin", - "name": "Biblecoin", - "symbol": "bibl" - }, - { - "id": "biblical-truth", - "name": "Biblical Truth", - "symbol": "btru" - }, - { - "id": "bibox-token", - "name": "Bibox", - "symbol": "bix" - }, - { - "id": "biceps", - "name": "Biceps", - "symbol": "bics" - }, - { - "id": "biconbase", - "name": "BicOnBase", - "symbol": "bic" - }, - { - "id": "biconomy", - "name": "Biconomy", - "symbol": "bico" - }, - { - "id": "biconomy-exchange-token", - "name": "Biconomy Exchange Token", - "symbol": "bit" - }, - { - "id": "bictory", - "name": "Bictory", - "symbol": "bt" - }, - { - "id": "bidao", - "name": "Bidao", - "symbol": "bid" - }, - { - "id": "bidao-smart-chain", - "name": "Bidao Smart Chain", - "symbol": "bisc" - }, - { - "id": "bidipass", - "name": "BidiPass", - "symbol": "bdp" - }, - { - "id": "bid-protocol", - "name": "BID Protocol", - "symbol": "bidp" - }, - { - "id": "bidz-coin", - "name": "BIDZ Coin", - "symbol": "bidz" - }, - { - "id": "bifi", - "name": "BiFi", - "symbol": "bifi" - }, - { - "id": "bifinance-exchange", - "name": "BiFinance Exchange", - "symbol": "bft" - }, - { - "id": "bifrost", - "name": "Bifrost", - "symbol": "bfc" - }, - { - "id": "bifrost-native-coin", - "name": "Bifrost Native Coin", - "symbol": "bnc" - }, - { - "id": "bifrost-voucher-astr", - "name": "Bifrost Voucher ASTR", - "symbol": "vastr" - }, - { - "id": "bifrost-voucher-manta", - "name": "Bifrost Voucher MANTA", - "symbol": "vmanta" - }, - { - "id": "big-bonus-coin", - "name": "Big Bonus Coin", - "symbol": "bbc" - }, - { - "id": "big-bonus-coin-2", - "name": "Big Bonus Coin [ETH]", - "symbol": "bbc" - }, - { - "id": "big-crypto-game", - "name": "Big Crypto Game", - "symbol": "crypto" - }, - { - "id": "big-data-protocol", - "name": "Big Data Protocol", - "symbol": "bdp" - }, - { - "id": "big-defi-energy", - "name": "Big Defi Energy", - "symbol": "bde" - }, - { - "id": "big-eyes", - "name": "Big Eyes", - "symbol": "big" - }, - { - "id": "big-floppa", - "name": "Big Floppa", - "symbol": "$floppa" - }, - { - "id": "bigfoot-monster", - "name": "Bigfoot Monster", - "symbol": "bigf" - }, - { - "id": "big-panda", - "name": "Big Panda", - "symbol": "panda" - }, - { - "id": "big-roo", - "name": "BIG ROO", - "symbol": "bigroo" - }, - { - "id": "bigshortbets", - "name": "BigShortBets", - "symbol": "bigsb" - }, - { - "id": "big-time", - "name": "Big Time", - "symbol": "bigtime" - }, - { - "id": "big-tycoon", - "name": "Big Tycoon", - "symbol": "mbtyc" - }, - { - "id": "biis-ordinals", - "name": "Biis (Ordinals)", - "symbol": "biis" - }, - { - "id": "bikerush", - "name": "Bikerush", - "symbol": "brt" - }, - { - "id": "bilira", - "name": "BiLira", - "symbol": "tryb" - }, - { - "id": "billiard-crypto", - "name": "Billiard Crypto", - "symbol": "bic" - }, - { - "id": "billicat", - "name": "BilliCat", - "symbol": "bcat" - }, - { - "id": "billionaires-pixel-club", - "name": "Billionaires Pixel Club", - "symbol": "bpc" - }, - { - "id": "billion-dollar-inu", - "name": "Billion Dollar Inu", - "symbol": "binu" - }, - { - "id": "billionhappiness", - "name": "BillionHappiness", - "symbol": "bhc" - }, - { - "id": "billionview", - "name": "Billionview", - "symbol": "bvt" - }, - { - "id": "bim", - "name": "BIM", - "symbol": "bim" - }, - { - "id": "bimbo-the-dog", - "name": "Bimbo The Dog", - "symbol": "bimbo" - }, - { - "id": "binamon", - "name": "Binamon", - "symbol": "bmon" - }, - { - "id": "binance-bitcoin", - "name": "Binance Bitcoin", - "symbol": "btcb" - }, - { - "id": "binance-bridged-usdc-bnb-smart-chain", - "name": "Binance Bridged USDC (BNB Smart Chain)", - "symbol": "usdc" - }, - { - "id": "binance-bridged-usdt-bnb-smart-chain", - "name": "Binance Bridged USDT (BNB Smart Chain)", - "symbol": "bsc-usd" - }, - { - "id": "binancecoin", - "name": "BNB", - "symbol": "bnb" - }, - { - "id": "binance-coin-wormhole", - "name": "Binance Coin (Wormhole)", - "symbol": "bnb" - }, - { - "id": "binance-eth", - "name": "Binance ETH staking", - "symbol": "beth" - }, - { - "id": "binanceidr", - "name": "BIDR", - "symbol": "bidr" - }, - { - "id": "binance-peg-avalanche", - "name": "Binance-Peg Avalanche", - "symbol": "avax" - }, - { - "id": "binance-peg-bitcoin-cash", - "name": "Binance-Peg Bitcoin Cash", - "symbol": "bch" - }, - { - "id": "binance-peg-busd", - "name": "Binance-Peg BUSD", - "symbol": "busd" - }, - { - "id": "binance-peg-cardano", - "name": "Binance-Peg Cardano", - "symbol": "ada" - }, - { - "id": "binance-peg-dogecoin", - "name": "Binance-Peg Dogecoin", - "symbol": "doge" - }, - { - "id": "binance-peg-eos", - "name": "Binance-Peg EOS", - "symbol": "eos" - }, - { - "id": "binance-peg-filecoin", - "name": "Binance-Peg Filecoin", - "symbol": "fil" - }, - { - "id": "binance-peg-firo", - "name": "Binance-Peg Firo", - "symbol": "firo" - }, - { - "id": "binance-peg-iotex", - "name": "Binance-Peg IoTeX", - "symbol": "iotx" - }, - { - "id": "binance-peg-litecoin", - "name": "Binance-Peg Litecoin", - "symbol": "ltc" - }, - { - "id": "binance-peg-ontology", - "name": "Binance-Peg Ontology", - "symbol": "ont" - }, - { - "id": "binance-peg-polkadot", - "name": "Binance-Peg Polkadot", - "symbol": "dot" - }, - { - "id": "binance-peg-xrp", - "name": "Binance-Peg XRP", - "symbol": "xrp" - }, - { - "id": "binance-usd", - "name": "BUSD", - "symbol": "busd" - }, - { - "id": "binance-usd-linea", - "name": "Binance USD (Linea)", - "symbol": "busd" - }, - { - "id": "binance-wrapped-btc", - "name": "Binance Wrapped BTC", - "symbol": "bbtc" - }, - { - "id": "binarydao", - "name": "BinaryDAO", - "symbol": "byte" - }, - { - "id": "binary-swap", - "name": "Binary Swap", - "symbol": "0101" - }, - { - "id": "binaryx", - "name": "BinaryX [OLD]", - "symbol": "bnx" - }, - { - "id": "binaryx-2", - "name": "BinaryX", - "symbol": "bnx" - }, - { - "id": "bincentive", - "name": "Bincentive", - "symbol": "bcnt" - }, - { - "id": "binemon", - "name": "Binemon", - "symbol": "bin" - }, - { - "id": "bingo-2", - "name": "Bingo", - "symbol": "catbingolo" - }, - { - "id": "bingo-3", - "name": "Bingo", - "symbol": "bingo" - }, - { - "id": "bingus-the-cat", - "name": "Bingus The Cat", - "symbol": "bingus" - }, - { - "id": "binstarter", - "name": "BinStarter", - "symbol": "bsr" - }, - { - "id": "biokript", - "name": "Biokript", - "symbol": "bkpt" - }, - { - "id": "biometric-financial", - "name": "BiometricFinancial", - "symbol": "biofi" - }, - { - "id": "biop", - "name": "BIOP", - "symbol": "$biop" - }, - { - "id": "biopassport", - "name": "Bio Passport", - "symbol": "biot" - }, - { - "id": "bios", - "name": "0x_nodes", - "symbol": "bios" - }, - { - "id": "bip1", - "name": "BIP1", - "symbol": "bip1" - }, - { - "id": "birake", - "name": "Birake", - "symbol": "bir" - }, - { - "id": "birb-2", - "name": "Birb", - "symbol": "birb" - }, - { - "id": "birb-3", - "name": "birb", - "symbol": "birb" - }, - { - "id": "bird-dog", - "name": "Bird Dog", - "symbol": "birddog" - }, - { - "id": "bird-dog-on-sol", - "name": "Bird Dog on SOL", - "symbol": "birddog" - }, - { - "id": "birdies", - "name": "BIRDIES", - "symbol": "birds" - }, - { - "id": "bird-money", - "name": "Bird.Money", - "symbol": "bird" - }, - { - "id": "birdtoken", - "name": "birdToken", - "symbol": "birdtoken" - }, - { - "id": "bishop", - "name": "Bishop", - "symbol": "bishop" - }, - { - "id": "biskit-protocol", - "name": "Biskit Protocol", - "symbol": "biskit" - }, - { - "id": "bismuth", - "name": "Bismuth", - "symbol": "bis" - }, - { - "id": "biso", - "name": "BISO", - "symbol": "biso" - }, - { - "id": "bistroo", - "name": "Bistroo", - "symbol": "bist" - }, - { - "id": "biswap", - "name": "Biswap", - "symbol": "bsw" - }, - { - "id": "bit2me", - "name": "Bit2Me", - "symbol": "b2m" - }, - { - "id": "bitago", - "name": "Bitago", - "symbol": "xbit" - }, - { - "id": "bitazza", - "name": "Bitazza", - "symbol": "btz" - }, - { - "id": "bitball", - "name": "Bitball", - "symbol": "btb" - }, - { - "id": "bitball-treasure", - "name": "Bitball Treasure", - "symbol": "btrs" - }, - { - "id": "bitbama", - "name": "Bitbama", - "symbol": "bama" - }, - { - "id": "bitbar", - "name": "Bitbar", - "symbol": "btb" - }, - { - "id": "bitbase-token", - "name": "BitBase Token", - "symbol": "btbs" - }, - { - "id": "bitbook-token", - "name": "BitBook", - "symbol": "bbt" - }, - { - "id": "bitboost", - "name": "BitBoost", - "symbol": "bbt" - }, - { - "id": "bitbrawl", - "name": "BitBrawl", - "symbol": "brawl" - }, - { - "id": "bitbullbot", - "name": "BitBullBot", - "symbol": "bbb" - }, - { - "id": "bitcanna", - "name": "BitCanna", - "symbol": "bcna" - }, - { - "id": "bitcash", - "name": "BitCash", - "symbol": "bitc" - }, - { - "id": "bitcastle", - "name": "bitcastle", - "symbol": "castle" - }, - { - "id": "bitcat", - "name": "Bitcat", - "symbol": "bitcat" - }, - { - "id": "bitci-blok", - "name": "Blok Token", - "symbol": "blok" - }, - { - "id": "bitcicoin", - "name": "Bitcicoin", - "symbol": "bitci" - }, - { - "id": "bitci-edu", - "name": "Bitci EDU", - "symbol": "bedu" - }, - { - "id": "bitci-racing-token", - "name": "Bitci Racing Token", - "symbol": "brace" - }, - { - "id": "bitclave", - "name": "BitClave", - "symbol": "cat" - }, - { - "id": "bitcoin", - "name": "Bitcoin", - "symbol": "btc" - }, - { - "id": "bitcoin-2", - "name": "Bitcoin 2", - "symbol": "btc2" - }, - { - "id": "bitcoin20", - "name": "Bitcoin20", - "symbol": "btc20" - }, - { - "id": "bitcoin-2-0", - "name": "Bitcoin 2.0", - "symbol": "btc2.0" - }, - { - "id": "bitcoin-ai", - "name": "Bitcoin AI", - "symbol": "bitcoinai" - }, - { - "id": "bitcoin-asia", - "name": "Bitcoin Asia", - "symbol": "btca" - }, - { - "id": "bitcoin-atom", - "name": "Bitcoin Atom", - "symbol": "bca" - }, - { - "id": "bitcoin-avalanche-bridged-btc-b", - "name": "Bitcoin Avalanche Bridged (BTC.b)", - "symbol": "btc.b" - }, - { - "id": "bitcoinbam", - "name": "BitcoinBam", - "symbol": "btcbam" - }, - { - "id": "bitcoin-bep2", - "name": "Bitcoin BEP2", - "symbol": "btcb" - }, - { - "id": "bitcoin-br", - "name": "Bitcoin BR", - "symbol": "btcbr" - }, - { - "id": "bitcoin-candy", - "name": "Bitcoin Candy", - "symbol": "cdy" - }, - { - "id": "bitcoin-cash", - "name": "Bitcoin Cash", - "symbol": "bch" - }, - { - "id": "bitcoin-cash-sv", - "name": "Bitcoin SV", - "symbol": "bsv" - }, - { - "id": "bitcoin-cats", - "name": "Bitcoin Cats", - "symbol": "1cat" - }, - { - "id": "bitcoin-diamond", - "name": "Bitcoin Diamond", - "symbol": "bcd" - }, - { - "id": "bitcoin-e-wallet", - "name": "Bitcoin E-wallet", - "symbol": "bitwallet" - }, - { - "id": "bitcoin-fast", - "name": "Bitcoin Fast", - "symbol": "bcf" - }, - { - "id": "bitcoin-god", - "name": "Bitcoin God", - "symbol": "god" - }, - { - "id": "bitcoin-gold", - "name": "Bitcoin Gold", - "symbol": "btg" - }, - { - "id": "bitcoin-inu", - "name": "Bitcoin Inu", - "symbol": "btcinu" - }, - { - "id": "bitcoinmono", - "name": "BitcoinMono", - "symbol": "btcmz" - }, - { - "id": "bitcoin-name-service-system", - "name": "Bitcoin Name Service System", - "symbol": "bnsx" - }, - { - "id": "bitcoin-pay", - "name": "Bitcoin Pay", - "symbol": "btcpay" - }, - { - "id": "bitcoin-plus", - "name": "Bitcoin Plus", - "symbol": "xbc" - }, - { - "id": "bitcoinpos", - "name": "BitcoinPoS", - "symbol": "btcs" - }, - { - "id": "bitcoinpow", - "name": "BitcoinPoW", - "symbol": "btcw" - }, - { - "id": "bitcoin-private", - "name": "Bitcoin Private", - "symbol": "btcp" - }, - { - "id": "bitcoin-pro", - "name": "Bitcoin Pro", - "symbol": "btcp" - }, - { - "id": "bitcoin-puppets-solona", - "name": "bitcoin puppets solona", - "symbol": "puppet" - }, - { - "id": "bitcoin-scrypt", - "name": "Bitcoin Scrypt", - "symbol": "btcs" - }, - { - "id": "bitcoinsov", - "name": "BitcoinSoV", - "symbol": "bsov" - }, - { - "id": "bitcoin-subsidium", - "name": "Bitcoin Subsidium", - "symbol": "xbtx" - }, - { - "id": "bitcoin-ton", - "name": "Bitcoin TON", - "symbol": "bitton" - }, - { - "id": "bitcoin-trc20", - "name": "Bitcoin TRC20", - "symbol": "btct" - }, - { - "id": "bitcointry-token", - "name": "Bitcointry Token", - "symbol": "btty" - }, - { - "id": "bitcoinv", - "name": "BitcoinV", - "symbol": "btcv" - }, - { - "id": "bitcoin-vault", - "name": "Bitcoin Vault", - "symbol": "btcv" - }, - { - "id": "bitcoinvb", - "name": "BitcoinVB", - "symbol": "btcvb" - }, - { - "id": "bitcoin-wizards", - "name": "Bitcoin Wizards", - "symbol": "wzrd" - }, - { - "id": "bitcoinx", - "name": "BitcoinX", - "symbol": "bcx" - }, - { - "id": "bitcoinz", - "name": "BitcoinZ", - "symbol": "btcz" - }, - { - "id": "bitcoiva", - "name": "Bitcoiva", - "symbol": "bca" - }, - { - "id": "bitcone", - "name": "BitCone", - "symbol": "cone" - }, - { - "id": "bitconey", - "name": "BitConey", - "symbol": "bitconey" - }, - { - "id": "bitcore", - "name": "BitCore", - "symbol": "btx" - }, - { - "id": "bitdao", - "name": "BitDAO", - "symbol": "bit" - }, - { - "id": "bitdelta", - "name": "BitDelta", - "symbol": "bdt" - }, - { - "id": "bitenium-token", - "name": "Bitenium", - "symbol": "bt" - }, - { - "id": "bitfloki", - "name": "bitFloki", - "symbol": "bfloki" - }, - { - "id": "bitforex", - "name": "Bitforex", - "symbol": "bf" - }, - { - "id": "bitgain", - "name": "Bitgain", - "symbol": "bgn" - }, - { - "id": "bit-game-verse-token", - "name": "Bit Game Verse Token", - "symbol": "bgvt" - }, - { - "id": "bitget-token", - "name": "Bitget Token", - "symbol": "bgb" - }, - { - "id": "bithash-token", - "name": "BitHash", - "symbol": "bt" - }, - { - "id": "bit-hotel", - "name": "Bit Hotel", - "symbol": "bth" - }, - { - "id": "bitkub-coin", - "name": "Bitkub Coin", - "symbol": "kub" - }, - { - "id": "bitlocus", - "name": "Bitlocus", - "symbol": "btl" - }, - { - "id": "bitmark", - "name": "Bitmark", - "symbol": "marks" - }, - { - "id": "bitmarkets-token", - "name": "BITmarkets Token", - "symbol": "btmt" - }, - { - "id": "bitmart-token", - "name": "BitMart", - "symbol": "bmx" - }, - { - "id": "bitmex-token", - "name": "BitMEX", - "symbol": "bmex" - }, - { - "id": "bitminerx", - "name": "BitMinerX", - "symbol": "bmx" - }, - { - "id": "bitnet", - "name": "Bitnet", - "symbol": "btn" - }, - { - "id": "bitnet-io", - "name": "Bitnet IO", - "symbol": "bit" - }, - { - "id": "bitnex-ai", - "name": "Bitnex AI", - "symbol": "btx" - }, - { - "id": "bito-coin", - "name": "BITO Coin", - "symbol": "bito" - }, - { - "id": "bitone", - "name": "BITONE", - "symbol": "bio" - }, - { - "id": "bitorbit", - "name": "BitOrbit", - "symbol": "bitorb" - }, - { - "id": "bitoreum", - "name": "Bitoreum", - "symbol": "btrm" - }, - { - "id": "bitpanda-ecosystem-token", - "name": "Bitpanda Ecosystem", - "symbol": "best" - }, - { - "id": "bitpro", - "name": "BitPRO", - "symbol": "bpro" - }, - { - "id": "bitrise-token", - "name": "Bitgert", - "symbol": "brise" - }, - { - "id": "bitrock", - "name": "Bitrock", - "symbol": "brock" - }, - { - "id": "bitrock-wallet-token", - "name": "Bitrock Wallet Token", - "symbol": "brw" - }, - { - "id": "bitrue-token", - "name": "Bitrue Coin", - "symbol": "btr" - }, - { - "id": "bitscrow", - "name": "Bitscrow", - "symbol": "btscrw" - }, - { - "id": "bitscrunch-token", - "name": "bitsCrunch Token", - "symbol": "bcut" - }, - { - "id": "bitshares", - "name": "BitShares", - "symbol": "bts" - }, - { - "id": "bitshiba", - "name": "BitShiba", - "symbol": "shiba" - }, - { - "id": "bitsong", - "name": "BitSong", - "symbol": "btsg" - }, - { - "id": "bitspawn", - "name": "Bitspawn", - "symbol": "spwn" - }, - { - "id": "bitstable-finance", - "name": "BitStable Finance", - "symbol": "$bssb" - }, - { - "id": "bitstarters", - "name": "BitStarters", - "symbol": "bits" - }, - { - "id": "bit-store-coin", - "name": "Bit Store", - "symbol": "store" - }, - { - "id": "bitswap", - "name": "BitSwap", - "symbol": "bits" - }, - { - "id": "bitswift", - "name": "Bitswift", - "symbol": "bits" - }, - { - "id": "bittensor", - "name": "Bittensor", - "symbol": "tao" - }, - { - "id": "bittoken", - "name": "BITT", - "symbol": "bitt" - }, - { - "id": "bittorrent", - "name": "BitTorrent", - "symbol": "btt" - }, - { - "id": "bittorrent-old", - "name": "BitTorrent [OLD]", - "symbol": "bttold" - }, - { - "id": "bittube", - "name": "BitTube", - "symbol": "tube" - }, - { - "id": "bittwatt", - "name": "Bittwatt", - "symbol": "bwt" - }, - { - "id": "bitvalley", - "name": "BitValley", - "symbol": "bitv" - }, - { - "id": "bitx", - "name": "BitX", - "symbol": "bitx" - }, - { - "id": "bitx-dex-ordinals", - "name": "BitX DEX (Ordinals)", - "symbol": "bxdx" - }, - { - "id": "bitxor", - "name": "Bitxor", - "symbol": "bxr" - }, - { - "id": "biu-coin", - "name": "BIU COIN", - "symbol": "biu" - }, - { - "id": "bivreost", - "name": "Bivreost", - "symbol": "bi" - }, - { - "id": "bizauto", - "name": "BizAuto", - "symbol": "biza" - }, - { - "id": "black", - "name": "Black", - "symbol": "black" - }, - { - "id": "blackcoin", - "name": "BlackCoin", - "symbol": "blk" - }, - { - "id": "blackcroc", - "name": "Blackcroc", - "symbol": "blackcroc" - }, - { - "id": "black-dragon", - "name": "Black Dragon", - "symbol": "blackdragon" - }, - { - "id": "blackdragon-token", - "name": "BlackDragon", - "symbol": "bdt" - }, - { - "id": "blackhat-coin", - "name": "BlackHat Coin", - "symbol": "blkc" - }, - { - "id": "black-hole", - "name": "Black Hole", - "symbol": "blh" - }, - { - "id": "blackhole-protocol", - "name": "BlackHole Protocol", - "symbol": "black" - }, - { - "id": "blackjack-fun", - "name": "Blackjack.fun", - "symbol": "jack" - }, - { - "id": "blacklatexfist", - "name": "BlackLatexFist", - "symbol": "blf" - }, - { - "id": "blackpearl-chain", - "name": "BlackPearl", - "symbol": "bplc" - }, - { - "id": "black-phoenix", - "name": "Black Phoenix", - "symbol": "bpx" - }, - { - "id": "blackpool-token", - "name": "BlackPool", - "symbol": "bpt" - }, - { - "id": "black-rabbit-ai", - "name": "Black Rabbit AI", - "symbol": "brain" - }, - { - "id": "blackrocktradingcurrency", - "name": "BlackrockTradingCurrency", - "symbol": "btc" - }, - { - "id": "blackrock-usd-institutional-digital-liquidity-fund", - "name": "BlackRock USD Institutional Digital Liquidity Fund", - "symbol": "buidl" - }, - { - "id": "black-sats-ordinals", - "name": "Black Sats (Ordinals)", - "symbol": "bsat" - }, - { - "id": "blacksmith-token", - "name": "Blacksmith Token", - "symbol": "bs" - }, - { - "id": "black-stallion", - "name": "Black Stallion", - "symbol": "bs" - }, - { - "id": "black-token", - "name": "Black Token", - "symbol": "black" - }, - { - "id": "blackwater-labs", - "name": "Blackwater Labs", - "symbol": "bwl" - }, - { - "id": "black-whale-2", - "name": "Black Whale", - "symbol": "xxx" - }, - { - "id": "blacky", - "name": "Blacky", - "symbol": "blacky" - }, - { - "id": "blank", - "name": "BlockWallet", - "symbol": "blank" - }, - { - "id": "blarb", - "name": "BLARB", - "symbol": "blarb" - }, - { - "id": "blast-2", - "name": "Blast", - "symbol": "blast" - }, - { - "id": "blastai", - "name": "BlastAI", - "symbol": "blast" - }, - { - "id": "blastar", - "name": "Blastar", - "symbol": "blast" - }, - { - "id": "blastcat", - "name": "BlastCat", - "symbol": "bcat" - }, - { - "id": "blastdex", - "name": "BlastDEX", - "symbol": "bd" - }, - { - "id": "blast-disperse", - "name": "Blast Disperse", - "symbol": "disp" - }, - { - "id": "blaster", - "name": "Blaster", - "symbol": "blstr" - }, - { - "id": "blast-frontiers", - "name": "Blast Frontiers", - "symbol": "blast" - }, - { - "id": "blast-futures-token", - "name": "Blast Futures Token", - "symbol": "bfx" - }, - { - "id": "blast-inu", - "name": "Blast Inu", - "symbol": "blast" - }, - { - "id": "blast-inu-2", - "name": "Blast Inu", - "symbol": "binu" - }, - { - "id": "blastnet", - "name": "Blastnet", - "symbol": "bnet" - }, - { - "id": "blast-pepe", - "name": "Blast Pepe", - "symbol": "bepe" - }, - { - "id": "blastup", - "name": "BlastUP", - "symbol": "blp" - }, - { - "id": "blazebot", - "name": "BlazeBot", - "symbol": "blaze" - }, - { - "id": "blaze-network", - "name": "Blaze Network", - "symbol": "blzn" - }, - { - "id": "blazestake-staked-sol", - "name": "BlazeStake Staked SOL", - "symbol": "bsol" - }, - { - "id": "blazex", - "name": "BlazeX", - "symbol": "blazex" - }, - { - "id": "blend-protocol", - "name": "Blend Protocol", - "symbol": "blend" - }, - { - "id": "blendr-network", - "name": "Blendr Network", - "symbol": "blendr" - }, - { - "id": "blepe-the-blue", - "name": "Blepe the Blue", - "symbol": "blepe" - }, - { - "id": "blerf", - "name": "BLERF", - "symbol": "blerf" - }, - { - "id": "bless-global-credit", - "name": "Bless Global Credit", - "symbol": "blec" - }, - { - "id": "blind-boxes", - "name": "Blind Boxes", - "symbol": "bles" - }, - { - "id": "blin-metaverse", - "name": "Blin Metaverse", - "symbol": "blin" - }, - { - "id": "blinq-network", - "name": "Blinq Network", - "symbol": "blinq" - }, - { - "id": "blithe", - "name": "Blithe", - "symbol": "blt" - }, - { - "id": "blitz-bots", - "name": "Blitz Bots", - "symbol": "blitz" - }, - { - "id": "blitz-labs", - "name": "Blitz Labs", - "symbol": "blitz" - }, - { - "id": "blitzpredict", - "name": "BlitzPick", - "symbol": "xbp" - }, - { - "id": "blob", - "name": "Blob Protocol", - "symbol": "blob" - }, - { - "id": "blob-2", - "name": "Blob", - "symbol": "blob" - }, - { - "id": "blob-avax", - "name": "BLOB", - "symbol": "blob" - }, - { - "id": "blobcoin", - "name": "BLOBCOIN", - "symbol": "blob" - }, - { - "id": "blobs", - "name": "blobs", - "symbol": "blobs" - }, - { - "id": "blocery", - "name": "Blocery", - "symbol": "bly" - }, - { - "id": "block", - "name": "Block", - "symbol": "block" - }, - { - "id": "block-ape-scissors", - "name": "Arcas", - "symbol": "arcas" - }, - { - "id": "blockasset", - "name": "Blockasset", - "symbol": "block" - }, - { - "id": "blockbank", - "name": "blockbank", - "symbol": "bbank" - }, - { - "id": "blockblend", - "name": "BlockBlend [OLD]", - "symbol": "bbl" - }, - { - "id": "blockblend-2", - "name": "BlockBlend", - "symbol": "bbl" - }, - { - "id": "blockbox", - "name": "BlockBox", - "symbol": "bbox" - }, - { - "id": "block-browser", - "name": "Block Browser", - "symbol": "block" - }, - { - "id": "blockcdn", - "name": "BlockCDN", - "symbol": "bcdn" - }, - { - "id": "blockchain-bets", - "name": "Blockchain Bets", - "symbol": "bcb" - }, - { - "id": "blockchain-brawlers", - "name": "Blockchain Brawlers", - "symbol": "brwl" - }, - { - "id": "blockchain-certified-data-token", - "name": "EvidenZ", - "symbol": "bcdt" - }, - { - "id": "blockchaincoinx", - "name": "BlockChainCoinX", - "symbol": "xccx" - }, - { - "id": "blockchain-cuties-universe-governance", - "name": "Blockchain Cuties Universe Governance", - "symbol": "bcug" - }, - { - "id": "blockchain-island", - "name": "Blockchain Island", - "symbol": "bcl" - }, - { - "id": "blockchain-monster-hunt", - "name": "Blockchain Monster Hunt", - "symbol": "bcmc" - }, - { - "id": "blockchainpoland", - "name": "BlockchainPoland", - "symbol": "bcp" - }, - { - "id": "blockchainspace", - "name": "BlockchainSpace", - "symbol": "guild" - }, - { - "id": "blockcreate", - "name": "BlockCreate", - "symbol": "block" - }, - { - "id": "blockdefend-ai", - "name": "BlockDefend AI", - "symbol": "defend" - }, - { - "id": "blockgames", - "name": "BlockGames", - "symbol": "block" - }, - { - "id": "blockgpt", - "name": "BlockGPT", - "symbol": "bgpt" - }, - { - "id": "blockless", - "name": "Blockless", - "symbol": "bls" - }, - { - "id": "blocklords", - "name": "BLOCKLORDS", - "symbol": "lrds" - }, - { - "id": "blockmate", - "name": "BlockMate", - "symbol": "mate" - }, - { - "id": "blocknet", - "name": "Blocknet", - "symbol": "block" - }, - { - "id": "blockport", - "name": "BUX", - "symbol": "bux" - }, - { - "id": "blockremit", - "name": "BlockRemit", - "symbol": "remit" - }, - { - "id": "blockrock", - "name": "BlockRock", - "symbol": "bro$" - }, - { - "id": "blockrock-2", - "name": "BlockRock", - "symbol": "fed" - }, - { - "id": "blocks", - "name": "BLOCKS", - "symbol": "blocks" - }, - { - "id": "blockscape", - "name": "Blockscape", - "symbol": "blc" - }, - { - "id": "blocksmith-labs-forge", - "name": "$FORGE", - "symbol": "$forge" - }, - { - "id": "blocksport", - "name": "Blocksport", - "symbol": "bspt" - }, - { - "id": "blockspot-network", - "name": "BlockSpot Network", - "symbol": "spot" - }, - { - "id": "blocksquare", - "name": "Blocksquare", - "symbol": "bst" - }, - { - "id": "blockstack", - "name": "Stacks", - "symbol": "stx" - }, - { - "id": "blockstar", - "name": "BlockStar", - "symbol": "bst" - }, - { - "id": "blockster", - "name": "Blockster", - "symbol": "bxr" - }, - { - "id": "blocksworkz", - "name": "BlocksWorkz", - "symbol": "blkz" - }, - { - "id": "blockton", - "name": "Blockton", - "symbol": "bton" - }, - { - "id": "blocktools", - "name": "Blocktools", - "symbol": "tools" - }, - { - "id": "blocktrade-exchange", - "name": "BTEX", - "symbol": "btex" - }, - { - "id": "blockv", - "name": "BLOCKv", - "symbol": "vee" - }, - { - "id": "blockx", - "name": "BlockX", - "symbol": "bcx" - }, - { - "id": "bloc-money", - "name": "Bloc.Money", - "symbol": "bloc" - }, - { - "id": "blocsport-one", - "name": "Metacourt", - "symbol": "bls" - }, - { - "id": "blocto-token", - "name": "Blocto", - "symbol": "blt" - }, - { - "id": "blocx", - "name": "BlocX [OLD]", - "symbol": "blx" - }, - { - "id": "blocx-2", - "name": "BLOCX.", - "symbol": "blocx" - }, - { - "id": "blocx-3", - "name": "BlocX", - "symbol": "blx" - }, - { - "id": "blokpad", - "name": "BlokPad", - "symbol": "bpad" - }, - { - "id": "bloktopia", - "name": "Bloktopia", - "symbol": "blok" - }, - { - "id": "blood-crystal", - "name": "Blood Crystal", - "symbol": "bc" - }, - { - "id": "bloody-bunny", - "name": "Bloody Bunny", - "symbol": "bony" - }, - { - "id": "bloom", - "name": "Bloom", - "symbol": "blt" - }, - { - "id": "blorp", - "name": "BLORP", - "symbol": "blorp" - }, - { - "id": "blox", - "name": "Blox", - "symbol": "cdt" - }, - { - "id": "blox-2", - "name": "BLOX", - "symbol": "blox" - }, - { - "id": "bloxies-coin", - "name": "BitcoinX", - "symbol": "bxc" - }, - { - "id": "bloxmove-erc20", - "name": "bloXmove", - "symbol": "blxm" - }, - { - "id": "blox-token", - "name": "Blox SDK", - "symbol": "blox" - }, - { - "id": "blu", - "name": "BLU", - "symbol": "blu" - }, - { - "id": "blubi", - "name": "Blubi", - "symbol": "blubi" - }, - { - "id": "blubird", - "name": "Blubird", - "symbol": "blu" - }, - { - "id": "blueart", - "name": "BLUEART TOKEN", - "symbol": "bla" - }, - { - "id": "bluebenx-2", - "name": "BlueBenx", - "symbol": "benx" - }, - { - "id": "blueberry", - "name": "Blueberry", - "symbol": "blb" - }, - { - "id": "blue-chip", - "name": "Blue Chip", - "symbol": "chip" - }, - { - "id": "bluefin", - "name": "Bluefin", - "symbol": "blue" - }, - { - "id": "bluefloki", - "name": "BlueFloki", - "symbol": "bluefloki" - }, - { - "id": "blue-frog", - "name": "Blue Frog", - "symbol": "bluefrog" - }, - { - "id": "bluejay", - "name": "Bluejay", - "symbol": "blu" - }, - { - "id": "blue-kirby", - "name": "Blue Kirby", - "symbol": "kirby" - }, - { - "id": "bluemove", - "name": "BlueMove", - "symbol": "move" - }, - { - "id": "blue-pill", - "name": "BLUE PILL", - "symbol": "bpill" - }, - { - "id": "blueprint", - "name": "Blue", - "symbol": "blue" - }, - { - "id": "blueprint-oblue", - "name": "Blueprint oBLUE", - "symbol": "oblue" - }, - { - "id": "bluesale", - "name": "BlueSale", - "symbol": "bls" - }, - { - "id": "blueshift", - "name": "Blueshift", - "symbol": "blues" - }, - { - "id": "bluesparrow", - "name": "BlueSparrow", - "symbol": "bluesparrow" - }, - { - "id": "bluesparrow-token", - "name": "BlueSparrow [OLD]", - "symbol": "bluesparrow" - }, - { - "id": "blue-team", - "name": "Blue Team", - "symbol": "blue" - }, - { - "id": "blue-whale-2", - "name": "Blue Whale", - "symbol": "whale" - }, - { - "id": "blur", - "name": "Blur", - "symbol": "blur" - }, - { - "id": "blurt", - "name": "Blurt", - "symbol": "blurt" - }, - { - "id": "bluzelle", - "name": "Bluzelle", - "symbol": "blz" - }, - { - "id": "bm2k", - "name": "bm2k", - "symbol": "bm2k" - }, - { - "id": "bmax", - "name": "BMAX", - "symbol": "bmax" - }, - { - "id": "bmchain-token", - "name": "BMCHAIN", - "symbol": "bmt" - }, - { - "id": "bmp", - "name": "BMP", - "symbol": "$bmp" - }, - { - "id": "bmx", - "name": "BMX", - "symbol": "bmx" - }, - { - "id": "bnb48-club-token", - "name": "KOGE", - "symbol": "koge" - }, - { - "id": "bnb-bank", - "name": "BNB Bank", - "symbol": "bbk" - }, - { - "id": "bnb-diamond", - "name": "BNB Diamond", - "symbol": "bnbd" - }, - { - "id": "bnbee", - "name": "BNBEE", - "symbol": "bee" - }, - { - "id": "bnbking", - "name": "BNBKinG", - "symbol": "bnbking" - }, - { - "id": "bnb-pets", - "name": "BNB Pets", - "symbol": "pets" - }, - { - "id": "bnbtiger", - "name": "BNB Tiger Inu", - "symbol": "bnbtiger" - }, - { - "id": "bnb-tiger", - "name": "BNB Tiger", - "symbol": "$bnbtiger" - }, - { - "id": "bnb-whales", - "name": "BNB Whales", - "symbol": "bnb whales" - }, - { - "id": "bnext-b3x", - "name": "Bnext B3X", - "symbol": "b3x" - }, - { - "id": "bnktothefuture", - "name": "BnkToTheFuture", - "symbol": "bft" - }, - { - "id": "bnsd-finance", - "name": "BNSD Finance", - "symbol": "bnsd" - }, - { - "id": "bns-token", - "name": "BNS", - "symbol": "bns" - }, - { - "id": "bob", - "name": "BOB", - "symbol": "bob" - }, - { - "id": "bobacat", - "name": "BobaCat", - "symbol": "psps" - }, - { - "id": "boba-finance", - "name": "Boba Finance", - "symbol": "bfi" - }, - { - "id": "boba-network", - "name": "Boba Network", - "symbol": "boba" - }, - { - "id": "boba-oppa", - "name": "Boba Oppa", - "symbol": "bobaoppa" - }, - { - "id": "bobcoin", - "name": "Bobcoin", - "symbol": "bobc" - }, - { - "id": "bober", - "name": "BOBER", - "symbol": "bober" - }, - { - "id": "bobi", - "name": "Bobi", - "symbol": "bobi" - }, - { - "id": "bobo", - "name": "Bobo", - "symbol": "bobo" - }, - { - "id": "bobo-coin", - "name": "BOBO Coin", - "symbol": "bobo" - }, - { - "id": "bobo-on-sol", - "name": "Bobo on SOL", - "symbol": "bobo" - }, - { - "id": "bobs", - "name": "BOBS", - "symbol": "bobs" - }, - { - "id": "bobs_repair", - "name": "Bob's Repair", - "symbol": "bob" - }, - { - "id": "bob-token", - "name": "BOB Token", - "symbol": "bob" - }, - { - "id": "bocachica", - "name": "BocaChica", - "symbol": "chica" - }, - { - "id": "boda-token", - "name": "BODA", - "symbol": "bodav2" - }, - { - "id": "bodge", - "name": "Bodge", - "symbol": "bodge" - }, - { - "id": "bodrumspor-fan-token", - "name": "Bodrumspor Fan Token", - "symbol": "bdrm" - }, - { - "id": "body-ai", - "name": "Body Ai", - "symbol": "bait" - }, - { - "id": "boe", - "name": "Boe", - "symbol": "boe" - }, - { - "id": "bogdanoff", - "name": "Bogdanoff", - "symbol": "bog" - }, - { - "id": "boge", - "name": "BOGE", - "symbol": "boge" - }, - { - "id": "bogged-finance", - "name": "Bogged Finance", - "symbol": "bog" - }, - { - "id": "bojack", - "name": "BOJACK", - "symbol": "$bojack" - }, - { - "id": "boku", - "name": "Boryoku Dragonz", - "symbol": "boku" - }, - { - "id": "bolic-ai", - "name": "Bolic AI", - "symbol": "boai" - }, - { - "id": "bolide", - "name": "Bolide", - "symbol": "blid" - }, - { - "id": "bolivarcoin", - "name": "Bolivarcoin", - "symbol": "boli" - }, - { - "id": "bollycoin", - "name": "BollyCoin", - "symbol": "bolly" - }, - { - "id": "bologna-fc-fan-token", - "name": "Bologna FC Fan Token", - "symbol": "bfc" - }, - { - "id": "bolt", - "name": "Bolt", - "symbol": "bolt" - }, - { - "id": "boltbot", - "name": "BoltBot", - "symbol": "bolt" - }, - { - "id": "bolt-token-023ba86e-eb38-41a1-8d32-8b48ecfcb2c7", - "name": "Bolt Token", - "symbol": "$bolt" - }, - { - "id": "bomb", - "name": "BOMB", - "symbol": "bomb" - }, - { - "id": "bombcrypto-coin", - "name": "Bombcrypto Coin", - "symbol": "bomb" - }, - { - "id": "bomber-coin", - "name": "BombCrypto", - "symbol": "bcoin" - }, - { - "id": "bomb-money", - "name": "Bomb Money", - "symbol": "bomb" - }, - { - "id": "bomboclat", - "name": "Bomboclat", - "symbol": "bclat" - }, - { - "id": "bomb-shelter-inu", - "name": "Bomb Shelter Inu", - "symbol": "boom" - }, - { - "id": "bonded-cronos", - "name": "Bonded Cronos", - "symbol": "bcro" - }, - { - "id": "bondly", - "name": "Forj", - "symbol": "bondly" - }, - { - "id": "boner", - "name": "BONER", - "symbol": "$boner" - }, - { - "id": "bonerium-boneswap", - "name": "Bonerium BoneSwap", - "symbol": "bswp" - }, - { - "id": "bones", - "name": "Bones", - "symbol": "bones" - }, - { - "id": "bone-shibaswap", - "name": "Bone ShibaSwap", - "symbol": "bone" - }, - { - "id": "boneswap", - "name": "BoneSwap", - "symbol": "bone" - }, - { - "id": "bone-token", - "name": "PolyPup Bone", - "symbol": "bone" - }, - { - "id": "bonfida", - "name": "Bonfida", - "symbol": "fida" - }, - { - "id": "bonfire", - "name": "Bonfire", - "symbol": "bonfire" - }, - { - "id": "bong-bonk-s-brother", - "name": "BONG BONK'S BROTHER", - "symbol": "bong" - }, - { - "id": "bongo-cat", - "name": "BONGO CAT", - "symbol": "bongo" - }, - { - "id": "bonk", - "name": "Bonk", - "symbol": "bonk" - }, - { - "id": "bonk-2-0", - "name": "Bonk 2.0", - "symbol": "bonk 2.0" - }, - { - "id": "bonk2-0", - "name": "Bonk2.0", - "symbol": "bonk2.0" - }, - { - "id": "bonk-2-0-sol", - "name": "Bonk 2.0 (Sol)", - "symbol": "bonk2.0" - }, - { - "id": "bonkbaby", - "name": "BonkBaby", - "symbol": "boby" - }, - { - "id": "bonkbest", - "name": "BONKBEST", - "symbol": "bonkbest" - }, - { - "id": "bonk-bitcoin", - "name": "BONK BITCOIN (Ordinals)", - "symbol": "bonk" - }, - { - "id": "bonkcola", - "name": "BonkCola", - "symbol": "bonkcola" - }, - { - "id": "bonkearn", - "name": "BonkEarn", - "symbol": "bern" - }, - { - "id": "bonk-grok", - "name": "Bonk Grok", - "symbol": "bonkgrok" - }, - { - "id": "bonkinu", - "name": "Bonkinu", - "symbol": "bonkinu" - }, - { - "id": "bonk-inu", - "name": "BONK Inu", - "symbol": "bonki" - }, - { - "id": "bonklana", - "name": "BONKLANA", - "symbol": "bok" - }, - { - "id": "bonkwifhat", - "name": "bonkwifhat", - "symbol": "bif" - }, - { - "id": "bonsai3", - "name": "Bonsai3", - "symbol": "seed" - }, - { - "id": "bonsai-token", - "name": "Bonsai Token", - "symbol": "bonsai" - }, - { - "id": "bontecoin", - "name": "Bontecoin", - "symbol": "bonte" - }, - { - "id": "bonusblock", - "name": "BonusBlock", - "symbol": "bonus" - }, - { - "id": "bonyta", - "name": "Bonyta", - "symbol": "bnyta" - }, - { - "id": "bonzai-depin", - "name": "BonzAI DePIN", - "symbol": "bonzai" - }, - { - "id": "boo-2", - "name": "BOO", - "symbol": "$boo" - }, - { - "id": "boo-finance", - "name": "Boo Finance", - "symbol": "boofi" - }, - { - "id": "book-2", - "name": "BOOK", - "symbol": "book" - }, - { - "id": "book-3", - "name": "BOOK", - "symbol": "book" - }, - { - "id": "bookiebot", - "name": "BookieBot", - "symbol": "bb" - }, - { - "id": "book-of-baby-memes", - "name": "Book of Baby Memes", - "symbol": "babybome" - }, - { - "id": "bookofbullrun", - "name": "BookOfBullrun", - "symbol": "$boob" - }, - { - "id": "book-of-derp", - "name": "Book of Derp", - "symbol": "bode" - }, - { - "id": "book-of-doge-memes", - "name": "BOOK OF DOGE MEMES", - "symbol": "bomedoge" - }, - { - "id": "book-of-meme", - "name": "BOOK OF MEME", - "symbol": "bome" - }, - { - "id": "book-of-meme-2-0", - "name": "Book of Meme 2.0", - "symbol": "bome2" - }, - { - "id": "book-of-meow", - "name": "Book of Meow", - "symbol": "bomeow" - }, - { - "id": "book-of-pepe", - "name": "Book of Pepe", - "symbol": "bope" - }, - { - "id": "bool", - "name": "Bool", - "symbol": "bool" - }, - { - "id": "boolran", - "name": "BoolRan", - "symbol": "bool" - }, - { - "id": "boomer", - "name": "Boomer", - "symbol": "boomer" - }, - { - "id": "boo-mirrorworld", - "name": "Boo MirrorWorld", - "symbol": "xboo" - }, - { - "id": "boop", - "name": "Boop", - "symbol": "boop" - }, - { - "id": "boop-2", - "name": "Boop", - "symbol": "boop" - }, - { - "id": "boost", - "name": "Boost", - "symbol": "boost" - }, - { - "id": "boosted-lusd", - "name": "Boosted LUSD", - "symbol": "blusd" - }, - { - "id": "booster", - "name": "Booster", - "symbol": "boo" - }, - { - "id": "booty", - "name": "BOOTY", - "symbol": "booty" - }, - { - "id": "bora", - "name": "BORA", - "symbol": "bora" - }, - { - "id": "bordercolliebsc", - "name": "BorderCollieBSC", - "symbol": "bdcl bsc" - }, - { - "id": "borderless-money", - "name": "Borderless Money", - "symbol": "bom" - }, - { - "id": "borealis", - "name": "Borealis", - "symbol": "brl" - }, - { - "id": "bored", - "name": "Bored Token", - "symbol": "$bored" - }, - { - "id": "bored-ape-social-club", - "name": "Bored Ape Social Club", - "symbol": "bape" - }, - { - "id": "bored-candy-city", - "name": "Bored Candy City", - "symbol": "candy" - }, - { - "id": "boringdao", - "name": "BoringDAO", - "symbol": "boring" - }, - { - "id": "boringdao-[old]", - "name": "BoringDAO [OLD]", - "symbol": "bor" - }, - { - "id": "boring-protocol", - "name": "Boring Protocol", - "symbol": "bop" - }, - { - "id": "bork-2", - "name": "Bork", - "symbol": "bork" - }, - { - "id": "borzoi-coin", - "name": "Borzoi Coin", - "symbol": "borzoi" - }, - { - "id": "bosagora", - "name": "BOSagora", - "symbol": "boa" - }, - { - "id": "boson-protocol", - "name": "Boson Protocol", - "symbol": "boson" - }, - { - "id": "boss", - "name": "Boss", - "symbol": "boss" - }, - { - "id": "boss-blockchain", - "name": "Boss Blockchain", - "symbol": "bbc" - }, - { - "id": "bossswap", - "name": "Boss Swap", - "symbol": "boss" - }, - { - "id": "bostrom", - "name": "Bostrom", - "symbol": "boot" - }, - { - "id": "botccoin-chain", - "name": "Botccoin Chain", - "symbol": "botc" - }, - { - "id": "bot-compiler", - "name": "Bot Compiler", - "symbol": "botc" - }, - { - "id": "botopiafinance", - "name": "BotopiaFinance", - "symbol": "btop" - }, - { - "id": "bot-planet", - "name": "Bot Planet", - "symbol": "bot" - }, - { - "id": "botto", - "name": "Botto", - "symbol": "botto" - }, - { - "id": "bottos", - "name": "Bottos", - "symbol": "bto" - }, - { - "id": "botxcoin", - "name": "BOTXCOIN", - "symbol": "botx" - }, - { - "id": "bouncing-dvd", - "name": "Bouncing DVD", - "symbol": "dvd" - }, - { - "id": "bouncing-seals", - "name": "Bouncing Seals", - "symbol": "seals" - }, - { - "id": "bountie-hunter", - "name": "Bountie Hunter", - "symbol": "bountie" - }, - { - "id": "bounty0x", - "name": "Bounty0x", - "symbol": "bnty" - }, - { - "id": "bountykinds-yu", - "name": "BountyKinds YU", - "symbol": "yu" - }, - { - "id": "bountymarketcap", - "name": "BountyMarketCap", - "symbol": "bmc" - }, - { - "id": "bounty-temple", - "name": "Bounty Temple", - "symbol": "tyt" - }, - { - "id": "bovineverse-bvt", - "name": "Bovineverse BVT", - "symbol": "bvt" - }, - { - "id": "bowie", - "name": "Bowie", - "symbol": "bowie" - }, - { - "id": "bowled-io", - "name": "Bowled.io", - "symbol": "bwld" - }, - { - "id": "boxbet", - "name": "BoxBet", - "symbol": "bxbt" - }, - { - "id": "box-dao", - "name": "Box-DAO", - "symbol": "b-dao" - }, - { - "id": "boxydude", - "name": "BoxyDude", - "symbol": "box" - }, - { - "id": "bozo-collective", - "name": "Bozo Collective", - "symbol": "bozo" - }, - { - "id": "bozo-hybrid", - "name": "bozo Hybrid", - "symbol": "bozo" - }, - { - "id": "bpinky", - "name": "BPINKY", - "symbol": "bpinky" - }, - { - "id": "b-protocol", - "name": "B.Protocol", - "symbol": "bpro" - }, - { - "id": "bracelet", - "name": "Bracelet", - "symbol": "brc" - }, - { - "id": "brainers", - "name": "Brainers", - "symbol": "brainers" - }, - { - "id": "brain-sync", - "name": "Brain Sync", - "symbol": "syncbrain" - }, - { - "id": "braintrust", - "name": "Braintrust", - "symbol": "btrst" - }, - { - "id": "brandpad-finance", - "name": "BrandPad Finance", - "symbol": "brand" - }, - { - "id": "brave-power-crystal", - "name": "Brave Power Crystal", - "symbol": "bpc" - }, - { - "id": "brazil-fan-token", - "name": "Brazil National Football Team Fan Token", - "symbol": "bft" - }, - { - "id": "brc20-bot", - "name": "BRC20 BOT", - "symbol": "brcbot" - }, - { - "id": "brc-20-dex", - "name": "BRC-20 DEX", - "symbol": "bd20" - }, - { - "id": "brc-app", - "name": "BRC App", - "symbol": "brct" - }, - { - "id": "brcexchange", - "name": "BrcExchange", - "symbol": "bex" - }, - { - "id": "brc-on-the-erc", - "name": "BRC on the ERC", - "symbol": "brc20" - }, - { - "id": "brcp-token", - "name": "BRCP", - "symbol": "brcp" - }, - { - "id": "brcstarter", - "name": "BRCStarter", - "symbol": "brcst" - }, - { - "id": "brd", - "name": "Board", - "symbol": "brd" - }, - { - "id": "bread", - "name": "Bread", - "symbol": "brd" - }, - { - "id": "breederdao", - "name": "BreederDAO", - "symbol": "breed" - }, - { - "id": "brepe", - "name": "BREPE", - "symbol": "brepe" - }, - { - "id": "brett", - "name": "Brett", - "symbol": "brett" - }, - { - "id": "brett-eth", - "name": "Brett ETH", - "symbol": "brett" - }, - { - "id": "brett-injective", - "name": "BRETT (Injective)", - "symbol": "brett" - }, - { - "id": "brett-is-based", - "name": "Brett Is Based", - "symbol": "bmoney" - }, - { - "id": "brettwifhat", - "name": "BrettWifHat", - "symbol": "$bif" - }, - { - "id": "brewlabs", - "name": "Brewlabs", - "symbol": "brewlabs" - }, - { - "id": "brex", - "name": "BREX", - "symbol": "brex" - }, - { - "id": "brianarmstrongtrumpyellen", - "name": "BrianArmstrongTrumpYellenGTA6", - "symbol": "coin" - }, - { - "id": "bribeai", - "name": "BribeAI", - "symbol": "brai" - }, - { - "id": "brick", - "name": "r/FortNiteBR Bricks", - "symbol": "brick" - }, - { - "id": "brick-block", - "name": "Brick Block", - "symbol": "bb" - }, - { - "id": "brickken", - "name": "Brickken", - "symbol": "bkn" - }, - { - "id": "bricks-exchange", - "name": "Bricks Exchange", - "symbol": "brx" - }, - { - "id": "brick-token", - "name": "Brick", - "symbol": "brick" - }, - { - "id": "brics-chain", - "name": "BRICS Chain", - "symbol": "brics" - }, - { - "id": "bridgador", - "name": "Bridgador", - "symbol": "gador" - }, - { - "id": "bridged-andromeda", - "name": "Bridged Andromeda", - "symbol": "sandr" - }, - { - "id": "bridged-arbitrum-lightlink", - "name": "Bridged Arbitrum (Lightlink)", - "symbol": "arb.e" - }, - { - "id": "bridged-axelar-wrapped-usd-coin-scroll", - "name": "Bridged Axelar Wrapped USD Coin (Scroll)", - "symbol": "axlusdc" - }, - { - "id": "bridged-binance-peg-ethereum-opbnb", - "name": "Bridged Binance-Peg Ethereum (opBNB)", - "symbol": "eth" - }, - { - "id": "bridged-busd", - "name": "Bridged BUSD", - "symbol": "busd" - }, - { - "id": "bridged-chainlink-lightlink", - "name": "Bridged Chainlink (Lightlink)", - "symbol": "link.e" - }, - { - "id": "bridged-curve-dao-token-stargate", - "name": "Bridged Curve DAO Token (Stargate)", - "symbol": "crv" - }, - { - "id": "bridged-dai-lightlink", - "name": "Bridged Dai (Lightlink)", - "symbol": "dai.e" - }, - { - "id": "bridged-dai-stablecoin-hashport", - "name": "Bridged Dai Stablecoin (Hashport)", - "symbol": "dai[hts]" - }, - { - "id": "bridged-dai-stablecoin-linea", - "name": "Bridged Dai Stablecoin (Linea)", - "symbol": "dai" - }, - { - "id": "bridged-dai-stablecoin-ton-bridge", - "name": "Bridged Dai Stablecoin (TON Bridge)", - "symbol": "jdai" - }, - { - "id": "bridged-dai-starkgate", - "name": "Bridged Dai Stablecoin (StarkGate)", - "symbol": "dai" - }, - { - "id": "bridged-dovu-hashport", - "name": "Bridged Dovu (Hashport)", - "symbol": "dov[hts]" - }, - { - "id": "bridged-kyber-network-crystal-bsc", - "name": "Bridged Kyber Network Crystal (BSC)", - "symbol": "knc_b" - }, - { - "id": "bridged-kyber-network-crystal-ethereum", - "name": "Bridged Kyber Network Crystal (Ethereum)", - "symbol": "knc_e" - }, - { - "id": "bridged-mantra-hashport", - "name": "Bridged MANTRA (Hashport)", - "symbol": "om[hts]" - }, - { - "id": "bridged-matic-manta-pacific", - "name": "Bridged MATIC (Manta Pacific)", - "symbol": "matic" - }, - { - "id": "bridged-pepe-hashport", - "name": "Bridged Pepe (Hashport)", - "symbol": "pepe[hts]" - }, - { - "id": "bridged-polygon-lightlink", - "name": "Bridged Polygon (Lightlink)", - "symbol": "matic.e" - }, - { - "id": "bridged-rocket-pool-eth-manta-pacific", - "name": "Bridged Rocket Pool ETH (Manta Pacific)", - "symbol": "reth" - }, - { - "id": "bridged-tether-fuse", - "name": "Bridged Tether (Fuse)", - "symbol": "usdt" - }, - { - "id": "bridged-tether-hashport", - "name": "Bridged Tether (Hashport)", - "symbol": "usdt[hts]" - }, - { - "id": "bridged-tether-lightlink", - "name": "Bridged Tether (Lightlink)", - "symbol": "usdt.e" - }, - { - "id": "bridged-tether-linea", - "name": "Bridged Tether (Linea)", - "symbol": "usdt" - }, - { - "id": "bridged-tether-manta-pacific", - "name": "Bridged Tether (Manta Pacific)", - "symbol": "usdt" - }, - { - "id": "bridged-tether-opbnb", - "name": "Bridged Tether (opBNB)", - "symbol": "usdt" - }, - { - "id": "bridged-tether-scroll", - "name": "Bridged Tether (Scroll)", - "symbol": "usdt" - }, - { - "id": "bridged-tether-stargate", - "name": "Bridged Tether (Stargate)", - "symbol": "usdt" - }, - { - "id": "bridged-tether-starkgate", - "name": "Bridged Tether (StarkGate)", - "symbol": "usdt" - }, - { - "id": "bridged-tether-ton-bridge", - "name": "Bridged Tether (TON Bridge)", - "symbol": "jusdt" - }, - { - "id": "bridged-tia-hyperlane", - "name": "Bridged TIA (Hyperlane)", - "symbol": "tia.n" - }, - { - "id": "bridged-trueusd", - "name": "Bridged TrueUSD", - "symbol": "tusd" - }, - { - "id": "bridged-unieth-manta-pacific", - "name": "Bridged uniETH (Manta Pacific)", - "symbol": "unieth" - }, - { - "id": "bridged-uniswap-lightlink", - "name": "Bridged Uniswap (Lightlink)", - "symbol": "uni.e" - }, - { - "id": "bridged-usdc", - "name": "Bridged USDC", - "symbol": "usdc" - }, - { - "id": "bridged-usdc-chainport", - "name": "Bridged USDC (Chainport)", - "symbol": "usdc" - }, - { - "id": "bridged-usdc-core", - "name": "Bridged USDC (Core)", - "symbol": "usdc" - }, - { - "id": "bridged-usdc-fuse", - "name": "Bridged USDC (Fuse)", - "symbol": "usdc" - }, - { - "id": "bridged-usdc-immutable-zkevm", - "name": "Bridged USDC (Immutable zkEVM)", - "symbol": "usdc" - }, - { - "id": "bridged-usdc-lightlink", - "name": "Bridged USDC (Lightlink)", - "symbol": "usdc.e" - }, - { - "id": "bridged-usd-coin-base", - "name": "Bridged USD Coin (Base)", - "symbol": "usdbc" - }, - { - "id": "bridged-usd-coin-linea", - "name": "Bridged USD Coin (Linea)", - "symbol": "usdc" - }, - { - "id": "bridged-usd-coin-manta-pacific", - "name": "Bridged USD Coin (Manta Pacific)", - "symbol": "usdc" - }, - { - "id": "bridged-usd-coin-optimism", - "name": "Bridged USDC (Optimism)", - "symbol": "usdc.e" - }, - { - "id": "bridged-usd-coin-scroll", - "name": "Bridged USD Coin (Scroll)", - "symbol": "usdc" - }, - { - "id": "bridged-usd-coin-starkgate", - "name": "Bridged USD Coin (StarkGate)", - "symbol": "usdc" - }, - { - "id": "bridged-usd-coin-ton-bridge", - "name": "Bridged USD Coin (TON Bridge)", - "symbol": "jusdc" - }, - { - "id": "bridged-usdc-polygon-pos-bridge", - "name": "Bridged USDC (Polygon PoS Bridge)", - "symbol": "usdc.e" - }, - { - "id": "bridged-usdt", - "name": "Bridged USDT", - "symbol": "usdt" - }, - { - "id": "bridged-usdt-core", - "name": "Bridged USDT (Core)", - "symbol": "usdt" - }, - { - "id": "bridged-weeth-manta-pacific", - "name": "Bridged weETH (Manta Pacific)", - "symbol": "weeth" - }, - { - "id": "bridged-wrapped-agora-genesis-bridge", - "name": "Bridged Wrapped AGORA (Genesis Bridge)", - "symbol": "wagora" - }, - { - "id": "bridged-wrapped-bitcoin-hashport", - "name": "Bridged Wrapped Bitcoin (Hashport)", - "symbol": "wbtc[hts]" - }, - { - "id": "bridged-wrapped-bitcoin-manta-pacific", - "name": "Bridged Wrapped Bitcoin (Manta Pacific)", - "symbol": "wbtc" - }, - { - "id": "bridged-wrapped-bitcoin-scroll", - "name": "Bridged Wrapped Bitcoin (Scroll)", - "symbol": "wbtc" - }, - { - "id": "bridged-wrapped-bitcoin-stargate", - "name": "Bridged Wrapped Bitcoin (Stargate)", - "symbol": "wbtc" - }, - { - "id": "bridged-wrapped-bitcoin-starkgate", - "name": "Bridged Wrapped Bitcoin (StarkGate)", - "symbol": "wbtc" - }, - { - "id": "bridged-wrapped-bitcoin-ton-bridge", - "name": "Bridged Wrapped Bitcoin (TON Bridge)", - "symbol": "jwbtc" - }, - { - "id": "bridged-wrapped-btc-lightlink", - "name": "Bridged Wrapped BTC (Lightlink)", - "symbol": "wbtc.e" - }, - { - "id": "bridged-wrapped-ether-fuse", - "name": "Bridged Wrapped Ether (Fuse)", - "symbol": "weth" - }, - { - "id": "bridged-wrapped-ether-hashport", - "name": "Bridged Wrapped Ether (Hashport)", - "symbol": "weth[hts]" - }, - { - "id": "bridged-wrapped-ether-im-bridge", - "name": "Bridged Wrapped Ether (IM Bridge)", - "symbol": "seth" - }, - { - "id": "bridged-wrapped-ether-manta-pacific", - "name": "Bridged Wrapped Ether (Manta Pacific)", - "symbol": "weth" - }, - { - "id": "bridged-wrapped-ether-scroll", - "name": "Bridged Wrapped Ether (Scroll)", - "symbol": "weth" - }, - { - "id": "bridged-wrapped-ether-stargate", - "name": "Bridged Wrapped Ether (Stargate)", - "symbol": "weth" - }, - { - "id": "bridged-wrapped-ether-starkgate", - "name": "Bridged Ether (StarkGate)", - "symbol": "eth" - }, - { - "id": "bridged-wrapped-ether-voltage-finance", - "name": "Bridged Wrapped Ether (Voltage Finance)", - "symbol": "weth" - }, - { - "id": "bridged-wrapped-hbar-heliswap", - "name": "Wrapped HBAR (HeliSwap)", - "symbol": "whbar" - }, - { - "id": "bridged-wrapped-lido-staked-ether-scroll", - "name": "Bridged Wrapped Lido Staked Ether (Scroll)", - "symbol": "wsteth" - }, - { - "id": "bridged-wrapped-matic-hashport", - "name": "Bridged Wrapped MATIC (Hashport)", - "symbol": "wmatic[hts]" - }, - { - "id": "bridged-wrapped-steth-axelar", - "name": "Bridged Wrapped stETH (Axelar)", - "symbol": "axl-wsteth" - }, - { - "id": "bridged-wrapped-steth-gnosis", - "name": "Bridged Wrapped stETH (Gnosis)", - "symbol": "wsteth" - }, - { - "id": "bridged-wrapped-steth-manta-pacific", - "name": "Bridged Wrapped stETH (Manta Pacific)", - "symbol": "wsteth" - }, - { - "id": "bridge-mutual", - "name": "Bridge Mutual", - "symbol": "bmi" - }, - { - "id": "bridge-oracle", - "name": "Bridge Oracle", - "symbol": "brg" - }, - { - "id": "brightpool", - "name": "Brightpool", - "symbol": "bri" - }, - { - "id": "bright-token", - "name": "BrightID", - "symbol": "bright" - }, - { - "id": "bright-union", - "name": "Bright Union", - "symbol": "bright" - }, - { - "id": "britt", - "name": "Britt", - "symbol": "britt" - }, - { - "id": "britto", - "name": "Britto", - "symbol": "brt" - }, - { - "id": "briun-armstrung", - "name": "Briun Armstrung", - "symbol": "briun" - }, - { - "id": "brix-gaming", - "name": "Brix Gaming", - "symbol": "brix" - }, - { - "id": "brmv-token", - "name": "BRMV", - "symbol": "brmv" - }, - { - "id": "brn-metaverse", - "name": "BRN Metaverse", - "symbol": "brn" - }, - { - "id": "broccoli-the-gangsta", - "name": "Broccoli The Gangsta", - "symbol": "broc" - }, - { - "id": "broge", - "name": "Broge", - "symbol": "broge" - }, - { - "id": "brokkr", - "name": "Brokkr", - "symbol": "bro" - }, - { - "id": "brokoli", - "name": "Brokoli", - "symbol": "brkl" - }, - { - "id": "brolana", - "name": "Brolana", - "symbol": "bros" - }, - { - "id": "broovs-projects", - "name": "Broovs Projects", - "symbol": "brs" - }, - { - "id": "brr-protocol", - "name": "Brr Protocol", - "symbol": "brr" - }, - { - "id": "bruh", - "name": "BRUH", - "symbol": "bruh" - }, - { - "id": "bruv", - "name": "Bruv", - "symbol": "bruv" - }, - { - "id": "brz", - "name": "Brazilian Digital", - "symbol": "brz" - }, - { - "id": "bscex", - "name": "BSCEX", - "symbol": "bscx" - }, - { - "id": "bsc-fair", - "name": "BSC FAIR", - "symbol": "fair" - }, - { - "id": "bsclaunch", - "name": "BSClaunch", - "symbol": "bsl" - }, - { - "id": "bscm", - "name": "BSCM", - "symbol": "bscm" - }, - { - "id": "bscpad", - "name": "BSCPAD", - "symbol": "bscpad" - }, - { - "id": "bscstarter", - "name": "Starter.xyz", - "symbol": "start" - }, - { - "id": "bsc-station", - "name": "BSCS", - "symbol": "bscs" - }, - { - "id": "bsocial-2", - "name": "BSOCIAL", - "symbol": "bscl" - }, - { - "id": "bsv", - "name": "$BSV", - "symbol": "bsv" - }, - { - "id": "btaf-token", - "name": "BTAF token", - "symbol": "btaf" - }, - { - "id": "btc-2x-flexible-leverage-index", - "name": "BTC 2x Flexible Leverage Index", - "symbol": "btc2x-fli" - }, - { - "id": "btchero", - "name": "BTCHero", - "symbol": "btchero" - }, - { - "id": "btcmeme", - "name": "BTCMEME", - "symbol": "btcmeme" - }, - { - "id": "btc-proxy", - "name": "BTC Proxy", - "symbol": "btcpx" - }, - { - "id": "btcrewards", - "name": "BTCrewards", - "symbol": "btcr" - }, - { - "id": "btcs", - "name": "BTCs", - "symbol": "btcs" - }, - { - "id": "btc-standard-hashrate-token", - "name": "BTC Standard Hashrate Token", - "symbol": "btcst" - }, - { - "id": "btf", - "name": "Bitcoin Faith", - "symbol": "btf" - }, - { - "id": "btour-chain", - "name": "BTour Chain", - "symbol": "msot" - }, - { - "id": "btrips", - "name": "BTRIPS", - "symbol": "btr" - }, - { - "id": "btse-token", - "name": "BTSE Token", - "symbol": "btse" - }, - { - "id": "btu-protocol", - "name": "BTU Protocol", - "symbol": "btu" - }, - { - "id": "bubble-bot", - "name": "Bubble Bot", - "symbol": "bubble" - }, - { - "id": "bubblefong", - "name": "Bubblefong", - "symbol": "bbf" - }, - { - "id": "bubcat", - "name": "BUBCAT", - "symbol": "bub" - }, - { - "id": "bubu", - "name": "Bubu", - "symbol": "bubu" - }, - { - "id": "bucket-protocol-buck-stablecoin", - "name": "Bucket Protocol BUCK Stablecoin", - "symbol": "buck" - }, - { - "id": "buckhath-coin", - "name": "BuckHath Coin", - "symbol": "bhig" - }, - { - "id": "buddha", - "name": "Buddha", - "symbol": "buddha" - }, - { - "id": "buddyai", - "name": "BuddyAI", - "symbol": "buddy" - }, - { - "id": "buff-coin", - "name": "Buff Coin", - "symbol": "buff" - }, - { - "id": "buff-doge-coin", - "name": "Buff Doge Coin", - "symbol": "dogecoin" - }, - { - "id": "buffswap", - "name": "BuffSwap", - "symbol": "buffs" - }, - { - "id": "buffy", - "name": "Buffy", - "symbol": "buffy" - }, - { - "id": "bugs-bunny", - "name": "Bugs Bunny", - "symbol": "bugs" - }, - { - "id": "build", - "name": "BUILD", - "symbol": "build" - }, - { - "id": "buildai", - "name": "BuildAI", - "symbol": "build" - }, - { - "id": "buildup", - "name": "BuildUp", - "symbol": "bup" - }, - { - "id": "bul", - "name": "bul", - "symbol": "bul" - }, - { - "id": "bullbar", - "name": "BullBar", - "symbol": "bull" - }, - { - "id": "bullbear-ai", - "name": "BullBear AI", - "symbol": "aibb" - }, - { - "id": "bull-btc-club", - "name": "Bull BTC Club", - "symbol": "bbc" - }, - { - "id": "bull-coin", - "name": "Bull Coin", - "symbol": "bull" - }, - { - "id": "bullcoinbsc", - "name": "BullcoinBSC", - "symbol": "bull" - }, - { - "id": "bullet-2", - "name": "Bullet", - "symbol": "blt" - }, - { - "id": "bullet-game", - "name": "Bullet Gate Betting Token", - "symbol": "bullet" - }, - { - "id": "bullets", - "name": "Bullets", - "symbol": "blt" - }, - { - "id": "bull-frog", - "name": "Bull Frog", - "symbol": "bull" - }, - { - "id": "bull-game", - "name": "Bull Game ToKens", - "symbol": "bgt" - }, - { - "id": "bullieverse", - "name": "Bullieverse", - "symbol": "bull" - }, - { - "id": "bulllauncher", - "name": "BullLauncher", - "symbol": "bul" - }, - { - "id": "bull-market", - "name": "Bull Market", - "symbol": "$bull" - }, - { - "id": "bull-moon", - "name": "Bull Moon", - "symbol": "bullmoon" - }, - { - "id": "bullperks", - "name": "BullPerks", - "symbol": "blp" - }, - { - "id": "bull-run-today", - "name": "Bull Run", - "symbol": "bull" - }, - { - "id": "bullshits404", - "name": "Bullshits404", - "symbol": "bs" - }, - { - "id": "bull-star-finance", - "name": "Bull Star Finance", - "symbol": "bsf" - }, - { - "id": "bull-token", - "name": "BULL Token", - "symbol": "$bull" - }, - { - "id": "bull-token-2", - "name": "Bull Token", - "symbol": "bull" - }, - { - "id": "bully", - "name": "Bully", - "symbol": "bully" - }, - { - "id": "bully-2", - "name": "Bully", - "symbol": "bully" - }, - { - "id": "bullysoltoken", - "name": "Bully", - "symbol": "bully" - }, - { - "id": "bumblebot", - "name": "Bumblebot", - "symbol": "bumble" - }, - { - "id": "bumoon", - "name": "BUMooN", - "symbol": "bumn" - }, - { - "id": "bumper", - "name": "Bumper", - "symbol": "bump" - }, - { - "id": "bundles", - "name": "Bund V2", - "symbol": "bund" - }, - { - "id": "bundl-tools", - "name": "Bundl Tools", - "symbol": "bundl" - }, - { - "id": "bunicorn", - "name": "Bunicorn", - "symbol": "buni" - }, - { - "id": "bunkee", - "name": "Bunkee", - "symbol": "bunk" - }, - { - "id": "bunnypark", - "name": "BunnyPark", - "symbol": "bp" - }, - { - "id": "bunnypark-game", - "name": "BunnyPark Game", - "symbol": "bg" - }, - { - "id": "bunny-token-polygon", - "name": "Pancake Bunny Polygon", - "symbol": "polybunny" - }, - { - "id": "burency", - "name": "Burency", - "symbol": "buy" - }, - { - "id": "burger-swap", - "name": "BurgerCities", - "symbol": "burger" - }, - { - "id": "burn", - "name": "BURN", - "symbol": "burn" - }, - { - "id": "burnedfi", - "name": "BurnedFi", - "symbol": "burn" - }, - { - "id": "burners", - "name": "Burners", - "symbol": "brnr" - }, - { - "id": "burnify", - "name": "Burnify", - "symbol": "bfy" - }, - { - "id": "burning-circle", - "name": "Burning Circle", - "symbol": "circle" - }, - { - "id": "burnsdefi", - "name": "BurnsDeFi", - "symbol": "burns" - }, - { - "id": "burp", - "name": "Burp", - "symbol": "burp" - }, - { - "id": "burrial", - "name": "Burrial", - "symbol": "burry" - }, - { - "id": "burrow", - "name": "Burrow", - "symbol": "brrr" - }, - { - "id": "burrrd", - "name": "BURRRD", - "symbol": "burrrd" - }, - { - "id": "bursaspor-fan-token", - "name": "Bursaspor Fan Token", - "symbol": "tmsh" - }, - { - "id": "busdx", - "name": "Respan", - "symbol": "rspn" - }, - { - "id": "busy-dao", - "name": "Busy", - "symbol": "busy" - }, - { - "id": "butane-token", - "name": "Butane Token", - "symbol": "btn" - }, - { - "id": "butter", - "name": "Butter", - "symbol": "butter" - }, - { - "id": "butter-2", - "name": "Butter", - "symbol": "butter" - }, - { - "id": "butterfly-protocol-2", - "name": "Butterfly Protocol", - "symbol": "bfly" - }, - { - "id": "buttman", - "name": "Buttman", - "symbol": "butt" - }, - { - "id": "buying", - "name": "Buying.com", - "symbol": "buy" - }, - { - "id": "buzz-the-bellboy", - "name": "Buzz The Bellboy", - "symbol": "buzz" - }, - { - "id": "bvm", - "name": "BVM", - "symbol": "bvm" - }, - { - "id": "bware-infra", - "name": "Bware", - "symbol": "infra" - }, - { - "id": "bxh", - "name": "BXH", - "symbol": "bxh" - }, - { - "id": "bxn", - "name": "BXN", - "symbol": "bxn" - }, - { - "id": "byat", - "name": "Byat", - "symbol": "byat" - }, - { - "id": "byepix", - "name": "Byepix", - "symbol": "epix" - }, - { - "id": "bypass", - "name": "Bypass", - "symbol": "bypass" - }, - { - "id": "byte", - "name": "Byte", - "symbol": "byte" - }, - { - "id": "byteai", - "name": "ByteAI", - "symbol": "byte" - }, - { - "id": "byteball", - "name": "Obyte", - "symbol": "gbyte" - }, - { - "id": "byte-bsc", - "name": "BYTE BSC", - "symbol": "byte" - }, - { - "id": "bytecoin", - "name": "Bytecoin", - "symbol": "bcn" - }, - { - "id": "bytenext", - "name": "ByteNext", - "symbol": "bnu" - }, - { - "id": "byteonblast", - "name": "ByteonBlast", - "symbol": "byte" - }, - { - "id": "bytom", - "name": "Bytom", - "symbol": "btm" - }, - { - "id": "bzedge", - "name": "BeeZee", - "symbol": "bze" - }, - { - "id": "bzetcoin", - "name": "BzetCoin", - "symbol": "bzet" - }, - { - "id": "bzx-protocol", - "name": "bZx Protocol", - "symbol": "bzrx" - }, - { - "id": "caacon", - "name": "Caacon", - "symbol": "cc" - }, - { - "id": "caave", - "name": "cAAVE", - "symbol": "caave" - }, - { - "id": "cabal", - "name": "Cabal", - "symbol": "cabal" - }, - { - "id": "cacao", - "name": "Maya Protocol", - "symbol": "cacao" - }, - { - "id": "cacom", - "name": "Cacom", - "symbol": "cacom" - }, - { - "id": "cadabra-finance", - "name": "Cadabra Finance", - "symbol": "abra" - }, - { - "id": "cad-coin", - "name": "CAD Coin", - "symbol": "cadc" - }, - { - "id": "cadence-protocol", - "name": "Cadence Protocol", - "symbol": "cad" - }, - { - "id": "cadinu-bonus", - "name": "CADINU Bonus", - "symbol": "cbon" - }, - { - "id": "caduceus", - "name": "Caduceus", - "symbol": "cmp" - }, - { - "id": "caesar-s-arena", - "name": "Caesar's Arena", - "symbol": "caesar" - }, - { - "id": "cagdas-bodrumspor-fan-token", - "name": "\u00c7a\u011fda\u015f Bodrumspor Fan Token", - "symbol": "cbs" - }, - { - "id": "ca-htb", - "name": "Coupon Assets", - "symbol": "ca" - }, - { - "id": "caica-coin", - "name": "CAICA Coin", - "symbol": "cicc" - }, - { - "id": "cairo-finance-cairo-bank", - "name": "Cairo Bank", - "symbol": "cbank" - }, - { - "id": "cajutel", - "name": "Cajutel", - "symbol": "caj" - }, - { - "id": "cakebot", - "name": "Cakebot", - "symbol": "cakebot" - }, - { - "id": "cakebot-2", - "name": "CakeBot", - "symbol": "cakebot" - }, - { - "id": "cake-monster", - "name": "Cake Monster", - "symbol": "monsta" - }, - { - "id": "cakepie-xyz", - "name": "Cakepie", - "symbol": "ckp" - }, - { - "id": "cakeswap", - "name": "CakeSwap", - "symbol": "cakeswap" - }, - { - "id": "caketools", - "name": "Caketools", - "symbol": "ckt" - }, - { - "id": "calamari-network", - "name": "Calamari Network", - "symbol": "kma" - }, - { - "id": "calaxy", - "name": "Calaxy", - "symbol": "clxy" - }, - { - "id": "calcium", - "name": "Calcium", - "symbol": "cal" - }, - { - "id": "calico-cat", - "name": "Calico Cat", - "symbol": "calic" - }, - { - "id": "calicoin", - "name": "CaliCoin", - "symbol": "cali" - }, - { - "id": "callhub", - "name": "CallHub", - "symbol": "chub" - }, - { - "id": "callisto", - "name": "Callisto Network", - "symbol": "clo" - }, - { - "id": "calorie", - "name": "FitBurn", - "symbol": "cal" - }, - { - "id": "calvaria-doe", - "name": "Calvaria: DoE", - "symbol": "ria" - }, - { - "id": "camelcoin", - "name": "Camelcoin", - "symbol": "cml" - }, - { - "id": "camelot-token", - "name": "Camelot Token", - "symbol": "grail" - }, - { - "id": "camly-coin", - "name": "CAMLY COIN", - "symbol": "camly" - }, - { - "id": "canada-ecoin", - "name": "Canada eCoin", - "symbol": "cdn" - }, - { - "id": "canadian-inuit-dog-2", - "name": "Canadian Inuit Dog", - "symbol": "cadinu" - }, - { - "id": "canary", - "name": "Canary", - "symbol": "cnr" - }, - { - "id": "canary-dollar", - "name": "Canary Dollar", - "symbol": "cand" - }, - { - "id": "canary-reborn", - "name": "Canary Reborn", - "symbol": "crb" - }, - { - "id": "candle-cat", - "name": "Candle Cat", - "symbol": "candle" - }, - { - "id": "candy-pocket", - "name": "Candy Pocket", - "symbol": "candy" - }, - { - "id": "candy-token", - "name": "CANDY Token", - "symbol": "candy" - }, - { - "id": "cantina-royale", - "name": "Cantina Royale", - "symbol": "crt" - }, - { - "id": "canto", - "name": "CANTO", - "symbol": "canto" - }, - { - "id": "canto-crabs-chip", - "name": "Canto Crabs Chip", - "symbol": "crab" - }, - { - "id": "cantohm", - "name": "CantOHM", - "symbol": "cohm" - }, - { - "id": "canto-inu", - "name": "Canto Inu", - "symbol": "cinu" - }, - { - "id": "cantosino-com-profit-pass", - "name": "Cantosino.com Profit Pass", - "symbol": "cpp" - }, - { - "id": "canvas-n-glr", - "name": "GalleryCoin", - "symbol": "glr" - }, - { - "id": "canwifhat", - "name": "Canwifhat", - "symbol": "can" - }, - { - "id": "canxium", - "name": "Canxium", - "symbol": "cau" - }, - { - "id": "cap", - "name": "Cap", - "symbol": "cap" - }, - { - "id": "capapult", - "name": "Solid", - "symbol": "capa" - }, - { - "id": "capital-dao-starter-token", - "name": "Capital DAO Starter", - "symbol": "cds" - }, - { - "id": "capital-rock", - "name": "CAPITAL ROCK", - "symbol": "cr" - }, - { - "id": "capone", - "name": "Capone", - "symbol": "capone" - }, - { - "id": "capo-was-right", - "name": "Capo Was Right", - "symbol": "cwr" - }, - { - "id": "cappasity", - "name": "Cappasity", - "symbol": "capp" - }, - { - "id": "capshort-token", - "name": "Capshort token", - "symbol": "caps" - }, - { - "id": "captain-planet", - "name": "Captain Planet", - "symbol": "ctp" - }, - { - "id": "captain-tsubasa", - "name": "Captain Tsubasa", - "symbol": "tsugt" - }, - { - "id": "capybara", - "name": "Capybara", - "symbol": "capy" - }, - { - "id": "capybara-bsc", - "name": "Capybara BSC", - "symbol": "capy" - }, - { - "id": "capybara-memecoin", - "name": "Capybara Memecoin", - "symbol": "bara" - }, - { - "id": "capybara-token", - "name": "Capybara Token", - "symbol": "capy" - }, - { - "id": "carbify", - "name": "Carbify", - "symbol": "cby" - }, - { - "id": "carbon", - "name": "Carbon", - "symbol": "carbon" - }, - { - "id": "carbon21", - "name": "Carbon21", - "symbol": "c21" - }, - { - "id": "carbon-browser", - "name": "Carbon Browser", - "symbol": "csix" - }, - { - "id": "carbon-crates", - "name": "Carbon Crates", - "symbol": "carb" - }, - { - "id": "carbon-credit", - "name": "Carbon Credit", - "symbol": "cct" - }, - { - "id": "carbon-labs", - "name": "Carbon Labs", - "symbol": "carb" - }, - { - "id": "carbon-neutrality-blockchain", - "name": "Carbon Neutrality Blockchain", - "symbol": "cnb" - }, - { - "id": "cardano", - "name": "Cardano", - "symbol": "ada" - }, - { - "id": "cardano-crocs-club", - "name": "Cardano Crocs Club", - "symbol": "c4" - }, - { - "id": "cardanogpt", - "name": "CardanoGPT", - "symbol": "cgi" - }, - { - "id": "cardanum", - "name": "Cardanum", - "symbol": "carda" - }, - { - "id": "cardence", - "name": "Cardence", - "symbol": "$crdn" - }, - { - "id": "cardinals", - "name": "Cardinals (DRC-20)", - "symbol": "cardi" - }, - { - "id": "cardiocoin", - "name": "Cardiocoin", - "symbol": "crdc" - }, - { - "id": "cards", - "name": "Cards", - "symbol": "cards" - }, - { - "id": "cardstack", - "name": "Cardstack", - "symbol": "card" - }, - { - "id": "cardstarter", - "name": "Cardstarter", - "symbol": "cards" - }, - { - "id": "carecoin", - "name": "CareCoin", - "symbol": "care" - }, - { - "id": "cargox", - "name": "CargoX", - "symbol": "cxo" - }, - { - "id": "carmin", - "name": "Carmin", - "symbol": "carmin" - }, - { - "id": "carnomaly", - "name": "Carnomaly", - "symbol": "carr" - }, - { - "id": "caroline", - "name": "Caroline", - "symbol": "her" - }, - { - "id": "caroltoken", - "name": "CAROLToken", - "symbol": "carol" - }, - { - "id": "carrieverse", - "name": "CarrieVerse", - "symbol": "cvtx" - }, - { - "id": "carry", - "name": "Carry", - "symbol": "cre" - }, - { - "id": "cartel-coin-2", - "name": "Cartel Coin", - "symbol": "cartel" - }, - { - "id": "cartesi", - "name": "Cartesi", - "symbol": "ctsi" - }, - { - "id": "cartman", - "name": "Cartman", - "symbol": "$cartman" - }, - { - "id": "carvertical", - "name": "carVertical", - "symbol": "cv" - }, - { - "id": "cascadia", - "name": "Cascadia", - "symbol": "cc" - }, - { - "id": "cashaa", - "name": "Cashaa", - "symbol": "cas" - }, - { - "id": "cashback", - "name": "Cashback", - "symbol": "cbk" - }, - { - "id": "cashbackpro", - "name": "CashBackPro", - "symbol": "cbp" - }, - { - "id": "cashcab", - "name": "CASHCAB", - "symbol": "cab" - }, - { - "id": "cashcats", - "name": "CashCats", - "symbol": "$cats" - }, - { - "id": "cashcow", - "name": "CashCow", - "symbol": "cow" - }, - { - "id": "cash-driver", - "name": "Cash Driver", - "symbol": "cd" - }, - { - "id": "cash-flash", - "name": "Cash Flash", - "symbol": "cft" - }, - { - "id": "cashtree-token", - "name": "Cashtree Token", - "symbol": "ctt" - }, - { - "id": "casinocoin", - "name": "Casinocoin", - "symbol": "csc" - }, - { - "id": "casinu-inu", - "name": "Casinu Inu", - "symbol": "casinu" - }, - { - "id": "casper-network", - "name": "Casper Network", - "symbol": "cspr" - }, - { - "id": "casperpad", - "name": "CasperPad", - "symbol": "cspd" - }, - { - "id": "cassie-dragon", - "name": "Cassie Dragon", - "symbol": "cassie \ud83d\udc09" - }, - { - "id": "castello-coin", - "name": "Castello Coin", - "symbol": "cast" - }, - { - "id": "castle-of-blackwater", - "name": "Castle Of Blackwater", - "symbol": "cobe" - }, - { - "id": "catalina-whales-index", - "name": "Catalina Whales Index", - "symbol": "whales" - }, - { - "id": "catapult", - "name": "A2DAO", - "symbol": "atd" - }, - { - "id": "catbonk", - "name": "Catbonk", - "symbol": "cabo" - }, - { - "id": "catboy-3", - "name": "Catboy", - "symbol": "catboy" - }, - { - "id": "catboy-4", - "name": "Catboy", - "symbol": "catboy" - }, - { - "id": "cat-cat-token", - "name": "Cat", - "symbol": "cat" - }, - { - "id": "catceo", - "name": "CATCEO", - "symbol": "catceo" - }, - { - "id": "catchy", - "name": "Catchy", - "symbol": "catchy" - }, - { - "id": "catcoin-bsc", - "name": "Catcoin BSC", - "symbol": "cat" - }, - { - "id": "catcoin-cash", - "name": "Catcoin", - "symbol": "cat" - }, - { - "id": "catcoin-token", - "name": "CatCoin Token", - "symbol": "cats" - }, - { - "id": "catdog", - "name": "CATDOG", - "symbol": "catdog" - }, - { - "id": "catecoin", - "name": "CateCoin", - "symbol": "cate" - }, - { - "id": "catex", - "name": "CATEX", - "symbol": "catex" - }, - { - "id": "catex-token", - "name": "Catex", - "symbol": "catt" - }, - { - "id": "catfish", - "name": "Catfish", - "symbol": "catfish" - }, - { - "id": "catge-coin", - "name": "Catge Coin", - "symbol": "catge" - }, - { - "id": "cat-getting-fade", - "name": "Cat getting fade", - "symbol": "cgf" - }, - { - "id": "catgirl", - "name": "Catgirl", - "symbol": "catgirl" - }, - { - "id": "catgirl-optimus", - "name": "Catgirl Optimus", - "symbol": "optig" - }, - { - "id": "cathena-gold", - "name": "Cathena Gold", - "symbol": "cgo" - }, - { - "id": "catheon-gaming", - "name": "Catheon Gaming", - "symbol": "catheon" - }, - { - "id": "cat-in-a-box-ether", - "name": "Cat-in-a-Box Ether", - "symbol": "boxeth" - }, - { - "id": "cat-in-a-box-fee-token", - "name": "Cat-in-a-Box Fee Token", - "symbol": "boxfee" - }, - { - "id": "cat-in-a-dogs-world", - "name": "cat in a dogs world", - "symbol": "mew" - }, - { - "id": "catino", - "name": "Catino", - "symbol": "catino" - }, - { - "id": "cat-inu", - "name": "CAT INU", - "symbol": "cat" - }, - { - "id": "catman", - "name": "Catman", - "symbol": "catman" - }, - { - "id": "cat-mouse", - "name": "Cat & Mouse", - "symbol": "catmouse" - }, - { - "id": "cato", - "name": "CATO", - "symbol": "cato" - }, - { - "id": "catocoin", - "name": "CatoCoin", - "symbol": "cato" - }, - { - "id": "cat-of-elon", - "name": "Cat of ELON", - "symbol": "eloncat" - }, - { - "id": "catpay", - "name": "CATpay", - "symbol": "catpay" - }, - { - "id": "catsapes", - "name": "CatsApes", - "symbol": "cats" - }, - { - "id": "catscoin", - "name": "Catscoin", - "symbol": "cats" - }, - { - "id": "cats-coin-1722f9f2-68f8-4ad8-a123-2835ea18abc5", - "name": "Cats Coin (BSC)", - "symbol": "cts" - }, - { - "id": "catscoin-2", - "name": "Catscoin", - "symbol": "cats" - }, - { - "id": "cats-of-sol", - "name": "Cats Of Sol", - "symbol": "cos" - }, - { - "id": "cat-token", - "name": "Mooncat CAT", - "symbol": "cat" - }, - { - "id": "catvax", - "name": "Catvax", - "symbol": "catvax" - }, - { - "id": "catwifbag", - "name": "catwifbag", - "symbol": "bag" - }, - { - "id": "cat-wif-hands", - "name": "Cat Wif Hands", - "symbol": "catwif" - }, - { - "id": "catwifhat", - "name": "CatwifHat", - "symbol": "cif" - }, - { - "id": "catwifhat-2", - "name": "catwifhat", - "symbol": "$cwif" - }, - { - "id": "catwifhat-3", - "name": "CatWifHat", - "symbol": "catwif" - }, - { - "id": "catwifmelon", - "name": "CATWIFMELON", - "symbol": "melon" - }, - { - "id": "catzcoin", - "name": "CatzCoin", - "symbol": "catz" - }, - { - "id": "cavada", - "name": "Cavada", - "symbol": "cavada" - }, - { - "id": "cavatar", - "name": "Cavatar", - "symbol": "cavat" - }, - { - "id": "cave", - "name": "CaveWorld", - "symbol": "cave" - }, - { - "id": "caviar", - "name": "Caviar", - "symbol": "cvr" - }, - { - "id": "caviar-2", - "name": "CAVIAR", - "symbol": "caviar" - }, - { - "id": "caviarnine-lsu-pool-lp", - "name": "CaviarNine LSU Pool LP", - "symbol": "lsulp" - }, - { - "id": "caw-ceo", - "name": "Caw CEO", - "symbol": "cawceo" - }, - { - "id": "cbdc", - "name": "CBDC", - "symbol": "cbdc" - }, - { - "id": "cbdx", - "name": "CBDX (Ordinals)", - "symbol": "cbdx" - }, - { - "id": "cbyte-network", - "name": "CBYTE Network", - "symbol": "cbyte" - }, - { - "id": "cca", - "name": "CCA", - "symbol": "cca" - }, - { - "id": "c-cash", - "name": "C-Cash", - "symbol": "ccash" - }, - { - "id": "ccb", - "name": "$CCB \u9e21\u9e21\u5e01", - "symbol": "\u9e21\u9e21\u5e01 (ccb)" - }, - { - "id": "ccc-protocol", - "name": "CCC Protocol", - "symbol": "ccc" - }, - { - "id": "ccgds", - "name": "CCGDS", - "symbol": "ccgds" - }, - { - "id": "c-charge", - "name": "C+Charge", - "symbol": "cchg" - }, - { - "id": "ccomp", - "name": "cCOMP", - "symbol": "ccomp" - }, - { - "id": "ccore", - "name": "Ccore", - "symbol": "cco" - }, - { - "id": "ccqkl", - "name": "CCQKL", - "symbol": "cc" - }, - { - "id": "cdai", - "name": "cDAI", - "symbol": "cdai" - }, - { - "id": "cdao", - "name": "cDAO", - "symbol": "cdao" - }, - { - "id": "cdbio", - "name": "CDbio", - "symbol": "mcd" - }, - { - "id": "ceasports", - "name": "CEASports", - "symbol": "cspt" - }, - { - "id": "cebiolabs", - "name": "CeBioLabs", - "symbol": "cbsl" - }, - { - "id": "cedefiai", - "name": "CeDeFiAi", - "symbol": "cdfi" - }, - { - "id": "ceek", - "name": "CEEK Smart VR", - "symbol": "ceek" - }, - { - "id": "ceiling-cat", - "name": "Ceiling Cat", - "symbol": "ceicat" - }, - { - "id": "ceji", - "name": "Ceji", - "symbol": "ceji" - }, - { - "id": "cekke-cronje", - "name": "Cekke Cronje", - "symbol": "cekke" - }, - { - "id": "celer-bridged-busd-zksync", - "name": "Celer Bridged BUSD (zkSync)", - "symbol": "busd" - }, - { - "id": "celer-bridged-usdc-astar", - "name": "Celer Bridged USDC (Astar)", - "symbol": "usdc" - }, - { - "id": "celer-bridged-usdc-conflux", - "name": "Celer Bridged USDC (Conflux)", - "symbol": "usdc" - }, - { - "id": "celer-bridged-usdc-oasys", - "name": "Celer Bridged USDC (Oasys)", - "symbol": "usdc" - }, - { - "id": "celer-bridged-usdt-astar", - "name": "Celer Bridged USDT (Astar)", - "symbol": "" - }, - { - "id": "celer-bridged-usdt-conflux", - "name": "Celer Bridged USDT (Conflux)", - "symbol": "usdt" - }, - { - "id": "celer-network", - "name": "Celer Network", - "symbol": "celr" - }, - { - "id": "celestia", - "name": "Celestia", - "symbol": "tia" - }, - { - "id": "celestial", - "name": "Celestial", - "symbol": "celt" - }, - { - "id": "cellena-finance", - "name": "Cellana Finance", - "symbol": "cell" - }, - { - "id": "cellframe", - "name": "Cellframe", - "symbol": "cell" - }, - { - "id": "cellmates", - "name": "CellMates", - "symbol": "cell" - }, - { - "id": "cells-token", - "name": "Cells Token", - "symbol": "cells" - }, - { - "id": "celo", - "name": "Celo", - "symbol": "celo" - }, - { - "id": "celo-dollar", - "name": "Celo Dollar", - "symbol": "cusd" - }, - { - "id": "celo-euro", - "name": "Celo Euro", - "symbol": "ceur" - }, - { - "id": "celo-real-creal", - "name": "Celo Real (cREAL)", - "symbol": "creal" - }, - { - "id": "celo-wormhole", - "name": "Celo (Wormhole)", - "symbol": "celo" - }, - { - "id": "celsius-degree-token", - "name": "Celsius Network", - "symbol": "cel" - }, - { - "id": "celsiusx-wrapped-eth", - "name": "CelsiusX Wrapped ETH", - "symbol": "cxeth" - }, - { - "id": "centaur", - "name": "Centaur", - "symbol": "cntr" - }, - { - "id": "centaurify", - "name": "Centaurify", - "symbol": "cent" - }, - { - "id": "centbit", - "name": "CentBit", - "symbol": "cbit" - }, - { - "id": "centcex", - "name": "Centcex", - "symbol": "cenx" - }, - { - "id": "central-bank-digital-currency-memecoin", - "name": "Central Bank Digital Currency Memecoin", - "symbol": "cbdc" - }, - { - "id": "centrality", - "name": "CENNZnet", - "symbol": "cennz" - }, - { - "id": "centric-cash", - "name": "Centric Swap", - "symbol": "cns" - }, - { - "id": "centrifuge", - "name": "Centrifuge", - "symbol": "cfg" - }, - { - "id": "centrofi", - "name": "CentroFi", - "symbol": "centro" - }, - { - "id": "centurion-invest", - "name": "Centurion Invest", - "symbol": "cix" - }, - { - "id": "ceo", - "name": "CEO", - "symbol": "ceo" - }, - { - "id": "cerberus-2", - "name": "Cerberus", - "symbol": "crbrus" - }, - { - "id": "cere-network", - "name": "Cere Network", - "symbol": "cere" - }, - { - "id": "ceres", - "name": "Ceres", - "symbol": "ceres" - }, - { - "id": "cerra", - "name": "Cerra", - "symbol": "cerra" - }, - { - "id": "certicos-2", - "name": "Certicos", - "symbol": "cert" - }, - { - "id": "certik", - "name": "Shentu", - "symbol": "ctk" - }, - { - "id": "cerus", - "name": "Cerus", - "symbol": "cerus" - }, - { - "id": "cetus-protocol", - "name": "Cetus Protocol", - "symbol": "cetus" - }, - { - "id": "cex-ai", - "name": "CEX AI", - "symbol": "cex-ai" - }, - { - "id": "cex-index", - "name": "CEX Index", - "symbol": "cex" - }, - { - "id": "cfx-quantum", - "name": "CFX Quantum", - "symbol": "cfxq" - }, - { - "id": "chabit", - "name": "chabit", - "symbol": "cb8" - }, - { - "id": "chad", - "name": "CHAD", - "symbol": "chad" - }, - { - "id": "chad-coin", - "name": "Chad Coin", - "symbol": "chad" - }, - { - "id": "chadimir-putni", - "name": "Chadimir Putni", - "symbol": "putni" - }, - { - "id": "chad-on-solana", - "name": "Chad On Solana", - "symbol": "chad" - }, - { - "id": "chad-scanner", - "name": "Chad Scanner", - "symbol": "chad" - }, - { - "id": "chain-2", - "name": "Onyxcoin", - "symbol": "xcn" - }, - { - "id": "chainback", - "name": "Chainback", - "symbol": "archive" - }, - { - "id": "chainbing", - "name": "Chainbing", - "symbol": "cbg" - }, - { - "id": "chaincade", - "name": "ChainCade", - "symbol": "chaincade" - }, - { - "id": "chain-crisis", - "name": "Chain Crisis", - "symbol": "crisis" - }, - { - "id": "chainers", - "name": "Chainers", - "symbol": "chu" - }, - { - "id": "chainex", - "name": "ChainEx", - "symbol": "cex" - }, - { - "id": "chainfactory", - "name": "ChainFactory", - "symbol": "factory" - }, - { - "id": "chainflip", - "name": "Chainflip", - "symbol": "flip" - }, - { - "id": "chain-games", - "name": "Chain Games", - "symbol": "chain" - }, - { - "id": "chainge-finance", - "name": "Chainge", - "symbol": "xchng" - }, - { - "id": "chaingpt", - "name": "ChainGPT", - "symbol": "cgpt" - }, - { - "id": "chain-guardians", - "name": "Chain Guardians", - "symbol": "cgg" - }, - { - "id": "chain-key-bitcoin", - "name": "Chain-key Bitcoin", - "symbol": "ckbtc" - }, - { - "id": "chain-key-ethereum", - "name": "Chain-key Ethereum", - "symbol": "cketh" - }, - { - "id": "chainlink", - "name": "Chainlink", - "symbol": "link" - }, - { - "id": "chainlink-plenty-bridge", - "name": "Chainlink (Plenty Bridge)", - "symbol": "link.e" - }, - { - "id": "chainmail", - "name": "CHAINMAIL", - "symbol": "mail" - }, - { - "id": "chainminer", - "name": "ChainMiner", - "symbol": "cminer" - }, - { - "id": "chain-of-legends", - "name": "Chain of Legends", - "symbol": "cleg" - }, - { - "id": "chainpay", - "name": "Chainpay", - "symbol": "cpay" - }, - { - "id": "chainport", - "name": "ChainPort", - "symbol": "portx" - }, - { - "id": "chainpulse", - "name": "ChainPulse", - "symbol": "cp" - }, - { - "id": "chains-of-war", - "name": "Chains of War", - "symbol": "mira" - }, - { - "id": "chainswap-2", - "name": "ChainSwap", - "symbol": "chains" - }, - { - "id": "chainswap-3", - "name": "ChainSwap", - "symbol": "cswap" - }, - { - "id": "chaintools", - "name": "Chaintools", - "symbol": "ctls" - }, - { - "id": "chainx", - "name": "ChainX", - "symbol": "pcx" - }, - { - "id": "challenge-coin", - "name": "Challenge Coin", - "symbol": "hero" - }, - { - "id": "champignons-of-arborethia", - "name": "Champignons of Arborethia", - "symbol": "champz" - }, - { - "id": "chanalog", - "name": "Chanalog", - "symbol": "chan" - }, - { - "id": "change", - "name": "Change", - "symbol": "cag" - }, - { - "id": "changenow", - "name": "ChangeNOW", - "symbol": "now" - }, - { - "id": "changer", - "name": "Changer", - "symbol": "cng" - }, - { - "id": "changex", - "name": "Changex", - "symbol": "change" - }, - { - "id": "changpeng-zhao", - "name": "Changpeng Zhao", - "symbol": "cz" - }, - { - "id": "channels", - "name": "Channels", - "symbol": "can" - }, - { - "id": "chaotic-finance", - "name": "Chaotic Finance", - "symbol": "chaos" - }, - { - "id": "chappie", - "name": "Chappie", - "symbol": "chap" - }, - { - "id": "chappyz", - "name": "Chappyz", - "symbol": "chapz" - }, - { - "id": "charactbit", - "name": "Charactbit", - "symbol": "chb" - }, - { - "id": "characterai", - "name": "CharacterAI", - "symbol": "chai" - }, - { - "id": "chargedefi-static", - "name": "ChargeDeFi Static", - "symbol": "static" - }, - { - "id": "charged-particles", - "name": "Charged Particles", - "symbol": "ionx" - }, - { - "id": "charity-alfa", - "name": "Charity Alfa", - "symbol": "mich" - }, - { - "id": "charity-dao-token", - "name": "Charity DAO Token", - "symbol": "chdao" - }, - { - "id": "charli3", - "name": "Charli3", - "symbol": "c3" - }, - { - "id": "charm", - "name": "Charm", - "symbol": "charm" - }, - { - "id": "chartai", - "name": "ChartAI", - "symbol": "cx" - }, - { - "id": "charthub", - "name": "ChartHub", - "symbol": "cht" - }, - { - "id": "chart-roulette", - "name": "Chart Roulette", - "symbol": "cr" - }, - { - "id": "chat-ai", - "name": "Chat AI", - "symbol": "ai" - }, - { - "id": "chatni", - "name": "Chatni", - "symbol": "chatni" - }, - { - "id": "chatter-shield", - "name": "Chatter Shield", - "symbol": "shield" - }, - { - "id": "chax", - "name": "CHAX", - "symbol": "chax" - }, - { - "id": "check", - "name": "CHECK", - "symbol": "check" - }, - { - "id": "checkdot", - "name": "CheckDot", - "symbol": "cdt" - }, - { - "id": "checkerchain", - "name": "CheckerChain", - "symbol": "checkr" - }, - { - "id": "checkmate", - "name": "CHECKMATE", - "symbol": "cmbot" - }, - { - "id": "checks-token", - "name": "Checks Token", - "symbol": "checks" - }, - { - "id": "checoin", - "name": "CheCoin", - "symbol": "checoin" - }, - { - "id": "chedda-2", - "name": "Chedda", - "symbol": "chedda" - }, - { - "id": "cheelee", - "name": "Cheelee", - "symbol": "cheel" - }, - { - "id": "cheems", - "name": "Cheems", - "symbol": "cheems" - }, - { - "id": "cheems-inu-new", - "name": "Cheems Inu [NEW]", - "symbol": "cinu" - }, - { - "id": "cheems-token", - "name": "Cheems Token", - "symbol": "cheems" - }, - { - "id": "cheersland", - "name": "CheersLand", - "symbol": "cheers" - }, - { - "id": "cheesecakeswap", - "name": "CheesecakeSwap", - "symbol": "ccake" - }, - { - "id": "cheese-swap", - "name": "Cheese Swap", - "symbol": "cheese" - }, - { - "id": "cheetahcoin", - "name": "Cheetahcoin", - "symbol": "chta" - }, - { - "id": "cheezburger", - "name": "Cheezburger", - "symbol": "chzb" - }, - { - "id": "cheezburger-2", - "name": "Cheezburger", - "symbol": "cheez" - }, - { - "id": "cheezburger-cat", - "name": "Cheezburger Cat", - "symbol": "cheez" - }, - { - "id": "cheqd-network", - "name": "CHEQD Network", - "symbol": "cheq" - }, - { - "id": "cherrylend", - "name": "CherryLend", - "symbol": "chry" - }, - { - "id": "cherry-network", - "name": "Cherry Network", - "symbol": "cher" - }, - { - "id": "chesscoin-0-32", - "name": "ChessCoin 0.32%", - "symbol": "chess" - }, - { - "id": "chessfish", - "name": "ChessFish", - "symbol": "cfsh" - }, - { - "id": "chew", - "name": "CHEW", - "symbol": "chew" - }, - { - "id": "chewyswap", - "name": "Chewyswap", - "symbol": "chewy" - }, - { - "id": "chex-token", - "name": "CHEX Token", - "symbol": "chex" - }, - { - "id": "chia", - "name": "Chia", - "symbol": "xch" - }, - { - "id": "chiba-neko", - "name": "Chiba Neko", - "symbol": "chiba" - }, - { - "id": "chica-chain", - "name": "Chica Chain", - "symbol": "chica" - }, - { - "id": "chicken", - "name": "Chicken", - "symbol": "kfc" - }, - { - "id": "chickencoin", - "name": "Chickencoin", - "symbol": "chkn" - }, - { - "id": "chicken-town", - "name": "Chicken Town", - "symbol": "chickentown" - }, - { - "id": "chicky", - "name": "Chicky", - "symbol": "chicky" - }, - { - "id": "chief-troll-grok", - "name": "Chief Troll Grok", - "symbol": "ctg" - }, - { - "id": "chief-troll-officer", - "name": "Chief Troll Officer", - "symbol": "cto" - }, - { - "id": "chief-troll-officer-2", - "name": "Chief Troll Officer", - "symbol": "cto" - }, - { - "id": "chief-troll-officer-3", - "name": "Chief Troll Officer", - "symbol": "cto" - }, - { - "id": "chihuahua", - "name": "Chihuahua", - "symbol": "hua" - }, - { - "id": "chihuahuasol", - "name": "ChihuahuaSol", - "symbol": "chih" - }, - { - "id": "chihuahua-token", - "name": "Chihuahua Chain", - "symbol": "huahua" - }, - { - "id": "chiitan", - "name": "Chiitan", - "symbol": "chiitan" - }, - { - "id": "chikincoin", - "name": "ChikinCoin", - "symbol": "ckc" - }, - { - "id": "chikn-egg", - "name": "Chikn Egg", - "symbol": "egg" - }, - { - "id": "chikn-feed", - "name": "chikn feed", - "symbol": "feed" - }, - { - "id": "chikn-fert", - "name": "Chikn Fert", - "symbol": "fert" - }, - { - "id": "chikn-worm", - "name": "Chikn Worm", - "symbol": "worm" - }, - { - "id": "childhoods-end", - "name": "Childhoods End", - "symbol": "o" - }, - { - "id": "childrens-aid-foundation", - "name": "Childrens Aid Foundation", - "symbol": "caf" - }, - { - "id": "child-support", - "name": "Child Support", - "symbol": "$cs" - }, - { - "id": "chili", - "name": "CHILI", - "symbol": "chili" - }, - { - "id": "chiliz", - "name": "Chiliz", - "symbol": "chz" - }, - { - "id": "chiliz-inu", - "name": "Chiliz Inu", - "symbol": "chzinu" - }, - { - "id": "chillpill", - "name": "ChillPill", - "symbol": "$chill" - }, - { - "id": "chillwhales", - "name": "chill", - "symbol": "$chill" - }, - { - "id": "chimaera", - "name": "XAYA", - "symbol": "wchi" - }, - { - "id": "chimera-2", - "name": "Chimera", - "symbol": "cult" - }, - { - "id": "chimp-fight", - "name": "Nana", - "symbol": "nana" - }, - { - "id": "chimpzee-chmpz", - "name": "Chimpzee (CHMPZ\uff09", - "symbol": "chmpz" - }, - { - "id": "chinese-ny-dragon", - "name": "Chinese NY Dragon", - "symbol": "cnyd" - }, - { - "id": "chinu-2", - "name": "Chinu", - "symbol": "chinu" - }, - { - "id": "chipi", - "name": "CHIPI", - "symbol": "chipi" - }, - { - "id": "chi-protocol", - "name": "Chi Protocol", - "symbol": "chi" - }, - { - "id": "chirp-finance", - "name": "Chirp Finance", - "symbol": "chirp" - }, - { - "id": "chirpley", - "name": "Chirpley", - "symbol": "chrp" - }, - { - "id": "chitaverse", - "name": "BabyChita", - "symbol": "bct" - }, - { - "id": "chives-coin", - "name": "Chives Coin", - "symbol": "xcc" - }, - { - "id": "choccyswap", - "name": "ChoccySwap", - "symbol": "ccy" - }, - { - "id": "chocobase", - "name": "ChocoBase", - "symbol": "choco" - }, - { - "id": "chocolate-like-butterfly", - "name": "Chocolate Like Butterfly", - "symbol": "clb" - }, - { - "id": "choise", - "name": "Choise.com", - "symbol": "cho" - }, - { - "id": "chompcoin", - "name": "ChompCoin", - "symbol": "chomp" - }, - { - "id": "chonk-on-base", - "name": "Chonk", - "symbol": "chonk" - }, - { - "id": "chonk-the-cat", - "name": "Chonk The Cat", - "symbol": "chonk" - }, - { - "id": "chonky", - "name": "CHONKY", - "symbol": "chonky" - }, - { - "id": "chooky", - "name": "Chooky", - "symbol": "$choo" - }, - { - "id": "chooserich", - "name": "ChooseRich", - "symbol": "rich" - }, - { - "id": "choppy", - "name": "Choppy", - "symbol": "choppy" - }, - { - "id": "chow-chow", - "name": "CHOW CHOW", - "symbol": "chow" - }, - { - "id": "chrischan", - "name": "CHRISCHAN", - "symbol": "chch" - }, - { - "id": "christmas-floki", - "name": "Christmas Floki", - "symbol": "floc" - }, - { - "id": "christmaspump", - "name": "christmaspump", - "symbol": "chrispump" - }, - { - "id": "christmas-shiba", - "name": "Christmas Shiba", - "symbol": "xshib" - }, - { - "id": "chromaway", - "name": "Chromia", - "symbol": "chr" - }, - { - "id": "chromium-dollar", - "name": "Chromium Dollar", - "symbol": "cr" - }, - { - "id": "chronicle", - "name": "Chronicle", - "symbol": "xnl" - }, - { - "id": "chronicum", - "name": "Chronicum", - "symbol": "chro" - }, - { - "id": "chronobank", - "name": "chrono.tech", - "symbol": "time" - }, - { - "id": "chronos-finance", - "name": "Chronos Finance", - "symbol": "chr" - }, - { - "id": "chubbyakita", - "name": "ChubbyAkita", - "symbol": "cakita" - }, - { - "id": "chuchu", - "name": "Chuchu", - "symbol": "chuchu" - }, - { - "id": "chuck-on-eth", - "name": "Chuck", - "symbol": "chuck" - }, - { - "id": "chumbai-valley", - "name": "Chumbi Valley", - "symbol": "chmb" - }, - { - "id": "chunks", - "name": "Chunks", - "symbol": "chunks" - }, - { - "id": "church-of-the-machina", - "name": "Church of the Machina", - "symbol": "machina" - }, - { - "id": "churro", - "name": "Churro", - "symbol": "churro" - }, - { - "id": "cia", - "name": "CIA", - "symbol": "cia" - }, - { - "id": "cias", - "name": "CIAS", - "symbol": "cias" - }, - { - "id": "cicca-network", - "name": "Cicca Network", - "symbol": "cicca" - }, - { - "id": "ciento-exchange", - "name": "Ciento Exchange", - "symbol": "cnto" - }, - { - "id": "cifdaq", - "name": "CIFDAQ", - "symbol": "cifd" - }, - { - "id": "cigarette-token", - "name": "Cigarette", - "symbol": "cig" - }, - { - "id": "cindicator", - "name": "Cindicator", - "symbol": "cnd" - }, - { - "id": "cindrum", - "name": "Cindrum", - "symbol": "cind" - }, - { - "id": "cipher-2", - "name": "CIPHER", - "symbol": "cpr" - }, - { - "id": "circlepacific", - "name": "CirclePacific", - "symbol": "circle" - }, - { - "id": "circleswap", - "name": "CircleSwap", - "symbol": "cir" - }, - { - "id": "circuits-of-value", - "name": "Circuits of Value", - "symbol": "coval" - }, - { - "id": "circularity-finance", - "name": "Circularity Finance", - "symbol": "cifi" - }, - { - "id": "ciri-coin", - "name": "CIRI Coin", - "symbol": "ciri" - }, - { - "id": "cirque-du-sol", - "name": "Cirque Du Sol", - "symbol": "circ" - }, - { - "id": "cirquity", - "name": "Cirquity", - "symbol": "cirq" - }, - { - "id": "cirus", - "name": "Cirus", - "symbol": "cirus" - }, - { - "id": "citadao", - "name": "CitaDAO", - "symbol": "knight" - }, - { - "id": "citadel", - "name": "Citadel", - "symbol": "ctl" - }, - { - "id": "citadel-one", - "name": "Citadel.one", - "symbol": "xct" - }, - { - "id": "citadel-swap", - "name": "Citadel", - "symbol": "fort" - }, - { - "id": "citty-meme-coin", - "name": "Citty Meme Coin", - "symbol": "citty" - }, - { - "id": "city-boys", - "name": "City Boys", - "symbol": "toons" - }, - { - "id": "city-tycoon-games", - "name": "City Tycoon Games", - "symbol": "ctg" - }, - { - "id": "civfund-stone", - "name": "Civfund Stone", - "symbol": "0ne" - }, - { - "id": "civic", - "name": "Civic", - "symbol": "cvc" - }, - { - "id": "civilization", - "name": "Civilization", - "symbol": "civ" - }, - { - "id": "civilization-network", - "name": "Civilization Network", - "symbol": "cvl" - }, - { - "id": "cjournal", - "name": "Utility Cjournal", - "symbol": "ucjl" - }, - { - "id": "claimswap", - "name": "ClaimSwap", - "symbol": "cla" - }, - { - "id": "clams", - "name": "Clams", - "symbol": "clam" - }, - { - "id": "clashmon-ignition-torch", - "name": "Torch", - "symbol": "torch" - }, - { - "id": "clash-of-lilliput", - "name": "Clash of Lilliput", - "symbol": "col" - }, - { - "id": "classicbitcoin", - "name": "ClassicBitcoin", - "symbol": "cbtc" - }, - { - "id": "classzz", - "name": "ClassZZ", - "symbol": "czz" - }, - { - "id": "claw-2", - "name": "Claw", - "symbol": "claw" - }, - { - "id": "clay-nation", - "name": "Clay Nation", - "symbol": "clay" - }, - { - "id": "claystack-staked-eth", - "name": "ClayStack Staked ETH", - "symbol": "cseth" - }, - { - "id": "claystack-staked-matic", - "name": "ClayStack Staked MATIC", - "symbol": "csmatic" - }, - { - "id": "clearcryptos", - "name": "ClearCryptos", - "symbol": "ccx" - }, - { - "id": "cleardao", - "name": "ClearDAO", - "symbol": "clh" - }, - { - "id": "clearpool", - "name": "Clearpool", - "symbol": "cpool" - }, - { - "id": "clecoin", - "name": "CLECOIN", - "symbol": "cle" - }, - { - "id": "cleopatra", - "name": "Cleopatra", - "symbol": "cleo" - }, - { - "id": "cleo-tech", - "name": "Cleo Tech", - "symbol": "$cleo" - }, - { - "id": "clevernode", - "name": "Clevernode", - "symbol": "clv" - }, - { - "id": "clever-token", - "name": "CLever", - "symbol": "clev" - }, - { - "id": "clexy", - "name": "Clexy", - "symbol": "clexy" - }, - { - "id": "clfi", - "name": "cLFi", - "symbol": "clfi" - }, - { - "id": "clickart-ai", - "name": "Clickart.ai", - "symbol": "clickart" - }, - { - "id": "clintex-cti", - "name": "ClinTex CTi", - "symbol": "cti" - }, - { - "id": "clippy", - "name": "Clippy", - "symbol": "clippy" - }, - { - "id": "clippy-ai", - "name": "Clippy AI", - "symbol": "$clippy" - }, - { - "id": "clips", - "name": "Clips", - "symbol": "clips" - }, - { - "id": "cliq", - "name": "CLIQ", - "symbol": "ct" - }, - { - "id": "cloak-2", - "name": "Cloak", - "symbol": "cloak" - }, - { - "id": "cloakcoin", - "name": "Cloakcoin", - "symbol": "cloak" - }, - { - "id": "cloned-dogecoin", - "name": "Cloned Dogecoin", - "symbol": "cldoge" - }, - { - "id": "cloned-sui", - "name": "Cloned Sui", - "symbol": "clsui" - }, - { - "id": "clone-protocol-clarb", - "name": "Cloned Arbitrum", - "symbol": "clarb" - }, - { - "id": "clone-protocol-clop", - "name": "Cloned Optimism", - "symbol": "clop" - }, - { - "id": "clore-ai", - "name": "Clore.ai", - "symbol": "clore" - }, - { - "id": "closedai", - "name": "ClosedAI", - "symbol": "closedai" - }, - { - "id": "cloud-ai", - "name": "Cloud AI", - "symbol": "cld" - }, - { - "id": "cloudbase", - "name": "CloudBase", - "symbol": "cloud" - }, - { - "id": "cloud-binary", - "name": "Cloud Binary", - "symbol": "cby" - }, - { - "id": "cloudbric", - "name": "Cloudbric", - "symbol": "clbk" - }, - { - "id": "cloudcoin-finance", - "name": "CloudCoin Finance", - "symbol": "ccfi" - }, - { - "id": "cloud-mining-technologies", - "name": "Cloud Mining Technologies", - "symbol": "cxm" - }, - { - "id": "cloudname", - "name": "Cloudname", - "symbol": "cname" - }, - { - "id": "cloudnet-ai", - "name": "Cloudnet Ai", - "symbol": "cnai" - }, - { - "id": "cloud-pet", - "name": "Cloud Pet", - "symbol": "cpet" - }, - { - "id": "cloudtx", - "name": "CloudTx", - "symbol": "cloud" - }, - { - "id": "cloutcontracts", - "name": "CloutContracts", - "symbol": "ccs" - }, - { - "id": "clover-finance", - "name": "Clover Finance", - "symbol": "clv" - }, - { - "id": "clown-pepe", - "name": "Clown Pepe", - "symbol": "honk" - }, - { - "id": "club-atletico-independiente", - "name": "Club Atletico Independiente Fan Token", - "symbol": "cai" - }, - { - "id": "club-deportivo-fan-token", - "name": "Club Deportivo Guadalajara Fan Token", - "symbol": "chvs" - }, - { - "id": "clube-atletico-mineiro-fan-token", - "name": "Clube Atl\u00e9tico Mineiro Fan Token", - "symbol": "galo" - }, - { - "id": "clubrare-empower", - "name": "Empower", - "symbol": "mpwr" - }, - { - "id": "club-santos-laguna-fan-token", - "name": "Club Santos Laguna Fan Token", - "symbol": "san" - }, - { - "id": "clucoin", - "name": "CluCoin", - "symbol": "clu" - }, - { - "id": "cncl", - "name": "The Ordinals Council", - "symbol": "cncl" - }, - { - "id": "cneta", - "name": "cNETA", - "symbol": "cneta" - }, - { - "id": "cnh-tether", - "name": "CNH Tether", - "symbol": "cnht" - }, - { - "id": "cnns", - "name": "CNNS", - "symbol": "cnns" - }, - { - "id": "co2dao", - "name": "Co2DAO", - "symbol": "co2" - }, - { - "id": "coalculus", - "name": "Coalculus", - "symbol": "coal" - }, - { - "id": "coast-cst", - "name": "Coast CST", - "symbol": "cst" - }, - { - "id": "cobak-token", - "name": "Cobak", - "symbol": "cbk" - }, - { - "id": "coban", - "name": "COBAN", - "symbol": "coban" - }, - { - "id": "cobra-king", - "name": "Cobra king", - "symbol": "cob" - }, - { - "id": "cobra-swap", - "name": "Cobra Swap", - "symbol": "cobra" - }, - { - "id": "coc", - "name": "COC", - "symbol": "coc" - }, - { - "id": "cockapoo", - "name": "Cockapoo", - "symbol": "cpoo" - }, - { - "id": "cockboxing", - "name": "CockBoxing", - "symbol": "cocks" - }, - { - "id": "cocktailbar", - "name": "The Cocktailbar", - "symbol": "coc" - }, - { - "id": "coco", - "name": "Coco", - "symbol": "coco" - }, - { - "id": "coconut-chicken", - "name": "Coconut Chicken", - "symbol": "$ccc" - }, - { - "id": "cocos-bcx", - "name": "COMBO", - "symbol": "combo" - }, - { - "id": "coda", - "name": "CODA", - "symbol": "coda" - }, - { - "id": "codai", - "name": "CODAI", - "symbol": "codai" - }, - { - "id": "codegenie", - "name": "CodeGenie", - "symbol": "$codeg" - }, - { - "id": "codex", - "name": "Codex", - "symbol": "cdex" - }, - { - "id": "codexchain", - "name": "CodeXChain", - "symbol": "cdx" - }, - { - "id": "codex-multichain", - "name": "Codex Multichain", - "symbol": "codex" - }, - { - "id": "coding-dino", - "name": "Coding Dino", - "symbol": "dino" - }, - { - "id": "coffee-club-token", - "name": "Coffee Club Token", - "symbol": "coffee" - }, - { - "id": "cofix", - "name": "CoFiX", - "symbol": "cofi" - }, - { - "id": "cogecoin", - "name": "Cogecoin", - "symbol": "coge" - }, - { - "id": "cogent-sol", - "name": "Cogent SOL", - "symbol": "cgntsol" - }, - { - "id": "cogito-protocol", - "name": "Cogito Finance", - "symbol": "cgv" - }, - { - "id": "cognitechai", - "name": "CogniTechAI", - "symbol": "cti" - }, - { - "id": "coin-2", - "name": "COIN", - "symbol": "coin" - }, - { - "id": "coin98", - "name": "Coin98", - "symbol": "c98" - }, - { - "id": "coin98-dollar", - "name": "Coin98 Dollar", - "symbol": "cusd" - }, - { - "id": "coinary-token", - "name": "Coinary", - "symbol": "cyt" - }, - { - "id": "coinback", - "name": "Coinback", - "symbol": "cbk" - }, - { - "id": "coinbase-tokenized-stock-defichain", - "name": "Coinbase Tokenized Stock Defichain", - "symbol": "dcoin" - }, - { - "id": "coinbase-wrapped-staked-eth", - "name": "Coinbase Wrapped Staked ETH", - "symbol": "cbeth" - }, - { - "id": "coinbet-finance", - "name": "Coinbet Finance", - "symbol": "cfi" - }, - { - "id": "coinbidex", - "name": "Coinbidex", - "symbol": "cbe" - }, - { - "id": "coinbot", - "name": "CoinBot", - "symbol": "coinbt" - }, - { - "id": "coinbuck", - "name": "CoinBuck", - "symbol": "buck" - }, - { - "id": "coin-capsule", - "name": "Ternoa", - "symbol": "caps" - }, - { - "id": "coinclaim", - "name": "CoinClaim", - "symbol": "clm" - }, - { - "id": "coincollect", - "name": "CoinCollect", - "symbol": "collect" - }, - { - "id": "coindom", - "name": "Stem Cell Coin", - "symbol": "scc" - }, - { - "id": "coinecta", - "name": "Coinecta", - "symbol": "cnct" - }, - { - "id": "coin-edelweis", - "name": "Coin Edelweis", - "symbol": "edel" - }, - { - "id": "coinex-token", - "name": "CoinEx", - "symbol": "cet" - }, - { - "id": "coinfi", - "name": "CoinFi", - "symbol": "cofi" - }, - { - "id": "coinfirm-amlt", - "name": "AMLT Network", - "symbol": "amlt" - }, - { - "id": "coinforge", - "name": "CoinForge", - "symbol": "cnfrg" - }, - { - "id": "coingrab", - "name": "CoinGrab", - "symbol": "grab" - }, - { - "id": "coinhiba", - "name": "Coinhiba", - "symbol": "hiba" - }, - { - "id": "coinhound", - "name": "Coinhound", - "symbol": "cnd" - }, - { - "id": "coinhub", - "name": "COINHUB", - "symbol": "chb" - }, - { - "id": "coinloan", - "name": "CoinLoan", - "symbol": "clt" - }, - { - "id": "coinlocally", - "name": "Coinlocally", - "symbol": "clyc" - }, - { - "id": "coinmarketprime", - "name": "COINMARKETPRIME", - "symbol": "cmp" - }, - { - "id": "coinmart-finance", - "name": "Coinmart Finance", - "symbol": "cex" - }, - { - "id": "coinmatch-ai", - "name": "CoinMatch AI", - "symbol": "cmai" - }, - { - "id": "coinmerge-os", - "name": "CoinMerge OS", - "symbol": "cmos" - }, - { - "id": "coinmetro", - "name": "Coinmetro", - "symbol": "xcm" - }, - { - "id": "coinmix", - "name": "Coinmix", - "symbol": "cm" - }, - { - "id": "coinmooner", - "name": "CoinMooner", - "symbol": "mooner" - }, - { - "id": "coinnavigator", - "name": "CoinNavigator", - "symbol": "cng" - }, - { - "id": "coin-of-nature", - "name": "Coin of Nature", - "symbol": "con" - }, - { - "id": "coin-of-the-champions", - "name": "Coin of the champions", - "symbol": "coc" - }, - { - "id": "coin-on-base", - "name": "Coin on Base", - "symbol": "coin" - }, - { - "id": "coinpoker", - "name": "CoinPoker", - "symbol": "chp" - }, - { - "id": "coinracer", - "name": "Coinracer", - "symbol": "crace" - }, - { - "id": "coinracer-reloaded", - "name": "Coinracer Reloaded", - "symbol": "cracer" - }, - { - "id": "coinsale-token", - "name": "CoinSale Token", - "symbol": "coinsale" - }, - { - "id": "coinsbit-token", - "name": "Coinsbit Token", - "symbol": "cnb" - }, - { - "id": "coinscope", - "name": "Coinscope", - "symbol": "coinscope" - }, - { - "id": "coinw", - "name": "CoinW", - "symbol": "cwt" - }, - { - "id": "coinwealth", - "name": "CoinWealth", - "symbol": "cnw" - }, - { - "id": "coinweb", - "name": "Coinweb", - "symbol": "cweb" - }, - { - "id": "coinwind", - "name": "CoinWind", - "symbol": "cow" - }, - { - "id": "coinxpad", - "name": "CoinxPad", - "symbol": "cxpad" - }, - { - "id": "coinye-west", - "name": "Coinye West", - "symbol": "coinye" - }, - { - "id": "coinzix-token", - "name": "Coinzix Token", - "symbol": "zix" - }, - { - "id": "cola-token-2", - "name": "Cola Token", - "symbol": "cola" - }, - { - "id": "colb-usd-stablecolb", - "name": "USD Stable Colb", - "symbol": "scb" - }, - { - "id": "coldstack", - "name": "Coldstack", - "symbol": "cls" - }, - { - "id": "colizeum", - "name": "Colizeum", - "symbol": "zeum" - }, - { - "id": "collab-land", - "name": "Collab.Land", - "symbol": "collab" - }, - { - "id": "collateralized-debt-token", - "name": "Collateralized Debt Token", - "symbol": "cdt" - }, - { - "id": "collateral-network", - "name": "Collateral Network", - "symbol": "colt" - }, - { - "id": "colle-ai", - "name": "Colle AI", - "symbol": "col" - }, - { - "id": "collective-care", - "name": "Collective Care", - "symbol": "cct" - }, - { - "id": "collector-coin", - "name": "Collector Coin", - "symbol": "ags" - }, - { - "id": "colonizemars", - "name": "ColonizeMars", - "symbol": "gtm" - }, - { - "id": "colony", - "name": "Colony", - "symbol": "cly" - }, - { - "id": "colony-avalanche-index", - "name": "Colony Avalanche Index", - "symbol": "cai" - }, - { - "id": "colony-network-token", - "name": "Colony Network", - "symbol": "clny" - }, - { - "id": "colossuscoinxt", - "name": "ColossusXT", - "symbol": "colx" - }, - { - "id": "colr-coin", - "name": "colR Coin", - "symbol": "$colr" - }, - { - "id": "coma-online", - "name": "Coma Online", - "symbol": "coma" - }, - { - "id": "comb-finance", - "name": "Comb Finance", - "symbol": "comb" - }, - { - "id": "combustion", - "name": "Combustion", - "symbol": "fire" - }, - { - "id": "comdex", - "name": "COMDEX", - "symbol": "cmdx" - }, - { - "id": "comet-token", - "name": "Comet Token", - "symbol": "comet" - }, - { - "id": "common", - "name": "Common", - "symbol": "cmn" - }, - { - "id": "commune-ai", - "name": "Commune AI", - "symbol": "comai" - }, - { - "id": "community-business-token", - "name": "Community Business Token", - "symbol": "cbt" - }, - { - "id": "community-inu", - "name": "Community Inu", - "symbol": "cti" - }, - { - "id": "community-of-meme", - "name": "Community of Meme", - "symbol": "come" - }, - { - "id": "community-takeover", - "name": "Community Takeover", - "symbol": "ct" - }, - { - "id": "com-ordinals", - "name": ".com (Ordinals)", - "symbol": ".com" - }, - { - "id": "companionbot", - "name": "CompanionBot", - "symbol": "cbot" - }, - { - "id": "companion-pet-coin", - "name": "Companion Pet Coin", - "symbol": "cpc" - }, - { - "id": "compendium-fi", - "name": "Compendium", - "symbol": "cmfi" - }, - { - "id": "composite", - "name": "Composite", - "symbol": "cmst" - }, - { - "id": "compound-0x", - "name": "c0x", - "symbol": "czrx" - }, - { - "id": "compound-basic-attention-token", - "name": "cBAT", - "symbol": "cbat" - }, - { - "id": "compound-chainlink-token", - "name": "cLINK", - "symbol": "clink" - }, - { - "id": "compounded-marinated-umami", - "name": "Compounded Marinated UMAMI", - "symbol": "cmumami" - }, - { - "id": "compound-ether", - "name": "cETH", - "symbol": "ceth" - }, - { - "id": "compound-governance-token", - "name": "Compound", - "symbol": "comp" - }, - { - "id": "compound-maker", - "name": "cMKR", - "symbol": "cmkr" - }, - { - "id": "compound-meta", - "name": "Compound Meta", - "symbol": "coma" - }, - { - "id": "compound-sushi", - "name": "cSUSHI", - "symbol": "csushi" - }, - { - "id": "compound-uniswap", - "name": "cUNI", - "symbol": "cuni" - }, - { - "id": "compound-usd-coin", - "name": "cUSDC", - "symbol": "cusdc" - }, - { - "id": "compound-wrapped-btc", - "name": "cWBTC", - "symbol": "cwbtc" - }, - { - "id": "compound-yearn-finance", - "name": "cYFI", - "symbol": "cyfi" - }, - { - "id": "computingai", - "name": "ComputingAi", - "symbol": "cpu" - }, - { - "id": "comp-yvault", - "name": "COMP yVault", - "symbol": "yvcomp" - }, - { - "id": "comsats", - "name": "Comsats", - "symbol": "csas" - }, - { - "id": "comtech-gold", - "name": "Comtech Gold", - "symbol": "cgo" - }, - { - "id": "conan", - "name": "CONAN", - "symbol": "conan" - }, - { - "id": "conan-2", - "name": "Conan", - "symbol": "conan" - }, - { - "id": "concave", - "name": "Concave", - "symbol": "cnv" - }, - { - "id": "conceal", - "name": "Conceal", - "symbol": "ccx" - }, - { - "id": "concentrated-voting-power", - "name": "PowerPool Concentrated Voting Power", - "symbol": "cvp" - }, - { - "id": "concentrator", - "name": "Concentrator", - "symbol": "ctr" - }, - { - "id": "concertvr", - "name": "concertVR", - "symbol": "cvt" - }, - { - "id": "concierge-io", - "name": "AVA", - "symbol": "ava" - }, - { - "id": "concordium", - "name": "Concordium", - "symbol": "ccd" - }, - { - "id": "conflux-token", - "name": "Conflux", - "symbol": "cfx" - }, - { - "id": "conic-finance", - "name": "Conic", - "symbol": "cnc" - }, - { - "id": "coniun", - "name": "Coniun", - "symbol": "coni" - }, - { - "id": "connect-financial", - "name": "Connect Financial", - "symbol": "cnfi" - }, - { - "id": "connectome", - "name": "Connectome", - "symbol": "cntm" - }, - { - "id": "connex", - "name": "Connex", - "symbol": "conx" - }, - { - "id": "connext", - "name": "Connext", - "symbol": "next" - }, - { - "id": "consciousdao", - "name": "ConsciousDao", - "symbol": "cvn" - }, - { - "id": "constellation-labs", - "name": "Constellation", - "symbol": "dag" - }, - { - "id": "constitutiondao", - "name": "ConstitutionDAO", - "symbol": "people" - }, - { - "id": "constitutiondao-wormhole", - "name": "ConstitutionDAO (Wormhole)", - "symbol": "people" - }, - { - "id": "contentbox", - "name": "ContentBox", - "symbol": "box" - }, - { - "id": "contentos", - "name": "Contentos", - "symbol": "cos" - }, - { - "id": "continuum-finance", - "name": "Continuum Finance", - "symbol": "ctn" - }, - { - "id": "continuum-world", - "name": "Continuum World", - "symbol": "um" - }, - { - "id": "contracoin", - "name": "Contracoin", - "symbol": "ctcn" - }, - { - "id": "contract-address-meme", - "name": "contract address (Meme)", - "symbol": "ca" - }, - { - "id": "contract-dev-ai", - "name": "DEVAI", - "symbol": "0xdev" - }, - { - "id": "contractus", - "name": "Contractus", - "symbol": "ctus" - }, - { - "id": "conun", - "name": "CONUN", - "symbol": "con" - }, - { - "id": "converge-bot", - "name": "Converge Bot", - "symbol": "converge" - }, - { - "id": "convergence", - "name": "Convergence", - "symbol": "conv" - }, - { - "id": "convergence-finance", - "name": "Convergence Finance", - "symbol": "cvg" - }, - { - "id": "converter-finance", - "name": "Converter Finance", - "symbol": "con" - }, - { - "id": "convertible-jpy-token", - "name": "Convertible JPY Token", - "symbol": "cjpy" - }, - { - "id": "convex-crv", - "name": "Convex CRV", - "symbol": "cvxcrv" - }, - { - "id": "convex-finance", - "name": "Convex Finance", - "symbol": "cvx" - }, - { - "id": "convex-fpis", - "name": "Convex FPIS", - "symbol": "cvxfpis" - }, - { - "id": "convex-fxn", - "name": "Convex FXN", - "symbol": "cvxfxn" - }, - { - "id": "convex-fxs", - "name": "Convex FXS", - "symbol": "cvxfxs" - }, - { - "id": "convex-prisma", - "name": "Convex Prisma", - "symbol": "cvxprisma" - }, - { - "id": "cook", - "name": "Cook", - "symbol": "cook" - }, - { - "id": "cook-2", - "name": "$COOK", - "symbol": "cook" - }, - { - "id": "cook-3", - "name": "Cook", - "symbol": "cook" - }, - { - "id": "cookiebase", - "name": "CookieBase", - "symbol": "cookie" - }, - { - "id": "cookies-protocol", - "name": "Cookies Protocol", - "symbol": "cp" - }, - { - "id": "coop-coin", - "name": "Coop Coin", - "symbol": "coop" - }, - { - "id": "cooper", - "name": "Cooper", - "symbol": "cooper" - }, - { - "id": "cope", - "name": "Cope", - "symbol": "cope" - }, - { - "id": "cope-based", - "name": "Cope", - "symbol": "cope" - }, - { - "id": "cope-coin", - "name": "Cope Coin", - "symbol": "cope" - }, - { - "id": "cope-token", - "name": "Cope Token", - "symbol": "cope" - }, - { - "id": "copiosa", - "name": "Copiosa", - "symbol": "cop" - }, - { - "id": "copycat-dao", - "name": "Copycat DAO", - "symbol": "ccd" - }, - { - "id": "copycat-finance", - "name": "Copycat Finance", - "symbol": "copycat" - }, - { - "id": "coq-inu", - "name": "Coq Inu", - "symbol": "coq" - }, - { - "id": "coral-swap", - "name": "Coral Swap", - "symbol": "coral" - }, - { - "id": "core", - "name": "CORE MultiChain", - "symbol": "cmcx" - }, - { - "id": "coreai", - "name": "CoreAI", - "symbol": "core" - }, - { - "id": "core-blockchain", - "name": "Core Blockchain", - "symbol": "xcb" - }, - { - "id": "coredao", - "name": "coreDAO", - "symbol": "coredao" - }, - { - "id": "coredaoorg", - "name": "Core", - "symbol": "core" - }, - { - "id": "coredaoswap", - "name": "CoreDaoSwap", - "symbol": "cdao" - }, - { - "id": "core-id", - "name": "CORE ID", - "symbol": "cid" - }, - { - "id": "core-markets", - "name": "Core Markets", - "symbol": "core" - }, - { - "id": "core-ordinals", - "name": "CORE (Ordinals)", - "symbol": "core" - }, - { - "id": "corestarter", - "name": "CoreStarter", - "symbol": "cstr" - }, - { - "id": "coreto", - "name": "Coreto", - "symbol": "cor" - }, - { - "id": "core-token-2", - "name": "Core Token", - "symbol": "ctn" - }, - { - "id": "coreum", - "name": "Coreum", - "symbol": "coreum" - }, - { - "id": "corgi", - "name": "Corgi", - "symbol": "corgi" - }, - { - "id": "corgiai", - "name": "CorgiAI", - "symbol": "corgiai" - }, - { - "id": "corgi-ceo", - "name": "CORGI CEO", - "symbol": "corgiceo" - }, - { - "id": "corgicoin", - "name": "CorgiCoin", - "symbol": "corgi" - }, - { - "id": "corgidoge", - "name": "Corgidoge", - "symbol": "corgi" - }, - { - "id": "corionx", - "name": "CorionX", - "symbol": "corx" - }, - { - "id": "corite", - "name": "Corite", - "symbol": "co" - }, - { - "id": "coritiba-f-c-fan-token", - "name": "Coritiba F.C. Fan Token", - "symbol": "crtb" - }, - { - "id": "corn", - "name": "CORN", - "symbol": "corn" - }, - { - "id": "cornatto", - "name": "Cornatto", - "symbol": "cnc" - }, - { - "id": "corn-dog", - "name": "CORN DOG", - "symbol": "cdog" - }, - { - "id": "cornermarket", - "name": "CornerMarket", - "symbol": "cmt" - }, - { - "id": "cornucopias", - "name": "Cornucopias", - "symbol": "copi" - }, - { - "id": "corridor-finance", - "name": "Corridor Finance", - "symbol": "oooi" - }, - { - "id": "cortex", - "name": "Cortex", - "symbol": "ctxc" - }, - { - "id": "cortexloop", - "name": "CortexLoop", - "symbol": "crtx" - }, - { - "id": "cosanta", - "name": "Cosanta", - "symbol": "cosa" - }, - { - "id": "coshi-inu", - "name": "CoShi Inu", - "symbol": "coshi" - }, - { - "id": "cosmic", - "name": "Cosmic", - "symbol": "cosmic" - }, - { - "id": "cosmic-chain", - "name": "Cosmic Chain", - "symbol": "cosmic" - }, - { - "id": "cosmic-champs", - "name": "Cosmic Champs", - "symbol": "cosg" - }, - { - "id": "cosmic-fomo", - "name": "Cosmic FOMO", - "symbol": "cosmic" - }, - { - "id": "cosmic-force-token-v2", - "name": "Cosmic Force Token v2", - "symbol": "cfx" - }, - { - "id": "cosmicswap", - "name": "CosmicSwap", - "symbol": "cosmic" - }, - { - "id": "cosmic-universe-magic-token", - "name": "Cosmic Universe Magick", - "symbol": "magick" - }, - { - "id": "cosmo-baby", - "name": "Cosmo Baby", - "symbol": "cbaby" - }, - { - "id": "cosmos", - "name": "Cosmos Hub", - "symbol": "atom" - }, - { - "id": "cosplay-token-2", - "name": "Cosplay Token", - "symbol": "cot" - }, - { - "id": "coss-2", - "name": "Coss", - "symbol": "coss" - }, - { - "id": "coti", - "name": "COTI", - "symbol": "coti" - }, - { - "id": "coti-governance-token", - "name": "COTI Governance Token", - "symbol": "gcoti" - }, - { - "id": "cotrader", - "name": "CoTrader", - "symbol": "cot" - }, - { - "id": "cougar-token", - "name": "CougarSwap", - "symbol": "cgs" - }, - { - "id": "coughing-cat", - "name": "Coughing Cat", - "symbol": "cct" - }, - { - "id": "could-be-the-move", - "name": "Could Be The Move", - "symbol": "cbtm" - }, - { - "id": "counosx", - "name": "CounosX", - "symbol": "ccxx" - }, - { - "id": "counterparty", - "name": "Counterparty", - "symbol": "xcp" - }, - { - "id": "couponbay", - "name": "CouponBay", - "symbol": "cup" - }, - { - "id": "covalent", - "name": "Covalent", - "symbol": "cqt" - }, - { - "id": "covenant-child", - "name": "Covenant", - "symbol": "covn" - }, - { - "id": "cover-protocol", - "name": "Cover Protocol", - "symbol": "cover" - }, - { - "id": "covesting", - "name": "Covesting", - "symbol": "cov" - }, - { - "id": "cow-protocol", - "name": "CoW Protocol", - "symbol": "cow" - }, - { - "id": "cowrie", - "name": "Cowrie", - "symbol": "cowrie" - }, - { - "id": "cpchain", - "name": "CPChain", - "symbol": "cpc" - }, - { - "id": "cpiggy-bank-token", - "name": "cPIGGY Bank Token", - "symbol": "cpiggy" - }, - { - "id": "cpucoin", - "name": "CPUcoin", - "symbol": "cpu" - }, - { - "id": "crabada", - "name": "Crabada", - "symbol": "cra" - }, - { - "id": "crab-market", - "name": "Crab Market", - "symbol": "crab" - }, - { - "id": "crab-rave-token", - "name": "Crab Rave Token", - "symbol": "crabs" - }, - { - "id": "cracle", - "name": "Cracle", - "symbol": "cra" - }, - { - "id": "cradle-of-sins", - "name": "Cradle of Sins", - "symbol": "cos" - }, - { - "id": "crafting-finance", - "name": "Crafting Finance", - "symbol": "crf" - }, - { - "id": "craft-network", - "name": "Craft network", - "symbol": "cft" - }, - { - "id": "cramer-coin", - "name": "Cramer Coin", - "symbol": "$cramer" - }, - { - "id": "crate", - "name": "$CRATE", - "symbol": "crate" - }, - { - "id": "cratos", - "name": "Cratos", - "symbol": "crts" - }, - { - "id": "crazybunny", - "name": "CrazyBunny", - "symbol": "crazybunny" - }, - { - "id": "crazy-bunny", - "name": "Crazy Bunny", - "symbol": "crazybunny" - }, - { - "id": "crazy-bunny-equity-token", - "name": "Crazy Bunny Equity", - "symbol": "cbunny" - }, - { - "id": "crazy-frog", - "name": "Crazy Frog Coin", - "symbol": "crazy" - }, - { - "id": "crazy-frog-on-base", - "name": "CRAZY FROG", - "symbol": "frog" - }, - { - "id": "crazypepe-2", - "name": "CrazyPepe", - "symbol": "crazypepe" - }, - { - "id": "crazyrabbit", - "name": "CrazyRabbit", - "symbol": "crc" - }, - { - "id": "crazy-tiger", - "name": "Crazy Tiger", - "symbol": "crazytiger" - }, - { - "id": "crds", - "name": "Cradles", - "symbol": "crds" - }, - { - "id": "cream", - "name": "Creamcoin", - "symbol": "crm" - }, - { - "id": "cream-2", - "name": "Cream", - "symbol": "cream" - }, - { - "id": "creamlands", - "name": "Creamlands", - "symbol": "cream" - }, - { - "id": "creamy", - "name": "Creamy", - "symbol": "creamy" - }, - { - "id": "creaticles", - "name": "Creaticles", - "symbol": "cre8" - }, - { - "id": "creatopy-builder", - "name": "Creatopy Builder", - "symbol": "creatopy" - }, - { - "id": "creat-or", - "name": "CREAT'OR", - "symbol": "cret" - }, - { - "id": "creator-platform", - "name": "Creator Platform", - "symbol": "ctr" - }, - { - "id": "creda", - "name": "CreDA", - "symbol": "creda" - }, - { - "id": "credefi", - "name": "Credefi", - "symbol": "credi" - }, - { - "id": "credit-2", - "name": "PROXI DeFi", - "symbol": "credit" - }, - { - "id": "creditcoin-2", - "name": "Creditcoin", - "symbol": "ctc" - }, - { - "id": "credits", - "name": "CREDITS", - "symbol": "cs" - }, - { - "id": "cremate", - "name": "Cremate", - "symbol": "crmt" - }, - { - "id": "cremation-coin", - "name": "Cremation Coin", - "symbol": "cremat" - }, - { - "id": "creo-engine", - "name": "Creo Engine", - "symbol": "creo" - }, - { - "id": "crescent-network", - "name": "Crescent Network", - "symbol": "cre" - }, - { - "id": "crescentswap-moonlight", - "name": "Crescentswap Moonlight", - "symbol": "mnlt" - }, - { - "id": "crescite", - "name": "Crescite", - "symbol": "crescite" - }, - { - "id": "cresio", - "name": "Cresio", - "symbol": "xcre" - }, - { - "id": "creso", - "name": "Creso [OLD]", - "symbol": "cre" - }, - { - "id": "creso-2", - "name": "Creso", - "symbol": "cre" - }, - { - "id": "creta-world", - "name": "Creta World", - "symbol": "creta" - }, - { - "id": "cri3x", - "name": "Cri3x", - "symbol": "cri3x" - }, - { - "id": "cricket-foundation", - "name": "Cricket Foundation", - "symbol": "cric" - }, - { - "id": "cricket-star-manager", - "name": "Cricket Star Manager", - "symbol": "csm" - }, - { - "id": "crimson", - "name": "Crimson", - "symbol": "crm" - }, - { - "id": "crimson-network", - "name": "Crimson Network", - "symbol": "crimson" - }, - { - "id": "criptoville-coins-2", - "name": "CriptoVille Coins 2", - "symbol": "cvlc2" - }, - { - "id": "crisp-scored-mangroves", - "name": "CRISP Scored Mangroves", - "symbol": "crisp-m" - }, - { - "id": "croatian-ff-fan-token", - "name": "Croatian FF Fan Token", - "symbol": "vatreni" - }, - { - "id": "crob-mob", - "name": "Crob Mob", - "symbol": "crob" - }, - { - "id": "crocbot", - "name": "CrocBot", - "symbol": "croc" - }, - { - "id": "croc-cat", - "name": "Croc CAT", - "symbol": "croc" - }, - { - "id": "crocdog", - "name": "Crocdog", - "symbol": "crocdog" - }, - { - "id": "crochet-world", - "name": "Crochet World", - "symbol": "crochet" - }, - { - "id": "croco", - "name": "Croco", - "symbol": "$croco" - }, - { - "id": "crodex", - "name": "Crodex", - "symbol": "crx" - }, - { - "id": "crodie", - "name": "Crodie", - "symbol": "crodie" - }, - { - "id": "crogecoin", - "name": "Crogecoin", - "symbol": "croge" - }, - { - "id": "croissant-games", - "name": "Croissant Games", - "symbol": "croissant" - }, - { - "id": "croking", - "name": "Croking", - "symbol": "crk" - }, - { - "id": "crolon-mars", - "name": "Crolon Mars", - "symbol": "clmrs" - }, - { - "id": "cronaswap", - "name": "CronaSwap", - "symbol": "crona" - }, - { - "id": "cronk", - "name": "CRONK", - "symbol": "cronk" - }, - { - "id": "cronos-bridged-usdc-cronos", - "name": "Cronos Bridged USDC (Cronos)", - "symbol": "usdc" - }, - { - "id": "cronos-bridged-usdt-cronos", - "name": "Cronos Bridged USDT (Cronos)", - "symbol": "usdt" - }, - { - "id": "cronos-id", - "name": "Cronos ID", - "symbol": "croid" - }, - { - "id": "cronosverse", - "name": "CronosVerse", - "symbol": "vrse" - }, - { - "id": "cronus", - "name": "CRONUS", - "symbol": "cronus" - }, - { - "id": "cropbytes", - "name": "CropBytes", - "symbol": "cbx" - }, - { - "id": "cropperfinance", - "name": "CropperFinance", - "symbol": "crp" - }, - { - "id": "cropto-barley-token", - "name": "Cropto Barley Token", - "symbol": "crob" - }, - { - "id": "cropto-corn-token", - "name": "Cropto Corn Token", - "symbol": "croc" - }, - { - "id": "cropto-hazelnut-token", - "name": "Cropto Hazelnut Token", - "symbol": "crof" - }, - { - "id": "cropto-wheat-token", - "name": "Cropto Wheat Token", - "symbol": "crow" - }, - { - "id": "cross-chain-bridge", - "name": "Cross-Chain Bridge", - "symbol": "bridge" - }, - { - "id": "cross-chain-degen-dao", - "name": "Cross Chain Degen DAO", - "symbol": "degen" - }, - { - "id": "crosschain-iotx", - "name": "Crosschain IOTX", - "symbol": "ciotx" - }, - { - "id": "crossdex", - "name": "CrossDEX", - "symbol": "cdx" - }, - { - "id": "crossfi", - "name": "CrossFi", - "symbol": "crfi" - }, - { - "id": "crossfi-2", - "name": "CrossFi", - "symbol": "xfi" - }, - { - "id": "crossswap", - "name": "CrossSwap", - "symbol": "cswap" - }, - { - "id": "crosswallet", - "name": "CrossWallet", - "symbol": "cwt" - }, - { - "id": "crowdswap", - "name": "CrowdSwap", - "symbol": "crowd" - }, - { - "id": "crown", - "name": "Crown", - "symbol": "crw" - }, - { - "id": "crown-by-third-time-games", - "name": "Crown by Third Time Games", - "symbol": "crown" - }, - { - "id": "crowns", - "name": "Seascape Crowns", - "symbol": "cws" - }, - { - "id": "crown-sovereign", - "name": "Crown Sovereign", - "symbol": "csov" - }, - { - "id": "crown-token-77469f91-69f6-44dd-b356-152e2c39c0cc", - "name": "Crown Token", - "symbol": "crown" - }, - { - "id": "crowny-token", - "name": "Crowny", - "symbol": "crwny" - }, - { - "id": "crow-with-knife", - "name": "crow with knife", - "symbol": "caw" - }, - { - "id": "crunchcat", - "name": "Crunchcat", - "symbol": "crunch" - }, - { - "id": "crunchy-dao", - "name": "Crunchy DAO", - "symbol": "crdao" - }, - { - "id": "crunchy-network", - "name": "Crunchy Network", - "symbol": "crnchy" - }, - { - "id": "crusaders-of-crypto", - "name": "Crusaders of Crypto", - "symbol": "crusader" - }, - { - "id": "crust-exchange", - "name": "Crust Exchange", - "symbol": "crust" - }, - { - "id": "crust-network", - "name": "Crust Network", - "symbol": "cru" - }, - { - "id": "crust-storage-market", - "name": "Crust Shadow", - "symbol": "csm" - }, - { - "id": "crvusd", - "name": "crvUSD", - "symbol": "crvusd" - }, - { - "id": "cryn", - "name": "CRYN", - "symbol": "cryn" - }, - { - "id": "cryodao", - "name": "CryoDAO", - "symbol": "cryo" - }, - { - "id": "cryowar-token", - "name": "Cryowar", - "symbol": "cwar" - }, - { - "id": "cryptaur", - "name": "Cryptaur", - "symbol": "cpt" - }, - { - "id": "cryptegrity-dao", - "name": "Cryptegrity Dao", - "symbol": "escrow" - }, - { - "id": "crypterium", - "name": "Crypterium", - "symbol": "crpt" - }, - { - "id": "cryptex-finance", - "name": "Cryptex Finance", - "symbol": "ctx" - }, - { - "id": "cryptiq-web3", - "name": "Cryptiq WEB3", - "symbol": "cryptiq" - }, - { - "id": "cryptoai", - "name": "CryptoAI", - "symbol": "cai" - }, - { - "id": "crypto-ai", - "name": "Crypto AI", - "symbol": "cai" - }, - { - "id": "cryptoai-2", - "name": "CryptoAI", - "symbol": "cryptoai" - }, - { - "id": "crypto-ai-robo", - "name": "Crypto-AI-Robo", - "symbol": "cair" - }, - { - "id": "cryptoart-ai", - "name": "CryptoArt.Ai", - "symbol": "cart" - }, - { - "id": "crypto-asset-governance-alliance", - "name": "Crypto Asset Governance Alliance", - "symbol": "caga" - }, - { - "id": "cryptobank", - "name": "CryptoBank", - "symbol": "cbex" - }, - { - "id": "crypto-bet", - "name": "CosaBet", - "symbol": "$cbet" - }, - { - "id": "crypto-birds", - "name": "Crypto Birds", - "symbol": "xcb" - }, - { - "id": "cryptoblades", - "name": "CryptoBlades", - "symbol": "skill" - }, - { - "id": "cryptoblades-kingdoms", - "name": "CryptoBlades Kingdoms", - "symbol": "king" - }, - { - "id": "crypto-bros", - "name": "Crypto Bros", - "symbol": "bros" - }, - { - "id": "crypto-carbon-energy-2", - "name": "Crypto Carbon Energy", - "symbol": "cyce" - }, - { - "id": "cryptocarsreborn", - "name": "CryptoCarsReborn", - "symbol": "ccr" - }, - { - "id": "cryptocart", - "name": "CryptoCart V2", - "symbol": "ccv2" - }, - { - "id": "crypto-chests", - "name": "Crypto Chests", - "symbol": "cht" - }, - { - "id": "crypto-chicks", - "name": "CRYPTO CHICKS", - "symbol": "chicks" - }, - { - "id": "cryptoclicker-game-token", - "name": "CryptoClicker Game Token", - "symbol": "clicker" - }, - { - "id": "cryptoclicker-supper-token", - "name": "CryptoClicker SUPPER Token", - "symbol": "supper" - }, - { - "id": "crypto-clouds", - "name": "CRYPTO CLOUDS", - "symbol": "cloud" - }, - { - "id": "crypto-clubs-app", - "name": "Crypto Clubs App", - "symbol": "cc" - }, - { - "id": "cryptocoinhash", - "name": "CryptoCoinHash", - "symbol": "cch" - }, - { - "id": "crypto-com-chain", - "name": "Cronos", - "symbol": "cro" - }, - { - "id": "crypto-com-staked-eth", - "name": "Crypto.com Staked ETH", - "symbol": "cdceth" - }, - { - "id": "cryptodeliverycoin", - "name": "CryptoDeliveryCoin", - "symbol": "dcoin" - }, - { - "id": "crypto-development-services", - "name": "Crypto Development Services", - "symbol": "cds" - }, - { - "id": "crypto-emergency", - "name": "Crypto Emergency", - "symbol": "cem" - }, - { - "id": "cryptoexpress", - "name": "CryptoXpress", - "symbol": "xpress" - }, - { - "id": "cryptoflow", - "name": "Cryptoflow", - "symbol": "cfl" - }, - { - "id": "cryptoforce", - "name": "Cryptoforce", - "symbol": "cof" - }, - { - "id": "cryptofranc", - "name": "CryptoFranc", - "symbol": "xchf" - }, - { - "id": "cryptogcoin", - "name": "Cryptogcoin", - "symbol": "crg" - }, - { - "id": "crypto-gladiator-shards", - "name": "Crypto Gladiator League", - "symbol": "cgl" - }, - { - "id": "crypto-global-united", - "name": "Crypto Global United", - "symbol": "cgu" - }, - { - "id": "cryptogpt", - "name": "CryptoGPT", - "symbol": "crgpt" - }, - { - "id": "cryptogpt-token", - "name": "LayerAI", - "symbol": "lai" - }, - { - "id": "crypto-holding-frank-token", - "name": "Crypto Holding Frank", - "symbol": "chft" - }, - { - "id": "crypto-hub", - "name": "Crypto Hub", - "symbol": "hub" - }, - { - "id": "crypto-hunters-coin", - "name": "Crypto Hunters Coin", - "symbol": "crh" - }, - { - "id": "crypto-index-pool", - "name": "Crypto Index Pool", - "symbol": "cip" - }, - { - "id": "crypto-island", - "name": "Crypto Island", - "symbol": "cisla" - }, - { - "id": "crypto-kart-racing", - "name": "Crypto Kart Racing", - "symbol": "ckracing" - }, - { - "id": "cryptokki", - "name": "CRYPTOKKI", - "symbol": "tokki" - }, - { - "id": "cryptoku", - "name": "Cryptoku", - "symbol": "cku" - }, - { - "id": "cryptomeda", - "name": "Cryptomeda", - "symbol": "tech" - }, - { - "id": "cryptomines-eternal", - "name": "CryptoMines Eternal", - "symbol": "eternal" - }, - { - "id": "cryptomines-reborn", - "name": "CryptoMines Reborn", - "symbol": "crux" - }, - { - "id": "crypton-ai", - "name": "Crypton Ai", - "symbol": "$crypton" - }, - { - "id": "cryptoneur-network-foundation", - "name": "CryptoNeur Network foundation", - "symbol": "cnf" - }, - { - "id": "crypto-news-flash-ai", - "name": "Crypto News Flash AI", - "symbol": "cnf" - }, - { - "id": "cryptonovae", - "name": "Cryptonovae", - "symbol": "yae" - }, - { - "id": "cryptopawcoin", - "name": "CryptoPawCoin", - "symbol": "cprc" - }, - { - "id": "cryptopay", - "name": "Cryptopay", - "symbol": "cpay" - }, - { - "id": "cryptoperformance-coin", - "name": "CryptoPerformance Coin", - "symbol": "cpc" - }, - { - "id": "crypto-perx", - "name": "Crypto Perx", - "symbol": "cprx" - }, - { - "id": "cryptopirates", - "name": "CryptoPirates", - "symbol": "ogmf" - }, - { - "id": "cryptopolis", - "name": "Cryptopolis", - "symbol": "cpo" - }, - { - "id": "crypto-puffs", - "name": "Crypto Puffs", - "symbol": "puffs" - }, - { - "id": "cryptopunk-7171-hoodie", - "name": "CryptoPunk #7171", - "symbol": "hoodie" - }, - { - "id": "cryptopunks-721", - "name": "\u03bcCryptoPunks 721", - "symbol": "\u03bc\u037c721" - }, - { - "id": "cryptopunks-fraction-toke", - "name": "CryptoPunks Fraction Token", - "symbol": "ipunks" - }, - { - "id": "crypto-raiders", - "name": "Crypto Raiders", - "symbol": "raider" - }, - { - "id": "crypto-real-estate", - "name": "Crypto Real Estate", - "symbol": "cre" - }, - { - "id": "cryptorg-token", - "name": "Cryptorg", - "symbol": "ctg" - }, - { - "id": "crypto-royale", - "name": "Crypto Royale", - "symbol": "roy" - }, - { - "id": "cryptosaga", - "name": "CryptoSaga", - "symbol": "saga" - }, - { - "id": "crypto-sdg", - "name": "Crypto SDG", - "symbol": "sdg" - }, - { - "id": "cryptoshares", - "name": "Cryptoshares", - "symbol": "shares" - }, - { - "id": "crypto-street-v2", - "name": "CRYPTO STREET V2", - "symbol": "cstv2" - }, - { - "id": "cryptotanks", - "name": "CryptoTanks", - "symbol": "tank" - }, - { - "id": "cryptotask-2", - "name": "CryptoTask", - "symbol": "ctask" - }, - { - "id": "cryptotem", - "name": "Cryptotem", - "symbol": "totem" - }, - { - "id": "crypto-tex", - "name": "CRYPTO TEX", - "symbol": "ctex" - }, - { - "id": "cryptotwitter", - "name": "CryptoTwitter", - "symbol": "ct" - }, - { - "id": "cryptotycoon", - "name": "CryptoTycoon", - "symbol": "ctt" - }, - { - "id": "cryptounity", - "name": "CryptoUnity", - "symbol": "cut" - }, - { - "id": "crypto-valleys-yield-token", - "name": "Crypto Valleys YIELD Token", - "symbol": "yield" - }, - { - "id": "crypto-village-accelerator-cvag", - "name": "Crypto Village Accelerator CVAG", - "symbol": "cvag" - }, - { - "id": "crypto-x", - "name": "Crypto X", - "symbol": "cx" - }, - { - "id": "cryptozoo", - "name": "CryptoZoo", - "symbol": "zoo" - }, - { - "id": "cryptozoon", - "name": "CryptoZoon", - "symbol": "zoon" - }, - { - "id": "cryptyk", - "name": "Cryptyk", - "symbol": "ctk" - }, - { - "id": "crystal-diamond", - "name": "Crystal Diamond", - "symbol": "cld" - }, - { - "id": "crystal-erc404", - "name": "Crystal", - "symbol": "crystal" - }, - { - "id": "crystal-palace-fan-token", - "name": "Crystal Palace FC Fan Token", - "symbol": "cpfc" - }, - { - "id": "crystl-finance", - "name": "Crystl Finance", - "symbol": "crystl" - }, - { - "id": "csp-dao-network", - "name": "CSP DAO Network", - "symbol": "nebo" - }, - { - "id": "csr", - "name": "CSR", - "symbol": "csr" - }, - { - "id": "cswap", - "name": "CSWAP", - "symbol": "cswap" - }, - { - "id": "ctez", - "name": "Ctez", - "symbol": "ctez" - }, - { - "id": "cthulhu-finance", - "name": "Cthulhu Finance", - "symbol": "cth" - }, - { - "id": "ctomorrow-platform", - "name": "Ctomorrow Platform", - "symbol": "ctp" - }, - { - "id": "ctrl", - "name": "Ctrl", - "symbol": "ctrl" - }, - { - "id": "cubechain", - "name": "Cubechain", - "symbol": "qub" - }, - { - "id": "cuberium", - "name": "Cuberium", - "symbol": "iland" - }, - { - "id": "cub-finance", - "name": "Cub Finance", - "symbol": "cub" - }, - { - "id": "cubiex-power", - "name": "Cubiex Power", - "symbol": "cbix-p" - }, - { - "id": "cubiswap", - "name": "CUBISWAP", - "symbol": "cubi" - }, - { - "id": "cubtoken", - "name": "CubToken", - "symbol": "cubt" - }, - { - "id": "cuckadoodledoo", - "name": "Cuckadoodledoo", - "symbol": "cuck" - }, - { - "id": "cudos", - "name": "Cudos", - "symbol": "cudos" - }, - { - "id": "culo", - "name": "CULO", - "symbol": "culo" - }, - { - "id": "cult-dao", - "name": "Cult DAO", - "symbol": "cult" - }, - { - "id": "cuminu", - "name": "Cuminu", - "symbol": "cuminu" - }, - { - "id": "cumrocket", - "name": "CumRocket", - "symbol": "cummies" - }, - { - "id": "cumulus-encrypted-storage-system", - "name": "Cumulus Encrypted Storage System", - "symbol": "cess" - }, - { - "id": "curate", - "name": "Curate", - "symbol": "xcur" - }, - { - "id": "curecoin", - "name": "Curecoin", - "symbol": "cure" - }, - { - "id": "cure-token-v2", - "name": "CURE V2", - "symbol": "cure" - }, - { - "id": "curio-governance", - "name": "Curio Governance Token", - "symbol": "cgt" - }, - { - "id": "curiosityanon", - "name": "CuriosityAnon", - "symbol": "ca" - }, - { - "id": "curvance", - "name": "Curvance", - "symbol": "cve" - }, - { - "id": "curve-dao-token", - "name": "Curve DAO", - "symbol": "crv" - }, - { - "id": "curve-fi-amdai-amusdc-amusdt", - "name": "Curve.fi amDAI/amUSDC/amUSDT", - "symbol": "am3crv" - }, - { - "id": "curve-fi-frax-usdc", - "name": "Curve.fi FRAX/USDC", - "symbol": "crvfrax" - }, - { - "id": "curve-fi-renbtc-wbtc-sbtc", - "name": "Curve.fi renBTC/wBTC/sBTC", - "symbol": "crvrenwsbtc" - }, - { - "id": "curve-fi-usdc-usdt", - "name": "Curve.fi USDC/USDT", - "symbol": "2crv" - }, - { - "id": "curve-fi-usd-stablecoin-stargate", - "name": "Bridged Curve.Fi USD Stablecoin (Stargate)", - "symbol": "crvusd" - }, - { - "id": "curve-inu", - "name": "Curve Inu", - "symbol": "crvy" - }, - { - "id": "curveswap", - "name": "Curveswap", - "symbol": "cvs" - }, - { - "id": "custodiy", - "name": "CUSTODIY", - "symbol": "cty" - }, - { - "id": "cute-cat-token", - "name": "Cute Cat Candle", - "symbol": "ccc" - }, - { - "id": "cvault-finance", - "name": "cVault.finance", - "symbol": "core" - }, - { - "id": "cvip", - "name": "CVIP", - "symbol": "cvip" - }, - { - "id": "cvnx", - "name": "CVNX", - "symbol": "cvnx" - }, - { - "id": "cvshots", - "name": "CVSHOTS", - "symbol": "cvshot" - }, - { - "id": "cyb3rgam3r420", - "name": "cyb3rgam3r420", - "symbol": "gamer" - }, - { - "id": "cyber-arena", - "name": "Cyber Arena", - "symbol": "cat" - }, - { - "id": "cyberblast-token", - "name": "Cyberblast Token", - "symbol": "cbr" - }, - { - "id": "cyberconnect", - "name": "CyberConnect", - "symbol": "cyber" - }, - { - "id": "cyber-dao", - "name": "Cyber-DAO", - "symbol": "c-dao" - }, - { - "id": "cyber-doge-2", - "name": "Cyber Doge", - "symbol": "cdoge" - }, - { - "id": "cyberdoge-2", - "name": "Cyberdoge", - "symbol": "cydoge" - }, - { - "id": "cyberdragon-gold", - "name": "CyberDragon Gold", - "symbol": "gold" - }, - { - "id": "cyberfi", - "name": "CyberFi", - "symbol": "cfi" - }, - { - "id": "cyberfm", - "name": "CyberFM", - "symbol": "cyfm" - }, - { - "id": "cyberharbor", - "name": "CyberHarbor", - "symbol": "cht" - }, - { - "id": "cyberpixels", - "name": "CyberPixels", - "symbol": "cypx" - }, - { - "id": "cyberpunk-city", - "name": "Cyberpunk City", - "symbol": "cyber" - }, - { - "id": "cyber-tesla-ai", - "name": "Cyber Tesla AI", - "symbol": "cta" - }, - { - "id": "cybertruck", - "name": "Cybertruck", - "symbol": "truck" - }, - { - "id": "cybertruck-2", - "name": "CYBERTRUCK", - "symbol": "cybertruck" - }, - { - "id": "cybervein", - "name": "CyberVein", - "symbol": "cvt" - }, - { - "id": "cyberyen", - "name": "Cyberyen", - "symbol": "cy" - }, - { - "id": "cybonk", - "name": "CYBONK", - "symbol": "cybonk" - }, - { - "id": "cy-bord-cbrc-20", - "name": "Cy[bord] (CBRC-20)", - "symbol": "bord" - }, - { - "id": "cyborg-apes", - "name": "Cyborg Apes", - "symbol": "borg" - }, - { - "id": "cybria", - "name": "Cybria", - "symbol": "cyba" - }, - { - "id": "cybro", - "name": "CYBRO", - "symbol": "cybro" - }, - { - "id": "cyclone-protocol", - "name": "Cyclone Protocol", - "symbol": "cyc" - }, - { - "id": "cyclos", - "name": "Cykura", - "symbol": "cys" - }, - { - "id": "cygnusdao", - "name": "CygnusDAO", - "symbol": "cyg" - }, - { - "id": "cygnus-finance-global-usd", - "name": "Cygnus Finance Global USD", - "symbol": "cgusd" - }, - { - "id": "cyop-2", - "name": "CyOp", - "symbol": "cyop" - }, - { - "id": "cypher-ai", - "name": "Cypher AI", - "symbol": "cypher" - }, - { - "id": "cypherium", - "name": "Cypherium", - "symbol": "cph" - }, - { - "id": "cypress", - "name": "Cypress", - "symbol": "cp" - }, - { - "id": "czolana", - "name": "CZOLANA", - "symbol": "czol" - }, - { - "id": "czpow", - "name": "CZPOW", - "symbol": "czpw" - }, - { - "id": "d2", - "name": "D2", - "symbol": "d2x" - }, - { - "id": "d2-token", - "name": "D2 Finance", - "symbol": "d2" - }, - { - "id": "d3d-social", - "name": "D3D Social", - "symbol": "d3d" - }, - { - "id": "dacat", - "name": "daCat", - "symbol": "dacat" - }, - { - "id": "d-acc", - "name": "d/acc", - "symbol": "d/acc" - }, - { - "id": "dackieswap", - "name": "DackieSwap", - "symbol": "dackie" - }, - { - "id": "dacxi", - "name": "Dacxi", - "symbol": "dacxi" - }, - { - "id": "dada", - "name": "DADA", - "symbol": "dada" - }, - { - "id": "dada-2", - "name": "\u9f98\u9f98 D\u00e1D\u00e1", - "symbol": "dada" - }, - { - "id": "dada-3", - "name": "DADA", - "symbol": "dada" - }, - { - "id": "daddy-doge", - "name": "Daddy Doge", - "symbol": "daddydoge" - }, - { - "id": "daex", - "name": "DAEX", - "symbol": "dax" - }, - { - "id": "dafi-protocol", - "name": "Dafi Protocol", - "symbol": "dafi" - }, - { - "id": "dagcoin", - "name": "DAGCOIN", - "symbol": "dags" - }, - { - "id": "dagger", - "name": "Dagger", - "symbol": "xdag" - }, - { - "id": "dai", - "name": "Dai", - "symbol": "dai" - }, - { - "id": "daii", - "name": "DAII", - "symbol": "daii" - }, - { - "id": "daikicoin", - "name": "DAIKICOIN", - "symbol": "dic" - }, - { - "id": "daily-finance", - "name": "Daily Finance", - "symbol": "dly" - }, - { - "id": "dailyfish", - "name": "DailyFish", - "symbol": "dfish" - }, - { - "id": "dai-on-pulsechain", - "name": "DAI on PulseChain", - "symbol": "dai" - }, - { - "id": "dai-pulsechain", - "name": "DAI (PulseChain)", - "symbol": "dai" - }, - { - "id": "dai-reflections", - "name": "DAI Reflections", - "symbol": "drs" - }, - { - "id": "daisy", - "name": "Daisy Protocol", - "symbol": "daisy" - }, - { - "id": "dall-doginals", - "name": "Dall (DRC-20)", - "symbol": "dall" - }, - { - "id": "dalma-inu", - "name": "Dalma Inu", - "symbol": "dalma" - }, - { - "id": "damex-token", - "name": "Damex Token", - "symbol": "damex" - }, - { - "id": "dam-finance", - "name": "Deuterium", - "symbol": "d2o" - }, - { - "id": "damm", - "name": "dAMM", - "symbol": "damm" - }, - { - "id": "dancing-baby", - "name": "Dancing Baby", - "symbol": "baby" - }, - { - "id": "dancing-toothless", - "name": "Dancing Toothless", - "symbol": "toothless" - }, - { - "id": "dancing-triangle", - "name": "dancing triangle", - "symbol": "triangle" - }, - { - "id": "danjuan-scroll-cat", - "name": "Danjuan Scroll Cat", - "symbol": "cat" - }, - { - "id": "danketsu", - "name": "Danketsu", - "symbol": "ninjaz" - }, - { - "id": "dao-glas", - "name": "Dao Glas", - "symbol": "dgs" - }, - { - "id": "daohaus", - "name": "DAOhaus", - "symbol": "haus" - }, - { - "id": "dao-invest", - "name": "DAO Invest", - "symbol": "vest" - }, - { - "id": "daolaunch", - "name": "DAOLaunch", - "symbol": "dal" - }, - { - "id": "dao-maker", - "name": "DAO Maker", - "symbol": "dao" - }, - { - "id": "daomatian", - "name": "Daomatian", - "symbol": "dao" - }, - { - "id": "daosol", - "name": "daoSOL", - "symbol": "daosol" - }, - { - "id": "dao-space", - "name": "Dao Space", - "symbol": "daop" - }, - { - "id": "daosquare", - "name": "DAOSquare", - "symbol": "rice" - }, - { - "id": "daostack", - "name": "DAOstack", - "symbol": "gen" - }, - { - "id": "da-pinchi", - "name": "Da Pinchi", - "symbol": "$pinchi" - }, - { - "id": "dapp", - "name": "LiquidApps", - "symbol": "dapp" - }, - { - "id": "dappad", - "name": "Dappad", - "symbol": "appa" - }, - { - "id": "dapp-ai", - "name": "DApp AI", - "symbol": "dap" - }, - { - "id": "dappradar", - "name": "DappRadar", - "symbol": "radar" - }, - { - "id": "dappstore", - "name": "dAppstore", - "symbol": "dappx" - }, - { - "id": "dap-the-dapper-dog", - "name": "Dap, the Dapper Dog!", - "symbol": "dap" - }, - { - "id": "darcmatter-coin", - "name": "Konstellation", - "symbol": "darc" - }, - { - "id": "darkcrypto", - "name": "DarkCrypto", - "symbol": "dark" - }, - { - "id": "darkcrypto-share", - "name": "DarkCrypto Share", - "symbol": "sky" - }, - { - "id": "dark-energy-crystals", - "name": "Dark Energy Crystals", - "symbol": "dec" - }, - { - "id": "dark-forest", - "name": "Dark Forest", - "symbol": "dark" - }, - { - "id": "dark-frontiers", - "name": "Dark Frontiers", - "symbol": "dark" - }, - { - "id": "darkknight", - "name": "Dark Knight", - "symbol": "dknight" - }, - { - "id": "dark-magic", - "name": "Dark Magic", - "symbol": "dmagic" - }, - { - "id": "darkmatter", - "name": "DarkMatter", - "symbol": "dmt" - }, - { - "id": "dark-matter", - "name": "Dark Matter", - "symbol": "dmt" - }, - { - "id": "dark-matter-defi", - "name": "Dark Matter Defi", - "symbol": "dmd" - }, - { - "id": "dark-protocol", - "name": "Dark Protocol", - "symbol": "dark" - }, - { - "id": "dark-queen-duck", - "name": "Dark Queen Duck", - "symbol": "dqd" - }, - { - "id": "darkshield", - "name": "DarkShield", - "symbol": "dks" - }, - { - "id": "daruma", - "name": "Daruma", - "symbol": "daruma" - }, - { - "id": "darwinia-commitment-token", - "name": "Darwinia Commitment", - "symbol": "kton" - }, - { - "id": "darwinia-network-native-token", - "name": "Darwinia Network", - "symbol": "ring" - }, - { - "id": "dash", - "name": "Dash", - "symbol": "dash" - }, - { - "id": "dash-2-trade", - "name": "Dash 2 Trade", - "symbol": "d2t" - }, - { - "id": "dash-diamond", - "name": "Dash Diamond", - "symbol": "dashd" - }, - { - "id": "dastra-network", - "name": "Dastra Network", - "symbol": "dan" - }, - { - "id": "data-bot", - "name": "DataBot", - "symbol": "data" - }, - { - "id": "databricks-ai", - "name": "Databricks AI", - "symbol": "dbrx" - }, - { - "id": "databroker-dao", - "name": "DaTa eXchange DTX", - "symbol": "dtx" - }, - { - "id": "datahighway", - "name": "DataHighway", - "symbol": "dhx" - }, - { - "id": "data-lake", - "name": "Data Lake", - "symbol": "lake" - }, - { - "id": "datamall-coin", - "name": "Datamall Coin", - "symbol": "dmc" - }, - { - "id": "datamine", - "name": "Datamine", - "symbol": "dam" - }, - { - "id": "data-ownership-protocol", - "name": "Data Ownership Protocol", - "symbol": "dop" - }, - { - "id": "data-vital", - "name": "Data Vital", - "symbol": "dav" - }, - { - "id": "dat-boi", - "name": "Dat Boi", - "symbol": "waddup" - }, - { - "id": "datsbotai", - "name": "Datsbotai", - "symbol": "dba" - }, - { - "id": "daumenfrosch", - "name": "Daumenfrosch", - "symbol": "daumen" - }, - { - "id": "dave-coin", - "name": "Dave Coin", - "symbol": "$dave" - }, - { - "id": "davidcoin", - "name": "DavidCoin", - "symbol": "dc" - }, - { - "id": "davinci", - "name": "DaVinci", - "symbol": "wtf" - }, - { - "id": "davincigraph", - "name": "Davincigraph", - "symbol": "davinci" - }, - { - "id": "davis-cup-fan-token", - "name": "Davis Cup Fan Token", - "symbol": "davis" - }, - { - "id": "davos-protocol", - "name": "Davos Protocol", - "symbol": "dusd" - }, - { - "id": "daw-currency", - "name": "Daw Currency", - "symbol": "daw" - }, - { - "id": "dawg", - "name": "DAWG", - "symbol": "dawg" - }, - { - "id": "dawg-coin", - "name": "Dawg Coin", - "symbol": "dawg" - }, - { - "id": "dawkoin", - "name": "Dawkoins", - "symbol": "daw" - }, - { - "id": "dawn-protocol", - "name": "Dawn Protocol", - "symbol": "dawn" - }, - { - "id": "day-by-day", - "name": "Day By Day", - "symbol": "dbd" - }, - { - "id": "daylight-protocol", - "name": "Daylight Protocol", - "symbol": "dayl" - }, - { - "id": "day-of-defeat", - "name": "Day of Defeat 2.0", - "symbol": "dod" - }, - { - "id": "day-of-defeat-mini-100x", - "name": "Day of Defeat Mini 100x", - "symbol": "dod100" - }, - { - "id": "daystarter", - "name": "DAYSTARTER", - "symbol": "dst" - }, - { - "id": "daytona-finance", - "name": "Daytona Finance", - "symbol": "toni" - }, - { - "id": "dbk", - "name": "DBK", - "symbol": "dbk" - }, - { - "id": "d-buybot", - "name": "D.BuyBot", - "symbol": "dbuy" - }, - { - "id": "dbx-2", - "name": "DBX", - "symbol": "dbx" - }, - { - "id": "dbxen", - "name": "DBXen", - "symbol": "dxn" - }, - { - "id": "dcntrl-network", - "name": "DCNTRL Network", - "symbol": "dcnx" - }, - { - "id": "dcomm", - "name": "DComm", - "symbol": "dcm" - }, - { - "id": "d-community", - "name": "D Community", - "symbol": "dili" - }, - { - "id": "dcomy", - "name": "DCOMY", - "symbol": "dco" - }, - { - "id": "dcoreum", - "name": "DCOREUM", - "symbol": "dco" - }, - { - "id": "d-drops", - "name": "D-Drops", - "symbol": "dop" - }, - { - "id": "deadpxlz", - "name": "DEADPXLZ", - "symbol": "ding" - }, - { - "id": "dean-s-list", - "name": "Dean's List", - "symbol": "dean" - }, - { - "id": "deapcoin", - "name": "DEAPCOIN", - "symbol": "dep" - }, - { - "id": "deathroad", - "name": "DeathRoad", - "symbol": "drace" - }, - { - "id": "death-token", - "name": "Death", - "symbol": "death" - }, - { - "id": "debio-network", - "name": "DeBio Network", - "symbol": "dbio" - }, - { - "id": "decanect", - "name": "Decanect", - "symbol": "dcnt" - }, - { - "id": "decats", - "name": "DeCats", - "symbol": "decats" - }, - { - "id": "decentr", - "name": "Decentr", - "symbol": "dec" - }, - { - "id": "decentrabnb", - "name": "DecentraBNB", - "symbol": "dbnb" - }, - { - "id": "decentracard", - "name": "DECENTRACARD", - "symbol": "dcard" - }, - { - "id": "decentracloud", - "name": "DecentraCloud", - "symbol": "dcloud" - }, - { - "id": "decentra-ecosystem", - "name": "Decentra Ecosystem", - "symbol": "dce" - }, - { - "id": "decentraland", - "name": "Decentraland", - "symbol": "mana" - }, - { - "id": "decentraland-wormhole", - "name": "Decentraland (Wormhole)", - "symbol": "mana" - }, - { - "id": "decentral-art", - "name": "Decentral ART", - "symbol": "art" - }, - { - "id": "decentralfree", - "name": "DecentralFree", - "symbol": "freela" - }, - { - "id": "decentral-games", - "name": "Decentral Games", - "symbol": "dg" - }, - { - "id": "decentral-games-ice", - "name": "Decentral Games ICE", - "symbol": "ice" - }, - { - "id": "decentral-games-old", - "name": "Decentral Games (Old)", - "symbol": "dg" - }, - { - "id": "decentralized-advertising", - "name": "DAD", - "symbol": "dad" - }, - { - "id": "decentralized-cloud-infra", - "name": "Decentralized Cloud Infra", - "symbol": "dci" - }, - { - "id": "decentralized-community-investment-protocol", - "name": "Decentralized Community Investment Protocol", - "symbol": "dcip" - }, - { - "id": "decentralized-etf", - "name": "Decentralized ETF", - "symbol": "detf" - }, - { - "id": "decentralized-intelligence-agency-2", - "name": "Decentralized Intelligence Agency", - "symbol": "dia" - }, - { - "id": "decentralized-liquidity-program", - "name": "Decentralized Liquidity Program", - "symbol": "dlp" - }, - { - "id": "decentralized-mining-exchange", - "name": "Decentralized Mining Exchange", - "symbol": "dmc" - }, - { - "id": "decentralized-music-chain", - "name": "Decentralized Music Chain", - "symbol": "dmcc" - }, - { - "id": "decentralized-universal-basic-income", - "name": "Decentralized Universal Basic Income", - "symbol": "dubi" - }, - { - "id": "decentralized-usd", - "name": "Decentralized USD", - "symbol": "dusd" - }, - { - "id": "decentralized-vulnerability-platform", - "name": "Decentralized Vulnerability Platform", - "symbol": "dvp" - }, - { - "id": "decentramind", - "name": "DecentraMind", - "symbol": "dmind" - }, - { - "id": "decentraweb", - "name": "DecentraWeb", - "symbol": "dweb" - }, - { - "id": "decentrawood", - "name": "Decentrawood", - "symbol": "deod" - }, - { - "id": "decetralized-minting-atomicals", - "name": "Decentralized Minting", - "symbol": "dmint" - }, - { - "id": "decetranode", - "name": "DecentraNode", - "symbol": "dnode" - }, - { - "id": "dechat", - "name": "Dechat", - "symbol": "dechat" - }, - { - "id": "decimal", - "name": "Decimal", - "symbol": "del" - }, - { - "id": "decimated", - "name": "Decimated", - "symbol": "dio" - }, - { - "id": "decloud", - "name": "DeCloud", - "symbol": "cloud" - }, - { - "id": "d-ecosystem", - "name": "D-Ecosystem", - "symbol": "dcx" - }, - { - "id": "decred", - "name": "Decred", - "symbol": "dcr" - }, - { - "id": "decred-next", - "name": "Decred-Next", - "symbol": "dcrn" - }, - { - "id": "decubate", - "name": "Decubate", - "symbol": "dcb" - }, - { - "id": "dede", - "name": "Dede", - "symbol": "dede" - }, - { - "id": "dedprz", - "name": "DEDPRZ", - "symbol": "usa" - }, - { - "id": "deelance", - "name": "DeeLance", - "symbol": "$dlance" - }, - { - "id": "deepbrain-chain", - "name": "DeepBrain Chain", - "symbol": "dbc" - }, - { - "id": "deeper-network", - "name": "Deeper Network", - "symbol": "dpr" - }, - { - "id": "deepfakeai", - "name": "DeepFakeAI", - "symbol": "fakeai" - }, - { - "id": "deep-fucking-value", - "name": "Deep Fucking Value", - "symbol": "deep" - }, - { - "id": "deepl", - "name": "DeepL", - "symbol": "deepl" - }, - { - "id": "deeployer", - "name": "Deeployer", - "symbol": "deep" - }, - { - "id": "deeponion", - "name": "DeepOnion", - "symbol": "onion" - }, - { - "id": "deepr", - "name": "DEEPR", - "symbol": "deepr" - }, - { - "id": "deepsouth-ai", - "name": "DeepSouth AI", - "symbol": "south" - }, - { - "id": "deepspace", - "name": "DEEPSPACE", - "symbol": "dps" - }, - { - "id": "deepwaters", - "name": "Deepwaters", - "symbol": "wtr" - }, - { - "id": "deesse", - "name": "Deesse", - "symbol": "love" - }, - { - "id": "deez-nuts-erc404", - "name": "Deez Nuts (ERC404)", - "symbol": "dn" - }, - { - "id": "deez-nuts-sol", - "name": "Deez Nuts", - "symbol": "nuts" - }, - { - "id": "defactor", - "name": "Defactor", - "symbol": "factr" - }, - { - "id": "defender-bot", - "name": "Defender Bot", - "symbol": "dfndr" - }, - { - "id": "de-fi", - "name": "DeFi", - "symbol": "defi" - }, - { - "id": "defiai", - "name": "DeFiAI", - "symbol": "dfai" - }, - { - "id": "defi-all-odds-daogame", - "name": "DAOGAME", - "symbol": "daog" - }, - { - "id": "defiato", - "name": "DeFiato", - "symbol": "dfiat" - }, - { - "id": "defibox", - "name": "DefiBox", - "symbol": "box" - }, - { - "id": "defibox-bram", - "name": "Defibox bRAM", - "symbol": "bram" - }, - { - "id": "defichain", - "name": "DeFiChain", - "symbol": "dfi" - }, - { - "id": "defi-coin", - "name": "DeFi Coin", - "symbol": "defc" - }, - { - "id": "deficonnect-v2", - "name": "DefiConnect V2", - "symbol": "dfc" - }, - { - "id": "defido", - "name": "DeFido", - "symbol": "defido" - }, - { - "id": "defido-2", - "name": "DeFido", - "symbol": "dfd" - }, - { - "id": "defidollar-dao", - "name": "DefiDollar DAO", - "symbol": "dfd" - }, - { - "id": "defi-for-you", - "name": "Defi For You", - "symbol": "dfy" - }, - { - "id": "defi-franc", - "name": "DeFi Franc", - "symbol": "dchf" - }, - { - "id": "defi-franc-moneta", - "name": "Moneta DAO", - "symbol": "mon" - }, - { - "id": "defigram", - "name": "Defigram", - "symbol": "dfg" - }, - { - "id": "defi-hunters-dao", - "name": "DDAO Hunters", - "symbol": "ddao" - }, - { - "id": "defi-kingdoms", - "name": "DeFi Kingdoms", - "symbol": "jewel" - }, - { - "id": "defi-kingdoms-crystal", - "name": "DeFi Kingdoms Crystal", - "symbol": "crystal" - }, - { - "id": "defil", - "name": "DeFIL", - "symbol": "dfl" - }, - { - "id": "defi-land", - "name": "DeFi Land", - "symbol": "dfl" - }, - { - "id": "defi-land-gold", - "name": "DeFi Land Gold", - "symbol": "goldy" - }, - { - "id": "defina-finance", - "name": "Defina Finance", - "symbol": "fina" - }, - { - "id": "definder-capital", - "name": "DeFinder Capital", - "symbol": "dfc" - }, - { - "id": "define", - "name": "DeFine", - "symbol": "dfa" - }, - { - "id": "definer", - "name": "DeFiner", - "symbol": "fin" - }, - { - "id": "definity", - "name": "DeFinity", - "symbol": "defx" - }, - { - "id": "defipal", - "name": "DefiPal", - "symbol": "pal" - }, - { - "id": "defiplaza", - "name": "DefiPlaza", - "symbol": "dfp2" - }, - { - "id": "defi-pool-share", - "name": "DeFi Pool Share", - "symbol": "dpst" - }, - { - "id": "defipulse-index", - "name": "DeFi Pulse Index", - "symbol": "dpi" - }, - { - "id": "defi-radar", - "name": "Defi Radar", - "symbol": "dradar" - }, - { - "id": "defi-robot", - "name": "DeFi-Robot", - "symbol": "drbt" - }, - { - "id": "defi-shopping-stake", - "name": "Defi Shopping Stake", - "symbol": "dss" - }, - { - "id": "defispot", - "name": "Defispot", - "symbol": "spot" - }, - { - "id": "defistarter", - "name": "DfiStarter", - "symbol": "dfi" - }, - { - "id": "defi-stoa", - "name": "STOA Network", - "symbol": "sta" - }, - { - "id": "defit", - "name": "Digital Fitness", - "symbol": "defit" - }, - { - "id": "defitankland", - "name": "DefiTankLand", - "symbol": "dftl" - }, - { - "id": "defi-warrior", - "name": "Defi Warrior", - "symbol": "fiwa" - }, - { - "id": "defi-world", - "name": "Defi World", - "symbol": "dwc" - }, - { - "id": "defi-yield-protocol", - "name": "Dypius [OLD]", - "symbol": "dyp" - }, - { - "id": "defly", - "name": "Defly", - "symbol": "defly" - }, - { - "id": "defrogs", - "name": "DeFrogs", - "symbol": "defrogs" - }, - { - "id": "defusion-staked-vic", - "name": "deFusion Staked VIC", - "symbol": "svic" - }, - { - "id": "defy", - "name": "DEFY", - "symbol": "defy" - }, - { - "id": "dega", - "name": "Dega", - "symbol": "dega" - }, - { - "id": "degate", - "name": "DeGate", - "symbol": "dg" - }, - { - "id": "degen-2", - "name": "Degen", - "symbol": "d\u4e09g\u4e09n" - }, - { - "id": "degen-base", - "name": "Degen (Base)", - "symbol": "degen" - }, - { - "id": "degen-base-2", - "name": "Degen Base", - "symbol": "$db" - }, - { - "id": "degen-cet", - "name": "Degen Cet", - "symbol": "cet" - }, - { - "id": "degen-fighting-championship", - "name": "Degen Fighting Championship", - "symbol": "dfc" - }, - { - "id": "degeninsure", - "name": "DegenInsure", - "symbol": "dgns" - }, - { - "id": "degen-knightsofdegen", - "name": "DGEN", - "symbol": "dgen" - }, - { - "id": "degenmasters-ai", - "name": "DegenMasters AI", - "symbol": "dmai" - }, - { - "id": "degenreborn", - "name": "DegenReborn", - "symbol": "degen" - }, - { - "id": "degenstogether", - "name": "DegensTogether", - "symbol": "degen" - }, - { - "id": "degenswap", - "name": "DegenSwap", - "symbol": "dswap" - }, - { - "id": "degen-token", - "name": "Degen Token", - "symbol": "dgn" - }, - { - "id": "degen-traded-fund", - "name": "Degen Traded Fund", - "symbol": "dtf" - }, - { - "id": "degenx", - "name": "DegenX", - "symbol": "dgnx" - }, - { - "id": "degen-zoo", - "name": "Degen Zoo", - "symbol": "dzoo" - }, - { - "id": "degis", - "name": "Degis", - "symbol": "deg" - }, - { - "id": "dego-finance", - "name": "Dego Finance", - "symbol": "dego" - }, - { - "id": "degree-crypto-token", - "name": "Degree Crypto", - "symbol": "dct" - }, - { - "id": "degwefhat", - "name": "degwefhat", - "symbol": "wef" - }, - { - "id": "dehealth", - "name": "DeHealth", - "symbol": "dhlt" - }, - { - "id": "dehero-community-token", - "name": "Dehero Community", - "symbol": "heroes" - }, - { - "id": "deherogame-amazing-token", - "name": "DeHeroGame Amazing Token", - "symbol": "amg" - }, - { - "id": "dehive", - "name": "DeHive", - "symbol": "dhv" - }, - { - "id": "dehorizon", - "name": "DeHorizon", - "symbol": "devt" - }, - { - "id": "dehub", - "name": "DeHub", - "symbol": "dhb" - }, - { - "id": "dejitaru-hoshi", - "name": "Dejitaru Hoshi", - "symbol": "hoshi" - }, - { - "id": "dejitaru-shirudo", - "name": "Dejitaru Shirudo", - "symbol": "shield" - }, - { - "id": "dejitaru-tsuka", - "name": "Dejitaru Tsuka", - "symbol": "tsuka" - }, - { - "id": "dekbox", - "name": "DekBox", - "symbol": "dek" - }, - { - "id": "de-layer", - "name": "De Layer", - "symbol": "deai" - }, - { - "id": "deliq", - "name": "Deliq", - "symbol": "dlq" - }, - { - "id": "delphibets", - "name": "DELPHIBETS", - "symbol": "dph" - }, - { - "id": "delphy", - "name": "Delphy", - "symbol": "dpy" - }, - { - "id": "delrey-inu", - "name": "Delrey Inu", - "symbol": "delrey" - }, - { - "id": "delta-exchange-token", - "name": "Delta Exchange", - "symbol": "deto" - }, - { - "id": "deltafi", - "name": "DeltaFi", - "symbol": "delfi" - }, - { - "id": "delta-financial", - "name": "Delta Financial", - "symbol": "delta" - }, - { - "id": "deltaflare", - "name": "DeltaFlare", - "symbol": "honr" - }, - { - "id": "deltahub-community", - "name": "DeltaHub Community", - "symbol": "dhc" - }, - { - "id": "delta-theta", - "name": "delta.theta", - "symbol": "dlta" - }, - { - "id": "delysium", - "name": "Delysium", - "symbol": "agi" - }, - { - "id": "demeter", - "name": "Demeter", - "symbol": "deo" - }, - { - "id": "demeter-usd", - "name": "Demeter USD", - "symbol": "dusd" - }, - { - "id": "demi", - "name": "DeMi", - "symbol": "demi" - }, - { - "id": "demiourgos-holdings-ouroboros", - "name": "Demiourgos Holdings OUROBOROS", - "symbol": "ouro" - }, - { - "id": "demole", - "name": "Demole", - "symbol": "dmlg" - }, - { - "id": "demx", - "name": "DemX", - "symbol": "demx" - }, - { - "id": "denarius", - "name": "Denarius", - "symbol": "d" - }, - { - "id": "denchcoin", - "name": "DENCHCOIN", - "symbol": "dench" - }, - { - "id": "denet-file-token", - "name": "Denet File Token", - "symbol": "de" - }, - { - "id": "denizlispor-fan-token", - "name": "Denizlispor Fan Token", - "symbol": "dnz" - }, - { - "id": "dent", - "name": "Dent", - "symbol": "dent" - }, - { - "id": "dentacoin", - "name": "Dentacoin", - "symbol": "dcn" - }, - { - "id": "deorbit-network", - "name": "DeOrbit Network", - "symbol": "deorbit" - }, - { - "id": "depay", - "name": "DePay", - "symbol": "depay" - }, - { - "id": "depin-dao", - "name": "DePIN DAO", - "symbol": "depindao" - }, - { - "id": "deplan", - "name": "DePlan", - "symbol": "dpln" - }, - { - "id": "deportivo-alaves-fan-token", - "name": "Deportivo Alav\u00e9s Fan Token", - "symbol": "daft" - }, - { - "id": "dequant", - "name": "Dequant", - "symbol": "deq" - }, - { - "id": "derace", - "name": "DeRace", - "symbol": "derc" - }, - { - "id": "deracoin", - "name": "Deracoin", - "symbol": "drc" - }, - { - "id": "derby-stars-run", - "name": "Derby Stars RUN", - "symbol": "dsrun" - }, - { - "id": "derify-protocol", - "name": "Derify Protocol", - "symbol": "drf" - }, - { - "id": "deri-protocol", - "name": "Deri Protocol", - "symbol": "deri" - }, - { - "id": "derivadao", - "name": "DerivaDAO", - "symbol": "ddx" - }, - { - "id": "dero", - "name": "Dero", - "symbol": "dero" - }, - { - "id": "derp", - "name": "Derp", - "symbol": "derp" - }, - { - "id": "derp-birds", - "name": "Derp Birds", - "symbol": "derp" - }, - { - "id": "derpcat", - "name": "DERPCAT", - "symbol": "derpcat" - }, - { - "id": "derp-coin", - "name": "Derp Coin", - "symbol": "derp" - }, - { - "id": "desme", - "name": "DeSME", - "symbol": "desme" - }, - { - "id": "desmos", - "name": "Desmos", - "symbol": "dsm" - }, - { - "id": "deso", - "name": "Decentralized Social", - "symbol": "deso" - }, - { - "id": "despace-protocol", - "name": "DeSpace Protocol", - "symbol": "des" - }, - { - "id": "destiny-world", - "name": "Destiny World", - "symbol": "deco" - }, - { - "id": "destorage", - "name": "DeStorage", - "symbol": "ds" - }, - { - "id": "destra-network", - "name": "Destra Network", - "symbol": "dsync" - }, - { - "id": "detensor", - "name": "DeTensor", - "symbol": "detensor" - }, - { - "id": "detto-finance", - "name": "Detto Finance", - "symbol": "deto" - }, - { - "id": "deus-finance-2", - "name": "DEUS Finance", - "symbol": "deus" - }, - { - "id": "deutsche-emark", - "name": "Deutsche eMark", - "symbol": "dem" - }, - { - "id": "devault", - "name": "DeVault", - "symbol": "dvt" - }, - { - "id": "develocity", - "name": "Develocity", - "symbol": "deve" - }, - { - "id": "deviantsfactions", - "name": "DeviantsFactions", - "symbol": "dev" - }, - { - "id": "devikins", - "name": "Devikins", - "symbol": "dvk" - }, - { - "id": "devil-finance", - "name": "Devil Finance", - "symbol": "devil" - }, - { - "id": "devomon", - "name": "Devomon", - "symbol": "evo" - }, - { - "id": "devops", - "name": "DevOps", - "symbol": "dev" - }, - { - "id": "devour-2", - "name": "Devour", - "symbol": "dpay" - }, - { - "id": "dev-protocol", - "name": "Dev Protocol", - "symbol": "dev" - }, - { - "id": "dev-smashed-his-keyboard", - "name": "DEV SMASHED HIS KEYBOARD", - "symbol": "hixokdkekjcjdksicndnaiaihsbznnxnxnduje" - }, - { - "id": "devve", - "name": "DevvE", - "symbol": "devve" - }, - { - "id": "devvio", - "name": "Devvio", - "symbol": "devve" - }, - { - "id": "dewae", - "name": "Dewae", - "symbol": "dewae" - }, - { - "id": "dewn", - "name": "Dewn", - "symbol": "dewn" - }, - { - "id": "dexa-coin", - "name": "DEXA COIN", - "symbol": "dexa" - }, - { - "id": "dexagon", - "name": "DeXagon", - "symbol": "dxc" - }, - { - "id": "dexalot", - "name": "Dexalot", - "symbol": "alot" - }, - { - "id": "dexbet", - "name": "Dexbet", - "symbol": "dxb" - }, - { - "id": "dexbrowser", - "name": "DexBrowser", - "symbol": "bro" - }, - { - "id": "dexcheck", - "name": "DexCheck AI", - "symbol": "dck" - }, - { - "id": "dexe", - "name": "DeXe", - "symbol": "dexe" - }, - { - "id": "dexed", - "name": "DEXED", - "symbol": "dexed" - }, - { - "id": "dexfi-governance", - "name": "DexFi Governance", - "symbol": "gdex" - }, - { - "id": "dex-game", - "name": "DexGame", - "symbol": "dxgm" - }, - { - "id": "dexhunter", - "name": "Dexhunter", - "symbol": "hunt" - }, - { - "id": "dexioprotocol-v2", - "name": "Dexioprotocol", - "symbol": "dexio" - }, - { - "id": "dexit-finance", - "name": "Dexit Network", - "symbol": "dxt" - }, - { - "id": "dexkit", - "name": "DexKit", - "symbol": "kit" - }, - { - "id": "dexlab", - "name": "Dexlab", - "symbol": "dxl" - }, - { - "id": "dex-message", - "name": "DEX Message", - "symbol": "dex" - }, - { - "id": "dexnet", - "name": "DexNet", - "symbol": "dexnet" - }, - { - "id": "dex-on-crypto", - "name": "Dex on Crypto", - "symbol": "docswap" - }, - { - "id": "dexpad", - "name": "DexPad", - "symbol": "dxp" - }, - { - "id": "dexpools", - "name": "Dexpools", - "symbol": "dxp" - }, - { - "id": "dex-raiden", - "name": "Dex Raiden", - "symbol": "dxr" - }, - { - "id": "dexshare", - "name": "dexSHARE", - "symbol": "dexshare" - }, - { - "id": "dex-sniffer-2", - "name": "Dex Sniffer", - "symbol": "ds" - }, - { - "id": "dexsport", - "name": "Dexsport", - "symbol": "desu" - }, - { - "id": "dextensor", - "name": "Dextensor", - "symbol": "taos" - }, - { - "id": "dexter-exchange", - "name": "DeXter", - "symbol": "dextr" - }, - { - "id": "dextf", - "name": "Domani Protocol", - "symbol": "dextf" - }, - { - "id": "dextools", - "name": "DexTools", - "symbol": "dext" - }, - { - "id": "dextoro", - "name": "DexToro", - "symbol": "dtoro" - }, - { - "id": "dex-trade-coin", - "name": "Dex-Trade Coin", - "symbol": "dxc" - }, - { - "id": "dextro", - "name": "Dextro", - "symbol": "dxo" - }, - { - "id": "dexwallet", - "name": "DexWallet", - "symbol": "dwt" - }, - { - "id": "dforce-token", - "name": "dForce", - "symbol": "df" - }, - { - "id": "dfs-mafia", - "name": "DFS Mafia V2", - "symbol": "dfsm" - }, - { - "id": "dfuk", - "name": "DFUK", - "symbol": "dfuk" - }, - { - "id": "dfund", - "name": "dFund", - "symbol": "dfnd" - }, - { - "id": "dfx-finance", - "name": "DFX Finance", - "symbol": "dfx" - }, - { - "id": "dfyn-network", - "name": "Dfyn Network", - "symbol": "dfyn" - }, - { - "id": "dgi-game", - "name": "DGI Game", - "symbol": "dgi" - }, - { - "id": "dgnapp-ai", - "name": "DGNAPP.AI", - "symbol": "degai" - }, - { - "id": "dhabicoin", - "name": "Dhabicoin", - "symbol": "dbc" - }, - { - "id": "dhd-coin-2", - "name": "DHD Coin", - "symbol": "dhd" - }, - { - "id": "dhealth", - "name": "dHealth", - "symbol": "dhp" - }, - { - "id": "dhedge-dao", - "name": "dHEDGE DAO", - "symbol": "dht" - }, - { - "id": "dht", - "name": "DHT", - "symbol": "dht" - }, - { - "id": "diabase", - "name": "Diabase", - "symbol": "diac" - }, - { - "id": "dia-data", - "name": "DIA", - "symbol": "dia" - }, - { - "id": "diamault", - "name": "Diamault", - "symbol": "dvt" - }, - { - "id": "diamond", - "name": "Diamond", - "symbol": "dmd" - }, - { - "id": "diamond-boyz-coin", - "name": "Diamond Boyz Coin", - "symbol": "dbz" - }, - { - "id": "diamond-coin", - "name": "Diamond Coin", - "symbol": "diamond" - }, - { - "id": "diamond-launch", - "name": "Diamond Launch", - "symbol": "dlc" - }, - { - "id": "diamond-standard-carat", - "name": "Diamond Standard Carat", - "symbol": "carat" - }, - { - "id": "dibbles", - "name": "Dibbles", - "symbol": "dibble" - }, - { - "id": "dibbles-404", - "name": "Dibbles 404", - "symbol": "errdb" - }, - { - "id": "dibs-share", - "name": "Dibs Share", - "symbol": "dshare" - }, - { - "id": "dice-bot", - "name": "Dice Bot", - "symbol": "dice" - }, - { - "id": "dice-kingdom", - "name": "Dice Kingdom", - "symbol": "dk" - }, - { - "id": "die-protocol", - "name": "Die Protocol", - "symbol": "die" - }, - { - "id": "diffusion", - "name": "Diffusion", - "symbol": "diff" - }, - { - "id": "dig-chain", - "name": "Dig Chain", - "symbol": "dig" - }, - { - "id": "digg", - "name": "DIGG", - "symbol": "digg" - }, - { - "id": "digibunnies", - "name": "DigiBunnies", - "symbol": "dgbn" - }, - { - "id": "digibyte", - "name": "DigiByte", - "symbol": "dgb" - }, - { - "id": "digicask-token", - "name": "DigiCask Token", - "symbol": "dcask" - }, - { - "id": "digifinextoken", - "name": "DigiFinex", - "symbol": "dft" - }, - { - "id": "digifund", - "name": "DigiFund V1", - "symbol": "dfund" - }, - { - "id": "digifund-capital-v2", - "name": "DigiFund Capital V2", - "symbol": "dfund" - }, - { - "id": "digihealth", - "name": "Digihealth", - "symbol": "dgh" - }, - { - "id": "digimetaverse", - "name": "DigiMetaverse", - "symbol": "dgmv" - }, - { - "id": "digital-asset-right-token", - "name": "Digital Asset Right Token", - "symbol": "dar" - }, - { - "id": "digital-bank-of-africa", - "name": "Digital Bank of Africa", - "symbol": "dba" - }, - { - "id": "digitalbay", - "name": "DigitalBay", - "symbol": "dbc" - }, - { - "id": "digitalbits", - "name": "XDB CHAIN", - "symbol": "xdb" - }, - { - "id": "digitalcoin", - "name": "Digitalcoin", - "symbol": "dgc" - }, - { - "id": "digital-files", - "name": "Digital Files", - "symbol": "difi" - }, - { - "id": "digital-financial-exchange", - "name": "Digital Financial Exchange", - "symbol": "difx" - }, - { - "id": "digitaliga", - "name": "Digitaliga", - "symbol": "digita" - }, - { - "id": "digitalnote", - "name": "DigitalNote", - "symbol": "xdn" - }, - { - "id": "digital-rand", - "name": "Digital Rand", - "symbol": "dzar" - }, - { - "id": "digital-reserve-currency", - "name": "Digital Reserve Currency", - "symbol": "drc" - }, - { - "id": "digital-trip-advisor", - "name": "Digital Trip Advisor", - "symbol": "dta" - }, - { - "id": "digitex-futures-exchange", - "name": "Digitex", - "symbol": "dgtx" - }, - { - "id": "digits-dao", - "name": "Digits DAO", - "symbol": "digits" - }, - { - "id": "digiverse-2", - "name": "DIGIVERSE", - "symbol": "digi" - }, - { - "id": "digix-gold", - "name": "Digix Gold", - "symbol": "dgx" - }, - { - "id": "dimecoin", - "name": "Dimecoin", - "symbol": "dime" - }, - { - "id": "diminutive-coin", - "name": "Diminutive Coin", - "symbol": "dimi" - }, - { - "id": "dimitra", - "name": "Dimitra", - "symbol": "dmtr" - }, - { - "id": "dimo", - "name": "DIMO", - "symbol": "dimo" - }, - { - "id": "dinamo-zagreb-fan-token", - "name": "Dinamo Zagreb Fan Token", - "symbol": "dzg" - }, - { - "id": "dinari-aapl-dshares", - "name": "Dinari AAPL", - "symbol": "aapl.d" - }, - { - "id": "dinari-amd", - "name": "Dinari AMD", - "symbol": "amd.d" - }, - { - "id": "dinari-amzn-dshares", - "name": "Dinari AMZN", - "symbol": "amzn.d" - }, - { - "id": "dinari-arm", - "name": "Dinari ARM", - "symbol": "arm.d" - }, - { - "id": "dinari-brk-a-d", - "name": "Dinari BRK.A", - "symbol": "brk.a.d" - }, - { - "id": "dinari-coin", - "name": "Dinari COIN", - "symbol": "coin.d" - }, - { - "id": "dinari-dis-dshares", - "name": "Dinari DIS", - "symbol": "dis.d" - }, - { - "id": "dinari-googl-dshares", - "name": "Dinari GOOGL", - "symbol": "googl.d" - }, - { - "id": "dinari-meta-dshare", - "name": "Dinari META", - "symbol": "meta.d" - }, - { - "id": "dinari-msft-dshares", - "name": "Dinari MSFT", - "symbol": "msft.d" - }, - { - "id": "dinari-nflx-dshares", - "name": "Dinari NFLX", - "symbol": "nflx.d" - }, - { - "id": "dinari-nvda-dshares", - "name": "Dinari NVDA", - "symbol": "nvda.d" - }, - { - "id": "dinari-pfe-dshares", - "name": "Dinari PFE", - "symbol": "pfe.d" - }, - { - "id": "dinari-pld", - "name": "Dinari PLD", - "symbol": "pld.d" - }, - { - "id": "dinari-pypl-dshares", - "name": "Dinari PYPL", - "symbol": "pypl.d" - }, - { - "id": "dinari-spy-dshares", - "name": "Dinari SPY", - "symbol": "spy.d" - }, - { - "id": "dinari-tsla-dshares", - "name": "Dinari TSLA", - "symbol": "tsla.d" - }, - { - "id": "dinari-usfr-dshares", - "name": "Dinari USFR", - "symbol": "usfr.d" - }, - { - "id": "dinartether", - "name": "DinarTether", - "symbol": "dint" - }, - { - "id": "dinero-apxeth", - "name": "Dinero apxETH", - "symbol": "apxeth" - }, - { - "id": "dinerobet", - "name": "Dinerobet", - "symbol": "dinero" - }, - { - "id": "dinero-staked-eth", - "name": "Dinero Staked ETH", - "symbol": "pxeth" - }, - { - "id": "dinger-token", - "name": "Dinger", - "symbol": "dinger" - }, - { - "id": "dingocoin", - "name": "Dingocoin", - "symbol": "dingo" - }, - { - "id": "dinj", - "name": "dINJ", - "symbol": "dinj" - }, - { - "id": "dino", - "name": "Dino", - "symbol": "dino" - }, - { - "id": "dinoegg", - "name": "DINOEGG", - "symbol": "dinoegg" - }, - { - "id": "dinolfg", - "name": "DinoLFG", - "symbol": "dino" - }, - { - "id": "dino-poker", - "name": "Dino Poker", - "symbol": "rawr" - }, - { - "id": "dinosaur-inu", - "name": "Dinosaur Inu", - "symbol": "dino" - }, - { - "id": "dinosol", - "name": "Dinosol", - "symbol": "dinosol" - }, - { - "id": "dinoswap", - "name": "DinoSwap", - "symbol": "dino" - }, - { - "id": "dinox", - "name": "DinoX", - "symbol": "dnxc" - }, - { - "id": "dinu", - "name": "DINU", - "symbol": "dinu" - }, - { - "id": "dione", - "name": "Dione", - "symbol": "dione" - }, - { - "id": "dip-exchange", - "name": "DIP Exchange", - "symbol": "dip" - }, - { - "id": "diqinu", - "name": "DIQINU", - "symbol": "diq" - }, - { - "id": "disbalancer", - "name": "disBalancer", - "symbol": "ddos" - }, - { - "id": "disney", - "name": "Disney", - "symbol": "dis" - }, - { - "id": "distracted-dudes", - "name": "Distracted Dudes", - "symbol": "dude" - }, - { - "id": "district0x", - "name": "district0x", - "symbol": "dnt" - }, - { - "id": "dither", - "name": "Dither", - "symbol": "dith" - }, - { - "id": "ditto-staked-aptos", - "name": "Ditto Staked Aptos", - "symbol": "stapt" - }, - { - "id": "diva-protocol", - "name": "DIVA Protocol", - "symbol": "diva" - }, - { - "id": "diva-staking", - "name": "Diva Staking", - "symbol": "diva" - }, - { - "id": "divergence-protocol", - "name": "Divergence Protocol", - "symbol": "diver" - }, - { - "id": "diversified-staked-eth", - "name": "Diversified Staked ETH", - "symbol": "dseth" - }, - { - "id": "diversityequity-inclusion", - "name": "DiversityEquity&Inclusion", - "symbol": "dei" - }, - { - "id": "divi", - "name": "Divi", - "symbol": "divi" - }, - { - "id": "divincipay", - "name": "DiVinciPay", - "symbol": "dvnci" - }, - { - "id": "dizzyhavoc", - "name": "DizzyHavoc", - "symbol": "dzhv" - }, - { - "id": "djbonk", - "name": "DJBONK", - "symbol": "djbonk" - }, - { - "id": "djed", - "name": "Djed", - "symbol": "djed" - }, - { - "id": "dkargo", - "name": "dKargo", - "symbol": "dka" - }, - { - "id": "dkey-bank", - "name": "DKEY Bank", - "symbol": "dkey" - }, - { - "id": "dlp-duck-token", - "name": "DLP Duck", - "symbol": "duck" - }, - { - "id": "dmail-network", - "name": "Dmail Network", - "symbol": "dmail" - }, - { - "id": "dmx", - "name": "DMX", - "symbol": "dmx" - }, - { - "id": "dmz-token", - "name": "DMZ", - "symbol": "dmz" - }, - { - "id": "dnaxcat", - "name": "DNAxCAT", - "symbol": "dxct" - }, - { - "id": "dobi", - "name": "DOBI", - "symbol": "dobi" - }, - { - "id": "dock", - "name": "Dock", - "symbol": "dock" - }, - { - "id": "doctor-evil", - "name": "Doctor Evil", - "symbol": "evil" - }, - { - "id": "docuchain", - "name": "DocuChain", - "symbol": "dcct" - }, - { - "id": "documentchain", - "name": "Documentchain", - "symbol": "dms" - }, - { - "id": "dodo", - "name": "DODO", - "symbol": "dodo" - }, - { - "id": "dodo-2", - "name": "DODO", - "symbol": "dodo" - }, - { - "id": "doeg-wif-rerart", - "name": "Doeg Wif Rerart", - "symbol": "doeg" - }, - { - "id": "dog-3", - "name": "dog", - "symbol": "dog" - }, - { - "id": "dogai", - "name": "Dogai", - "symbol": "dogai" - }, - { - "id": "dogami", - "name": "Dogami", - "symbol": "doga" - }, - { - "id": "dogcoin", - "name": "Dogcoin", - "symbol": "dogs" - }, - { - "id": "dog-collar", - "name": "Dog Collar", - "symbol": "collar" - }, - { - "id": "dog-coq", - "name": "DOG COQ", - "symbol": "dogcoq" - }, - { - "id": "doge-1", - "name": "DOGE-1", - "symbol": "doge1" - }, - { - "id": "doge-1-2", - "name": "DOGE-1", - "symbol": "doge-1" - }, - { - "id": "doge-1-mission-to-the-moon", - "name": "Doge-1 Mission to the moon", - "symbol": "doge-1" - }, - { - "id": "doge-1-moon-mission", - "name": "DOGE-1 Moon Mission", - "symbol": "doge-1" - }, - { - "id": "doge-1satellite", - "name": "DOGE-1SATELLITE", - "symbol": "doge-1sat" - }, - { - "id": "doge-2-0", - "name": "Doge 2.0", - "symbol": "doge2.0" - }, - { - "id": "doge69", - "name": "Doge69", - "symbol": "doge69" - }, - { - "id": "dogeai", - "name": "DogeAi", - "symbol": "dogeai" - }, - { - "id": "dogebits-drc-20", - "name": "Dogebits (DRC-20)", - "symbol": "dbit" - }, - { - "id": "dogebonk", - "name": "DogeBonk", - "symbol": "dobo" - }, - { - "id": "dogebonk-eth", - "name": "DogeBonk", - "symbol": "dobo" - }, - { - "id": "dogebonk-on-sol", - "name": "dogebonk on sol", - "symbol": "dobo" - }, - { - "id": "dogeboy", - "name": "DogeBoy", - "symbol": "dogb" - }, - { - "id": "dogecash", - "name": "DogeCash", - "symbol": "dogec" - }, - { - "id": "doge-ceo", - "name": "Doge CEO", - "symbol": "dogeceo" - }, - { - "id": "dogeceomeme", - "name": "DOGE CEO AI", - "symbol": "dogeceo" - }, - { - "id": "dogechain", - "name": "Dogechain", - "symbol": "dc" - }, - { - "id": "dogeclub", - "name": "DogeClub", - "symbol": "dogc" - }, - { - "id": "dogecoin", - "name": "Dogecoin", - "symbol": "doge" - }, - { - "id": "dogecoin-2", - "name": "Dogecoin 2.0", - "symbol": "doge2" - }, - { - "id": "dogecola", - "name": "COLANA", - "symbol": "colana" - }, - { - "id": "dogecube", - "name": "DogeCube", - "symbol": "dogecube" - }, - { - "id": "dogedi", - "name": "DOGEDI", - "symbol": "dogedi" - }, - { - "id": "dogedragon", - "name": "DogeDragon", - "symbol": "dd" - }, - { - "id": "doge-eat-doge", - "name": "Doge Eat Doge", - "symbol": "omnom" - }, - { - "id": "doge-floki-2-0", - "name": "DOGE FLOKI 2.0", - "symbol": "(dofi20" - }, - { - "id": "doge-floki-coin", - "name": "Doge Floki Coin [OLD]", - "symbol": "dofi" - }, - { - "id": "doge-floki-coin-2", - "name": "Doge Floki Coin", - "symbol": "dofi" - }, - { - "id": "dogefood", - "name": "DogeFood", - "symbol": "dogefood" - }, - { - "id": "dogegayson", - "name": "Goge DAO", - "symbol": "goge" - }, - { - "id": "dogegf", - "name": "DogeGF", - "symbol": "dogegf" - }, - { - "id": "doge-grok", - "name": "Doge Grok", - "symbol": "dogegrok" - }, - { - "id": "dogegrow", - "name": "DogeGrow", - "symbol": "dgr" - }, - { - "id": "doge-inu", - "name": "Doge Inu", - "symbol": "dinu" - }, - { - "id": "doge-kaki", - "name": "Doge KaKi", - "symbol": "kaki" - }, - { - "id": "dogeking", - "name": "DogeKing", - "symbol": "dogeking" - }, - { - "id": "dogelana", - "name": "Dogelana", - "symbol": "dgln" - }, - { - "id": "doge-legion", - "name": "DOGE LEGION", - "symbol": "doge legio" - }, - { - "id": "dogelogy", - "name": "Dogelogy", - "symbol": "doge 0.1" - }, - { - "id": "dogelon-classic", - "name": "Dogelon Classic", - "symbol": "elonc" - }, - { - "id": "dogelon-mars", - "name": "Dogelon Mars", - "symbol": "elon" - }, - { - "id": "dogelon-mars-2-0", - "name": "Dogelon Mars 2.0", - "symbol": "elon2.0" - }, - { - "id": "dogelon-mars-wormhole", - "name": "Dogelon Mars (Wormhole)", - "symbol": "elon" - }, - { - "id": "doge-lumens", - "name": "DogeLumens", - "symbol": "dxlm" - }, - { - "id": "doge-marley", - "name": "Doge Marley", - "symbol": "marley" - }, - { - "id": "dogemeta", - "name": "DOGEMETA", - "symbol": "dogemeta" - }, - { - "id": "dogemob", - "name": "Dogemob", - "symbol": "dogemob" - }, - { - "id": "dogemon-go", - "name": "DogemonGo", - "symbol": "dogo" - }, - { - "id": "dogemoon", - "name": "Dogemoon", - "symbol": "dogemoon" - }, - { - "id": "dogemoon-2", - "name": "Dogemoon", - "symbol": "dogemoon" - }, - { - "id": "doge-of-grok-ai", - "name": "Doge Of Grok AI", - "symbol": "dogegrokai" - }, - { - "id": "dogeon", - "name": "Dogeon", - "symbol": "don" - }, - { - "id": "doge-on-pulsechain", - "name": "Doge on Pulsechain", - "symbol": "doge" - }, - { - "id": "dogepad-finance", - "name": "Dogepad Finance", - "symbol": "dpf" - }, - { - "id": "doge-protocol", - "name": "Doge Protocol", - "symbol": "dogep" - }, - { - "id": "dogeshrek", - "name": "DogeShrek", - "symbol": "dogeshrek" - }, - { - "id": "dogeswap", - "name": "Dogeswap", - "symbol": "doges" - }, - { - "id": "dogether", - "name": "Dogether", - "symbol": "dogether" - }, - { - "id": "doge-token", - "name": "Doge Token", - "symbol": "doget" - }, - { - "id": "doge-tv", - "name": "Doge-TV", - "symbol": "$dgtv" - }, - { - "id": "doge-whale", - "name": "Doge Whale", - "symbol": "dwhl" - }, - { - "id": "dogey-inu", - "name": "Dogey-Inu", - "symbol": "dinu" - }, - { - "id": "dogezilla-2", - "name": "DogeZilla", - "symbol": "zilla" - }, - { - "id": "dogezilla-ai", - "name": "DogeZilla Ai", - "symbol": "dai" - }, - { - "id": "dogfinity", - "name": "DOGMI", - "symbol": "dogmi" - }, - { - "id": "doggensnout-skeptic", - "name": "Doggensnout Skeptic", - "symbol": "dogs" - }, - { - "id": "dogggo", - "name": "Dogggo", - "symbol": "dogggo" - }, - { - "id": "doggo", - "name": "DOGGO", - "symbol": "doggo" - }, - { - "id": "doggy", - "name": "Doggy", - "symbol": "doggy" - }, - { - "id": "dogi", - "name": "dogi", - "symbol": "dogi" - }, - { - "id": "dogihub-doginals", - "name": "Dogihub (DRC-20)", - "symbol": "$hub" - }, - { - "id": "doginal-kabosu-drc-20", - "name": "Doginal Kabosu (DRC-20)", - "symbol": "dosu" - }, - { - "id": "doginals-club-exclusive-doginals", - "name": "Doginals Club Exclusive (DRC-20)", - "symbol": "dcex" - }, - { - "id": "doginme", - "name": "doginme", - "symbol": "doginme" - }, - { - "id": "doginphire", - "name": "doginphire", - "symbol": "fire" - }, - { - "id": "doginthpool", - "name": "doginthpool", - "symbol": "dip" - }, - { - "id": "doginwotah", - "name": "doginwotah", - "symbol": "water" - }, - { - "id": "dogira", - "name": "Dogira", - "symbol": "dogira" - }, - { - "id": "dogita", - "name": "DOGITA", - "symbol": "doga" - }, - { - "id": "dog-of-wisdom", - "name": "Dog Of Wisdom", - "symbol": "wisdm" - }, - { - "id": "dog-ordinals", - "name": "$DOG (Ordinals)", - "symbol": "$dog" - }, - { - "id": "dogo-token", - "name": "Dogo Token", - "symbol": "dogo" - }, - { - "id": "dogpad-finance", - "name": "DogPad Finance", - "symbol": "dogpad" - }, - { - "id": "dogsofelon", - "name": "Dogs Of Elon", - "symbol": "doe" - }, - { - "id": "dogs-rock", - "name": "Dogs Rock", - "symbol": "dogsrock" - }, - { - "id": "dogswap-token", - "name": "Dogeswap (HECO)", - "symbol": "dog" - }, - { - "id": "dogu-inu", - "name": "Dogu Inu", - "symbol": "dogu" - }, - { - "id": "dog-vision-pro", - "name": "Sol Vision Pro", - "symbol": "vision" - }, - { - "id": "dogwifcoin", - "name": "dogwifhat", - "symbol": "wif" - }, - { - "id": "dogwifcrocs", - "name": "DOGwifCROCS", - "symbol": "dwc" - }, - { - "id": "dogwifhat-bsc", - "name": "Dogwifhat BSC", - "symbol": "wif" - }, - { - "id": "dogwifhat-eth", - "name": "dogwifhat Eth", - "symbol": "dogwifhat" - }, - { - "id": "dogwifhood", - "name": "DOGWIFHOOD", - "symbol": "wif" - }, - { - "id": "dogwifkatana", - "name": "dogwifkatana", - "symbol": "katana" - }, - { - "id": "dogwifleg", - "name": "dogwifleg", - "symbol": "leg" - }, - { - "id": "dog-wif-nuchucks", - "name": "Dog Wif Nunchucks", - "symbol": "ninja" - }, - { - "id": "dogwifouthat", - "name": "dogwifouthat", - "symbol": "wifout" - }, - { - "id": "dogwifpants", - "name": "dogwifpants", - "symbol": "pants" - }, - { - "id": "dogwifsaudihat", - "name": "dogwifsaudihat", - "symbol": "wifsa" - }, - { - "id": "dogwifscarf", - "name": "dogwifscarf", - "symbol": "wifs" - }, - { - "id": "dog-wif-spinning-hat", - "name": "dog wif spinning hat", - "symbol": "sd" - }, - { - "id": "dogyrace", - "name": "DogyRace", - "symbol": "dor" - }, - { - "id": "dogz", - "name": "Dogz", - "symbol": "dogz" - }, - { - "id": "dohrnii", - "name": "Dohrnii", - "symbol": "dhn" - }, - { - "id": "doichain", - "name": "Doichain", - "symbol": "doi" - }, - { - "id": "dojo", - "name": "DOJO", - "symbol": "dojo" - }, - { - "id": "dojo-2", - "name": "Dojo", - "symbol": "dojo" - }, - { - "id": "dojo-supercomputer", - "name": "Dojo Supercomputer", - "symbol": "$dojo" - }, - { - "id": "dojo-token", - "name": "Dojo token", - "symbol": "dojo" - }, - { - "id": "doke-inu", - "name": "Doke Inu", - "symbol": "doke" - }, - { - "id": "doki", - "name": "DOKI", - "symbol": "doki" - }, - { - "id": "doki-doki-finance", - "name": "Doki Doki", - "symbol": "doki" - }, - { - "id": "dola-borrowing-right", - "name": "DOLA Borrowing Right", - "symbol": "dbr" - }, - { - "id": "dolan-duck", - "name": "Dolan Duck", - "symbol": "dolan" - }, - { - "id": "dola-usd", - "name": "DOLA", - "symbol": "dola" - }, - { - "id": "dollarback", - "name": "DollarBack", - "symbol": "back" - }, - { - "id": "dollarmoon", - "name": "DollarMoon", - "symbol": "dmoon" - }, - { - "id": "dollar-on-chain", - "name": "Dollar On Chain", - "symbol": "doc" - }, - { - "id": "dollarsqueeze", - "name": "DollarSqueeze", - "symbol": "dsq" - }, - { - "id": "dolp", - "name": "DOLP", - "symbol": "dolp" - }, - { - "id": "dolz-io", - "name": "DOLZ.io", - "symbol": "dolz" - }, - { - "id": "domi", - "name": "Domi", - "symbol": "domi" - }, - { - "id": "dominator-domains", - "name": "Dominator Domains", - "symbol": "domdom" - }, - { - "id": "dominica-coin", - "name": "Dominica Coin", - "symbol": "dmc" - }, - { - "id": "dominium-2", - "name": "Dominium", - "symbol": "dom" - }, - { - "id": "domo", - "name": "DOMO", - "symbol": "domo" - }, - { - "id": "donablock", - "name": "DonaBlock", - "symbol": "dobo" - }, - { - "id": "donald-tremp", - "name": "Doland Tremp", - "symbol": "tremp" - }, - { - "id": "donald-trump", - "name": "Donald Trump", - "symbol": "trump2024" - }, - { - "id": "donaswap", - "name": "Donaswap", - "symbol": "dona" - }, - { - "id": "don-catblueone", - "name": "Don Catblueone", - "symbol": "doncat" - }, - { - "id": "don-don-donki", - "name": "DON DON DONKI", - "symbol": "donki" - }, - { - "id": "dongcoin", - "name": "DongCoin", - "symbol": "dong" - }, - { - "id": "dongo-ai", - "name": "Dongo AI", - "symbol": "dongo" - }, - { - "id": "donk", - "name": "DONK", - "symbol": "donk" - }, - { - "id": "donkey", - "name": "Donkey", - "symbol": "donk" - }, - { - "id": "don-key", - "name": "Don-key", - "symbol": "don" - }, - { - "id": "donk-inu", - "name": "Donk Inu", - "symbol": "donk" - }, - { - "id": "dons", - "name": "The Dons", - "symbol": "dons" - }, - { - "id": "don-t-buy-inu", - "name": "Don't Buy Inu", - "symbol": "dbi" - }, - { - "id": "donut", - "name": "Donut", - "symbol": "donut" - }, - { - "id": "doodoo", - "name": "DooDoo", - "symbol": "doodoo" - }, - { - "id": "doom-hero-dao", - "name": "Doom Hero Dao", - "symbol": "dhd" - }, - { - "id": "doont-buy", - "name": "Doont Buy", - "symbol": "dbuy" - }, - { - "id": "dopamine", - "name": "Dopamine", - "symbol": "dope" - }, - { - "id": "dope-wars-paper", - "name": "Dope Wars Paper", - "symbol": "paper" - }, - { - "id": "dopex", - "name": "Dopex", - "symbol": "dpx" - }, - { - "id": "dopex-rebate-token", - "name": "Dopex Rebate", - "symbol": "rdpx" - }, - { - "id": "dopex-receipt-token-eth", - "name": "Dopex Receipt Token ETH", - "symbol": "rteth" - }, - { - "id": "dor", - "name": "Dor", - "symbol": "dor" - }, - { - "id": "dora-factory", - "name": "Dora Factory [OLD]", - "symbol": "dora" - }, - { - "id": "dora-factory-2", - "name": "Dora Factory", - "symbol": "dora" - }, - { - "id": "doric-network", - "name": "Doric Network", - "symbol": "drc" - }, - { - "id": "dork", - "name": "DORK", - "symbol": "dork" - }, - { - "id": "dork-lord", - "name": "DORK LORD", - "symbol": "dorkl" - }, - { - "id": "dos-chain", - "name": "DOS Chain", - "symbol": "dos" - }, - { - "id": "dose-token", - "name": "DOSE", - "symbol": "dose" - }, - { - "id": "dos-network", - "name": "DOS Network", - "symbol": "dos" - }, - { - "id": "dotblox", - "name": "Dotblox", - "symbol": "dtbx" - }, - { - "id": "dot-dot-finance", - "name": "Dot Dot Finance", - "symbol": "ddd" - }, - { - "id": "dot-finance", - "name": "Dot Finance", - "symbol": "pink" - }, - { - "id": "dotmoovs", - "name": "dotmoovs", - "symbol": "moov" - }, - { - "id": "dotori", - "name": "Dotori", - "symbol": "dtr" - }, - { - "id": "doubloon", - "name": "Doubloon", - "symbol": "dbl" - }, - { - "id": "doug", - "name": "Doug", - "symbol": "doug" - }, - { - "id": "dough", - "name": "Dough", - "symbol": "dough" - }, - { - "id": "douglas-adams", - "name": "Douglas Adams", - "symbol": "hhgttg" - }, - { - "id": "doveswap", - "name": "DoveSwap", - "symbol": "dov" - }, - { - "id": "dovi", - "name": "DOVI", - "symbol": "dovi" - }, - { - "id": "dovu", - "name": "Dovu [OLD]", - "symbol": "dov" - }, - { - "id": "dovu-2", - "name": "DOVU", - "symbol": "dovu" - }, - { - "id": "doxcoin", - "name": "DOXcoin", - "symbol": "dox" - }, - { - "id": "dozy-ordinals", - "name": "Dozy (Ordinals)", - "symbol": "dozy" - }, - { - "id": "dparrot", - "name": "dPARROT", - "symbol": "parrot" - }, - { - "id": "dpex", - "name": "DPEX", - "symbol": "dpex" - }, - { - "id": "dprating", - "name": "DPRating", - "symbol": "rating" - }, - { - "id": "dps-doubloon", - "name": "DPS Doubloon [OLD]", - "symbol": "dbl" - }, - { - "id": "dps-doubloon-2", - "name": "DPS Doubloon", - "symbol": "dbl" - }, - { - "id": "dps-rum-2", - "name": "DPS Rum", - "symbol": "rum" - }, - { - "id": "dps-treasuremaps-2", - "name": "DPS TreasureMaps", - "symbol": "tmap" - }, - { - "id": "dracarys-token", - "name": "Dracarys Token", - "symbol": "dra" - }, - { - "id": "drac-network", - "name": "DRAC Network", - "symbol": "drac" - }, - { - "id": "dracoo-point", - "name": "Dracoo Point", - "symbol": "dra" - }, - { - "id": "drac-ordinals", - "name": "DRAC (Ordinals)", - "symbol": "drac" - }, - { - "id": "dracula-fi", - "name": "Dracula Fi", - "symbol": "fang" - }, - { - "id": "draggable-aktionariat-ag", - "name": "Draggable Aktionariat AG", - "symbol": "daks" - }, - { - "id": "drago", - "name": "Drago", - "symbol": "drago" - }, - { - "id": "dragoma", - "name": "Dragoma", - "symbol": "dma" - }, - { - "id": "dragon-2", - "name": "Dragon", - "symbol": "dragon" - }, - { - "id": "dragon-3", - "name": "Dragon", - "symbol": "dragon" - }, - { - "id": "dragonchain", - "name": "Dragonchain", - "symbol": "drgn" - }, - { - "id": "dragoncoin", - "name": "DragonCoin", - "symbol": "dragon" - }, - { - "id": "dragon-crypto-argenti", - "name": "Dragon Crypto Argenti", - "symbol": "dcar" - }, - { - "id": "dragon-crypto-aurum", - "name": "Dragon Crypto Aurum", - "symbol": "dcau" - }, - { - "id": "dragonking", - "name": "DragonKing", - "symbol": "dragonking" - }, - { - "id": "dragon-mainland-shards", - "name": "Dragon Mainland Shards", - "symbol": "dms" - }, - { - "id": "dragonmaster-token", - "name": "DragonMaster", - "symbol": "dmt" - }, - { - "id": "dragonmaster-totem", - "name": "DragonMaster Totem", - "symbol": "totem" - }, - { - "id": "dragon-ordinals", - "name": "DRAGON (Ordinals)", - "symbol": "drag" - }, - { - "id": "dragon-soul-token", - "name": "Dragon Soul Token", - "symbol": "dst" - }, - { - "id": "dragon-s-quick", - "name": "Dragon's Quick", - "symbol": "dquick" - }, - { - "id": "dragons-quick", - "name": "Dragon's Quick", - "symbol": "dquick" - }, - { - "id": "dragon-war", - "name": "Dragon War", - "symbol": "draw" - }, - { - "id": "dragon-wif-hat", - "name": "dragon wif hat", - "symbol": "dwif" - }, - { - "id": "dragonx", - "name": "DragonX", - "symbol": "dragon" - }, - { - "id": "dragonx-2", - "name": "DragonX", - "symbol": "drgx" - }, - { - "id": "dragonx-win", - "name": "DragonX.win", - "symbol": "dragonx" - }, - { - "id": "dragy", - "name": "Dragy", - "symbol": "dragy" - }, - { - "id": "draken", - "name": "Draken", - "symbol": "drk" - }, - { - "id": "drake-s-dog", - "name": "Drake's Dog", - "symbol": "diamond" - }, - { - "id": "drako", - "name": "Drako", - "symbol": "drako" - }, - { - "id": "drawshop-kingdom-reverse-joystick", - "name": "Drawshop Kingdom Reverse Joystick", - "symbol": "joy" - }, - { - "id": "drc-mobility", - "name": "DRC Mobility", - "symbol": "drc" - }, - { - "id": "dream-machine-token", - "name": "Dream Machine Token", - "symbol": "dmt" - }, - { - "id": "dream-marketplace", - "name": "Dream", - "symbol": "dream" - }, - { - "id": "dreampad-capital", - "name": "DreamPad Capital", - "symbol": "dreampad" - }, - { - "id": "dreamscoin", - "name": "DreamsCoin", - "symbol": "dream" - }, - { - "id": "dreams-quest", - "name": "Dreams Quest", - "symbol": "dreams" - }, - { - "id": "dream-token", - "name": "Dream", - "symbol": "dream" - }, - { - "id": "dreamverse", - "name": "Dreamverse", - "symbol": "dv" - }, - { - "id": "drep-new", - "name": "Drep", - "symbol": "drep" - }, - { - "id": "drife", - "name": "Drife", - "symbol": "drf" - }, - { - "id": "dripdropz", - "name": "DripDropz", - "symbol": "drip" - }, - { - "id": "drip-network", - "name": "Drip Network", - "symbol": "drip" - }, - { - "id": "drive-to-earn", - "name": "Drive To Earn", - "symbol": "dte" - }, - { - "id": "droggy", - "name": "Droggy", - "symbol": "droggy" - }, - { - "id": "drop", - "name": "Drop", - "symbol": "drop" - }, - { - "id": "dropcoin-club", - "name": "DropCoin", - "symbol": "drop" - }, - { - "id": "drops", - "name": "Drops", - "symbol": "drops" - }, - { - "id": "drops-ownership-power", - "name": "Drops Ownership Power", - "symbol": "dop" - }, - { - "id": "drop-wireless-infrastructure", - "name": "Drop Wireless Infrastructure", - "symbol": "dwin" - }, - { - "id": "drunk", - "name": "Drunk", - "symbol": "drunk" - }, - { - "id": "drunk-robots", - "name": "Badmad Robots", - "symbol": "metal" - }, - { - "id": "drunk-skunks-drinking-club", - "name": "Drunk Skunks Drinking Club", - "symbol": "stink" - }, - { - "id": "dsc-mix", - "name": "DSC Mix", - "symbol": "mix" - }, - { - "id": "dshares", - "name": "DShares", - "symbol": "dshare" - }, - { - "id": "d-shop", - "name": "D-SHOP", - "symbol": "dp" - }, - { - "id": "dsun-token", - "name": "Dsun Token", - "symbol": "dsun" - }, - { - "id": "dtec-token", - "name": "Dtec token", - "symbol": "dtec" - }, - { - "id": "dtng", - "name": "DTNG", - "symbol": "dtng" - }, - { - "id": "dtools", - "name": "DogeTools", - "symbol": "dtools" - }, - { - "id": "dtravel", - "name": "TRVL", - "symbol": "trvl" - }, - { - "id": "dtsla", - "name": "Tesla Tokenized Stock Defichain", - "symbol": "dtsla" - }, - { - "id": "dtube-coin", - "name": "Dtube Coin", - "symbol": "dtube" - }, - { - "id": "dual-finance", - "name": "Dual Finance", - "symbol": "dual" - }, - { - "id": "dua-token", - "name": "Brillion", - "symbol": "dua" - }, - { - "id": "dubbz", - "name": "Dubbz", - "symbol": "dubbz" - }, - { - "id": "dub-duck", - "name": "dub duck", - "symbol": "$dub" - }, - { - "id": "dubx", - "name": "DUBX", - "symbol": "dub" - }, - { - "id": "ducatus", - "name": "DucatusX", - "symbol": "ducx" - }, - { - "id": "duckdao", - "name": "DuckDAO", - "symbol": "dd" - }, - { - "id": "duckdaodime", - "name": "DuckDaoDime", - "symbol": "ddim" - }, - { - "id": "duckduck-token", - "name": "DuckDuck", - "symbol": "duck" - }, - { - "id": "ducker", - "name": "Ducker", - "symbol": "ducker" - }, - { - "id": "duckereum", - "name": "Duckereum", - "symbol": "ducker" - }, - { - "id": "duckie-land-multi-metaverse", - "name": "Duckie Land Multi Metaverse", - "symbol": "mmeta" - }, - { - "id": "duckies", - "name": "Yellow Duckies", - "symbol": "duckies" - }, - { - "id": "ducks", - "name": "Ducks", - "symbol": "ducks" - }, - { - "id": "ducky-city", - "name": "Ducky City", - "symbol": "dcm" - }, - { - "id": "ducky-city-earn", - "name": "Ducky City Earn", - "symbol": "dce" - }, - { - "id": "duckydefi", - "name": "DuckyDefi", - "symbol": "degg" - }, - { - "id": "dude", - "name": "DuDe", - "symbol": "dude" - }, - { - "id": "dude-injective", - "name": "DUDE (Injective)", - "symbol": "dude" - }, - { - "id": "dudiez-meme-token", - "name": "Dudiez Meme Token", - "symbol": "dudiez" - }, - { - "id": "duel-network-2", - "name": "Duel Network", - "symbol": "duel" - }, - { - "id": "duel-royale", - "name": "Duel Royale", - "symbol": "royale" - }, - { - "id": "duet-protocol", - "name": "Duet Protocol", - "symbol": "duet" - }, - { - "id": "dug", - "name": "DUG", - "symbol": "dug" - }, - { - "id": "duge", - "name": "Duge", - "symbol": "duge" - }, - { - "id": "duh", - "name": "Duh", - "symbol": "duh" - }, - { - "id": "duk", - "name": "Duk", - "symbol": "duk" - }, - { - "id": "duke-inu-token", - "name": "Duke Inu", - "symbol": "duke" - }, - { - "id": "duko", - "name": "DUKO", - "symbol": "duko" - }, - { - "id": "duk-on-sol", - "name": "duk on SOL", - "symbol": "duk" - }, - { - "id": "dumbmoney", - "name": "DumbMoney", - "symbol": "gme" - }, - { - "id": "dumbmoney-2", - "name": "DumbMoney", - "symbol": "gme" - }, - { - "id": "dummy", - "name": "DUMMY", - "symbol": "dummy" - }, - { - "id": "dump-trade", - "name": "dump.trade", - "symbol": "dump" - }, - { - "id": "dungeonswap", - "name": "DungeonSwap", - "symbol": "dnd" - }, - { - "id": "dungeon-token", - "name": "Triathon", - "symbol": "grow" - }, - { - "id": "dupe-the-duck", - "name": "Dupe The Duck", - "symbol": "dupe" - }, - { - "id": "dusd", - "name": "DUSD", - "symbol": "dusd" - }, - { - "id": "dusk-network", - "name": "Dusk", - "symbol": "dusk" - }, - { - "id": "dust-city-nectar", - "name": "Nectar", - "symbol": "nctr" - }, - { - "id": "dust-protocol", - "name": "Dust Protocol", - "symbol": "dust" - }, - { - "id": "dux", - "name": "DUX", - "symbol": "dux" - }, - { - "id": "dvision-network", - "name": "Dvision Network", - "symbol": "dvi" - }, - { - "id": "dxchain", - "name": "DxChain", - "symbol": "dx" - }, - { - "id": "dxdao", - "name": "DXdao", - "symbol": "dxd" - }, - { - "id": "dydx", - "name": "dYdX", - "symbol": "ethdydx" - }, - { - "id": "dydx-chain", - "name": "dYdX", - "symbol": "dydx" - }, - { - "id": "dydx-wethdydx", - "name": "dYdX", - "symbol": "wethdydx" - }, - { - "id": "dydx-wormhole", - "name": "dYdX (Wormhole)", - "symbol": "dydx" - }, - { - "id": "dyl", - "name": "Dyl", - "symbol": "dyl" - }, - { - "id": "dymension", - "name": "Dymension", - "symbol": "dym" - }, - { - "id": "dymmax", - "name": "Dymmax", - "symbol": "dmx" - }, - { - "id": "dynamic-finance", - "name": "Dynamic Finance", - "symbol": "dyna" - }, - { - "id": "dynamite-token", - "name": "Dynamite", - "symbol": "dynmt" - }, - { - "id": "dynamix", - "name": "Dynamix", - "symbol": "dyna" - }, - { - "id": "dynasty-coin", - "name": "Dynasty Coin", - "symbol": "dny" - }, - { - "id": "dynex", - "name": "Dynex", - "symbol": "dnx" - }, - { - "id": "dyor", - "name": "DYOR", - "symbol": "dyor" - }, - { - "id": "dyor-token-2", - "name": "DYOR", - "symbol": "dyor" - }, - { - "id": "dypius", - "name": "Dypius", - "symbol": "dyp" - }, - { - "id": "dyson-sphere", - "name": "Dyson Sphere", - "symbol": "dysn" - }, - { - "id": "dystopia", - "name": "Dystopia", - "symbol": "dyst" - }, - { - "id": "dyzilla", - "name": "DYZilla", - "symbol": "dyzilla" - }, - { - "id": "earnbet", - "name": "EarnBet", - "symbol": "ebet" - }, - { - "id": "earndefi", - "name": "EarnDeFi", - "symbol": "edc" - }, - { - "id": "earn-finance", - "name": "EARN FINANCE", - "symbol": "earnfi" - }, - { - "id": "earn-network-2", - "name": "Earn Network", - "symbol": "earn" - }, - { - "id": "earntv", - "name": "EarnTV", - "symbol": "etv" - }, - { - "id": "earthbyt", - "name": "EarthByt", - "symbol": "ebyt" - }, - { - "id": "earthfund", - "name": "EarthFund", - "symbol": "1earth" - }, - { - "id": "eastgate-pharmaceuticals", - "name": "EastGate Pharmaceuticals", - "symbol": "egp" - }, - { - "id": "easyfi", - "name": "EasyFi V2", - "symbol": "ez" - }, - { - "id": "easy-swap-bot", - "name": "Easy Swap Bot", - "symbol": "ezswap" - }, - { - "id": "easytoken", - "name": "EasyToken", - "symbol": "eyt" - }, - { - "id": "eazyswap-token", - "name": "EazySwap Token", - "symbol": "eazy" - }, - { - "id": "ebabil-io", - "name": "Ebabil IO", - "symbol": "ebabil" - }, - { - "id": "ebase", - "name": "eBASE", - "symbol": "ebase" - }, - { - "id": "ebisusbay-fortune", - "name": "Fortune Token", - "symbol": "frtn" - }, - { - "id": "eblockstock", - "name": "eBlockStock", - "symbol": "ebso" - }, - { - "id": "ebox", - "name": "Ebox", - "symbol": "ebox" - }, - { - "id": "ecash", - "name": "eCash", - "symbol": "xec" - }, - { - "id": "echain-network", - "name": "Echain Network", - "symbol": "ect" - }, - { - "id": "echelon-prime", - "name": "Echelon Prime", - "symbol": "prime" - }, - { - "id": "echidna", - "name": "Echidna", - "symbol": "ecd" - }, - { - "id": "echoblock", - "name": "EchoBlock", - "symbol": "eblock" - }, - { - "id": "echo-bot", - "name": "Echo Bot", - "symbol": "echo" - }, - { - "id": "echodex-community-portion", - "name": "EchoDEX Community Portion", - "symbol": "ecp" - }, - { - "id": "echoes", - "name": "Echoes", - "symbol": "echoes" - }, - { - "id": "echolink", - "name": "EchoLink", - "symbol": "eko" - }, - { - "id": "echo-of-the-horizon", - "name": "Echo Of The Horizon", - "symbol": "eoth" - }, - { - "id": "echosoracoin", - "name": "EchoSoraCoin", - "symbol": "esrc" - }, - { - "id": "eclat", - "name": "ECLAT", - "symbol": "elt" - }, - { - "id": "eclipse-fi", - "name": "Eclipse Fi", - "symbol": "eclip" - }, - { - "id": "eco", - "name": "ECO", - "symbol": "eco" - }, - { - "id": "ecochain-2", - "name": "Ecochain", - "symbol": "eco" - }, - { - "id": "ecochain-token", - "name": "Ecochain Finance", - "symbol": "ect" - }, - { - "id": "ecocredit", - "name": "EcoCREDIT", - "symbol": "eco" - }, - { - "id": "ecog9coin", - "name": "EcoG9coin", - "symbol": "egc" - }, - { - "id": "ecoin-2", - "name": "Ecoin", - "symbol": "ecoin" - }, - { - "id": "ecoin-finance", - "name": "Ecoin Finance", - "symbol": "ecoin" - }, - { - "id": "ecomi", - "name": "ECOMI", - "symbol": "omi" - }, - { - "id": "ecoreal-estate", - "name": "Ecoreal Estate", - "symbol": "ecoreal" - }, - { - "id": "ecoscu", - "name": "ECOSC", - "symbol": "ecu" - }, - { - "id": "ecoterra", - "name": "Ecoterra", - "symbol": "ecoterra" - }, - { - "id": "ecox", - "name": "ECOx", - "symbol": "ecox" - }, - { - "id": "ecs-gold", - "name": "ECS Gold", - "symbol": "ecg" - }, - { - "id": "e-c-vitoria-fan-token", - "name": "E.C. Vitoria Fan Token", - "symbol": "vtra" - }, - { - "id": "edain", - "name": "Edain", - "symbol": "eai" - }, - { - "id": "eddaswap", - "name": "EDDASwap", - "symbol": "edda" - }, - { - "id": "edelcoin", - "name": "Edelcoin", - "symbol": "edlc" - }, - { - "id": "eden", - "name": "EDEN", - "symbol": "eden" - }, - { - "id": "edge", - "name": "Edge", - "symbol": "edge" - }, - { - "id": "edgecoin-2", - "name": "Edgecoin", - "symbol": "edgt" - }, - { - "id": "edgeless", - "name": "Edgeless", - "symbol": "edg" - }, - { - "id": "edge-matrix-computing", - "name": "Edge Matrix Computing", - "symbol": "emc" - }, - { - "id": "edgeswap", - "name": "EdgeSwap", - "symbol": "egs" - }, - { - "id": "edgevana-staked-sol", - "name": "Edgevana Staked SOL", - "symbol": "edgesol" - }, - { - "id": "edgeware", - "name": "Edgeware", - "symbol": "edg" - }, - { - "id": "edns-domains", - "name": "EDNS Domains", - "symbol": "edns" - }, - { - "id": "edoverse-zeni", - "name": "Edoverse Zeni", - "symbol": "zeni" - }, - { - "id": "edrivetoken", - "name": "EDriveToken", - "symbol": "edt" - }, - { - "id": "edu3labs", - "name": "Edu3Labs", - "symbol": "nfe" - }, - { - "id": "edu-coin", - "name": "Open Campus", - "symbol": "edu" - }, - { - "id": "edufex", - "name": "Edufex", - "symbol": "edux" - }, - { - "id": "edum", - "name": "EDUM", - "symbol": "edum" - }, - { - "id": "eeg", - "name": "EEG", - "symbol": "eeg" - }, - { - "id": "eesee", - "name": "Eesee", - "symbol": "ese" - }, - { - "id": "eeyor", - "name": "Eeyor", - "symbol": "eeyor" - }, - { - "id": "effect-network", - "name": "Effect Network", - "symbol": "efx" - }, - { - "id": "efin-decentralized", - "name": "eFin Decentralized", - "symbol": "wefin" - }, - { - "id": "efinity", - "name": "Efinity", - "symbol": "efi" - }, - { - "id": "efk-token", - "name": "EFK Token", - "symbol": "efk" - }, - { - "id": "eflancer", - "name": "EFLANCER", - "symbol": "efcr" - }, - { - "id": "efun", - "name": "EFUN", - "symbol": "efun" - }, - { - "id": "egaz", - "name": "EGAZ", - "symbol": "egaz" - }, - { - "id": "egg", - "name": "EGG", - "symbol": "egg" - }, - { - "id": "eggdog", - "name": "Eggdog", - "symbol": "egg" - }, - { - "id": "egg-eth", - "name": "EGG ETH", - "symbol": "egg" - }, - { - "id": "egg-n-partners", - "name": "Egg N Partners", - "symbol": "eggt" - }, - { - "id": "eggplant-finance", - "name": "Eggplant Finance", - "symbol": "eggp" - }, - { - "id": "eggs", - "name": "Eggs", - "symbol": "eggs" - }, - { - "id": "eggx", - "name": "EGGX", - "symbol": "eggx" - }, - { - "id": "eggy", - "name": "Eggy", - "symbol": "eggy" - }, - { - "id": "eggzomania", - "name": "EggZomania", - "symbol": "egg" - }, - { - "id": "ego-fitness", - "name": "EGO Fitness", - "symbol": "ego" - }, - { - "id": "egold-project", - "name": "EGold Project (OLD)", - "symbol": "egold" - }, - { - "id": "egold-project-2", - "name": "EGold Project", - "symbol": "egold" - }, - { - "id": "egoncoin", - "name": "EgonCoin", - "symbol": "egon" - }, - { - "id": "egoras-credit", - "name": "Egoras Credit", - "symbol": "egc" - }, - { - "id": "egostation", - "name": "Egostation", - "symbol": "esta" - }, - { - "id": "eg-token", - "name": "EG Token", - "symbol": "eg" - }, - { - "id": "ehash", - "name": "EHash", - "symbol": "ehash" - }, - { - "id": "einsteinium", - "name": "Einsteinium", - "symbol": "emc2" - }, - { - "id": "ekta-2", - "name": "Ekta", - "symbol": "ekta" - }, - { - "id": "elan", - "name": "Elan", - "symbol": "elan" - }, - { - "id": "elastos", - "name": "Elastos", - "symbol": "ela" - }, - { - "id": "eldarune", - "name": "Eldarune", - "symbol": "elda" - }, - { - "id": "el-dorado-exchange-arb", - "name": "El Dorado Exchange (Arb)", - "symbol": "ede" - }, - { - "id": "el-dorado-exchange-base", - "name": "El Dorado Exchange (Base)", - "symbol": "ede" - }, - { - "id": "electra", - "name": "Electra", - "symbol": "eca" - }, - { - "id": "electra-protocol", - "name": "Electra Protocol", - "symbol": "xep" - }, - { - "id": "electric-cash", - "name": "Electric Cash", - "symbol": "elcash" - }, - { - "id": "electric-vehicle-direct-currency", - "name": "Electric Vehicle Direct Currency", - "symbol": "evdc" - }, - { - "id": "electric-vehicle-zone", - "name": "Electric Vehicle Zone", - "symbol": "evz" - }, - { - "id": "electrify-asia", - "name": "Electrify.Asia", - "symbol": "elec" - }, - { - "id": "electron-arc-20", - "name": "Electron (ARC-20)", - "symbol": "electron" - }, - { - "id": "electroneum", - "name": "Electroneum", - "symbol": "etn" - }, - { - "id": "electronicgulden", - "name": "Electronic Gulden", - "symbol": "efl" - }, - { - "id": "electronic-usd", - "name": "Electronic USD", - "symbol": "eusd" - }, - { - "id": "elefant", - "name": "Elefant", - "symbol": "ele" - }, - { - "id": "element", - "name": "Element", - "symbol": "elmt" - }, - { - "id": "elemental-story", - "name": "Elemental Story", - "symbol": "pgt" - }, - { - "id": "element-black", - "name": "Element Black", - "symbol": "elt" - }, - { - "id": "elementum", - "name": "Elementum", - "symbol": "ele" - }, - { - "id": "elephant-money", - "name": "Elephant Money", - "symbol": "elephant" - }, - { - "id": "elephantpepe", - "name": "ElephantPepe", - "symbol": "elepepe" - }, - { - "id": "elevate-token", - "name": "Elevate Token", - "symbol": "$elev" - }, - { - "id": "el-gato", - "name": "el gato", - "symbol": "elgato" - }, - { - "id": "el-gato-2", - "name": "EL GATO", - "symbol": "elgato" - }, - { - "id": "el-hippo", - "name": "El Hippo", - "symbol": "hipp" - }, - { - "id": "eligma", - "name": "GoCrypto", - "symbol": "goc" - }, - { - "id": "elis", - "name": "ELIS", - "symbol": "xls" - }, - { - "id": "elixir-finance", - "name": "Elixir", - "symbol": "elxr" - }, - { - "id": "elixir-token", - "name": "Elixir Token", - "symbol": "elix" - }, - { - "id": "elizabath-whoren", - "name": "elizabath whoren", - "symbol": "whoren" - }, - { - "id": "elk-finance", - "name": "Elk Finance", - "symbol": "elk" - }, - { - "id": "ellerium", - "name": "ELLERIUM", - "symbol": "elm" - }, - { - "id": "ellipsis", - "name": "Ellipsis [OLD]", - "symbol": "eps" - }, - { - "id": "ellipsis-x", - "name": "Ellipsis X", - "symbol": "epx" - }, - { - "id": "elmoerc", - "name": "ElmoERC", - "symbol": "elmo" - }, - { - "id": "eloin", - "name": "Eloin", - "symbol": "eloin" - }, - { - "id": "elo-inu", - "name": "Elo Inu", - "symbol": "elo inu" - }, - { - "id": "elon-2024", - "name": "ELON 2024", - "symbol": "elon2024" - }, - { - "id": "elon404", - "name": "Elon404", - "symbol": "elon404" - }, - { - "id": "elon-cat", - "name": "Elon Cat", - "symbol": "schrodinge" - }, - { - "id": "elon-cat-2", - "name": "Elon Cat", - "symbol": "eloncat" - }, - { - "id": "elondoge-dao", - "name": "ElonDoge DAO", - "symbol": "edao" - }, - { - "id": "elon-doge-token", - "name": "ElonDoge.io", - "symbol": "edoge" - }, - { - "id": "elon-dragon", - "name": "ELON DRAGON", - "symbol": "elondragon" - }, - { - "id": "elongate-2", - "name": "ELONGATE", - "symbol": "elongate" - }, - { - "id": "elon-goat", - "name": "Elon GOAT", - "symbol": "egt" - }, - { - "id": "elonium", - "name": "Elonium", - "symbol": "elon" - }, - { - "id": "elon-mars", - "name": "Elon Mars", - "symbol": "elonmars" - }, - { - "id": "elon-musk-ceo", - "name": "Elon Musk CEO", - "symbol": "elonmuskce" - }, - { - "id": "elonrwa", - "name": "ElonRWA", - "symbol": "elonrwa" - }, - { - "id": "elon-s-cat", - "name": "Elon's Cat", - "symbol": "catme" - }, - { - "id": "elonx", - "name": "ELONX", - "symbol": "elonx" - }, - { - "id": "elonxaidogemessi69pepeinu", - "name": "ElonXAIDogeMessi69PepeInu", - "symbol": "bitcoin" - }, - { - "id": "elon-xmas", - "name": "Elon Xmas", - "symbol": "xmas" - }, - { - "id": "elosys", - "name": "Elosys", - "symbol": "elo" - }, - { - "id": "el-risitas", - "name": "El Risitas", - "symbol": "kek" - }, - { - "id": "elrond-erd-2", - "name": "MultiversX", - "symbol": "egld" - }, - { - "id": "elsd-coin", - "name": "ELSD Coin", - "symbol": "elsd" - }, - { - "id": "elseverse-world", - "name": "ElseVerse World", - "symbol": "ells" - }, - { - "id": "elucks", - "name": "ELUCKS", - "symbol": "elux" - }, - { - "id": "elumia", - "name": "Elumia", - "symbol": "elu" - }, - { - "id": "elvishmagic", - "name": "ElvishMagic", - "symbol": "emagic" - }, - { - "id": "elya", - "name": "Elya", - "symbol": "elya" - }, - { - "id": "elyfi", - "name": "ELYFI", - "symbol": "elfi" - }, - { - "id": "elysia", - "name": "ELYSIA", - "symbol": "el" - }, - { - "id": "elysiant-token", - "name": "Elysian ELS", - "symbol": "els" - }, - { - "id": "elysiumg", - "name": "ElysiumG", - "symbol": "lcmg" - }, - { - "id": "elysium-royale", - "name": "Elysium Royale", - "symbol": "royal" - }, - { - "id": "elysium-token", - "name": "Elysium Token", - "symbol": "elys" - }, - { - "id": "elys-network", - "name": "Elys Network", - "symbol": "elys" - }, - { - "id": "elyssa", - "name": "Elyssa", - "symbol": "ely" - }, - { - "id": "ember", - "name": "Ember", - "symbol": "ember" - }, - { - "id": "embr", - "name": "Embr", - "symbol": "embr" - }, - { - "id": "emdx", - "name": "EMDX", - "symbol": "emdx" - }, - { - "id": "emercoin", - "name": "EmerCoin", - "symbol": "emc" - }, - { - "id": "emerging-assets-group", - "name": "Emerging Assets Group", - "symbol": "eag" - }, - { - "id": "eminer", - "name": "Eminer", - "symbol": "em" - }, - { - "id": "emingunsirer", - "name": "EminGunSirer", - "symbol": "egs" - }, - { - "id": "eml-protocol", - "name": "EML Protocol", - "symbol": "eml" - }, - { - "id": "emmi-gg", - "name": "EMMI GG", - "symbol": "emmi" - }, - { - "id": "emmy", - "name": "Emmy", - "symbol": "emmy" - }, - { - "id": "emoji-erc20", - "name": "emoji ERC20", - "symbol": "$emoji" - }, - { - "id": "e-money", - "name": "e-Money", - "symbol": "ngm" - }, - { - "id": "e-money-eur", - "name": "e-Money EUR", - "symbol": "eeur" - }, - { - "id": "emorya-finance", - "name": "Emorya Finance", - "symbol": "emr" - }, - { - "id": "emotech", - "name": "EmoTech", - "symbol": "emt" - }, - { - "id": "emoticoin", - "name": "EmotiCoin", - "symbol": "emoti" - }, - { - "id": "empire-token", - "name": "Empire", - "symbol": "empire" - }, - { - "id": "emp-money", - "name": "Emp Money", - "symbol": "emp" - }, - { - "id": "empowa", - "name": "Empowa", - "symbol": "emp" - }, - { - "id": "emp-shares-v2", - "name": "EMP Shares", - "symbol": "eshare v2" - }, - { - "id": "empyreal", - "name": "Empyreal", - "symbol": "emp" - }, - { - "id": "encoins", - "name": "Encoins", - "symbol": "encs" - }, - { - "id": "encrypgen", - "name": "EncrypGen", - "symbol": "dna" - }, - { - "id": "encrypt", - "name": "ENCRYPT", - "symbol": "$encr" - }, - { - "id": "endblock", - "name": "Endblock", - "symbol": "end" - }, - { - "id": "endless-battlefield", - "name": "Endless Board Game", - "symbol": "eng" - }, - { - "id": "endlesswebworlds", - "name": "EndlessWebWorlds", - "symbol": "eww" - }, - { - "id": "endpoint-cex-fan-token", - "name": "Endpoint Cex Fan Token", - "symbol": "endcex" - }, - { - "id": "endurance", - "name": "Fusionist", - "symbol": "ace" - }, - { - "id": "eneftor", - "name": "Eneftor", - "symbol": "eftr" - }, - { - "id": "enegra", - "name": "Enegra", - "symbol": "egx" - }, - { - "id": "energi", - "name": "Energi", - "symbol": "nrg" - }, - { - "id": "energi-bridged-usdc-energi", - "name": "Energi Bridged USDC (Energi)", - "symbol": "usdc" - }, - { - "id": "energi-dollar", - "name": "Energi Dollar", - "symbol": "usde" - }, - { - "id": "energo", - "name": "Tesla TSL", - "symbol": "tsl" - }, - { - "id": "energreen", - "name": "Energreen", - "symbol": "egrn" - }, - { - "id": "energy8", - "name": "Energy8", - "symbol": "e8" - }, - { - "id": "energy-efficient-mortgage-tokenized-stock-defichain", - "name": "iShares MSCI Emerging Markets ETF Defichain", - "symbol": "deem" - }, - { - "id": "energyfi", - "name": "Energyfi", - "symbol": "eft" - }, - { - "id": "energy-token", - "name": "Energy Token", - "symbol": "nrg" - }, - { - "id": "energytrade-token", - "name": "EnergyTrade Token", - "symbol": "ett" - }, - { - "id": "energy-web-token", - "name": "Energy Web", - "symbol": "ewt" - }, - { - "id": "eng-crypto", - "name": "Eng Crypto", - "symbol": "eng" - }, - { - "id": "enigma", - "name": "Enigma", - "symbol": "eng" - }, - { - "id": "enigma-gaming", - "name": "Enigma Gaming", - "symbol": "eng" - }, - { - "id": "enjincoin", - "name": "Enjin Coin", - "symbol": "enj" - }, - { - "id": "enjinstarter", - "name": "Enjinstarter", - "symbol": "ejs" - }, - { - "id": "enjoy", - "name": "Enjoy", - "symbol": "enjoy" - }, - { - "id": "enjoy-network", - "name": "Enjoy Network", - "symbol": "eyn" - }, - { - "id": "enno-cash", - "name": "ENNO Cash", - "symbol": "enno" - }, - { - "id": "eno", - "name": "ENO", - "symbol": "eno" - }, - { - "id": "enoch", - "name": "Enoch", - "symbol": "enoch" - }, - { - "id": "enosys", - "name": "\u0112nosys", - "symbol": "hln" - }, - { - "id": "enosys-usdt", - "name": "Enosys USDT", - "symbol": "eusdt" - }, - { - "id": "enq-enecuum", - "name": "Enecuum", - "symbol": "enq" - }, - { - "id": "enreachdao", - "name": "Enreach", - "symbol": "nrch" - }, - { - "id": "enrex", - "name": "Enrex", - "symbol": "enrx" - }, - { - "id": "ensue", - "name": "Ensue", - "symbol": "ensue" - }, - { - "id": "entangle", - "name": "Entangle", - "symbol": "ngl" - }, - { - "id": "enter", - "name": "ENTER", - "symbol": "enter" - }, - { - "id": "enterbutton", - "name": "EnterButton", - "symbol": "entc" - }, - { - "id": "enterdao", - "name": "EnterDAO", - "symbol": "entr" - }, - { - "id": "entropy", - "name": "Entropy", - "symbol": "ent" - }, - { - "id": "ents", - "name": "Ents", - "symbol": "ents" - }, - { - "id": "envida", - "name": "EnviDa", - "symbol": "edat" - }, - { - "id": "envi-foundation", - "name": "Envi Coin", - "symbol": "envi" - }, - { - "id": "envision", - "name": "Envision", - "symbol": "vis" - }, - { - "id": "envoy-network", - "name": "Envoy", - "symbol": "env" - }, - { - "id": "eos", - "name": "EOS", - "symbol": "eos" - }, - { - "id": "eosdac", - "name": "eosDAC", - "symbol": "eosdac" - }, - { - "id": "eosforce", - "name": "EOSForce", - "symbol": "eosc" - }, - { - "id": "epep", - "name": "Epep", - "symbol": "epep" - }, - { - "id": "epicbots", - "name": "EPICBOTS", - "symbol": "epic" - }, - { - "id": "epic-cash", - "name": "Epic Cash", - "symbol": "epic" - }, - { - "id": "epic-league", - "name": "Epic League", - "symbol": "epl" - }, - { - "id": "epics-token", - "name": "Epics Token", - "symbol": "epct" - }, - { - "id": "epiko", - "name": "Epiko", - "symbol": "epiko" - }, - { - "id": "epik-prime", - "name": "Epik Prime", - "symbol": "epik" - }, - { - "id": "epik-protocol", - "name": "EpiK Protocol", - "symbol": "aiepk" - }, - { - "id": "epillo", - "name": "Epillo", - "symbol": "epillo" - }, - { - "id": "epoch-island", - "name": "Epoch Island", - "symbol": "epoch" - }, - { - "id": "eq9", - "name": "Equals9", - "symbol": "eq9" - }, - { - "id": "eqifi", - "name": "EQIFi", - "symbol": "eqx" - }, - { - "id": "equalizer", - "name": "Equalizer", - "symbol": "eqz" - }, - { - "id": "equalizer-base", - "name": "Equalizer (BASE)", - "symbol": "scale" - }, - { - "id": "equalizer-dex", - "name": "Equalizer DEX", - "symbol": "equal" - }, - { - "id": "equation", - "name": "Equation", - "symbol": "equ" - }, - { - "id": "equilibre", - "name": "Equilibre", - "symbol": "vara" - }, - { - "id": "equilibria-finance", - "name": "Equilibria Finance", - "symbol": "eqb" - }, - { - "id": "equilibria-finance-ependle", - "name": "Equilibria Finance ePENDLE", - "symbol": "ependle" - }, - { - "id": "equilibrium", - "name": "Equilibrium Games", - "symbol": "eq" - }, - { - "id": "equilibrium-eosdt", - "name": "Equilibrium EOSDT", - "symbol": "eosdt" - }, - { - "id": "equilibrium-exchange", - "name": "Equilibrium Exchange", - "symbol": "edx" - }, - { - "id": "equilibrium-token", - "name": "Equilibrium", - "symbol": "eq" - }, - { - "id": "equinox-ecosystem", - "name": "Equinox Ecosystem", - "symbol": "nox" - }, - { - "id": "equitypay", - "name": "EquityPay", - "symbol": "eqpay" - }, - { - "id": "era7", - "name": "Era7", - "symbol": "era" - }, - { - "id": "eraape", - "name": "EraApe", - "symbol": "eape" - }, - { - "id": "e-radix", - "name": "e-Radix", - "symbol": "exrd" - }, - { - "id": "era-name-service", - "name": "Era Name Service", - "symbol": "era" - }, - { - "id": "era-swap-token", - "name": "Era Swap", - "symbol": "es" - }, - { - "id": "ergo", - "name": "Ergo", - "symbol": "erg" - }, - { - "id": "ergone", - "name": "ErgOne", - "symbol": "ergone" - }, - { - "id": "ergopad", - "name": "Ergopad", - "symbol": "ergopad" - }, - { - "id": "eris-amplified-huahua", - "name": "Eris Amplified HUAHUA", - "symbol": "amphuahua" - }, - { - "id": "eris-amplified-juno", - "name": "Eris Amplified JUNO", - "symbol": "ampjuno" - }, - { - "id": "eris-amplified-luna", - "name": "Eris Amplified Luna", - "symbol": "ampluna" - }, - { - "id": "eris-amplified-mnta", - "name": "Eris Amplified MNTA", - "symbol": "ampmnta" - }, - { - "id": "eris-amplified-osmo", - "name": "Eris amplified OSMO", - "symbol": "amposmo" - }, - { - "id": "eris-amplified-whale", - "name": "Eris Amplified WHALE", - "symbol": "ampwhale" - }, - { - "id": "eris-staked-kuji", - "name": "Eris Staked Kuji", - "symbol": "ampkuji" - }, - { - "id": "eris-staked-mnta", - "name": "Eris Staked Mnta", - "symbol": "ampmnta" - }, - { - "id": "error404", - "name": "ERROR404", - "symbol": "pnf" - }, - { - "id": "error-404", - "name": "Error 404", - "symbol": "$err" - }, - { - "id": "ertha", - "name": "Ertha", - "symbol": "ertha" - }, - { - "id": "erth-point", - "name": "Erth Point", - "symbol": "erth" - }, - { - "id": "esab", - "name": "ESAB", - "symbol": "$esab" - }, - { - "id": "esco-coin", - "name": "Esco Coin", - "symbol": "esco" - }, - { - "id": "escoin-token", - "name": "Escoin", - "symbol": "elg" - }, - { - "id": "escrowed-illuvium-2", - "name": "Escrowed Illuvium 2", - "symbol": "silv2" - }, - { - "id": "escrowed-lbr", - "name": "Escrowed LBR", - "symbol": "eslbr" - }, - { - "id": "escrowed-prf", - "name": "escrowed PRF", - "symbol": "esprf" - }, - { - "id": "esg", - "name": "ESG", - "symbol": "esg" - }, - { - "id": "esg-chain", - "name": "ESG Chain", - "symbol": "esgc" - }, - { - "id": "eska", - "name": "Eska", - "symbol": "esk" - }, - { - "id": "eskisehir-fan-token", - "name": "Eski\u015fehir Fan Token", - "symbol": "eses" - }, - { - "id": "espento", - "name": "Espento", - "symbol": "spent" - }, - { - "id": "espento-usd", - "name": "Espento USD", - "symbol": "eusd" - }, - { - "id": "espl-arena", - "name": "ESPL Arena", - "symbol": "arena" - }, - { - "id": "esport", - "name": "Esport", - "symbol": "espt" - }, - { - "id": "esporte-clube-bahia-fan-token", - "name": "Esporte Clube Bahia Fan Token", - "symbol": "bahia" - }, - { - "id": "espresso-bot", - "name": "Espresso Bot", - "symbol": "espr" - }, - { - "id": "essentia", - "name": "Essentia", - "symbol": "ess" - }, - { - "id": "estatex", - "name": "EstateX", - "symbol": "esx" - }, - { - "id": "etcpow", - "name": "ETCPOW", - "symbol": "etcpow" - }, - { - "id": "eternal-ai", - "name": "Eternal AI", - "symbol": "mind" - }, - { - "id": "eternalflow", - "name": "EternalFlow", - "symbol": "eft" - }, - { - "id": "eternity-glory-token", - "name": "Eternity GLORY Token", - "symbol": "$glory" - }, - { - "id": "etf-rocks", - "name": "ETF Rocks", - "symbol": "etf" - }, - { - "id": "etfsol2024", - "name": "ETFSOL2024", - "symbol": "etf" - }, - { - "id": "etf-the-token", - "name": "ETF The Token", - "symbol": "etf" - }, - { - "id": "etgm-ordinals", - "name": "ETGM (Ordinals)", - "symbol": "etgm" - }, - { - "id": "eth-2-0", - "name": "ETH 2.0", - "symbol": "eth 2.0" - }, - { - "id": "eth2-staking-by-poolx", - "name": "Eth 2.0 Staking by Pool-X", - "symbol": "eth2" - }, - { - "id": "eth-2x-flexible-leverage-index", - "name": "Index Coop - ETH 2x Flexible Leverage Index", - "symbol": "eth2x-fli" - }, - { - "id": "eth3s", - "name": "ETH3S", - "symbol": "eth3s" - }, - { - "id": "etha-lend", - "name": "ETHA Lend", - "symbol": "etha" - }, - { - "id": "ethane", - "name": "Ethane", - "symbol": "c2h6" - }, - { - "id": "ethax", - "name": "ETHAX", - "symbol": "ethax" - }, - { - "id": "eth-coin-mori-finance", - "name": "ETH Coin", - "symbol": "ethc" - }, - { - "id": "ethdown", - "name": "ETHDOWN", - "symbol": "ethdown" - }, - { - "id": "ethena", - "name": "Ethena", - "symbol": "ena" - }, - { - "id": "ethena-staked-usde", - "name": "Ethena Staked USDe", - "symbol": "susde" - }, - { - "id": "ethena-usde", - "name": "Ethena USDe", - "symbol": "usde" - }, - { - "id": "ether-1", - "name": "Etho Protocol", - "symbol": "etho" - }, - { - "id": "etherdoge", - "name": "EtherDoge", - "symbol": "edoge" - }, - { - "id": "ethereans", - "name": "Ethereans", - "symbol": "os" - }, - { - "id": "etherempires", - "name": "Etherempires", - "symbol": "ete" - }, - { - "id": "ethereum", - "name": "Ethereum", - "symbol": "eth" - }, - { - "id": "ethereum-classic", - "name": "Ethereum Classic", - "symbol": "etc" - }, - { - "id": "ethereum-express", - "name": "Ethereum Express", - "symbol": "ete" - }, - { - "id": "ethereumfair", - "name": "DisChain", - "symbol": "dis" - }, - { - "id": "ethereum-gold-2", - "name": "Ethereum Gold", - "symbol": "ethg" - }, - { - "id": "ethereum-inu", - "name": "Ethereum Inu", - "symbol": "ethinu" - }, - { - "id": "ethereummax", - "name": "EthereumMax", - "symbol": "emax" - }, - { - "id": "ethereum-message-service", - "name": "Ethereum Message Service", - "symbol": "ems" - }, - { - "id": "ethereum-meta", - "name": "Ethereum Meta", - "symbol": "ethm" - }, - { - "id": "ethereum-name-service", - "name": "Ethereum Name Service", - "symbol": "ens" - }, - { - "id": "ethereum-overnight", - "name": "Ethereum+ (Overnight)", - "symbol": "eth+" - }, - { - "id": "ethereum-pow-iou", - "name": "EthereumPoW", - "symbol": "ethw" - }, - { - "id": "ethereum-push-notification-service", - "name": "Push Protocol", - "symbol": "push" - }, - { - "id": "ethereum-reserve-dollar-usde", - "name": "Ethereum Reserve Dollar USDE", - "symbol": "usde" - }, - { - "id": "ethereum-volatility-index-token", - "name": "Ethereum Volatility Index Token", - "symbol": "ethv" - }, - { - "id": "ethereum-wormhole", - "name": "Ethereum (Wormhole)", - "symbol": "eth" - }, - { - "id": "ethereumx", - "name": "EthereumX", - "symbol": "etx" - }, - { - "id": "ether-fi", - "name": "Ether.fi", - "symbol": "ethfi" - }, - { - "id": "ether-fi-staked-eth", - "name": "ether.fi Staked ETH", - "symbol": "eeth" - }, - { - "id": "ethergem", - "name": "EtherGem", - "symbol": "egem" - }, - { - "id": "etherisc", - "name": "Etherisc DIP", - "symbol": "dip" - }, - { - "id": "etherland", - "name": "Etherland", - "symbol": "eland" - }, - { - "id": "etherlite-2", - "name": "EtherLite", - "symbol": "etl" - }, - { - "id": "ethermon", - "name": "Ethermon", - "symbol": "emon" - }, - { - "id": "ethernal-finance", - "name": "Ethernal Finance", - "symbol": "ethfin" - }, - { - "id": "ethernexus", - "name": "EtherNexus", - "symbol": "enxs" - }, - { - "id": "ethernity-chain", - "name": "Ethernity Chain", - "symbol": "ern" - }, - { - "id": "ethernity-cloud", - "name": "Ethernity Cloud", - "symbol": "ecld" - }, - { - "id": "ether-orb", - "name": "Ether ORB", - "symbol": "orb" - }, - { - "id": "etherparty", - "name": "Etherparty", - "symbol": "fuel" - }, - { - "id": "etherpets", - "name": "Etherpets", - "symbol": "epets" - }, - { - "id": "etherpos", - "name": "EtherPoS", - "symbol": "etpos" - }, - { - "id": "etherscape", - "name": "Etherscape", - "symbol": "scape" - }, - { - "id": "ether-wars", - "name": "Ether Wars", - "symbol": "war" - }, - { - "id": "ethetf", - "name": "ETHETF", - "symbol": "ethetf" - }, - { - "id": "eth-fan-token", - "name": "ETH Fan Token Ecosystem", - "symbol": "eft" - }, - { - "id": "ethforestai", - "name": "ETHforestAI", - "symbol": "ethfai" - }, - { - "id": "ethichub", - "name": "Ethix", - "symbol": "ethix" - }, - { - "id": "ethlas", - "name": "Ethlas", - "symbol": "els" - }, - { - "id": "ethlend", - "name": "Aave [OLD]", - "symbol": "lend" - }, - { - "id": "ethos", - "name": "Voyager VGX", - "symbol": "vgx" - }, - { - "id": "ethos-2", - "name": "Ethos", - "symbol": "3th" - }, - { - "id": "ethos-reserve-note", - "name": "Ethos Reserve Note", - "symbol": "ern" - }, - { - "id": "ethpad", - "name": "ETHPad", - "symbol": "ethpad" - }, - { - "id": "ethrix", - "name": "Ethrix", - "symbol": "etx" - }, - { - "id": "eth-rock-erc404", - "name": "EtherRock404", - "symbol": "$rock" - }, - { - "id": "ethscriptions", - "name": "Ethscriptions", - "symbol": "eths" - }, - { - "id": "eth-stable-mori-finance", - "name": "ETH Stable", - "symbol": "eths" - }, - { - "id": "ethtez", - "name": "ETHtez", - "symbol": "ethtz" - }, - { - "id": "ethup", - "name": "ETHUP", - "symbol": "ethup" - }, - { - "id": "etica", - "name": "Etica", - "symbol": "eti" - }, - { - "id": "etuktuk", - "name": "eTukTuk", - "symbol": "tuk" - }, - { - "id": "etwinfinity", - "name": "ETWInfinity", - "symbol": "etw" - }, - { - "id": "euler", - "name": "Euler", - "symbol": "eul" - }, - { - "id": "euno", - "name": "EUNO", - "symbol": "euno" - }, - { - "id": "eurc-wormhole", - "name": "EURC (Wormhole)", - "symbol": "eurc" - }, - { - "id": "eurk", - "name": "EURK", - "symbol": "eurk" - }, - { - "id": "euro3", - "name": "EURO3", - "symbol": "euro3" - }, - { - "id": "euro-coin", - "name": "EURC", - "symbol": "eurc" - }, - { - "id": "eurocoinpay", - "name": "EurocoinToken", - "symbol": "ecte" - }, - { - "id": "euro-coinvertible", - "name": "Euro Coinvertible", - "symbol": "eur-c" - }, - { - "id": "euroe-stablecoin", - "name": "EUROe Stablecoin", - "symbol": "euroe" - }, - { - "id": "eusd-27a558b0-8b5b-4225-a614-63539da936f4", - "name": "eUSD (OLD)", - "symbol": "eusd" - }, - { - "id": "eusd-new", - "name": "eUSD", - "symbol": "eusd" - }, - { - "id": "evadore", - "name": "Evadore", - "symbol": "eva" - }, - { - "id": "evai-2", - "name": "Evai", - "symbol": "ev" - }, - { - "id": "evanesco-network", - "name": "Evanesco Network", - "symbol": "eva" - }, - { - "id": "evany", - "name": "EVANY", - "symbol": "evy" - }, - { - "id": "eve", - "name": "EVE", - "symbol": "eve the cat" - }, - { - "id": "eve-ai", - "name": "Eve AI", - "symbol": "eveai" - }, - { - "id": "evedo", - "name": "Evedo", - "symbol": "eved" - }, - { - "id": "eve-exchange", - "name": "EVE", - "symbol": "eve" - }, - { - "id": "eventsx", - "name": "EventsX", - "symbol": "evex" - }, - { - "id": "everdome", - "name": "Everdome", - "symbol": "dome" - }, - { - "id": "evereth", - "name": "EverETH Reflect", - "symbol": "evereth" - }, - { - "id": "evereth-2", - "name": "EverETH", - "symbol": "eeth" - }, - { - "id": "everex", - "name": "Everex", - "symbol": "evx" - }, - { - "id": "everflow-token", - "name": "Everflow Token", - "symbol": "eft" - }, - { - "id": "evergrowcoin", - "name": "EverGrow Coin", - "symbol": "egc" - }, - { - "id": "everid", - "name": "Everest", - "symbol": "id" - }, - { - "id": "everipedia", - "name": "IQ", - "symbol": "iq" - }, - { - "id": "everlodge", - "name": "Everlodge", - "symbol": "eldg" - }, - { - "id": "evermoon-erc", - "name": "EverMoon ERC", - "symbol": "evermoon" - }, - { - "id": "evermoon-sol", - "name": "EVERMOON SOL", - "symbol": "evermoon" - }, - { - "id": "evernode", - "name": "Evernode", - "symbol": "evr" - }, - { - "id": "everreflect", - "name": "EverReflect", - "symbol": "evrf" - }, - { - "id": "everrise", - "name": "EverRise", - "symbol": "rise" - }, - { - "id": "everrise-sol", - "name": "EverRise SOL", - "symbol": "rise" - }, - { - "id": "everscale", - "name": "Everscale", - "symbol": "ever" - }, - { - "id": "ever-sol", - "name": "Ever Sol", - "symbol": "ever" - }, - { - "id": "everton-fan-token", - "name": "Everton Fan Token", - "symbol": "efc" - }, - { - "id": "everybody", - "name": "Everybody", - "symbol": "hold" - }, - { - "id": "everycoin", - "name": "EveryCoin", - "symbol": "evy" - }, - { - "id": "every-game", - "name": "Every Game", - "symbol": "egame" - }, - { - "id": "everyworld", - "name": "Everyworld", - "symbol": "every" - }, - { - "id": "evil-pepe", - "name": "Evil Pepe", - "symbol": "evilpepe" - }, - { - "id": "evmos", - "name": "Evmos", - "symbol": "evmos" - }, - { - "id": "evmos-domains", - "name": "Evmos Domains", - "symbol": "evd" - }, - { - "id": "evoload", - "name": "Evoload", - "symbol": "evld" - }, - { - "id": "evolva", - "name": "Evolva", - "symbol": "eva" - }, - { - "id": "evolve", - "name": "Evolve", - "symbol": "$evol" - }, - { - "id": "evoverses", - "name": "EvoVerses", - "symbol": "evo" - }, - { - "id": "evrynet", - "name": "Evrynet", - "symbol": "evry" - }, - { - "id": "evulus", - "name": "Evulus", - "symbol": "evu" - }, - { - "id": "exa", - "name": "Exactly Token", - "symbol": "exa" - }, - { - "id": "exactly-op", - "name": "Exactly Optimism", - "symbol": "exaop" - }, - { - "id": "exactly-usdc", - "name": "Exactly USD Coin", - "symbol": "exausdc" - }, - { - "id": "exactly-wbtc", - "name": "Exactly WBTC", - "symbol": "exawbtc" - }, - { - "id": "exactly-weth", - "name": "Exactly Wrapped Ether", - "symbol": "exaweth" - }, - { - "id": "exactly-wsteth", - "name": "Exactly Wrapped stETH", - "symbol": "exawsteth" - }, - { - "id": "exatech", - "name": "Exatech", - "symbol": "ext" - }, - { - "id": "excalibur", - "name": "Excalibur", - "symbol": "exc" - }, - { - "id": "excelon", - "name": "Excelon", - "symbol": "xlon" - }, - { - "id": "exchangecoin", - "name": "ExchangeCoin", - "symbol": "excc" - }, - { - "id": "exchange-genesis-ethlas-medium", - "name": "Exchange Genesis Ethlas Medium", - "symbol": "xgem" - }, - { - "id": "exciting-japan-coin", - "name": "eXciting Japan Coin", - "symbol": "xjp" - }, - { - "id": "exeedme", - "name": "Exeedme", - "symbol": "xed" - }, - { - "id": "exgo", - "name": "Exgoland", - "symbol": "exgo" - }, - { - "id": "exmo-coin", - "name": "EXMO Coin", - "symbol": "exm" - }, - { - "id": "exnetwork-token", - "name": "ExNetwork", - "symbol": "exnt" - }, - { - "id": "exohood", - "name": "Exohood", - "symbol": "exo" - }, - { - "id": "exorde", - "name": "Exorde", - "symbol": "exd" - }, - { - "id": "exosama-network", - "name": "Moonsama", - "symbol": "sama" - }, - { - "id": "expanse", - "name": "Expanse", - "symbol": "exp" - }, - { - "id": "experience-chain", - "name": "eXPerience Chain", - "symbol": "xpc" - }, - { - "id": "experty-wisdom-token", - "name": "Experty Wisdom", - "symbol": "wis" - }, - { - "id": "exponential-capital-2", - "name": "Exponential Capital", - "symbol": "expo" - }, - { - "id": "export-mortos-platform", - "name": "Export Motors Platform", - "symbol": "emp" - }, - { - "id": "extradna", - "name": "extraDNA", - "symbol": "xdna" - }, - { - "id": "extra-finance", - "name": "Extra Finance", - "symbol": "extra" - }, - { - "id": "extreme", - "name": "Extreme", - "symbol": "xtrm" - }, - { - "id": "extropic-ai", - "name": "Extropic AI", - "symbol": "extropic" - }, - { - "id": "exverse", - "name": "Exverse", - "symbol": "exvg" - }, - { - "id": "exynos-protocol", - "name": "Exynos Protocol", - "symbol": "xyn" - }, - { - "id": "eyebot", - "name": "Eyebot", - "symbol": "eyebot" - }, - { - "id": "eye-earn", - "name": "Smilek", - "symbol": "smilek" - }, - { - "id": "eyes-protocol", - "name": "EYES Protocol", - "symbol": "eyes" - }, - { - "id": "eyeverse", - "name": "Eyeverse", - "symbol": "eye" - }, - { - "id": "ezillion", - "name": "Ezillion", - "symbol": "ezi" - }, - { - "id": "ezkalibur", - "name": "eZKalibur", - "symbol": "sword" - }, - { - "id": "ez-pepe", - "name": "EZ Pepe", - "symbol": "ez" - }, - { - "id": "ezswap-protocol", - "name": "EZswap Protocol", - "symbol": "ezswap" - }, - { - "id": "ezzy-game-2", - "name": "EZZY Game", - "symbol": "gezy" - }, - { - "id": "fable-of-the-dragon", - "name": "Fable Of The Dragon", - "symbol": "tyrant" - }, - { - "id": "fabric", - "name": "Fabric", - "symbol": "fab" - }, - { - "id": "fabs", - "name": "Fabs", - "symbol": "fabs" - }, - { - "id": "fabwelt", - "name": "Fabwelt", - "symbol": "welt" - }, - { - "id": "facebook-tokenized-stock-defichain", - "name": "Facebook Tokenized Stock Defichain", - "symbol": "dfb" - }, - { - "id": "facedao", - "name": "FaceDAO", - "symbol": "face" - }, - { - "id": "facet", - "name": "FACET", - "symbol": "facet" - }, - { - "id": "fact0rn", - "name": "Fact0rn", - "symbol": "fact" - }, - { - "id": "factor", - "name": "FactorDAO", - "symbol": "fctr" - }, - { - "id": "facts", - "name": "FACTS", - "symbol": "bkc" - }, - { - "id": "fade", - "name": "Fade", - "symbol": "fade" - }, - { - "id": "fafy-token", - "name": "Fafy Token", - "symbol": "fafy" - }, - { - "id": "fair-berc20", - "name": "Fair BERC20", - "symbol": "berc" - }, - { - "id": "fairerc20", - "name": "FairERC20", - "symbol": "ferc" - }, - { - "id": "fairlight", - "name": "FairLight", - "symbol": "fcdp" - }, - { - "id": "fairspin", - "name": "FairSpin", - "symbol": "tfs" - }, - { - "id": "fairum", - "name": "Fairum", - "symbol": "fai" - }, - { - "id": "faith-tribe", - "name": "Faith Tribe", - "symbol": "ftrb" - }, - { - "id": "falcon-nine", - "name": "Falcon Nine", - "symbol": "f9" - }, - { - "id": "falcon-token", - "name": "Falcon Project", - "symbol": "fnt" - }, - { - "id": "fame-ai", - "name": "FAME AI", - "symbol": "$fmc" - }, - { - "id": "fame-mma", - "name": "Fame MMA", - "symbol": "fame" - }, - { - "id": "fame-reward-plus", - "name": "Fame Reward Plus", - "symbol": "frp" - }, - { - "id": "family-2", - "name": "Family", - "symbol": "fam" - }, - { - "id": "family-guy", - "name": "Family Guy", - "symbol": "guy" - }, - { - "id": "family-over-everything", - "name": "Family Over Everything", - "symbol": "foe" - }, - { - "id": "famous-fox-federation", - "name": "Famous Fox Federation", - "symbol": "foxy" - }, - { - "id": "famous-fox-federation-floor-index", - "name": "Famous Fox Federation Floor Index", - "symbol": "foxes" - }, - { - "id": "fanadise", - "name": "Fanadise", - "symbol": "fan" - }, - { - "id": "fanbase", - "name": "Fanbase", - "symbol": "wfnb" - }, - { - "id": "fanc", - "name": "fanC", - "symbol": "fanc" - }, - { - "id": "fancy-games", - "name": "Fancy Games", - "symbol": "fnc" - }, - { - "id": "fandomdao", - "name": "Fandomdao", - "symbol": "fand" - }, - { - "id": "fanfury", - "name": "FURY", - "symbol": "fury" - }, - { - "id": "fang-token", - "name": "FANG", - "symbol": "fang" - }, - { - "id": "fanstime", - "name": "FansTime", - "symbol": "fti" - }, - { - "id": "fantacoin", - "name": "FANTACOIN", - "symbol": "ftc" - }, - { - "id": "fantaverse", - "name": "Fantaverse", - "symbol": "ut" - }, - { - "id": "fan-token", - "name": "Film.io", - "symbol": "fan" - }, - { - "id": "fantom", - "name": "Fantom", - "symbol": "ftm" - }, - { - "id": "fantom-doge", - "name": "Fantom Doge", - "symbol": "rip" - }, - { - "id": "fantomgo", - "name": "OnGo", - "symbol": "ftg" - }, - { - "id": "fantom-libero-financial", - "name": "Fantom Libero Financial", - "symbol": "flibero" - }, - { - "id": "fantom-maker", - "name": "Fantom Maker", - "symbol": "fame" - }, - { - "id": "fantom-money-market", - "name": "Fantom Money Market", - "symbol": "fbux" - }, - { - "id": "fantom-oasis", - "name": "Fantom Oasis", - "symbol": "ftmo" - }, - { - "id": "fantomsonicinu", - "name": "Fantomsonicinu", - "symbol": "fsonic" - }, - { - "id": "fantomstarter", - "name": "FantomStarter", - "symbol": "fs" - }, - { - "id": "fantom-usd", - "name": "Fantom USD", - "symbol": "fusd" - }, - { - "id": "fantom-velocimeter", - "name": "Fantom Velocimeter", - "symbol": "fvm" - }, - { - "id": "fanzee-token", - "name": "Fanzee Token", - "symbol": "fnz" - }, - { - "id": "faraland", - "name": "FaraLand", - "symbol": "fara" - }, - { - "id": "farcana", - "name": "FARCANA", - "symbol": "far" - }, - { - "id": "farlaunch", - "name": "FarLaunch", - "symbol": "far" - }, - { - "id": "farmbot", - "name": "FarmBot", - "symbol": "farm" - }, - { - "id": "farmer-friends", - "name": "Farmer Friends", - "symbol": "frens" - }, - { - "id": "farmers-only", - "name": "FoxSwap", - "symbol": "fox" - }, - { - "id": "farmers-world-wood", - "name": "Farmers World Wood", - "symbol": "fww" - }, - { - "id": "farmland-protocol", - "name": "Farmland Protocol", - "symbol": "far" - }, - { - "id": "farmsent", - "name": "Farmsent", - "symbol": "farms" - }, - { - "id": "fart-coin", - "name": "FART COIN", - "symbol": "frtc" - }, - { - "id": "fastlane", - "name": "Fastlane", - "symbol": "lane" - }, - { - "id": "fastswap-bsc-2", - "name": "Fastswap (BSC)", - "symbol": "fast" - }, - { - "id": "fasttoken", - "name": "Fasttoken", - "symbol": "ftn" - }, - { - "id": "fatality-coin", - "name": "Fatality Coin", - "symbol": "fatality" - }, - { - "id": "fat-cat", - "name": "FAT CAT", - "symbol": "fatcat" - }, - { - "id": "fat-cat-2", - "name": "Fat Cat", - "symbol": "fcat" - }, - { - "id": "fathom", - "name": "Fathom", - "symbol": "$fathom" - }, - { - "id": "fathom-dollar", - "name": "Fathom Dollar", - "symbol": "fxd" - }, - { - "id": "fathom-protocol", - "name": "Fathom Protocol", - "symbol": "fthm" - }, - { - "id": "fatih-karagumruk-sk-fan-token", - "name": "Fatih Karag\u00fcmr\u00fck SK Fan Token", - "symbol": "fksk" - }, - { - "id": "favor", - "name": "Favor", - "symbol": "favr" - }, - { - "id": "faya", - "name": "FAYA", - "symbol": "faya" - }, - { - "id": "fayda-games", - "name": "Fayda Games", - "symbol": "fayd" - }, - { - "id": "fbomb", - "name": "Fantom Bomb", - "symbol": "bomb" - }, - { - "id": "fc-barcelona-fan-token", - "name": "FC Barcelona Fan Token", - "symbol": "bar" - }, - { - "id": "fc-porto", - "name": "FC Porto", - "symbol": "porto" - }, - { - "id": "fcr-coin", - "name": "FCR Coin", - "symbol": "fcr" - }, - { - "id": "fc-sion-fan-token", - "name": "FC Sion Fan Token", - "symbol": "sion" - }, - { - "id": "fcuk", - "name": "FCUK", - "symbol": "fcuk" - }, - { - "id": "fear", - "name": "FEAR", - "symbol": "fear" - }, - { - "id": "feathercoin", - "name": "Feathercoin", - "symbol": "ftc" - }, - { - "id": "federal-ai", - "name": "Federal AI", - "symbol": "fedai" - }, - { - "id": "federal-gold-coin", - "name": "Federal Gold Coin", - "symbol": "fgc" - }, - { - "id": "fedoracoin", - "name": "Fedoracoin", - "symbol": "tips" - }, - { - "id": "feeder-finance", - "name": "Feeder Finance", - "symbol": "feed" - }, - { - "id": "feed-on-acf-game", - "name": "FEED on ACF Game", - "symbol": "feed" - }, - { - "id": "feels-good-man", - "name": "Feels Good Man", - "symbol": "good" - }, - { - "id": "feg-bsc", - "name": "FEG BSC", - "symbol": "feg" - }, - { - "id": "feg-token", - "name": "FEG (OLD)", - "symbol": "feg" - }, - { - "id": "feg-token-2", - "name": "FEG ETH", - "symbol": "feg" - }, - { - "id": "feg-token-bsc", - "name": "FEG BSC (OLD)", - "symbol": "feg" - }, - { - "id": "feichang-niu", - "name": "Feichang Niu", - "symbol": "fcn" - }, - { - "id": "feisty-doge-nft", - "name": "Feisty Doge NFT", - "symbol": "nfd" - }, - { - "id": "fei-usd", - "name": "Fei USD", - "symbol": "fei" - }, - { - "id": "felicette-the-space-cat", - "name": "felicette the space cat", - "symbol": "felicette" - }, - { - "id": "felix", - "name": "Felix", - "symbol": "flx" - }, - { - "id": "felix-2", - "name": "FELIX", - "symbol": "felix" - }, - { - "id": "felix-the-lazer-cat", - "name": "Felix the lazer cat", - "symbol": "$peow" - }, - { - "id": "fellaz", - "name": "Fellaz", - "symbol": "flz" - }, - { - "id": "fenerbahce-token", - "name": "Fenerbah\u00e7e", - "symbol": "fb" - }, - { - "id": "fenglvziv2", - "name": "FengLvZiV2", - "symbol": "fenglvziv2" - }, - { - "id": "fentanyl-dragon", - "name": "Fentanyl Dragon", - "symbol": "fentanyl" - }, - { - "id": "ferma", - "name": "Ferma", - "symbol": "ferma" - }, - { - "id": "ferret-ai", - "name": "Ferret AI", - "symbol": "ferret" - }, - { - "id": "ferro", - "name": "Ferro", - "symbol": "fer" - }, - { - "id": "ferrum-network", - "name": "Ferrum Network", - "symbol": "frm" - }, - { - "id": "ferscoin", - "name": "ferscoin", - "symbol": "fr" - }, - { - "id": "fetch-ai", - "name": "Fetch.ai", - "symbol": "fet" - }, - { - "id": "feyorra", - "name": "Feyorra", - "symbol": "fey" - }, - { - "id": "fgdswap", - "name": "FGDSwap", - "symbol": "fgds" - }, - { - "id": "fiat24-chf", - "name": "Fiat24 CHF", - "symbol": "chf24" - }, - { - "id": "fiat24-eur", - "name": "Fiat24 EUR", - "symbol": "eur24" - }, - { - "id": "fiat24-usd", - "name": "Fiat24 USD", - "symbol": "usd24" - }, - { - "id": "fibonacci", - "name": "Fibonacci", - "symbol": "fibo" - }, - { - "id": "fibos", - "name": "FIBOS", - "symbol": "fo" - }, - { - "id": "fibo-token", - "name": "FibSwap DEX", - "symbol": "fibo" - }, - { - "id": "fidance", - "name": "Fidance", - "symbol": "fdc" - }, - { - "id": "fidelis", - "name": "FIDELIS", - "symbol": "fdls" - }, - { - "id": "fideum", - "name": "Fideum", - "symbol": "fi" - }, - { - "id": "fidira", - "name": "Fidira", - "symbol": "fid" - }, - { - "id": "fido", - "name": "Fido", - "symbol": "fido" - }, - { - "id": "fidu", - "name": "Fidu", - "symbol": "fidu" - }, - { - "id": "fief", - "name": "Fief", - "symbol": "fief" - }, - { - "id": "fierdragon", - "name": "FierDragon", - "symbol": "fierdragon" - }, - { - "id": "fiero", - "name": "Fiero", - "symbol": "fiero" - }, - { - "id": "fifi", - "name": "FIFI", - "symbol": "fifi" - }, - { - "id": "fight-of-the-ages", - "name": "Fight Of The Ages", - "symbol": "fota" - }, - { - "id": "fight-win-ai", - "name": "Fight Win AI", - "symbol": "fwin-ai" - }, - { - "id": "figments-club", - "name": "Figments Club", - "symbol": "figma" - }, - { - "id": "figure-ai", - "name": "FIGURE AI", - "symbol": "fai" - }, - { - "id": "figure-dao", - "name": "Figure DAO", - "symbol": "fdao" - }, - { - "id": "filda", - "name": "Filda", - "symbol": "filda" - }, - { - "id": "filecoin", - "name": "Filecoin", - "symbol": "fil" - }, - { - "id": "filecoin-standard-full-hashrate", - "name": "Filecoin Standard Full Hashrate", - "symbol": "sfil" - }, - { - "id": "fileshare-platform", - "name": "Fileshare Platform", - "symbol": "fsc" - }, - { - "id": "filestar", - "name": "FileStar", - "symbol": "star" - }, - { - "id": "filipcoin", - "name": "Filipcoin", - "symbol": "fcp" - }, - { - "id": "filmcredits", - "name": "FILMCredits", - "symbol": "film" - }, - { - "id": "fimarkcoin-com", - "name": "Fimarkcoin.com", - "symbol": "fmc" - }, - { - "id": "fina", - "name": "Fina.cash", - "symbol": "fina" - }, - { - "id": "final-frontier", - "name": "Final Frontier", - "symbol": "frnt" - }, - { - "id": "finance-ai", - "name": "Finance AI", - "symbol": "financeai" - }, - { - "id": "finance-blocks", - "name": "Finance Blocks", - "symbol": "fbx" - }, - { - "id": "finance-vote", - "name": "Finance Vote", - "symbol": "fvt" - }, - { - "id": "financie-token", - "name": "Financie Token", - "symbol": "fnct" - }, - { - "id": "finblox", - "name": "Finblox", - "symbol": "fbx" - }, - { - "id": "finceptor-token", - "name": "Finceptor", - "symbol": "finc" - }, - { - "id": "find-check", - "name": "DYOR Coin", - "symbol": "dyor" - }, - { - "id": "findora", - "name": "Fractal", - "symbol": "fra" - }, - { - "id": "fine", - "name": "FINE", - "symbol": "fine" - }, - { - "id": "finedog", - "name": "FineDog", - "symbol": "finedog" - }, - { - "id": "finexbox-token", - "name": "Finexbox", - "symbol": "fnb" - }, - { - "id": "finger-blast", - "name": "Finger Blast", - "symbol": "finger" - }, - { - "id": "fingerprints", - "name": "FingerprintsDAO", - "symbol": "prints" - }, - { - "id": "finminity", - "name": "Finminity", - "symbol": "fmt" - }, - { - "id": "fins-token", - "name": "Fins", - "symbol": "fins" - }, - { - "id": "fintradao", - "name": "FintraDao", - "symbol": "fdc" - }, - { - "id": "fintrux", - "name": "FintruX", - "symbol": "ftx" - }, - { - "id": "finx", - "name": "FINX", - "symbol": "finx" - }, - { - "id": "finxflo", - "name": "FINXFLO", - "symbol": "fxf" - }, - { - "id": "fio-protocol", - "name": "FIO Protocol", - "symbol": "fio" - }, - { - "id": "fira", - "name": "FIRA", - "symbol": "fira" - }, - { - "id": "fira-cronos", - "name": "Defira (Cronos)", - "symbol": "fira" - }, - { - "id": "fireants", - "name": "FireAnts", - "symbol": "ants" - }, - { - "id": "fireball-2", - "name": "FireBall", - "symbol": "fire" - }, - { - "id": "firebot", - "name": "FireBot", - "symbol": "fbx" - }, - { - "id": "firebot-2", - "name": "FireBot", - "symbol": "firebot" - }, - { - "id": "firepot-finance", - "name": "Firepot Finance", - "symbol": "hott" - }, - { - "id": "fire-protocol", - "name": "Fire Protocol", - "symbol": "fire" - }, - { - "id": "firestarter", - "name": "FireStarter", - "symbol": "flame" - }, - { - "id": "firmachain", - "name": "Firmachain", - "symbol": "fct" - }, - { - "id": "first-digital-usd", - "name": "First Digital USD", - "symbol": "fdusd" - }, - { - "id": "first-grok-ai", - "name": "First GROK AI", - "symbol": "grok" - }, - { - "id": "firsthare", - "name": "FirstHare", - "symbol": "firsthare" - }, - { - "id": "firulais-wallet-token", - "name": "Firulais Wallet", - "symbol": "fiwt" - }, - { - "id": "fisco", - "name": "FISCO Coin", - "symbol": "fscc" - }, - { - "id": "fish-crypto", - "name": "Fish Crypto", - "symbol": "fico" - }, - { - "id": "fishing-tuna", - "name": "Fishing Tuna", - "symbol": "tuna" - }, - { - "id": "fishkoin", - "name": "Fishkoin", - "symbol": "koin" - }, - { - "id": "fishy", - "name": "$FISHY", - "symbol": "$fishy" - }, - { - "id": "fistbump", - "name": "Fistbump", - "symbol": "fist" - }, - { - "id": "fitmint", - "name": "Fitmint", - "symbol": "fitt" - }, - { - "id": "fitzen", - "name": "FitZen", - "symbol": "fitz" - }, - { - "id": "fiwb-doginals", - "name": "FIWB (DRC-20)", - "symbol": "fiwb" - }, - { - "id": "fix00", - "name": "Fix00", - "symbol": "fix00" - }, - { - "id": "fjord-foundry", - "name": "Fjord Foundry", - "symbol": "fjo" - }, - { - "id": "fkuinu", - "name": "FKUINU", - "symbol": "fkuinu" - }, - { - "id": "flack-exchange", - "name": "Flack Exchange", - "symbol": "flack" - }, - { - "id": "flag-coin", - "name": "Flag Coin", - "symbol": "flag" - }, - { - "id": "flair-dex", - "name": "Flair Dex", - "symbol": "fldx" - }, - { - "id": "flame-2", - "name": "Flame", - "symbol": "flame" - }, - { - "id": "flamengo-fan-token", - "name": "Flamengo Fan Token", - "symbol": "mengo" - }, - { - "id": "flame-protocol", - "name": "Flame Protocol", - "symbol": "flame" - }, - { - "id": "flamingghost", - "name": "FlamingGhost", - "symbol": "fghst" - }, - { - "id": "flamingo-finance", - "name": "Flamingo Finance", - "symbol": "flm" - }, - { - "id": "flap", - "name": "FLAP", - "symbol": "flap" - }, - { - "id": "flappybee", - "name": "Flappybee", - "symbol": "beet" - }, - { - "id": "flappy-bird-evolution", - "name": "Flappy Bird Evolution", - "symbol": "fevo" - }, - { - "id": "flappymoonbird", - "name": "FlappyMoonbird", - "symbol": "$fmb" - }, - { - "id": "flare-finance", - "name": "Flare Finance", - "symbol": "exfi" - }, - { - "id": "flarefox", - "name": "FlareFox", - "symbol": "flx" - }, - { - "id": "flare-networks", - "name": "Flare", - "symbol": "flr" - }, - { - "id": "flare-token", - "name": "Flare Token", - "symbol": "1flr" - }, - { - "id": "flash-3-0", - "name": "Flash 3.0", - "symbol": "flash" - }, - { - "id": "flashdash", - "name": "Flashdash", - "symbol": "flashdash" - }, - { - "id": "flashpad-token", - "name": "Flashpad Token", - "symbol": "flash" - }, - { - "id": "flash-protocol", - "name": "Flash Protocol", - "symbol": "flash" - }, - { - "id": "flash-stake", - "name": "Flashstake", - "symbol": "flash" - }, - { - "id": "flash-technologies", - "name": "FTT Token", - "symbol": "ftt" - }, - { - "id": "flatqube", - "name": "FlatQube", - "symbol": "qube" - }, - { - "id": "fleamint", - "name": "FleaMint", - "symbol": "flmc" - }, - { - "id": "flexbot", - "name": "FlexBot", - "symbol": "flex" - }, - { - "id": "flex-coin", - "name": "FLEX Coin", - "symbol": "flex" - }, - { - "id": "flexgpu", - "name": "FlexGPU", - "symbol": "fgpu" - }, - { - "id": "flexmeme", - "name": "FlexMeme", - "symbol": "flex" - }, - { - "id": "flex-usd", - "name": "flexUSD", - "symbol": "flexusd" - }, - { - "id": "flightclupcoin", - "name": "FlightClupcoin", - "symbol": "flight" - }, - { - "id": "flits", - "name": "Flits", - "symbol": "fls" - }, - { - "id": "float-protocol", - "name": "Float Protocol", - "symbol": "bank" - }, - { - "id": "floki", - "name": "FLOKI", - "symbol": "floki" - }, - { - "id": "flokibonk", - "name": "FlokiBonk", - "symbol": "flobo" - }, - { - "id": "flokiburn", - "name": "FlokiBurn", - "symbol": "flokiburn" - }, - { - "id": "floki-cash", - "name": "Floki Cash", - "symbol": "flokicash" - }, - { - "id": "floki-ceo", - "name": "FLOKI CEO", - "symbol": "flokiceo" - }, - { - "id": "floki-ceo-coin", - "name": "Floki CEO Coin", - "symbol": "fcc" - }, - { - "id": "flokidash", - "name": "FlokiDash", - "symbol": "flokidash" - }, - { - "id": "flokifi", - "name": "FlokiFi", - "symbol": "flokifi" - }, - { - "id": "flokifork", - "name": "FlokiFork", - "symbol": "fork" - }, - { - "id": "floki-rocket", - "name": "Floki Rocket", - "symbol": "rloki" - }, - { - "id": "flokis", - "name": "Flokis", - "symbol": "flokis" - }, - { - "id": "flokisanta", - "name": "FlokiSanta", - "symbol": "flokis" - }, - { - "id": "floki-santa", - "name": "Floki Santa", - "symbol": "flokisanta" - }, - { - "id": "floki-shiba-pepe-ceo", - "name": "FLOKI SHIBA PEPE CEO", - "symbol": "3ceo" - }, - { - "id": "flokita", - "name": "Flokita", - "symbol": "flokita" - }, - { - "id": "flokiter-ai", - "name": "FlokiTer", - "symbol": "fai" - }, - { - "id": "flokiwifhat", - "name": "Flokiwifhat", - "symbol": "floki" - }, - { - "id": "flonk", - "name": "Flonk", - "symbol": "flonk" - }, - { - "id": "floof", - "name": "FLOOF", - "symbol": "floof" - }, - { - "id": "floop", - "name": "Floop", - "symbol": "floop" - }, - { - "id": "floor-cheese-burger", - "name": "Floor Cheese Burger", - "symbol": "flrbrg" - }, - { - "id": "floordao-v2", - "name": "FloorDAO", - "symbol": "floor" - }, - { - "id": "flooring-lab-credit", - "name": "Floor Protocol", - "symbol": "flc" - }, - { - "id": "flooring-protocol-azuki", - "name": "FP \u03bcAzuki", - "symbol": "uazuki" - }, - { - "id": "flooring-protocol-micro0n1force", - "name": "FP \u03bc0N1Force", - "symbol": "u0n1" - }, - { - "id": "flooring-protocol-microbeanz", - "name": "FP \u03bcBeanz", - "symbol": "ubeanz" - }, - { - "id": "flooring-protocol-microboredapekennelclub", - "name": "FP \u03bcBoredApeKennelClub", - "symbol": "ubakc" - }, - { - "id": "flooring-protocol-microboredapeyachtclub", - "name": "FP \u03bcBoredApeYachtClub", - "symbol": "ubayc" - }, - { - "id": "flooring-protocol-microcaptainz", - "name": "FP \u03bcCaptainz", - "symbol": "ucaptainz" - }, - { - "id": "flooring-protocol-microclonex", - "name": "FP \u03bcCloneX", - "symbol": "uclonex" - }, - { - "id": "flooring-protocol-microcoolcats", - "name": "FP \u03bcCoolCats", - "symbol": "ucool" - }, - { - "id": "flooring-protocol-microdegods", - "name": "FP \u03bcDeGods", - "symbol": "udegods" - }, - { - "id": "flooring-protocol-microdoodle", - "name": "FP \u03bcDoodle", - "symbol": "udoodle" - }, - { - "id": "flooring-protocol-microelemental", - "name": "FP \u03bcElemental", - "symbol": "uelem" - }, - { - "id": "flooring-protocol-microjeergirl", - "name": "FP \u03bcJeerGirl", - "symbol": "\u03bcjeergirl" - }, - { - "id": "flooring-protocol-microlilpudgys", - "name": "FP \u03bcLilPudgys", - "symbol": "ulp" - }, - { - "id": "flooring-protocol-micromeebits", - "name": "FP \u03bcMeebits", - "symbol": "u\u2687" - }, - { - "id": "flooring-protocol-micromfers", - "name": "FP \u03bcMfers", - "symbol": "umfer" - }, - { - "id": "flooring-protocol-micromilady", - "name": "FP \u03bcMilady", - "symbol": "umil" - }, - { - "id": "flooring-protocol-micromoonbirds", - "name": "FP \u03bcMoonBirds", - "symbol": "umoonbirds" - }, - { - "id": "flooring-protocol-micronakamigos", - "name": "FP \u03bcNakamigos", - "symbol": "unkmgs" - }, - { - "id": "flooring-protocol-microotatoz", - "name": "FP \u03bcPotatoz", - "symbol": "upotatoz" - }, - { - "id": "flooring-protocol-microotherdeed", - "name": "FP \u03bcOtherdeed", - "symbol": "uothr" - }, - { - "id": "flooring-protocol-micropudgypenguins", - "name": "FP \u03bcPudgyPenguins", - "symbol": "uppg" - }, - { - "id": "flooring-protocol-microsappyseals", - "name": "FP \u03bcSappySeals", - "symbol": "usaps" - }, - { - "id": "flooring-protocol-microworldofwomen", - "name": "FP \u03bcWorldOfWomen", - "symbol": "uwow" - }, - { - "id": "flooring-protocol-microy00ts", - "name": "FP \u03bcY00ts", - "symbol": "uy00ts" - }, - { - "id": "flooring-protocol-mutantapeyachtclub", - "name": "FP \u03bcMutantApeYachtClub", - "symbol": "umayc" - }, - { - "id": "floppa-cat", - "name": "Floppa Cat", - "symbol": "floppa" - }, - { - "id": "florachain-yield-token", - "name": "FloraChain", - "symbol": "fyt" - }, - { - "id": "florence-finance-medici", - "name": "Florence Finance Medici", - "symbol": "ffm" - }, - { - "id": "florin", - "name": "Florin", - "symbol": "xfl" - }, - { - "id": "flork-bnb", - "name": "Flork-BNB", - "symbol": "flork" - }, - { - "id": "flourishing-ai-token", - "name": "Flourishing AI", - "symbol": "ai" - }, - { - "id": "flovatar-dust", - "name": "Flovatar Dust", - "symbol": "fdust" - }, - { - "id": "flovi-inu", - "name": "Flovi Inu", - "symbol": "flovi" - }, - { - "id": "flow", - "name": "Flow", - "symbol": "flow" - }, - { - "id": "flowchaincoin", - "name": "Flowchain", - "symbol": "flc" - }, - { - "id": "flower", - "name": "Flower", - "symbol": "flow" - }, - { - "id": "flowmatic", - "name": "Flowmatic", - "symbol": "fm" - }, - { - "id": "flowx-finance", - "name": "FlowX Finance", - "symbol": "flx" - }, - { - "id": "floxypay", - "name": "Floxypay", - "symbol": "fxy" - }, - { - "id": "floyx-new", - "name": "Floyx", - "symbol": "floyx" - }, - { - "id": "fluence-2", - "name": "Fluence", - "symbol": "flt" - }, - { - "id": "fluffy-coin", - "name": "Fluffy Coin", - "symbol": "fluf" - }, - { - "id": "fluid", - "name": "FluidAI", - "symbol": "fld" - }, - { - "id": "fluid-2", - "name": "Fluid", - "symbol": "fluid" - }, - { - "id": "fluid-dai", - "name": "Fluid DAI", - "symbol": "fdai" - }, - { - "id": "fluid-frax", - "name": "Fluid FRAX", - "symbol": "ffrax" - }, - { - "id": "fluidity", - "name": "Fluidity", - "symbol": "fly" - }, - { - "id": "fluidtokens", - "name": "FluidTokens", - "symbol": "fldt" - }, - { - "id": "fluid-tusd", - "name": "Fluid TUSD", - "symbol": "ftusd" - }, - { - "id": "fluid-usdc", - "name": "Fluid USDC", - "symbol": "fusdc" - }, - { - "id": "fluid-usdt", - "name": "Fluid USDT", - "symbol": "fusdt" - }, - { - "id": "fluminense-fc-fan-token", - "name": "Fluminense FC Fan Token", - "symbol": "flu" - }, - { - "id": "flurry", - "name": "Flurry Finance", - "symbol": "flurry" - }, - { - "id": "flute", - "name": "Flute", - "symbol": "flut" - }, - { - "id": "flux", - "name": "Datamine FLUX", - "symbol": "flux" - }, - { - "id": "fluxbot", - "name": "Fluxbot", - "symbol": "fluxb" - }, - { - "id": "flux-dai", - "name": "Flux DAI", - "symbol": "fdai" - }, - { - "id": "flux-frax", - "name": "Flux FRAX", - "symbol": "ffrax" - }, - { - "id": "flux-point-studios-shards", - "name": "Flux Point Studios SHARDS", - "symbol": "shards" - }, - { - "id": "flux-protocol", - "name": "Flux Protocol", - "symbol": "flux" - }, - { - "id": "flux-token", - "name": "Flux Protocol", - "symbol": "flx" - }, - { - "id": "flux-usdc", - "name": "Flux USDC", - "symbol": "fusdc" - }, - { - "id": "flux-usdt", - "name": "Flux USDT", - "symbol": "fusdt" - }, - { - "id": "flycoin-fly", - "name": "Flycoin FLY", - "symbol": "fly" - }, - { - "id": "flying-avocado-cat", - "name": "Flying Avocado Cat", - "symbol": "fac" - }, - { - "id": "flypme", - "name": "FlypMe", - "symbol": "fyp" - }, - { - "id": "fncy", - "name": "FNCY", - "symbol": "fncy" - }, - { - "id": "fnkcom", - "name": "Fnk.com", - "symbol": "fnk" - }, - { - "id": "foam-protocol", - "name": "FOAM", - "symbol": "foam" - }, - { - "id": "foc", - "name": "FOC", - "symbol": "foc" - }, - { - "id": "fodl-finance", - "name": "Fodl Finance", - "symbol": "fodl" - }, - { - "id": "fofar", - "name": "Fofar", - "symbol": "fofar" - }, - { - "id": "fofo-token", - "name": "FOFO Token", - "symbol": "fofo" - }, - { - "id": "fognet", - "name": "FOGnet", - "symbol": "fog" - }, - { - "id": "foho-coin", - "name": "Foho Coin", - "symbol": "foho" - }, - { - "id": "fold", - "name": "Fold", - "symbol": "$fld" - }, - { - "id": "follow-token", - "name": "Alpha Impact", - "symbol": "folo" - }, - { - "id": "fomo-2", - "name": "FOMO", - "symbol": "fomo" - }, - { - "id": "fomo-base", - "name": "FOMO Base", - "symbol": "fomo" - }, - { - "id": "fomo-eth", - "name": "Fomo Eth", - "symbol": "fomo" - }, - { - "id": "fomofi", - "name": "FomoFi", - "symbol": "fomo" - }, - { - "id": "fomo-inu", - "name": "Fomo Inu", - "symbol": "finu" - }, - { - "id": "fomosfi", - "name": "FomosFi", - "symbol": "fomos" - }, - { - "id": "fone", - "name": "Fone", - "symbol": "fone" - }, - { - "id": "fonsmartchain", - "name": "FONSmartChain", - "symbol": "fon" - }, - { - "id": "fonzy", - "name": "Fonzy", - "symbol": "fonzy" - }, - { - "id": "food", - "name": "Food", - "symbol": "food" - }, - { - "id": "food-bank", - "name": "Food Bank", - "symbol": "food" - }, - { - "id": "foodchain-global", - "name": "FoodChain Global", - "symbol": "food" - }, - { - "id": "food-token-2", - "name": "Food Token", - "symbol": "food" - }, - { - "id": "foolbull", - "name": "FoolBull", - "symbol": "foolbull" - }, - { - "id": "foom", - "name": "Foom", - "symbol": "foom" - }, - { - "id": "football-at-alphaverse", - "name": "Football at AlphaVerse", - "symbol": "fav" - }, - { - "id": "football-coin", - "name": "Football Coin", - "symbol": "xfc" - }, - { - "id": "footballfanapp", - "name": "FanCoin\u00ae", - "symbol": "fnc" - }, - { - "id": "footballstars", - "name": "FootballStars", - "symbol": "fts" - }, - { - "id": "football-world-community", - "name": "Football World Community", - "symbol": "fwc" - }, - { - "id": "foox-ordinals", - "name": "Foox (Ordinals)", - "symbol": "foox" - }, - { - "id": "forbidden-fruit-energy", - "name": "Forbidden Fruit Energy", - "symbol": "ffe" - }, - { - "id": "force-2", - "name": "Force", - "symbol": "frc" - }, - { - "id": "force-bridge-usdc", - "name": "Bridged USD Coin (Force Bridge)", - "symbol": "usdc" - }, - { - "id": "forcefi", - "name": "Forcefi", - "symbol": "forc" - }, - { - "id": "force-protocol", - "name": "ForTube", - "symbol": "for" - }, - { - "id": "forefront", - "name": "Forefront", - "symbol": "ff" - }, - { - "id": "fore-protocol", - "name": "FORE Protocol", - "symbol": "fore" - }, - { - "id": "forest-knight", - "name": "Forest Knight", - "symbol": "knight" - }, - { - "id": "forestry", - "name": "Forestry", - "symbol": "fry" - }, - { - "id": "forever-aid-token", - "name": "Forever Aid Token", - "symbol": "foat" - }, - { - "id": "forever-burn", - "name": "Forever Burn", - "symbol": "fburn" - }, - { - "id": "forever-shiba", - "name": "FOREVER SHIBA", - "symbol": "4shiba" - }, - { - "id": "forge", - "name": "Forge", - "symbol": "forge" - }, - { - "id": "forgotten-playland", - "name": "Forgotten Playland", - "symbol": "fp" - }, - { - "id": "for-loot-and-glory", - "name": "For Loot And Glory", - "symbol": "flag" - }, - { - "id": "formation-fi", - "name": "Formation FI", - "symbol": "form" - }, - { - "id": "formula-inu", - "name": "FINU", - "symbol": "finu" - }, - { - "id": "forrealog", - "name": "ForRealOG", - "symbol": "frog" - }, - { - "id": "forta", - "name": "Forta", - "symbol": "fort" - }, - { - "id": "fort-block-games", - "name": "Fort Block Games", - "symbol": "fbg" - }, - { - "id": "fortress", - "name": "Fortress Loans", - "symbol": "fts" - }, - { - "id": "fortunafi-tokenized-short-term-u-s-treasury-bills-for-non-us-residents", - "name": "Fortunafi Tokenized Short-term U.S. Treasury Bills for Non US Residents", - "symbol": "ifbill" - }, - { - "id": "fortuna-sittard-fan-token", - "name": "Fortuna Sittard Fan Token", - "symbol": "for" - }, - { - "id": "fortunebets", - "name": "FortuneBets", - "symbol": "frt" - }, - { - "id": "fortune-bets", - "name": "Fortune Bets", - "symbol": "fortune" - }, - { - "id": "forus", - "name": "Forus", - "symbol": "fors" - }, - { - "id": "forward", - "name": "Forward", - "symbol": "forward" - }, - { - "id": "forwards-rec-bh-2024", - "name": "Forwards Rec BH-2024", - "symbol": "fjlt-b24" - }, - { - "id": "fottie", - "name": "Fottie", - "symbol": "fottie" - }, - { - "id": "fountain-protocol", - "name": "Fountain Protocol", - "symbol": "ftp" - }, - { - "id": "fourcoin", - "name": "FourCoin", - "symbol": "four" - }, - { - "id": "foxcon", - "name": "Foxcon", - "symbol": "fox" - }, - { - "id": "foxe", - "name": "FOXE", - "symbol": "foxe" - }, - { - "id": "foxfunnies", - "name": "FoxFunnies", - "symbol": "fxn" - }, - { - "id": "foxgirl", - "name": "FoxGirl", - "symbol": "foxgirl" - }, - { - "id": "foxify", - "name": "Foxify", - "symbol": "fox" - }, - { - "id": "foxs", - "name": "Foxs", - "symbol": "foxs" - }, - { - "id": "fox-trading-token", - "name": "Fox Trading", - "symbol": "foxt" - }, - { - "id": "foxy", - "name": "Foxy", - "symbol": "foxy" - }, - { - "id": "fr33-gpt", - "name": "FR33 GPT", - "symbol": "fr33" - }, - { - "id": "fractal", - "name": "Fractal", - "symbol": "fcl" - }, - { - "id": "fracton-protocol", - "name": "Fracton Protocol", - "symbol": "ft" - }, - { - "id": "fragments-of-arker", - "name": "Fragments of Arker", - "symbol": "foa" - }, - { - "id": "frakt-token", - "name": "FRAKT", - "symbol": "frkt" - }, - { - "id": "frame", - "name": "Frame", - "symbol": "frame" - }, - { - "id": "frame-token", - "name": "Frame Token", - "symbol": "frame" - }, - { - "id": "france-rev-finance", - "name": "FRANCE REV FINANCE", - "symbol": "frf" - }, - { - "id": "franklin", - "name": "Franklin", - "symbol": "fly" - }, - { - "id": "frapped-usdt", - "name": "Frapped USDT", - "symbol": "fusdt" - }, - { - "id": "frax", - "name": "Frax", - "symbol": "frax" - }, - { - "id": "frax-doge", - "name": "Frax Doge", - "symbol": "fxd" - }, - { - "id": "frax-ether", - "name": "Frax Ether", - "symbol": "frxeth" - }, - { - "id": "frax-price-index", - "name": "Frax Price Index", - "symbol": "fpi" - }, - { - "id": "frax-price-index-share", - "name": "Frax Price Index Share", - "symbol": "fpis" - }, - { - "id": "frax-share", - "name": "Frax Share", - "symbol": "fxs" - }, - { - "id": "fraxtal", - "name": "Fraxtal", - "symbol": "fxtl" - }, - { - "id": "fraxtal-bridged-frax-fraxtal", - "name": "Fraxtal Bridged FRAX (Fraxtal)", - "symbol": "frax" - }, - { - "id": "freco-coin", - "name": "Freco Coin", - "symbol": "freco" - }, - { - "id": "freddy-fazbear", - "name": "Freddy Fazbear", - "symbol": "$fred" - }, - { - "id": "fredenergy", - "name": "FRED Energy", - "symbol": "fred" - }, - { - "id": "freebnk", - "name": "FreeBnk", - "symbol": "frbk" - }, - { - "id": "freedomcoin", - "name": "Freedomcoin", - "symbol": "freed" - }, - { - "id": "freedom-coin", - "name": "FREEdom coin", - "symbol": "free" - }, - { - "id": "freedom-jobs-business", - "name": "Freedom. Jobs. Business", - "symbol": "$fjb" - }, - { - "id": "freedom-reserve", - "name": "Freedom Reserve", - "symbol": "fr" - }, - { - "id": "freela", - "name": "Freela", - "symbol": "frel" - }, - { - "id": "freerossdao", - "name": "FreeRossDAO", - "symbol": "free" - }, - { - "id": "freetrump", - "name": "FreeTrump", - "symbol": "$trump" - }, - { - "id": "freeway", - "name": "Freeway", - "symbol": "fwt" - }, - { - "id": "freicoin", - "name": "Freicoin", - "symbol": "frc" - }, - { - "id": "frenbot", - "name": "FrenBot", - "symbol": "mef" - }, - { - "id": "french-connection-finance", - "name": "Zypto Token", - "symbol": "zypto" - }, - { - "id": "frencoin-2", - "name": "Frencoin", - "symbol": "fren" - }, - { - "id": "fren-nation", - "name": "Fren Nation", - "symbol": "fren" - }, - { - "id": "frenpet", - "name": "Fren Pet", - "symbol": "fp" - }, - { - "id": "frens-coin", - "name": "Frens Coin", - "symbol": "frens" - }, - { - "id": "frenz", - "name": "FRENZ", - "symbol": "frenz" - }, - { - "id": "freqai", - "name": "FREQAI", - "symbol": "freqai" - }, - { - "id": "freth", - "name": "frETH", - "symbol": "freth" - }, - { - "id": "freyala", - "name": "GameFi Crossing", - "symbol": "xya" - }, - { - "id": "freya-the-dog", - "name": "Freya", - "symbol": "freya" - }, - { - "id": "frgx-finance", - "name": "FRGX Finance", - "symbol": "frgx" - }, - { - "id": "frictionless", - "name": "Frictionless", - "symbol": "fric" - }, - { - "id": "friend3", - "name": "Friend3", - "symbol": "f3" - }, - { - "id": "friendfi", - "name": "FriendFi", - "symbol": "ffi" - }, - { - "id": "friendspot", - "name": "FriendSpot", - "symbol": "spot" - }, - { - "id": "friends-with-benefits-network", - "name": "Friends with Benefits Network", - "symbol": "fwb" - }, - { - "id": "friends-with-benefits-pro", - "name": "Friends With Benefits Pro", - "symbol": "fwb" - }, - { - "id": "friendtech33", - "name": "FriendTech33", - "symbol": "ftw" - }, - { - "id": "friendz", - "name": "Friendz", - "symbol": "fdz" - }, - { - "id": "fringe-finance", - "name": "Fringe Finance", - "symbol": "frin" - }, - { - "id": "frog-ceo", - "name": "FROG CEO", - "symbol": "frog ceo" - }, - { - "id": "frog-chain", - "name": "Frog Chain LEAP", - "symbol": "leap" - }, - { - "id": "froge-finance", - "name": "FrogeX", - "symbol": "frogex" - }, - { - "id": "frog-frog", - "name": "Frog Frog", - "symbol": "frog" - }, - { - "id": "froggies-token-2", - "name": "Froggies", - "symbol": "frgst" - }, - { - "id": "froggy", - "name": "Froggy", - "symbol": "froggy" - }, - { - "id": "froggy-friends", - "name": "Froggy Friends", - "symbol": "tadpole" - }, - { - "id": "frogolana", - "name": "Frogolana", - "symbol": "frogo" - }, - { - "id": "frogonsol", - "name": "Frogonsol", - "symbol": "frog" - }, - { - "id": "frogswap", - "name": "FrogSwap", - "symbol": "frog" - }, - { - "id": "frogswap-2", - "name": "Frogswap", - "symbol": "frog" - }, - { - "id": "frog-wif-hat", - "name": "Frog Wif Hat", - "symbol": "fwif" - }, - { - "id": "frog-wif-peen", - "name": "Frog Wif Peen", - "symbol": "peen" - }, - { - "id": "frok-ai", - "name": "Frok.ai", - "symbol": "frok" - }, - { - "id": "fronk", - "name": "Fronk", - "symbol": "fronk" - }, - { - "id": "frontfanz-2", - "name": "FrontFanz", - "symbol": "fanx" - }, - { - "id": "frontier-token", - "name": "Frontier", - "symbol": "front" - }, - { - "id": "front-row", - "name": "Frontrow", - "symbol": "frr" - }, - { - "id": "froubot", - "name": "FrouBot", - "symbol": "frobot" - }, - { - "id": "froyo-games", - "name": "Froyo Games", - "symbol": "froyo" - }, - { - "id": "fruits", - "name": "Fruits", - "symbol": "frts" - }, - { - "id": "frutti-dino", - "name": "Frutti Dino", - "symbol": "fdt" - }, - { - "id": "fryscrypto", - "name": "FrysCrypto", - "symbol": "fry" - }, - { - "id": "fsn", - "name": "FUSION", - "symbol": "fsn" - }, - { - "id": "fsociety", - "name": "FSOCIETY", - "symbol": "fsc" - }, - { - "id": "ftails", - "name": "fTails", - "symbol": "ftails" - }, - { - "id": "ftm-guru", - "name": "ftm.guru", - "symbol": "elite" - }, - { - "id": "ftribe-fighters", - "name": "Ftribe Fighters", - "symbol": "f2c" - }, - { - "id": "ftx-token", - "name": "FTX", - "symbol": "ftt" - }, - { - "id": "ftx-users-debt", - "name": "FTX Users' Debt", - "symbol": "fud" - }, - { - "id": "fuck-pepe", - "name": "Fuck Pepe", - "symbol": "fkpepe" - }, - { - "id": "fud-the-pug", - "name": "Fud the Pug", - "symbol": "fud" - }, - { - "id": "fuel-network", - "name": "Fuel Network", - "symbol": "fuel" - }, - { - "id": "fufu", - "name": "Fufu", - "symbol": "fufu" - }, - { - "id": "fufu-token", - "name": "Fufu Token", - "symbol": "fufu" - }, - { - "id": "fujitoken", - "name": "Fuji FJT", - "symbol": "fjt" - }, - { - "id": "fulcrom", - "name": "Fulcrom", - "symbol": "ful" - }, - { - "id": "funarcade", - "name": "Funarcade", - "symbol": "fat" - }, - { - "id": "funded", - "name": "Funded", - "symbol": "funded" - }, - { - "id": "fund-of-yours", - "name": "Fund Of Yours", - "symbol": "foy" - }, - { - "id": "funfair", - "name": "FUNToken", - "symbol": "fun" - }, - { - "id": "funfi", - "name": "FunFi", - "symbol": "fnf" - }, - { - "id": "fungi", - "name": "Fungi", - "symbol": "fungi" - }, - { - "id": "fungify-token", - "name": "Fungify Token", - "symbol": "fung" - }, - { - "id": "funny-coin", - "name": "Funny Coin", - "symbol": "fuc" - }, - { - "id": "funny-money", - "name": "Funny Money", - "symbol": "fny" - }, - { - "id": "furari", - "name": "Cat Intelligence Agency", - "symbol": "cia" - }, - { - "id": "furio", - "name": "Furio", - "symbol": "$fur" - }, - { - "id": "furucombo", - "name": "Furucombo", - "symbol": "combo" - }, - { - "id": "fuse-dollar", - "name": "Fuse Dollar V3", - "symbol": "fusd" - }, - { - "id": "fusefi", - "name": "Voltage Finance", - "symbol": "volt" - }, - { - "id": "fuse-network-token", - "name": "Fuse", - "symbol": "fuse" - }, - { - "id": "fusion-ai", - "name": "Fusion Ai", - "symbol": "fusion" - }, - { - "id": "fusionbot", - "name": "FusionBot", - "symbol": "fusion" - }, - { - "id": "fusotao", - "name": "Fusotao", - "symbol": "tao" - }, - { - "id": "futurecoin", - "name": "FutureCoin", - "symbol": "future" - }, - { - "id": "futuresai", - "name": "FuturesAI", - "symbol": "fai" - }, - { - "id": "futurespl", - "name": "FutureSPL", - "symbol": "future" - }, - { - "id": "futureswap", - "name": "Futureswap", - "symbol": "fst" - }, - { - "id": "futureswap-finance", - "name": "FutureSwap Finance", - "symbol": "fs" - }, - { - "id": "future-t-i-m-e-dividend", - "name": "Future T.I.M.E Dividend", - "symbol": "future" - }, - { - "id": "futurocoin", - "name": "FuturoCoin", - "symbol": "fto" - }, - { - "id": "fuzanglong", - "name": "FuzangLong", - "symbol": "long" - }, - { - "id": "fuze-token", - "name": "FUZE", - "symbol": "fuze" - }, - { - "id": "fuzion", - "name": "Fuzion", - "symbol": "fuzn" - }, - { - "id": "fuzz-finance", - "name": "Fuzz Finance", - "symbol": "fuzz" - }, - { - "id": "fx1sports", - "name": "FX1Sports", - "symbol": "fxi" - }, - { - "id": "fxbox-io", - "name": "FxBox.io", - "symbol": "fxb" - }, - { - "id": "fx-coin", - "name": "Function X", - "symbol": "fx" - }, - { - "id": "fxdx", - "name": "FXDX", - "symbol": "fxdx" - }, - { - "id": "fxn-token", - "name": "f(x) Protocol", - "symbol": "fxn" - }, - { - "id": "f-x-protocol-fractional-eth", - "name": "f(x) Protocol Fractional ETH", - "symbol": "feth" - }, - { - "id": "f-x-protocol-fxusd", - "name": "f(x) Protocol fxUSD", - "symbol": "fxusd" - }, - { - "id": "f-x-protocol-leveraged-eth", - "name": "f(x) Protocol Leveraged ETH", - "symbol": "xeth" - }, - { - "id": "fx-rusd", - "name": "f(x) rUSD", - "symbol": "rusd" - }, - { - "id": "fx-stock-token", - "name": "FX Stock Token", - "symbol": "fxst" - }, - { - "id": "fydcoin", - "name": "FYDcoin", - "symbol": "fyd" - }, - { - "id": "fyde-treasury", - "name": "Fyde Treasury", - "symbol": "trsy" - }, - { - "id": "g999", - "name": "G999", - "symbol": "g999" - }, - { - "id": "gaga-pepe", - "name": "Gaga (Pepe)", - "symbol": "gaga" - }, - { - "id": "gagarin", - "name": "GAGARIN", - "symbol": "ggr" - }, - { - "id": "gaia-everworld", - "name": "Gaia Everworld", - "symbol": "gaia" - }, - { - "id": "gaimin", - "name": "Gaimin", - "symbol": "gmrx" - }, - { - "id": "gains", - "name": "Gains", - "symbol": "gains" - }, - { - "id": "gains-network", - "name": "Gains Network", - "symbol": "gns" - }, - { - "id": "gainspot", - "name": "GainSpot", - "symbol": "gain$" - }, - { - "id": "gaj", - "name": "Gaj Finance", - "symbol": "gaj" - }, - { - "id": "gala", - "name": "GALA", - "symbol": "gala" - }, - { - "id": "galactic-arena-the-nftverse", - "name": "Galactic Arena: The NFTverse", - "symbol": "gan" - }, - { - "id": "gala-music", - "name": "Gala Music", - "symbol": "music" - }, - { - "id": "galatasaray-fan-token", - "name": "Galatasaray Fan Token", - "symbol": "gal" - }, - { - "id": "galaxia", - "name": "Galaxia", - "symbol": "gxa" - }, - { - "id": "galaxiaverse", - "name": "GalaxiaVerse", - "symbol": "glxia" - }, - { - "id": "galaxis-token", - "name": "GALAXIS Token", - "symbol": "galaxis" - }, - { - "id": "galaxy-arena", - "name": "Galaxy Arena Metaverse", - "symbol": "esnc" - }, - { - "id": "galaxycoin", - "name": "GalaxyCoin", - "symbol": "galaxy" - }, - { - "id": "galaxy-fight-club", - "name": "Galaxy Fight Club", - "symbol": "gcoin" - }, - { - "id": "galaxy-fox", - "name": "Galaxy Fox", - "symbol": "gfox" - }, - { - "id": "galaxy-token-injective", - "name": "Galaxy Token (Injective)", - "symbol": "galaxy" - }, - { - "id": "galaxy-war", - "name": "Galaxy War", - "symbol": "gwt" - }, - { - "id": "galeon", - "name": "Galeon", - "symbol": "galeon" - }, - { - "id": "galvan", - "name": "Galvan", - "symbol": "ize" - }, - { - "id": "gam3s-gg", - "name": "GAM3S.GG", - "symbol": "g3" - }, - { - "id": "gambex", - "name": "Gambex", - "symbol": "gbe" - }, - { - "id": "gambit-2", - "name": "Gambit", - "symbol": "gambit" - }, - { - "id": "game", - "name": "Game", - "symbol": "gtc" - }, - { - "id": "game-2", - "name": "Gameluk", - "symbol": "game" - }, - { - "id": "gameai", - "name": "GameAI", - "symbol": "gat" - }, - { - "id": "gameboy", - "name": "GameBoy", - "symbol": "gboy" - }, - { - "id": "game-coin", - "name": "Game Coin", - "symbol": "gmex" - }, - { - "id": "gamecraft", - "name": "GameCraft", - "symbol": "gtc" - }, - { - "id": "gamecredits", - "name": "GameCredits", - "symbol": "game" - }, - { - "id": "gamee", - "name": "GAMEE", - "symbol": "gmee" - }, - { - "id": "gamefantasystar", - "name": "GameFantasyStar", - "symbol": "gfs" - }, - { - "id": "game-fantasy-token", - "name": "Game Fantasy", - "symbol": "gft" - }, - { - "id": "gamefi", - "name": "GameFi.org", - "symbol": "gafi" - }, - { - "id": "gameflip", - "name": "Gameflip", - "symbol": "flp" - }, - { - "id": "gamefork", - "name": "GameFork", - "symbol": "gamefork" - }, - { - "id": "gamegpt", - "name": "GameGPT", - "symbol": "duel" - }, - { - "id": "gameology", - "name": "Gameology", - "symbol": "gmy" - }, - { - "id": "gameonforge", - "name": "GameonForge", - "symbol": "gof" - }, - { - "id": "gamepass", - "name": "Gamepass", - "symbol": "gpn" - }, - { - "id": "gamepass-network", - "name": "GamePass Network", - "symbol": "gpn" - }, - { - "id": "gamer", - "name": "GAMER", - "symbol": "gmr" - }, - { - "id": "gamer-arena", - "name": "Gamer Arena", - "symbol": "gau" - }, - { - "id": "gamercoin", - "name": "GamerCoin", - "symbol": "ghx" - }, - { - "id": "gamereum", - "name": "Gamereum", - "symbol": "game" - }, - { - "id": "gamerfi", - "name": "GAMERFI", - "symbol": "gamerfi" - }, - { - "id": "gamerse", - "name": "Gamerse", - "symbol": "lfg" - }, - { - "id": "games-for-a-living", - "name": "Games for a Living", - "symbol": "gfal" - }, - { - "id": "gamespad", - "name": "GamesPad", - "symbol": "gmpd" - }, - { - "id": "gamestarter", - "name": "Gamestarter", - "symbol": "game" - }, - { - "id": "gamestation", - "name": "GameStation", - "symbol": "gamer" - }, - { - "id": "gamestop-tokenized-stock-defichain", - "name": "GameStop Tokenized Stock Defichain", - "symbol": "dgme" - }, - { - "id": "gameswap-org", - "name": "Gameswap", - "symbol": "gswap" - }, - { - "id": "gameswift", - "name": "GameSwift", - "symbol": "gswift" - }, - { - "id": "game-tournament-trophy", - "name": "Game Tournament Trophy", - "symbol": "gtt" - }, - { - "id": "game-tree", - "name": "Game Tree", - "symbol": "gtcoin" - }, - { - "id": "gamexchange", - "name": "Gamexchange", - "symbol": "gamex" - }, - { - "id": "gamezone", - "name": "GameZone", - "symbol": "gzone" - }, - { - "id": "gami", - "name": "Gami", - "symbol": "gami" - }, - { - "id": "gamia", - "name": "Gamia", - "symbol": "gia" - }, - { - "id": "gaming-stars", - "name": "Gaming Stars", - "symbol": "games" - }, - { - "id": "gamium", - "name": "Gamium", - "symbol": "gmm" - }, - { - "id": "gami-world", - "name": "GAMI World", - "symbol": "gami" - }, - { - "id": "gamma-strategies", - "name": "Gamma Strategies", - "symbol": "gamma" - }, - { - "id": "gammaswap", - "name": "GammaSwap", - "symbol": "" - }, - { - "id": "gamma-wallet", - "name": "Gamma Wallet", - "symbol": "gamma" - }, - { - "id": "gamyfi-token", - "name": "GamyFi", - "symbol": "gfx" - }, - { - "id": "gangs-rabbit", - "name": "Gangs Rabbit", - "symbol": "rabbit" - }, - { - "id": "gapcoin", - "name": "Gapcoin", - "symbol": "gap" - }, - { - "id": "garbage", - "name": "Garbage", - "symbol": "garbage" - }, - { - "id": "garbi-protocol", - "name": "Garbi Protocol", - "symbol": "grb" - }, - { - "id": "garden-2", - "name": "Garden", - "symbol": "seed" - }, - { - "id": "garfield-bsc", - "name": "Garfield (BSC)", - "symbol": "$garfield" - }, - { - "id": "gari-network", - "name": "Gari Network", - "symbol": "gari" - }, - { - "id": "garlicoin", - "name": "Garlicoin", - "symbol": "grlc" - }, - { - "id": "gary", - "name": "Gary", - "symbol": "gary" - }, - { - "id": "gas", - "name": "Gas", - "symbol": "gas" - }, - { - "id": "gaschameleon", - "name": "GasChameleon", - "symbol": "gasc" - }, - { - "id": "gascoin", - "name": "Gascoin", - "symbol": "gcn" - }, - { - "id": "gas-dao", - "name": "Gas DAO", - "symbol": "gas" - }, - { - "id": "gastrocoin", - "name": "GastroCoin", - "symbol": "gtc" - }, - { - "id": "gas-turbo", - "name": "Gas Turbo", - "symbol": "gast" - }, - { - "id": "gatechain-token", - "name": "Gate", - "symbol": "gt" - }, - { - "id": "gatenet", - "name": "GATENet", - "symbol": "gate" - }, - { - "id": "gateway-to-mars", - "name": "GATEWAY TO MARS", - "symbol": "mars" - }, - { - "id": "gather", - "name": "Gather", - "symbol": "gth" - }, - { - "id": "gatsby-inu-2", - "name": "Gatsby Inu (OLD)", - "symbol": "gatsby" - }, - { - "id": "gatsby-inu-new", - "name": "Gatsby Inu", - "symbol": "gatsby" - }, - { - "id": "gauro", - "name": "Gauro", - "symbol": "gauro" - }, - { - "id": "gauss0x", - "name": "Gauss0x", - "symbol": "gauss" - }, - { - "id": "gax-liquidity-token-reward", - "name": "GAX Liquidity Token Reward", - "symbol": "gltr" - }, - { - "id": "gay-pepe", - "name": "Gay Pepe", - "symbol": "gaypepe" - }, - { - "id": "gaziantep-fk-fan-token", - "name": "Gaziantep FK Fan Token", - "symbol": "gfk" - }, - { - "id": "gbot", - "name": "GBOT", - "symbol": "gbot" - }, - { - "id": "gccoin", - "name": "GCCOIN", - "symbol": "gcc" - }, - { - "id": "gdrt", - "name": "GDRT", - "symbol": "gdrt" - }, - { - "id": "gdx-token", - "name": "Gridex", - "symbol": "gdx" - }, - { - "id": "gearbox", - "name": "Gearbox", - "symbol": "gear" - }, - { - "id": "gecko-inu", - "name": "Gecko Inu", - "symbol": "gec" - }, - { - "id": "gecko-meme", - "name": "Gecko (Meme)", - "symbol": "gecko" - }, - { - "id": "gecoin", - "name": "Gecoin", - "symbol": "gec" - }, - { - "id": "geegoopuzzle", - "name": "Geegoopuzzle", - "symbol": "ggp" - }, - { - "id": "geeko-dex", - "name": "Geeko Dex", - "symbol": "geeko" - }, - { - "id": "geek-protocol", - "name": "Geek Protocol", - "symbol": "geek" - }, - { - "id": "geeq", - "name": "GEEQ", - "symbol": "geeq" - }, - { - "id": "gege", - "name": "Gege", - "symbol": "gege" - }, - { - "id": "geist-dai", - "name": "Geist Dai", - "symbol": "gdai" - }, - { - "id": "geist-eth", - "name": "Geist ETH", - "symbol": "geth" - }, - { - "id": "geist-ftm", - "name": "Geist FTM", - "symbol": "gftm" - }, - { - "id": "geist-fusdt", - "name": "Geist fUSDT", - "symbol": "gfusdt" - }, - { - "id": "geist-usdc", - "name": "Geist USDC", - "symbol": "gusdc" - }, - { - "id": "geist-wbtc", - "name": "Geist WBTC", - "symbol": "gwbtc" - }, - { - "id": "geke", - "name": "Geke", - "symbol": "geke" - }, - { - "id": "gekko", - "name": "GEKKO", - "symbol": "gekko" - }, - { - "id": "gelato", - "name": "Gelato", - "symbol": "gel" - }, - { - "id": "gelios", - "name": "Gelios", - "symbol": "gos" - }, - { - "id": "gem404", - "name": "Gem404", - "symbol": "gem" - }, - { - "id": "gemach", - "name": "Gemach", - "symbol": "gmac" - }, - { - "id": "gem-ai", - "name": "Gem AI", - "symbol": "gemai" - }, - { - "id": "gembox", - "name": "gembox", - "symbol": "gem" - }, - { - "id": "gemdrop", - "name": "GemDrop", - "symbol": "gem" - }, - { - "id": "gem-exchange-and-trading", - "name": "Gem Exchange and Trading", - "symbol": "gxt" - }, - { - "id": "gem-finder", - "name": "Gem Finder", - "symbol": "finder" - }, - { - "id": "gemholic", - "name": "Gemholic", - "symbol": "gems" - }, - { - "id": "gemhub", - "name": "GemHUB", - "symbol": "ghub" - }, - { - "id": "gemie", - "name": "Gemie", - "symbol": "gem" - }, - { - "id": "gemini-dollar", - "name": "Gemini Dollar", - "symbol": "gusd" - }, - { - "id": "gemlink", - "name": "GemLink", - "symbol": "glink" - }, - { - "id": "gempad", - "name": "GemPad", - "symbol": "gems" - }, - { - "id": "gems-2", - "name": "Gems", - "symbol": "gem" - }, - { - "id": "gemston", - "name": "GEMSTON", - "symbol": "gemston" - }, - { - "id": "gemswap-2", - "name": "GemSwap", - "symbol": "zgem" - }, - { - "id": "gemtools", - "name": "Gemtools", - "symbol": "gems" - }, - { - "id": "genai", - "name": "GenAi", - "symbol": "genai" - }, - { - "id": "genaro-network", - "name": "Genaro Network", - "symbol": "gnx" - }, - { - "id": "genclerbirligi-fan-token", - "name": "Gen\u00e7lerbirli\u011fi Fan Token", - "symbol": "gbsk" - }, - { - "id": "generaitiv", - "name": "Generaitiv", - "symbol": "gai" - }, - { - "id": "generational-wealth", - "name": "Generational Wealth", - "symbol": "gen" - }, - { - "id": "generational-wealth-2", - "name": "Generational Wealth", - "symbol": "wealth" - }, - { - "id": "generator", - "name": "Generator", - "symbol": "gen" - }, - { - "id": "genesislrt-restaked-eth", - "name": "GenesisLRT Restaked ETH", - "symbol": "geneth" - }, - { - "id": "genesis-shards", - "name": "Genesis Shards", - "symbol": "gs" - }, - { - "id": "genesis-wink", - "name": "Genesis Wink", - "symbol": "gwink" - }, - { - "id": "genesis-worlds", - "name": "Genesis Worlds", - "symbol": "genesis" - }, - { - "id": "genesys", - "name": "Genesys", - "symbol": "gsys" - }, - { - "id": "genesysgo-shadow", - "name": "Shadow Token", - "symbol": "shdw" - }, - { - "id": "geniebot", - "name": "GenieBot", - "symbol": "genie" - }, - { - "id": "genie-protocol", - "name": "Genie Protocol", - "symbol": "gnp" - }, - { - "id": "genit-chain", - "name": "Genit Chain", - "symbol": "gnt" - }, - { - "id": "genius", - "name": "Genius", - "symbol": "geni" - }, - { - "id": "genius-ai", - "name": "GENIUS AI", - "symbol": "gnus" - }, - { - "id": "genius-x", - "name": "Genius X", - "symbol": "gensx" - }, - { - "id": "genius-yield", - "name": "Genius Yield", - "symbol": "gens" - }, - { - "id": "geniux", - "name": "GeniuX", - "symbol": "iux" - }, - { - "id": "genix", - "name": "Genix", - "symbol": "genix" - }, - { - "id": "genomesdao", - "name": "GenomesDAO GENE", - "symbol": "$gene" - }, - { - "id": "genomesdao-genome", - "name": "GenomesDAO GENOME", - "symbol": "genome" - }, - { - "id": "genopet-ki", - "name": "Genopets KI", - "symbol": "ki" - }, - { - "id": "genopets", - "name": "Genopets", - "symbol": "gene" - }, - { - "id": "genshiro", - "name": "Genshiro", - "symbol": "gens" - }, - { - "id": "gensokishis-metaverse", - "name": "GensoKishi Metaverse", - "symbol": "mv" - }, - { - "id": "genz-token", - "name": "GENZ Token", - "symbol": "genz" - }, - { - "id": "geodb", - "name": "GeoDB", - "symbol": "geo" - }, - { - "id": "geodnet", - "name": "Geodnet", - "symbol": "geod" - }, - { - "id": "geojam", - "name": "Geojam", - "symbol": "jam" - }, - { - "id": "geoleaf", - "name": "GeoLeaf (OLD)", - "symbol": "glt" - }, - { - "id": "geoleaf-2", - "name": "GeoLeaf", - "symbol": "glt" - }, - { - "id": "geometric-energy-corporation", - "name": "Geometric Energy Corporation", - "symbol": "gec" - }, - { - "id": "geopoly", - "name": "Geopoly", - "symbol": "geo$" - }, - { - "id": "gerowallet", - "name": "GeroWallet", - "symbol": "gero" - }, - { - "id": "getaverse", - "name": "Getaverse", - "symbol": "geta" - }, - { - "id": "getkicks", - "name": "GetKicks", - "symbol": "kicks" - }, - { - "id": "get-rich-with-meme", - "name": "get rich with meme", - "symbol": "$memememe$" - }, - { - "id": "get-token", - "name": "GET Protocol", - "symbol": "get" - }, - { - "id": "geuro", - "name": "GEURO", - "symbol": "geuro" - }, - { - "id": "gexc-finance", - "name": "GEXC FINANCE", - "symbol": "gexc" - }, - { - "id": "geyser", - "name": "Geyser", - "symbol": "gysr" - }, - { - "id": "ggtkn", - "name": "GGTKN", - "symbol": "ggtkn" - }, - { - "id": "gg-token", - "name": "GG", - "symbol": "ggtk" - }, - { - "id": "gh0stc0in", - "name": "gh0stc0in", - "symbol": "ghost" - }, - { - "id": "ghacoin", - "name": "GhaCoin", - "symbol": "ghacoin" - }, - { - "id": "ghast", - "name": "Ghast", - "symbol": "gha" - }, - { - "id": "ghislaine-network", - "name": "Ghislaine Network", - "symbol": "ghsi" - }, - { - "id": "gho", - "name": "GHO", - "symbol": "gho" - }, - { - "id": "ghost", - "name": "Ghost", - "symbol": "ghost" - }, - { - "id": "ghost-by-mcafee", - "name": "Ghost", - "symbol": "ghost" - }, - { - "id": "ghostdag-org", - "name": "GhostDAG.org", - "symbol": "gdag" - }, - { - "id": "ghostkids", - "name": "GhostKids", - "symbol": "boo" - }, - { - "id": "ghostwifhat", - "name": "Ghostwifhat", - "symbol": "gif" - }, - { - "id": "ghosty", - "name": "GHOSTY", - "symbol": "ghsy" - }, - { - "id": "ghozali-404", - "name": "Ghozali 404", - "symbol": "ghzli" - }, - { - "id": "giannidoge-esport", - "name": "GianniDoge Esport", - "symbol": "gde" - }, - { - "id": "giant-mammoth", - "name": "Giant Mammoth", - "symbol": "gmmt" - }, - { - "id": "gib", - "name": "GIB", - "symbol": "$gib" - }, - { - "id": "gibx-swap", - "name": "GIBX Swap", - "symbol": "x" - }, - { - "id": "gictrade", - "name": "GICTrade", - "symbol": "gict" - }, - { - "id": "giddy", - "name": "Giddy", - "symbol": "giddy" - }, - { - "id": "gif-dao", - "name": "GIF DAO", - "symbol": "gif" - }, - { - "id": "giftedhands", - "name": "Giftedhands", - "symbol": "ghd" - }, - { - "id": "gifto", - "name": "Gifto", - "symbol": "gft" - }, - { - "id": "gify-ai", - "name": "Gify AI", - "symbol": "gify" - }, - { - "id": "giga-cat", - "name": "Giga Cat", - "symbol": "gcat" - }, - { - "id": "gigachad-2", - "name": "Gigachad", - "symbol": "giga" - }, - { - "id": "gigachadgpt", - "name": "GigaChadGPT", - "symbol": "$giga" - }, - { - "id": "gigadao", - "name": "GigaDAO", - "symbol": "gigs" - }, - { - "id": "gigantix-wallet", - "name": "Gigantix Wallet", - "symbol": "gtx" - }, - { - "id": "gigaswap", - "name": "GigaSwap", - "symbol": "giga" - }, - { - "id": "gigatoken", - "name": "GigaToken", - "symbol": "giga" - }, - { - "id": "gilgeous", - "name": "Gilgeous", - "symbol": "glg" - }, - { - "id": "ginger", - "name": "GINGER", - "symbol": "ginger" - }, - { - "id": "gingers-have-no-sol", - "name": "Gingers Have No Sol", - "symbol": "ginger" - }, - { - "id": "ginoa", - "name": "Ginoa", - "symbol": "ginoa" - }, - { - "id": "ginza-network", - "name": "Ginza Network", - "symbol": "ginza" - }, - { - "id": "gitcoin", - "name": "Gitcoin", - "symbol": "gtc" - }, - { - "id": "gitcoin-staked-eth-index", - "name": "Gitcoin Staked ETH Index", - "symbol": "gtceth" - }, - { - "id": "gitopia", - "name": "Gitopia", - "symbol": "lore" - }, - { - "id": "give-back-token", - "name": "Give Back Token", - "symbol": "gbt" - }, - { - "id": "givestation", - "name": "GiveStation", - "symbol": "gvst" - }, - { - "id": "giveth", - "name": "Giveth", - "symbol": "giv" - }, - { - "id": "give-tr-your-coq", - "name": "GIVE TR YOUR COQ", - "symbol": "gtryc" - }, - { - "id": "glacier", - "name": "Glacier", - "symbol": "glcr" - }, - { - "id": "gld-tokenized-stock-defichain", - "name": "SPDR Gold Shares Defichain", - "symbol": "dgld" - }, - { - "id": "gleec-coin", - "name": "Gleec Coin", - "symbol": "gleec" - }, - { - "id": "gleek", - "name": "GLEEK", - "symbol": "gleek" - }, - { - "id": "glend", - "name": "GLend", - "symbol": "glend" - }, - { - "id": "gli", - "name": "GLI", - "symbol": "gli" - }, - { - "id": "glide-finance", - "name": "Glide Finance", - "symbol": "glide" - }, - { - "id": "glint-coin", - "name": "Glint Coin", - "symbol": "glint" - }, - { - "id": "glitch-protocol", - "name": "Glitch Protocol", - "symbol": "glch" - }, - { - "id": "glitter-finance", - "name": "XGLI DAO Protocol", - "symbol": "xgli" - }, - { - "id": "glitzkoin", - "name": "GlitzKoin", - "symbol": "gtn" - }, - { - "id": "globalboost", - "name": "GlobalBoost", - "symbol": "bsty" - }, - { - "id": "globalchainz", - "name": "GlobalChainZ", - "symbol": "gcz" - }, - { - "id": "global-coin-research", - "name": "Global Coin Research", - "symbol": "gcr" - }, - { - "id": "global-digital-cluster-co", - "name": "Global Digital Cluster Coin", - "symbol": "gdcc" - }, - { - "id": "global-digital-content", - "name": "Global Digital Content", - "symbol": "gdc" - }, - { - "id": "global-fan-token", - "name": "Global Fan Token", - "symbol": "glft" - }, - { - "id": "global-innovation-platform", - "name": "Global Innovation Platform", - "symbol": "gip" - }, - { - "id": "global-social-chain", - "name": "Global Social Chain", - "symbol": "gsc" - }, - { - "id": "global-trading-xenocurren", - "name": "Global Trading Xenocurrency", - "symbol": "gtx" - }, - { - "id": "global-trust-coin", - "name": "Global Trust Coin", - "symbol": "gtc" - }, - { - "id": "global-virtual-coin", - "name": "Global Virtual Coin", - "symbol": "gvc" - }, - { - "id": "globe-derivative-exchange", - "name": "Globe Derivative Exchange", - "symbol": "gdt" - }, - { - "id": "globees", - "name": "Globees", - "symbol": "bee" - }, - { - "id": "globel-community", - "name": "Globel Community", - "symbol": "gc" - }, - { - "id": "globiance-exchange", - "name": "Globiance Exchange", - "symbol": "gbex" - }, - { - "id": "glo-dollar", - "name": "Glo Dollar", - "symbol": "usdglo" - }, - { - "id": "glory-token", - "name": "Glory Token", - "symbol": "glr" - }, - { - "id": "glouki", - "name": "Glouki", - "symbol": "glk" - }, - { - "id": "glow-token-8fba1e9e-5643-47b4-8fef-d0eef67af854", - "name": "Glow Token", - "symbol": "glow" - }, - { - "id": "gm", - "name": "GM", - "symbol": "gm" - }, - { - "id": "gmbl-computer-chip", - "name": "GMBL COMPUTER CHiP", - "symbol": "gmbl" - }, - { - "id": "gmbot", - "name": "GMBot", - "symbol": "gmbt" - }, - { - "id": "gmcash", - "name": "GMCash", - "symbol": "gmc" - }, - { - "id": "gmcash-share", - "name": "GMCash Share", - "symbol": "gshare" - }, - { - "id": "gmcoin-2", - "name": "GMCoin", - "symbol": "gmcoin" - }, - { - "id": "gmd-protocol", - "name": "GMD", - "symbol": "gmd" - }, - { - "id": "gme", - "name": "GME", - "symbol": "gme" - }, - { - "id": "gmeow-cat", - "name": "gmeow cat", - "symbol": "gmeow" - }, - { - "id": "gmfam", - "name": "GMFAM", - "symbol": "gmfam" - }, - { - "id": "gm-machine", - "name": "GM Machine", - "symbol": "gm" - }, - { - "id": "gmt-token", - "name": "Gomining Token", - "symbol": "gmt" - }, - { - "id": "gmusd", - "name": "gmUSD", - "symbol": "gmusd" - }, - { - "id": "gmx", - "name": "GMX", - "symbol": "gmx" - }, - { - "id": "gnd-protocol", - "name": "GND Protocol", - "symbol": "gnd" - }, - { - "id": "gnft", - "name": "GNFT", - "symbol": "gnft" - }, - { - "id": "gnome", - "name": "GenomesDAO GNOME", - "symbol": "$gnome" - }, - { - "id": "gnomeland", - "name": "GnomeLand", - "symbol": "gnome" - }, - { - "id": "gnosis", - "name": "Gnosis", - "symbol": "gno" - }, - { - "id": "gnosis-xdai-bridged-eurc-gnosis", - "name": "Gnosis Bridged EURC (Gnosis)", - "symbol": "eurc" - }, - { - "id": "gnosis-xdai-bridged-usdc-gnosis", - "name": "Gnosis xDAI Bridged USDC (Gnosis)", - "symbol": "usdc" - }, - { - "id": "gnosis-xdai-bridged-usdt-gnosis", - "name": "Gnosis xDai Bridged USDT (Gnosis)", - "symbol": "usdt" - }, - { - "id": "gny", - "name": "GNY", - "symbol": "gny" - }, - { - "id": "goal3", - "name": "zkUSD", - "symbol": "zkusd" - }, - { - "id": "goal-token", - "name": "GOAL Token", - "symbol": "goal" - }, - { - "id": "goat404", - "name": "GOAT404", - "symbol": "goat" - }, - { - "id": "goated", - "name": "GOATED", - "symbol": "goat" - }, - { - "id": "goatly-farm", - "name": "Goatly.farm", - "symbol": "gtf" - }, - { - "id": "goat-protocol", - "name": "Goat Protocol", - "symbol": "goa" - }, - { - "id": "goat-trading", - "name": "Goat Trading", - "symbol": "goat" - }, - { - "id": "goblin", - "name": "Goblin", - "symbol": "goblin" - }, - { - "id": "goblintown", - "name": "goblintown", - "symbol": "goblintown" - }, - { - "id": "gobtc", - "name": "goBTC", - "symbol": "gobtc" - }, - { - "id": "gobyte", - "name": "GoByte", - "symbol": "gbx" - }, - { - "id": "gochain", - "name": "GoChain", - "symbol": "go" - }, - { - "id": "gocharge-tech", - "name": "GoCharge Tech", - "symbol": "charged" - }, - { - "id": "gocryptome", - "name": "GoCryptoMe", - "symbol": "gcme" - }, - { - "id": "god", - "name": "God", - "symbol": "god" - }, - { - "id": "god-coin", - "name": "GOD Coin", - "symbol": "god" - }, - { - "id": "gode-chain", - "name": "Gode Chain", - "symbol": "gode" - }, - { - "id": "god-of-wealth", - "name": "God of Wealth", - "symbol": "gow39" - }, - { - "id": "gods-unchained", - "name": "Gods Unchained", - "symbol": "gods" - }, - { - "id": "godzilla", - "name": "Godzilla", - "symbol": "godz" - }, - { - "id": "goerli-eth", - "name": "Goerli ETH", - "symbol": "geth" - }, - { - "id": "goeth", - "name": "goETH", - "symbol": "goeth" - }, - { - "id": "gofitterai", - "name": "GoFitterAI", - "symbol": "fitai" - }, - { - "id": "go-fu-k-yourself", - "name": "go fu*k yourself.", - "symbol": "gfy" - }, - { - "id": "gogocoin", - "name": "GOGOcoin", - "symbol": "gogo" - }, - { - "id": "gogolcoin", - "name": "GogolCoin", - "symbol": "gol" - }, - { - "id": "gogopool", - "name": "GoGoPool", - "symbol": "ggp" - }, - { - "id": "gogopool-ggavax", - "name": "GoGoPool ggAVAX", - "symbol": "ggavax" - }, - { - "id": "gogowifcone", - "name": "gogowifcone", - "symbol": "gogo" - }, - { - "id": "going-to-the-moon", - "name": "Going To The Moon", - "symbol": "gttm" - }, - { - "id": "gojo-bsc", - "name": "Gojo BSC", - "symbol": "gojobsc" - }, - { - "id": "goku", - "name": "Goku", - "symbol": "goku" - }, - { - "id": "goku-money-gai", - "name": "Goku Money GAI", - "symbol": "gai" - }, - { - "id": "gokuswap", - "name": "Gokuswap", - "symbol": "goku" - }, - { - "id": "golcoin", - "name": "GOLCOIN", - "symbol": "golc" - }, - { - "id": "gold-2", - "name": "Gold", - "symbol": "gold" - }, - { - "id": "gold-3", - "name": "GOLD", - "symbol": "gold" - }, - { - "id": "goldcoin", - "name": "Goldcoin", - "symbol": "glc" - }, - { - "id": "golden-ball", - "name": "Golden Ball", - "symbol": "glb" - }, - { - "id": "goldenboys", - "name": "GoldenBoys", - "symbol": "gold" - }, - { - "id": "goldencoin", - "name": "GoldenCoin", - "symbol": "gld" - }, - { - "id": "golden-doge", - "name": "Golden Doge", - "symbol": "gdoge" - }, - { - "id": "golden-goose", - "name": "Golden Goose", - "symbol": "gold" - }, - { - "id": "golden-inu", - "name": "Golden Inu", - "symbol": "golden" - }, - { - "id": "golden-inu-token", - "name": "Golden Inu", - "symbol": "golden" - }, - { - "id": "golden-tiger-fund", - "name": "Golden Tiger Fund", - "symbol": "gtf" - }, - { - "id": "golden-token", - "name": "Golden", - "symbol": "gold" - }, - { - "id": "golden-zen-token", - "name": "Golden Zen Token", - "symbol": "gzt" - }, - { - "id": "goldex-token", - "name": "Goldex", - "symbol": "gldx" - }, - { - "id": "gold-fever-native-gold", - "name": "Gold Fever Native Gold", - "symbol": "ngl" - }, - { - "id": "goldfinch", - "name": "Goldfinch", - "symbol": "gfi" - }, - { - "id": "goldfinx", - "name": "GoldFinX", - "symbol": "gix" - }, - { - "id": "goldkash", - "name": "GoldKash", - "symbol": "xgk" - }, - { - "id": "goldminer", - "name": "GoldMiner", - "symbol": "gm" - }, - { - "id": "gold-pegged-coin", - "name": "Gold Pegged Coin", - "symbol": "gpc" - }, - { - "id": "goldpesa-option", - "name": "GoldPesa Option", - "symbol": "gpo" - }, - { - "id": "gold-secured-currency", - "name": "Gold Secured Currency", - "symbol": "gsx" - }, - { - "id": "gold-utility-token", - "name": "Gold Utility Token", - "symbol": "agf" - }, - { - "id": "goledo", - "name": "Goledo (OLD)", - "symbol": "gol" - }, - { - "id": "goledo-2", - "name": "Goledo", - "symbol": "gol" - }, - { - "id": "golem", - "name": "Golem", - "symbol": "glm" - }, - { - "id": "golff", - "name": "Golff", - "symbol": "gof" - }, - { - "id": "golteum", - "name": "Golteum", - "symbol": "gltm" - }, - { - "id": "gomdori", - "name": "Gomdori", - "symbol": "gomd" - }, - { - "id": "gomeat", - "name": "GoMeat", - "symbol": "gomt" - }, - { - "id": "gone", - "name": "Gone", - "symbol": "gone" - }, - { - "id": "gonfty", - "name": "GoNFTY", - "symbol": "gnfty" - }, - { - "id": "gooch", - "name": "Gooch", - "symbol": "gooch" - }, - { - "id": "goodcryptox", - "name": "goodcryptoX", - "symbol": "good" - }, - { - "id": "good-dog", - "name": "Good Dog", - "symbol": "heel" - }, - { - "id": "gooddollar", - "name": "GoodDollar", - "symbol": "$g" - }, - { - "id": "good-entry", - "name": "Good Entry", - "symbol": "good" - }, - { - "id": "good-games-guild", - "name": "Good Games Guild", - "symbol": "ggg" - }, - { - "id": "good-gensler", - "name": "Good Gensler", - "symbol": "genslr" - }, - { - "id": "goodmeme", - "name": "GoodMeme", - "symbol": "gmeme" - }, - { - "id": "good-morning-2", - "name": "Good Morning", - "symbol": "gm" - }, - { - "id": "good-old-fashioned-un-registered-security", - "name": "Good Old Fashioned Un Registered Security", - "symbol": "gofurs" - }, - { - "id": "good-person-coin", - "name": "Good Person Coin", - "symbol": "gpcx" - }, - { - "id": "gooeys", - "name": "Gooeys", - "symbol": "goo" - }, - { - "id": "goofy-inu", - "name": "Goofy Inu", - "symbol": "goofy" - }, - { - "id": "google-tokenized-stock-defichain", - "name": "Google Tokenized Stock Defichain", - "symbol": "dgoogl" - }, - { - "id": "goon", - "name": "GOON", - "symbol": "goon" - }, - { - "id": "goons-of-balatroon", - "name": "Goons of Balatroon", - "symbol": "gob" - }, - { - "id": "goose-finance", - "name": "Goose Finance", - "symbol": "egg" - }, - { - "id": "goosefx", - "name": "GooseFX", - "symbol": "gofx" - }, - { - "id": "goracle-network", - "name": "Gora", - "symbol": "gora" - }, - { - "id": "goricher", - "name": "Goricher", - "symbol": "goricher" - }, - { - "id": "gorilla", - "name": "Gorilla", - "symbol": "gorilla" - }, - { - "id": "gorilla-2", - "name": "GORILLA", - "symbol": "gorilla" - }, - { - "id": "gorilla-finance", - "name": "Gorilla Finance", - "symbol": "gorilla" - }, - { - "id": "gorilla-in-a-coupe", - "name": "Gorilla In A Coupe", - "symbol": "giac" - }, - { - "id": "gosh", - "name": "GOSH", - "symbol": "gosh" - }, - { - "id": "gotem", - "name": "gotEM", - "symbol": "gotem" - }, - { - "id": "got-guaranteed", - "name": "Got Guaranteed", - "symbol": "gotg" - }, - { - "id": "gourmetgalaxy", - "name": "Gourmet Galaxy", - "symbol": "gum" - }, - { - "id": "governance-algo", - "name": "Governance Algo", - "symbol": "galgo" - }, - { - "id": "governance-ohm", - "name": "Governance OHM", - "symbol": "gohm" - }, - { - "id": "governance-vec", - "name": "Governance VEC", - "symbol": "gvec" - }, - { - "id": "governance-xalgo", - "name": "Governance xALGO", - "symbol": "xalgo" - }, - { - "id": "governance-zil", - "name": "governance ZIL", - "symbol": "gzil" - }, - { - "id": "governor-dao", - "name": "Governor DAO", - "symbol": "gdao" - }, - { - "id": "govi", - "name": "CVI", - "symbol": "govi" - }, - { - "id": "govworld", - "name": "GovWorld", - "symbol": "gov" - }, - { - "id": "gowithmi", - "name": "GoWithMi", - "symbol": "gmat" - }, - { - "id": "gowrap", - "name": "GoWrap", - "symbol": "gwgw" - }, - { - "id": "goyoo", - "name": "GoYoo", - "symbol": "goyoo" - }, - { - "id": "goztepe-s-k-fan-token", - "name": "G\u00f6ztepe S.K. Fan Token", - "symbol": "goz" - }, - { - "id": "gp-coin", - "name": "GP Coin", - "symbol": "xgp" - }, - { - "id": "gpt-ai", - "name": "GPT AI", - "symbol": "ai" - }, - { - "id": "gptplus", - "name": "GPTPlus", - "symbol": "gptplus" - }, - { - "id": "gpt-protocol", - "name": "GPT Protocol", - "symbol": "gpt" - }, - { - "id": "gptverse", - "name": "GPTVerse", - "symbol": "gptv" - }, - { - "id": "gpubot", - "name": "GPUBot", - "symbol": "gpubot" - }, - { - "id": "gpu-inu", - "name": "GPU Inu", - "symbol": "gpuinu" - }, - { - "id": "grabcoinclub", - "name": "GrabCoinClub", - "symbol": "gc" - }, - { - "id": "grabpenny", - "name": "GrabPenny", - "symbol": "gp" - }, - { - "id": "gracy", - "name": "Gracy", - "symbol": "gracy" - }, - { - "id": "grai", - "name": "Grai", - "symbol": "grai" - }, - { - "id": "grail-inu", - "name": "Grail Inu", - "symbol": "igrail" - }, - { - "id": "gram-2", - "name": "Gram", - "symbol": "gram" - }, - { - "id": "gram-gold", - "name": "Gram Gold", - "symbol": "gramg" - }, - { - "id": "gram-platinum", - "name": "Gram Platinum", - "symbol": "gramp" - }, - { - "id": "gram-silver", - "name": "Gram Silver", - "symbol": "grams" - }, - { - "id": "granary", - "name": "Granary", - "symbol": "grain" - }, - { - "id": "grand-base", - "name": "Grand Base", - "symbol": "gb" - }, - { - "id": "grand-theft-degens", - "name": "Grand Theft Degens", - "symbol": "gtd" - }, - { - "id": "grape-2", - "name": "Grape Protocol", - "symbol": "grape" - }, - { - "id": "grape-2-2", - "name": "Grape", - "symbol": "grp" - }, - { - "id": "grape-finance", - "name": "Grape Finance", - "symbol": "grape" - }, - { - "id": "grape-governance-token", - "name": "Grape Governance Token", - "symbol": "ggt" - }, - { - "id": "graphite-protocol", - "name": "Graphite Protocol", - "symbol": "gp" - }, - { - "id": "graphlinq-protocol", - "name": "GraphLinq Chain", - "symbol": "glq" - }, - { - "id": "grave", - "name": "Grave", - "symbol": "grve" - }, - { - "id": "graviocoin", - "name": "Graviocoin", - "symbol": "gio" - }, - { - "id": "gravitas", - "name": "Gravitas", - "symbol": "gravitas" - }, - { - "id": "graviton", - "name": "Graviton", - "symbol": "grav" - }, - { - "id": "gravitron", - "name": "Gravitron", - "symbol": "gtron" - }, - { - "id": "gravity-bridge-dai", - "name": "Gravity Bridge DAI", - "symbol": "g-dai" - }, - { - "id": "gravity-bridge-usdc", - "name": "Bridged USD Coin (Gravity Bridge)", - "symbol": "g-usdc" - }, - { - "id": "gravity-finance", - "name": "Gravity Finance", - "symbol": "gfi" - }, - { - "id": "greasycex", - "name": "GreasyCEX", - "symbol": "gcx" - }, - { - "id": "great-bounty-dealer", - "name": "Great Bounty Dealer", - "symbol": "gbd" - }, - { - "id": "greelance", - "name": "Greelance", - "symbol": "$grl" - }, - { - "id": "greenart-coin", - "name": "Greenart Coin", - "symbol": "gac" - }, - { - "id": "green-beli", - "name": "Green Beli", - "symbol": "grbe" - }, - { - "id": "green-ben", - "name": "Green Ben", - "symbol": "eben" - }, - { - "id": "green-block", - "name": "Green Block", - "symbol": "gbt" - }, - { - "id": "green-block-capital", - "name": "Green Block Capital", - "symbol": "gbc" - }, - { - "id": "greendex", - "name": "GreenDex", - "symbol": "ged" - }, - { - "id": "greenenvcoalition", - "name": "GreenEnvCoalition", - "symbol": "gec" - }, - { - "id": "greenenvironmentalcoins", - "name": "GreenEnvironmentalCoins", - "symbol": "gec" - }, - { - "id": "greenercoin", - "name": "Greenercoin", - "symbol": "gnc" - }, - { - "id": "green-foundation", - "name": "Green Foundation", - "symbol": "tripx" - }, - { - "id": "greengold", - "name": "GREENGOLD", - "symbol": "$greengold" - }, - { - "id": "green-grass-hopper", - "name": "Green Grass Hopper", - "symbol": "$ggh" - }, - { - "id": "greenheart-cbd", - "name": "Greenheart CBD", - "symbol": "cbd" - }, - { - "id": "green-life-energy", - "name": "Green Life Energy", - "symbol": "gle" - }, - { - "id": "green-planet", - "name": "Green Planet", - "symbol": "gamma" - }, - { - "id": "green-satoshi-token", - "name": "STEPN Green Satoshi Token on Solana", - "symbol": "gst-sol" - }, - { - "id": "green-satoshi-token-bsc", - "name": "STEPN Green Satoshi Token on BSC", - "symbol": "gst-bsc" - }, - { - "id": "green-satoshi-token-on-eth", - "name": "STEPN Green Satoshi Token on ETH", - "symbol": "gst-eth" - }, - { - "id": "green-shiba-inu", - "name": "Green Shiba Inu", - "symbol": "ginux" - }, - { - "id": "greentrust", - "name": "GreenTrust", - "symbol": "gnt" - }, - { - "id": "greenworld", - "name": "GreenWorld", - "symbol": "gwd" - }, - { - "id": "greenzonex", - "name": "GreenZoneX", - "symbol": "gzx" - }, - { - "id": "greg", - "name": "greg", - "symbol": "greg" - }, - { - "id": "gre-labs", - "name": "GRE Labs", - "symbol": "gre" - }, - { - "id": "grelf", - "name": "GRELF", - "symbol": "grelf" - }, - { - "id": "g-revolution", - "name": "G Revolution", - "symbol": "g" - }, - { - "id": "greyhound", - "name": "Greyhound", - "symbol": "greyhound" - }, - { - "id": "gridcoin-research", - "name": "Gridcoin", - "symbol": "grc" - }, - { - "id": "grid-operating-systems", - "name": "Grid Operating Systems", - "symbol": "gos" - }, - { - "id": "griffin-art-ecosystem", - "name": "Griffin Art Ecosystem", - "symbol": "gart" - }, - { - "id": "grimace", - "name": "Grimace", - "symbol": "grimace" - }, - { - "id": "grimace-coin", - "name": "Grimace Coin", - "symbol": "grimace" - }, - { - "id": "grim-evo", - "name": "Grim EVO", - "symbol": "grim evo" - }, - { - "id": "grimoire-finance-token", - "name": "Grimoire Finance Token", - "symbol": "grim" - }, - { - "id": "grimreaper", - "name": "Grimreaper", - "symbol": "grim" - }, - { - "id": "grin", - "name": "Grin", - "symbol": "grin" - }, - { - "id": "grizzly-bot", - "name": "Grizzly Bot", - "symbol": "grizzly" - }, - { - "id": "grizzly-honey", - "name": "Grizzly Honey", - "symbol": "ghny" - }, - { - "id": "grn-grid", - "name": "GRNGrid", - "symbol": "g" - }, - { - "id": "groceryfi", - "name": "GroceryFi", - "symbol": "gfi" - }, - { - "id": "groestlcoin", - "name": "Groestlcoin", - "symbol": "grs" - }, - { - "id": "groge", - "name": "Groge", - "symbol": "groge" - }, - { - "id": "grok1-5", - "name": "Grok1.5", - "symbol": "grok1.5" - }, - { - "id": "grok-2", - "name": "Grok", - "symbol": "$grok" - }, - { - "id": "grok-2-0", - "name": "GROK 2.0", - "symbol": "grok2" - }, - { - "id": "grok2-0", - "name": "Grok2.0", - "symbol": "grok2.0" - }, - { - "id": "grok2-0-2", - "name": "GROK2.0", - "symbol": "grok2.0" - }, - { - "id": "grok-3", - "name": "Grok", - "symbol": "xai" - }, - { - "id": "grok-4", - "name": "GROK", - "symbol": "grok" - }, - { - "id": "grok-5", - "name": "GROK", - "symbol": "grok" - }, - { - "id": "grok-6", - "name": "GROK", - "symbol": "grok" - }, - { - "id": "grok-bank", - "name": "Grok Bank", - "symbol": "grokbank" - }, - { - "id": "grokbot", - "name": "GROKBOT", - "symbol": "grokbot" - }, - { - "id": "grokboy", - "name": "grokboy", - "symbol": "grokboy" - }, - { - "id": "grok-bull", - "name": "Grok Bull", - "symbol": "grokbull" - }, - { - "id": "grok-by-grok-com", - "name": "Grok by Gr\u014dk.com", - "symbol": "gr\u014dk" - }, - { - "id": "grok-cat", - "name": "Grok Cat", - "symbol": "grokcat" - }, - { - "id": "grok-ceo", - "name": "GROK CEO", - "symbol": "grokceo" - }, - { - "id": "grok-chain", - "name": "Grok Chain", - "symbol": "groc" - }, - { - "id": "grok-codes", - "name": "Grok Codes", - "symbol": "grok" - }, - { - "id": "grok-community", - "name": "Grok Community", - "symbol": "grok cm" - }, - { - "id": "grokdoge", - "name": "GrokDoge", - "symbol": "grokdoge" - }, - { - "id": "grokdogex", - "name": "GrokDogeX", - "symbol": "gdx" - }, - { - "id": "grok-elo", - "name": "Grok Elo", - "symbol": "gelo" - }, - { - "id": "grok-girl", - "name": "Grok Girl", - "symbol": "grokgirl" - }, - { - "id": "grokgrow", - "name": "GrokGrow", - "symbol": "grokgrow" - }, - { - "id": "grok-heroes", - "name": "GROK heroes", - "symbol": "grokheroes" - }, - { - "id": "grok-inu", - "name": "Grok Inu", - "symbol": "grokinu" - }, - { - "id": "grokking", - "name": "GrokKing", - "symbol": "grokking" - }, - { - "id": "grokky", - "name": "GroKKy", - "symbol": "grokky" - }, - { - "id": "grok-moon", - "name": "Grok Moon", - "symbol": "grokmoon" - }, - { - "id": "grok-queen", - "name": "Grok Queen", - "symbol": "grokqueen" - }, - { - "id": "groktether", - "name": "GrokTether", - "symbol": "groktether" - }, - { - "id": "grokx", - "name": "GROKX", - "symbol": "grokx" - }, - { - "id": "grok-x", - "name": "Grok X", - "symbol": "grok x" - }, - { - "id": "grok-x-ai", - "name": "Grok X Ai", - "symbol": "grok x ai" - }, - { - "id": "grom", - "name": "GROM", - "symbol": "gr" - }, - { - "id": "groooook", - "name": "Groooook", - "symbol": "groooook" - }, - { - "id": "groq", - "name": "GROQ", - "symbol": "groq" - }, - { - "id": "grove", - "name": "GroveCoin", - "symbol": "grv" - }, - { - "id": "grovecoin-gburn", - "name": "GBURN", - "symbol": "gburn" - }, - { - "id": "grumpy", - "name": "Grumpy", - "symbol": "grum" - }, - { - "id": "grumpy-cat-2c33af8d-87a8-4154-b004-0686166bdc45", - "name": "Grumpy Cat", - "symbol": "grumpycat" - }, - { - "id": "gscarab", - "name": "GScarab", - "symbol": "gscarab" - }, - { - "id": "gsenetwork", - "name": "GSENetwork", - "symbol": "gse" - }, - { - "id": "gstcoin", - "name": "GSTCOIN", - "symbol": "gst" - }, - { - "id": "gta-token", - "name": "GTA Token", - "symbol": "gta" - }, - { - "id": "gt-protocol", - "name": "GT-Protocol", - "symbol": "gtai" - }, - { - "id": "gtrok", - "name": "GTROK", - "symbol": "gtrok" - }, - { - "id": "gu", - "name": "Kugle GU", - "symbol": "gu" - }, - { - "id": "guacamole", - "name": "Guacamole", - "symbol": "guac" - }, - { - "id": "guapcoin", - "name": "Guapcoin", - "symbol": "guap" - }, - { - "id": "guarantee", - "name": "Guarantee", - "symbol": "tee" - }, - { - "id": "guardai", - "name": "GuardAI", - "symbol": "guardai" - }, - { - "id": "guarded-ether", - "name": "Guarded Ether", - "symbol": "geth" - }, - { - "id": "guardian-ai", - "name": "Guardian AI", - "symbol": "guardian" - }, - { - "id": "guardian-token", - "name": "Guardian GUARD", - "symbol": "guard" - }, - { - "id": "guccipepe", - "name": "GucciPepe", - "symbol": "guccipepe" - }, - { - "id": "guessonchain", - "name": "GuessOnChain", - "symbol": "guess" - }, - { - "id": "gui-inu", - "name": "Gui Inu", - "symbol": "gui" - }, - { - "id": "guildfi", - "name": "GuildFi", - "symbol": "gf" - }, - { - "id": "guild-of-guardians", - "name": "Guild of Guardians", - "symbol": "gog" - }, - { - "id": "guiser", - "name": "Guiser", - "symbol": "guise" - }, - { - "id": "gulfcoin-2", - "name": "GulfCoin", - "symbol": "gulf" - }, - { - "id": "gumball-machine", - "name": "Gumball Machine", - "symbol": "gum" - }, - { - "id": "gumbovile", - "name": "gumBOvile", - "symbol": "bo" - }, - { - "id": "gunstar-metaverse", - "name": "Gunstar Metaverse", - "symbol": "gsts" - }, - { - "id": "gursonavax", - "name": "GursOnAVAX", - "symbol": "gurs" - }, - { - "id": "gus", - "name": "GUS", - "symbol": "gus" - }, - { - "id": "gusd-token-49eca0d2-b7ae-4a58-bef7-2310688658f2", - "name": "GUSD Token (Gaura)", - "symbol": "gusd" - }, - { - "id": "guys", - "name": "Hole Guys", - "symbol": "hole" - }, - { - "id": "guzzler", - "name": "Guzzler", - "symbol": "gzlr" - }, - { - "id": "gvs", - "name": "GVS", - "symbol": "gvs" - }, - { - "id": "gxchain", - "name": "GXChain", - "symbol": "gxc" - }, - { - "id": "gyen", - "name": "GYEN", - "symbol": "gyen" - }, - { - "id": "gym-ai", - "name": "Gym AI", - "symbol": "gym ai" - }, - { - "id": "gym-network", - "name": "Gym Network", - "symbol": "gymnet" - }, - { - "id": "gyoshi", - "name": "GYOSHI", - "symbol": "gyoshi" - }, - { - "id": "gyoza", - "name": "Gyoza", - "symbol": "gyoza" - }, - { - "id": "gyroscope", - "name": "Gyroscope", - "symbol": "gyfi" - }, - { - "id": "gyroscope-gyd", - "name": "Gyroscope GYD", - "symbol": "gyd" - }, - { - "id": "gyrowin", - "name": "Gyrowin", - "symbol": "gw" - }, - { - "id": "h2finance", - "name": "H2Finance", - "symbol": "yfih2" - }, - { - "id": "h2o-dao", - "name": "H2O Dao", - "symbol": "h2o" - }, - { - "id": "h2o-securities", - "name": "H2O Securities", - "symbol": "h2on" - }, - { - "id": "habibi", - "name": "Habibi", - "symbol": "habibi" - }, - { - "id": "hacash", - "name": "Hacash", - "symbol": "hac" - }, - { - "id": "hacash-diamond", - "name": "Hacash Diamond", - "symbol": "hacd" - }, - { - "id": "hachi", - "name": "Hachi", - "symbol": "hachi" - }, - { - "id": "hachiko-era", - "name": "Hachiko Inu", - "symbol": "haki" - }, - { - "id": "hachiko-injective", - "name": "Hachik\u014d (Injective)", - "symbol": "hachi" - }, - { - "id": "hachikoinu", - "name": "HachikoInu", - "symbol": "inu" - }, - { - "id": "hachikosolana", - "name": "HachikoSolana", - "symbol": "hachi" - }, - { - "id": "hackenai", - "name": "Hacken", - "symbol": "hai" - }, - { - "id": "hades", - "name": "Hades", - "symbol": "hades" - }, - { - "id": "hades-2", - "name": "Hades", - "symbol": "hades" - }, - { - "id": "haedal-staked-sui", - "name": "Haedal Staked SUI", - "symbol": "hasui" - }, - { - "id": "haggord", - "name": "HAGGORD", - "symbol": "haggord" - }, - { - "id": "haha", - "name": "HAHA", - "symbol": "haha" - }, - { - "id": "hairdao", - "name": "HairDAO", - "symbol": "hair" - }, - { - "id": "hairyplotterftx", - "name": "HairyPlotterFTX", - "symbol": "ftx" - }, - { - "id": "hairypotheadtrempsanic69inu", - "name": "HAIRYPOTHEADTREMPSANIC69INU", - "symbol": "solana" - }, - { - "id": "haki-token", - "name": "HAKI Token", - "symbol": "haki" - }, - { - "id": "hakka-finance", - "name": "Hakka Finance", - "symbol": "hakka" - }, - { - "id": "haku-ryujin", - "name": "Haku Ryujin", - "symbol": "haku" - }, - { - "id": "hakuswap", - "name": "HakuSwap", - "symbol": "haku" - }, - { - "id": "halcyon", - "name": "Halcyon", - "symbol": "hal" - }, - { - "id": "halfpizza", - "name": "Half Pizza", - "symbol": "piza" - }, - { - "id": "half-shiba-inu", - "name": "Half Shiba Inu", - "symbol": "shib0.5" - }, - { - "id": "halisworld", - "name": "HalisWorld", - "symbol": "hls" - }, - { - "id": "halloween-2", - "name": "HALLOWEEN", - "symbol": "halloween" - }, - { - "id": "halo-coin", - "name": "Halo Coin", - "symbol": "halo" - }, - { - "id": "halo-network", - "name": "HALO Network", - "symbol": "ho" - }, - { - "id": "halonft-art", - "name": "HALOnft.art", - "symbol": "halo" - }, - { - "id": "halving", - "name": "Halving", - "symbol": "halving" - }, - { - "id": "halvi-solana", - "name": "Halvi Solana", - "symbol": "halvi" - }, - { - "id": "hamachi-finance", - "name": "Hamachi Finance", - "symbol": "hami" - }, - { - "id": "hami", - "name": "HAMI", - "symbol": "$hami" - }, - { - "id": "hamster", - "name": "Hamster", - "symbol": "ham" - }, - { - "id": "hamster-groomers", - "name": "Hamster Groomers", - "symbol": "groomer" - }, - { - "id": "hamsters", - "name": "Hamsters", - "symbol": "hams" - }, - { - "id": "hanchain", - "name": "HanChain", - "symbol": "han" - }, - { - "id": "handle-fi", - "name": "handle.fi", - "symbol": "forex" - }, - { - "id": "handleusd", - "name": "handleUSD", - "symbol": "fxusd" - }, - { - "id": "handshake", - "name": "Handshake", - "symbol": "hns" - }, - { - "id": "handy", - "name": "Handy", - "symbol": "handy" - }, - { - "id": "handz-of-gods", - "name": "Handz of Gods", - "symbol": "handz" - }, - { - "id": "haneplatform", - "name": "HANePlatform", - "symbol": "hanep" - }, - { - "id": "hanuman-universe", - "name": "Hanuman Universe", - "symbol": "hut" - }, - { - "id": "hanu-yokia", - "name": "Hanu Yokia", - "symbol": "hanu" - }, - { - "id": "hapi", - "name": "HAPI", - "symbol": "hapi" - }, - { - "id": "happi-cat", - "name": "happi cat", - "symbol": "happi" - }, - { - "id": "happyai", - "name": "HappyAI", - "symbol": "smileai" - }, - { - "id": "happybear", - "name": "HappyBear", - "symbol": "happy" - }, - { - "id": "happy-birthday-coin", - "name": "Happy Birthday Coin", - "symbol": "hbdc" - }, - { - "id": "happyfans", - "name": "HappyFans", - "symbol": "happy" - }, - { - "id": "happy-puppy-club", - "name": "Happy Puppy Club", - "symbol": "hpc" - }, - { - "id": "happy-train", - "name": "Happy Train", - "symbol": "htr" - }, - { - "id": "hapticai", - "name": "HapticAI", - "symbol": "hai" - }, - { - "id": "haram", - "name": "Haram", - "symbol": "$haram" - }, - { - "id": "harambe", - "name": "Harambe", - "symbol": "harambe" - }, - { - "id": "harambe-2", - "name": "Harambe on Solana", - "symbol": "harambe" - }, - { - "id": "harambecoin", - "name": "HarambeCoin", - "symbol": "harambe" - }, - { - "id": "harambe-wisdom", - "name": "Harambe Wisdom", - "symbol": "rambe" - }, - { - "id": "hara-token", - "name": "Hara", - "symbol": "hart" - }, - { - "id": "harbor-2", - "name": "Harbor Protocol", - "symbol": "harbor" - }, - { - "id": "harbor-3", - "name": "Harbor", - "symbol": "hbr" - }, - { - "id": "hard-frog-nick", - "name": "Hard Frog Nick", - "symbol": "nick" - }, - { - "id": "hare-token", - "name": "Hare [OLD]", - "symbol": "hare" - }, - { - "id": "harlequins-fan-token", - "name": "Harlequins Fan Token", - "symbol": "quins" - }, - { - "id": "harmony", - "name": "Harmony", - "symbol": "one" - }, - { - "id": "harmony-horizen-bridged-busd-harmony", - "name": "Harmony Horizen Bridged BUSD (Harmony)", - "symbol": "busd" - }, - { - "id": "harmony-horizen-bridged-usdc-harmony", - "name": "Harmony Horizen Bridged USDC (Harmony)", - "symbol": "usdc" - }, - { - "id": "harold", - "name": "Harold", - "symbol": "harold" - }, - { - "id": "haroldcoin", - "name": "Haroldcoin", - "symbol": "hrld" - }, - { - "id": "harpoon", - "name": "Harpoon", - "symbol": "hrp" - }, - { - "id": "harrypotterobamainu", - "name": "HarryPotterObamaInu", - "symbol": "inu" - }, - { - "id": "harrypotterobamapacman8inu", - "name": "HarryPotterObamaPacMan8Inu", - "symbol": "xrp" - }, - { - "id": "harrypotterobamasonic10in", - "name": "HarryPotterObamaSonic10Inu (ETH)", - "symbol": "bitcoin" - }, - { - "id": "harrypotterobamasonic10inu", - "name": "HarryPotterObamaSonic10Inu", - "symbol": "bitcoin" - }, - { - "id": "harrypotterrussellsonic1inu", - "name": "HarryPotterRussellSonic1Inu", - "symbol": "saitama" - }, - { - "id": "harrypottertrumphomersimpson777inu", - "name": "HarryPotterTrumpHomerSimpson777Inu", - "symbol": "ethereum" - }, - { - "id": "harrypotterwifhatmyrowynn", - "name": "HarryPotterWifHatMyroWynn", - "symbol": "solana" - }, - { - "id": "harvest-finance", - "name": "Harvest Finance", - "symbol": "farm" - }, - { - "id": "hashai", - "name": "HashAI", - "symbol": "hashai" - }, - { - "id": "hashbit", - "name": "HashBit [OLD]", - "symbol": "hbit" - }, - { - "id": "hashbit-2", - "name": "HashBit", - "symbol": "hbit" - }, - { - "id": "hash-bridge-oracle", - "name": "Hash Bridge Oracle", - "symbol": "hbo" - }, - { - "id": "hashcoin", - "name": "HashCoin", - "symbol": "hsc" - }, - { - "id": "hashflow", - "name": "Hashflow", - "symbol": "hft" - }, - { - "id": "hashgard", - "name": "Hashgard", - "symbol": "gard" - }, - { - "id": "hashkey-ecopoints", - "name": "Hashkey EcoPoints", - "symbol": "hsk" - }, - { - "id": "hashmind", - "name": "HashMind", - "symbol": "hash" - }, - { - "id": "hashpad", - "name": "Hashpad", - "symbol": "hpad" - }, - { - "id": "hashpanda", - "name": "HashPanda", - "symbol": "panda" - }, - { - "id": "hashport-bridged-link", - "name": "Hashport Bridged LINK", - "symbol": "link[hts]" - }, - { - "id": "hashport-bridged-qnt", - "name": "Hashport Bridged QNT", - "symbol": "qnt[hts]" - }, - { - "id": "hashport-bridged-wavax", - "name": "Hashport Bridged wAVAX", - "symbol": "wavax[hts]" - }, - { - "id": "hashpower-ai", - "name": "HashPower AI", - "symbol": "hash" - }, - { - "id": "hashtagger", - "name": "Hashtagger", - "symbol": "mooo" - }, - { - "id": "hashtag-united-fan-token", - "name": "Hashtag United Fan Token", - "symbol": "hashtag" - }, - { - "id": "hatchypocket", - "name": "HatchyPocket", - "symbol": "hatchy" - }, - { - "id": "hathor", - "name": "Hathor", - "symbol": "htr" - }, - { - "id": "hatom", - "name": "Hatom", - "symbol": "htm" - }, - { - "id": "hat-solana", - "name": "HAT Solana", - "symbol": "hat" - }, - { - "id": "hava-coin", - "name": "Hava Coin", - "symbol": "hava" - }, - { - "id": "havah", - "name": "HAVAH", - "symbol": "hvh" - }, - { - "id": "have-fun-598a6209-8136-4282-a14c-1f2b2b5d0c26", - "name": "Have Fun Token", - "symbol": "hf" - }, - { - "id": "haven", - "name": "Haven", - "symbol": "xhv" - }, - { - "id": "haven1", - "name": "Haven1", - "symbol": "h1" - }, - { - "id": "haven-token", - "name": "Safehaven DeFi", - "symbol": "haven" - }, - { - "id": "havoc", - "name": "havoc", - "symbol": "havoc" - }, - { - "id": "havven", - "name": "Synthetix Network", - "symbol": "snx" - }, - { - "id": "hawex", - "name": "Hawex", - "symbol": "hawex" - }, - { - "id": "hawksight", - "name": "Hawksight", - "symbol": "hawk" - }, - { - "id": "haycoin", - "name": "HayCoin", - "symbol": "hay" - }, - { - "id": "hbarbarian", - "name": "HBARbarian", - "symbol": "hbarbarian" - }, - { - "id": "hbarx", - "name": "HBARX", - "symbol": "hbarx" - }, - { - "id": "h-df0f364f-76a6-47fd-9c38-f8a239a4faad", - "name": "H", - "symbol": "h" - }, - { - "id": "hdoki", - "name": "HDOKI", - "symbol": "oki" - }, - { - "id": "headline", - "name": "Headline", - "symbol": "hdl" - }, - { - "id": "headstarter", - "name": "HeadStarter", - "symbol": "hst" - }, - { - "id": "heartx-utility-token", - "name": "HeartX Utility Token", - "symbol": "hnx" - }, - { - "id": "heavenland-hto", - "name": "Heavenland HTO", - "symbol": "hto" - }, - { - "id": "hebeblock", - "name": "HebeBlock", - "symbol": "hebe" - }, - { - "id": "hecofi", - "name": "HecoFi", - "symbol": "hfi" - }, - { - "id": "heco-peg-bnb", - "name": "Heco-Peg Binance Coin", - "symbol": "bnb" - }, - { - "id": "heco-peg-xrp", - "name": "Heco-Peg XRP", - "symbol": "xrp" - }, - { - "id": "hectic-turkey", - "name": "Hectic Turkey", - "symbol": "hect" - }, - { - "id": "hector-dao", - "name": "Hector Network", - "symbol": "hec" - }, - { - "id": "hedera-hashgraph", - "name": "Hedera", - "symbol": "hbar" - }, - { - "id": "hedex", - "name": "Hedex", - "symbol": "hedex" - }, - { - "id": "hedgehog", - "name": "Hedgehog", - "symbol": "hedgehog" - }, - { - "id": "hedge-on-sol", - "name": "HEDGE on Sol", - "symbol": "hedge" - }, - { - "id": "hedgepay", - "name": "HedgePay", - "symbol": "hpay" - }, - { - "id": "hedget", - "name": "Hedget", - "symbol": "hget" - }, - { - "id": "hedgetrade", - "name": "HedgeTrade", - "symbol": "hedg" - }, - { - "id": "hedge-usd", - "name": "Hedge USD", - "symbol": "ush" - }, - { - "id": "hedpay", - "name": "HEdpAY", - "symbol": "hdp.\u0444" - }, - { - "id": "hedron", - "name": "Hedron", - "symbol": "hdrn" - }, - { - "id": "hefi", - "name": "HeFi", - "symbol": "hefi" - }, - { - "id": "hege", - "name": "Hege", - "symbol": "$hege" - }, - { - "id": "hegic", - "name": "Hegic", - "symbol": "hegic" - }, - { - "id": "hegic-yvault", - "name": "HEGIC yVault", - "symbol": "yvhegic" - }, - { - "id": "hehe", - "name": "HeHe", - "symbol": "hehe" - }, - { - "id": "hela", - "name": "HeLa", - "symbol": "hela" - }, - { - "id": "helena", - "name": "Helena Financial [OLD]", - "symbol": "helena" - }, - { - "id": "helga-inu", - "name": "Helga Inu", - "symbol": "helga" - }, - { - "id": "helicopter-finance", - "name": "Helicopter Finance", - "symbol": "copter" - }, - { - "id": "heli-doge", - "name": "HELI Doge", - "symbol": "hd" - }, - { - "id": "helio-protocol-hay", - "name": "Lista USD", - "symbol": "lisusd" - }, - { - "id": "helios", - "name": "HELIOS", - "symbol": "hlx" - }, - { - "id": "heliswap", - "name": "HeliSwap", - "symbol": "heli" - }, - { - "id": "heliswap-bridged-usdc-hts", - "name": "Bridged USDC (Hashport)", - "symbol": "usdc[hts]" - }, - { - "id": "helium", - "name": "Helium", - "symbol": "hnt" - }, - { - "id": "helium-iot", - "name": "Helium IOT", - "symbol": "iot" - }, - { - "id": "helium-mobile", - "name": "Helium Mobile", - "symbol": "mobile" - }, - { - "id": "hellar", - "name": "Hellar", - "symbol": "hel" - }, - { - "id": "helleniccoin", - "name": "HNC Coin", - "symbol": "hnc" - }, - { - "id": "hello-art", - "name": "Hello Art", - "symbol": "htt" - }, - { - "id": "hello-labs", - "name": "HELLO", - "symbol": "hello" - }, - { - "id": "helmet-insure", - "name": "Helmet Insure", - "symbol": "helmet" - }, - { - "id": "helpico", - "name": "Helpico", - "symbol": "help" - }, - { - "id": "helpkidz-coin", - "name": "HelpKidz Coin", - "symbol": "hkc" - }, - { - "id": "help-the-homeless-coin", - "name": "Help The Homeless Coin", - "symbol": "hth" - }, - { - "id": "hempcoin-thc", - "name": "Hempcoin", - "symbol": "thc" - }, - { - "id": "hemule", - "name": "Hemule", - "symbol": "hemule" - }, - { - "id": "heptafranc", - "name": "HEPTAFRANC", - "symbol": "hptf" - }, - { - "id": "hepton", - "name": "Hepton", - "symbol": "hte" - }, - { - "id": "hera-finance", - "name": "Hera Finance", - "symbol": "hera" - }, - { - "id": "her-ai", - "name": "Her.AI", - "symbol": "her" - }, - { - "id": "herbalist-token", - "name": "Herbalist", - "symbol": "herb" - }, - { - "id": "hercules-token", - "name": "Hercules Token", - "symbol": "torch" - }, - { - "id": "herity-network", - "name": "Herity Network", - "symbol": "her" - }, - { - "id": "hermes-dao", - "name": "Hermes DAO", - "symbol": "hmx" - }, - { - "id": "hermes-protocol", - "name": "Hermes Protocol", - "symbol": "hermes" - }, - { - "id": "hermez-network-token", - "name": "Hermez Network", - "symbol": "hez" - }, - { - "id": "hero-arena", - "name": "Hero Arena", - "symbol": "hera" - }, - { - "id": "hero-blaze-three-kingdoms", - "name": "Hero Blaze: Three Kingdoms", - "symbol": "mudol2" - }, - { - "id": "hero-cat-token", - "name": "Hero Cat", - "symbol": "hct" - }, - { - "id": "herocoin", - "name": "HEROcoin", - "symbol": "play" - }, - { - "id": "heroeschained", - "name": "HeroesChained", - "symbol": "hec" - }, - { - "id": "heroes-empires", - "name": "Heroes & Empires", - "symbol": "he" - }, - { - "id": "heroes-of-mavia", - "name": "Heroes of Mavia", - "symbol": "mavia" - }, - { - "id": "heroes-of-nft", - "name": "Heroes of NFT", - "symbol": "hon" - }, - { - "id": "heroes-td", - "name": "Heroes TD", - "symbol": "htd" - }, - { - "id": "heroestd-cgc", - "name": "HeroesTD CGC", - "symbol": "cgc" - }, - { - "id": "herofi-token-2", - "name": "HeroFi ROFI", - "symbol": "rofi" - }, - { - "id": "heropark", - "name": "HeroPark", - "symbol": "hp" - }, - { - "id": "hex", - "name": "HEX", - "symbol": "hex" - }, - { - "id": "hex-orange-address", - "name": "Hex Orange Address", - "symbol": "hoa" - }, - { - "id": "hex-pulsechain", - "name": "HEX (PulseChain)", - "symbol": "hex" - }, - { - "id": "heyflokiai", - "name": "Hey Floki Ai", - "symbol": "a2e" - }, - { - "id": "hey-reborn-new", - "name": "Hey Reborn [NEW]", - "symbol": "rb" - }, - { - "id": "hiazuki", - "name": "hiAZUKI", - "symbol": "hiazuki" - }, - { - "id": "hibakc", - "name": "hiBAKC", - "symbol": "hibakc" - }, - { - "id": "hibayc", - "name": "hiBAYC", - "symbol": "hibayc" - }, - { - "id": "hibeanz", - "name": "hiBEANZ", - "symbol": "hibeanz" - }, - { - "id": "hibiki-run", - "name": "Hibiki Run", - "symbol": "hut" - }, - { - "id": "hiblocks", - "name": "Hiblocks", - "symbol": "hibs" - }, - { - "id": "hic-et-nunc-dao", - "name": "Hic et nunc DAO", - "symbol": "hdao" - }, - { - "id": "hiclonex", - "name": "hiCLONEX", - "symbol": "hiclonex" - }, - { - "id": "hicoolcats", - "name": "hiCOOLCATS", - "symbol": "hicoolcats" - }, - { - "id": "hi-dollar", - "name": "hi Dollar", - "symbol": "hi" - }, - { - "id": "hidoodles", - "name": "hiDOODLES", - "symbol": "hidoodles" - }, - { - "id": "hiens3", - "name": "hiENS3", - "symbol": "hiens3" - }, - { - "id": "hiens4", - "name": "hiENS4", - "symbol": "hiens4" - }, - { - "id": "hifidenza", - "name": "hiFIDENZA", - "symbol": "hifidenza" - }, - { - "id": "hifi-finance", - "name": "Hifi Finance", - "symbol": "hifi" - }, - { - "id": "hifluf", - "name": "hiFLUF", - "symbol": "hifluf" - }, - { - "id": "hifriends", - "name": "hiFRIENDS", - "symbol": "hifriends" - }, - { - "id": "higazers", - "name": "hiGAZERS", - "symbol": "higazers" - }, - { - "id": "high", - "name": "High", - "symbol": "high" - }, - { - "id": "higher", - "name": "higher", - "symbol": "higher" - }, - { - "id": "higher-imo", - "name": "HIgher IMO", - "symbol": "higher" - }, - { - "id": "highnoon", - "name": "HighNoon", - "symbol": "noon" - }, - { - "id": "high-performance-blockchain", - "name": "High Performance Blockchain", - "symbol": "hpb" - }, - { - "id": "high-roller-hippo-clique", - "name": "High Roller Hippo Clique", - "symbol": "roll" - }, - { - "id": "highstreet", - "name": "Highstreet", - "symbol": "high" - }, - { - "id": "high-yield-usd", - "name": "High Yield USD", - "symbol": "hyusd" - }, - { - "id": "high-yield-usd-base", - "name": "High Yield USD (Base)", - "symbol": "hyusd" - }, - { - "id": "hikari-protocol", - "name": "Hikari Protocol", - "symbol": "hikari" - }, - { - "id": "hillstone", - "name": "Hillstone Finance", - "symbol": "hsf" - }, - { - "id": "hilo", - "name": "HILO", - "symbol": "hilo" - }, - { - "id": "himayc", - "name": "hiMAYC", - "symbol": "himayc" - }, - { - "id": "himeebits", - "name": "hiMEEBITS", - "symbol": "himeebits" - }, - { - "id": "himfers", - "name": "hiMFERS", - "symbol": "himfers" - }, - { - "id": "himoonbirds", - "name": "hiMOONBIRDS", - "symbol": "himoonbirds" - }, - { - "id": "himo-world", - "name": "Himo World", - "symbol": "himo" - }, - { - "id": "hinoki-protocol", - "name": "Hinoki Protocol", - "symbol": "hnk" - }, - { - "id": "hiod", - "name": "hiOD", - "symbol": "hiod" - }, - { - "id": "hiodbs", - "name": "hiODBS", - "symbol": "hiodbs" - }, - { - "id": "hipenguins", - "name": "hiPENGUINS", - "symbol": "hipenguins" - }, - { - "id": "hippopotamus", - "name": "Hippo Wallet", - "symbol": "hpo" - }, - { - "id": "hippo-token", - "name": "Hippo", - "symbol": "hip" - }, - { - "id": "hipunks", - "name": "hiPunks", - "symbol": "hipunks" - }, - { - "id": "hiram", - "name": "Hiram", - "symbol": "hiram" - }, - { - "id": "hirenga", - "name": "hiRENGA", - "symbol": "hirenga" - }, - { - "id": "hirevibes", - "name": "HireVibes", - "symbol": "vibes" - }, - { - "id": "hisand33", - "name": "hiSAND33", - "symbol": "hisand33" - }, - { - "id": "hiseals", - "name": "hiSEALS", - "symbol": "hiseals" - }, - { - "id": "hisquiggle", - "name": "hiSQUIGGLE", - "symbol": "hisquiggle" - }, - { - "id": "historia", - "name": "Historia", - "symbol": "hta" - }, - { - "id": "historydao", - "name": "HistoryDAO", - "symbol": "hao" - }, - { - "id": "hitbtc-token", - "name": "HitBTC", - "symbol": "hit" - }, - { - "id": "hitchain", - "name": "HitChain", - "symbol": "hit" - }, - { - "id": "hitmakr", - "name": "Hitmakr", - "symbol": "hmkr" - }, - { - "id": "hiundead", - "name": "hiUNDEAD", - "symbol": "hiundead" - }, - { - "id": "hivalhalla", - "name": "hiVALHALLA", - "symbol": "hivalhalla" - }, - { - "id": "hive", - "name": "Hive", - "symbol": "hive" - }, - { - "id": "hive_dollar", - "name": "Hive Dollar", - "symbol": "hbd" - }, - { - "id": "hive-game-token", - "name": "Hive Game Token", - "symbol": "hgt" - }, - { - "id": "hive-investments-honey", - "name": "Hive.Investments HONEY", - "symbol": "hny" - }, - { - "id": "hivemapper", - "name": "Hivemapper", - "symbol": "honey" - }, - { - "id": "hive-network", - "name": "Honey", - "symbol": "hny" - }, - { - "id": "hive-protocol", - "name": "Hive Protocol", - "symbol": "hip" - }, - { - "id": "hiveterminal", - "name": "Hiveterminal", - "symbol": "hvn" - }, - { - "id": "hivewater", - "name": "hiveWater", - "symbol": "hivewater" - }, - { - "id": "hkava", - "name": "hKAVA", - "symbol": "hkava" - }, - { - "id": "hmx", - "name": "HMX", - "symbol": "hmx" - }, - { - "id": "hnb-protocol", - "name": "HNB Protocol", - "symbol": "hnb" - }, - { - "id": "hobbes", - "name": "Hobbes [OLD]", - "symbol": "hobbes" - }, - { - "id": "hobbes-new", - "name": "Hobbes", - "symbol": "hobbes" - }, - { - "id": "hocus-pocus-finance", - "name": "Hocus Pocus Finance", - "symbol": "hoc" - }, - { - "id": "hodl", - "name": "HODL", - "symbol": "hodl" - }, - { - "id": "hodlassets", - "name": "HodlAssets", - "symbol": "hodl" - }, - { - "id": "hodless-bot", - "name": "Hodless Bot", - "symbol": "hbot" - }, - { - "id": "hodl-finance", - "name": "Hodl Finance", - "symbol": "hft" - }, - { - "id": "hodl-token", - "name": "HODL", - "symbol": "hodl" - }, - { - "id": "hodooi-com", - "name": "HoDooi.com", - "symbol": "hod" - }, - { - "id": "hoge-finance", - "name": "Hoge Finance", - "symbol": "hoge" - }, - { - "id": "hoichi", - "name": "Hoichi", - "symbol": "hoichi" - }, - { - "id": "hokkaido-inu", - "name": "Hokkaidu Inu", - "symbol": "$hokk" - }, - { - "id": "hokkaido-inu-30bdfab6-dfb9-4fc0-b3c3-02bffe162ee4", - "name": "Hokkaido Inu", - "symbol": "hoka" - }, - { - "id": "hokkaidu-inu", - "name": "HOKK Finance", - "symbol": "hokk" - }, - { - "id": "hola", - "name": "Hola", - "symbol": "hola" - }, - { - "id": "hola-token", - "name": "Hola Token", - "symbol": "$hola" - }, - { - "id": "hold-2", - "name": "HOLD", - "symbol": "earn" - }, - { - "id": "hold-on-for-dear-life", - "name": "Hold On for Dear Life", - "symbol": "hodl" - }, - { - "id": "hold-on-for-dear-life-hodl", - "name": "Hold on for dear life HODL", - "symbol": "hodl" - }, - { - "id": "holdr", - "name": "Holdr", - "symbol": "hldr" - }, - { - "id": "holdstation", - "name": "Holdstation", - "symbol": "hold" - }, - { - "id": "holdstation-usd-coin", - "name": "Holdstation USDC", - "symbol": "hsusdc" - }, - { - "id": "holdstation-utility-gold", - "name": "Holdstation Utility GOLD", - "symbol": "ugold" - }, - { - "id": "hold-vip", - "name": "Hold VIP", - "symbol": "hold" - }, - { - "id": "hollygold", - "name": "HollyGold", - "symbol": "hgold" - }, - { - "id": "hollywood-capital-group-warrior", - "name": "Hollywood Capital Group WARRIOR", - "symbol": "wor" - }, - { - "id": "hololoot", - "name": "Hololoot", - "symbol": "hol" - }, - { - "id": "holonus", - "name": "Holonus", - "symbol": "hln" - }, - { - "id": "holoride", - "name": "holoride", - "symbol": "ride" - }, - { - "id": "holotoken", - "name": "Holo", - "symbol": "hot" - }, - { - "id": "holygrail", - "name": "HolyGrail", - "symbol": "hly" - }, - { - "id": "holygrails-io", - "name": "HolyGrails.io", - "symbol": "holy" - }, - { - "id": "holyheld-2", - "name": "Mover", - "symbol": "move" - }, - { - "id": "holy-spirit", - "name": "HOLY SPIRIT", - "symbol": "holy" - }, - { - "id": "hom", - "name": "Homeety", - "symbol": "hom" - }, - { - "id": "homer", - "name": "Homer", - "symbol": "simpson" - }, - { - "id": "homer-2", - "name": "Homer", - "symbol": "simpson 2.0" - }, - { - "id": "homeros", - "name": "Homeros", - "symbol": "hmr" - }, - { - "id": "homeunity", - "name": "Homeunity", - "symbol": "hrpt" - }, - { - "id": "homie", - "name": "Homie", - "symbol": "homie" - }, - { - "id": "homie-wars", - "name": "Homie Wars", - "symbol": "homiecoin" - }, - { - "id": "hondaiscoin", - "name": "HondaisCoin", - "symbol": "hndc" - }, - { - "id": "honest-mining", - "name": "Honest", - "symbol": "hnst" - }, - { - "id": "honey", - "name": "Honey", - "symbol": "hny" - }, - { - "id": "honey-finance", - "name": "Honey Finance", - "symbol": "honey" - }, - { - "id": "honeyland-honey", - "name": "Honeyland", - "symbol": "hxd" - }, - { - "id": "honeymoon-token", - "name": "HoneyMOON", - "symbol": "moon" - }, - { - "id": "honeywood", - "name": "HoneyWood", - "symbol": "cone" - }, - { - "id": "hongkongdao", - "name": "HongKongDAO", - "symbol": "hkd" - }, - { - "id": "honk", - "name": "Honk", - "symbol": "honk" - }, - { - "id": "honk-2", - "name": "HONK", - "symbol": "honk" - }, - { - "id": "honorarium", - "name": "Honorarium", - "symbol": "hrm" - }, - { - "id": "honor-world-token", - "name": "Honor World Token", - "symbol": "hwt" - }, - { - "id": "hooked-protocol", - "name": "Hooked Protocol", - "symbol": "hook" - }, - { - "id": "hoosat-network", - "name": "Hoosat Network", - "symbol": "htn" - }, - { - "id": "hope-2", - "name": "Hope.money", - "symbol": "hope" - }, - { - "id": "hoppers-game", - "name": "Hoppers Game", - "symbol": "fly" - }, - { - "id": "hop-protocol", - "name": "Hop Protocol", - "symbol": "hop" - }, - { - "id": "hoppy", - "name": "HOPPY", - "symbol": "hop" - }, - { - "id": "hoppyinu", - "name": "HoppyInu", - "symbol": "hoppyinu" - }, - { - "id": "hoppy-the-frog", - "name": "Hoppy The Frog", - "symbol": "hoppy" - }, - { - "id": "hoppy-token", - "name": "Hoppy Token", - "symbol": "hoppy" - }, - { - "id": "hopr", - "name": "HOPR", - "symbol": "hopr" - }, - { - "id": "hord", - "name": "Hord", - "symbol": "hord" - }, - { - "id": "horizon-2", - "name": "Horizon", - "symbol": "hzn" - }, - { - "id": "horizon-3", - "name": "Horizon", - "symbol": "hrzn" - }, - { - "id": "horizon-blockchain", - "name": "Horizon Blockchain", - "symbol": "hm" - }, - { - "id": "horizon-protocol", - "name": "Horizon Protocol", - "symbol": "hzn" - }, - { - "id": "horizon-protocol-zbnb", - "name": "Horizon Protocol zBNB", - "symbol": "zbnb" - }, - { - "id": "horny-hyenas", - "name": "Horny Hyenas", - "symbol": "horny" - }, - { - "id": "hosky", - "name": "Hosky", - "symbol": "hosky" - }, - { - "id": "host-ai", - "name": "Host AI", - "symbol": "hostai" - }, - { - "id": "hot-cross", - "name": "Hot Cross", - "symbol": "hotcross" - }, - { - "id": "hot-doge", - "name": "HotDoge [OLD]", - "symbol": "hotdoge" - }, - { - "id": "hotelium", - "name": "Hotelium", - "symbol": "htl" - }, - { - "id": "hotel-of-secrets", - "name": "Hotel of Secrets", - "symbol": "hos" - }, - { - "id": "hotkeyswap", - "name": "HotKeySwap", - "symbol": "hotkey" - }, - { - "id": "hotmoon", - "name": "HotMoon", - "symbol": "hotmoon" - }, - { - "id": "hot-n-cold-finance", - "name": "Hot'n Cold Finance", - "symbol": "hnc" - }, - { - "id": "hottel", - "name": "Hottel", - "symbol": "hott" - }, - { - "id": "houdini-swap", - "name": "Houdini Swap", - "symbol": "lock" - }, - { - "id": "hourglass", - "name": "Hourglass", - "symbol": "wait" - }, - { - "id": "house", - "name": "House", - "symbol": "house" - }, - { - "id": "houston-token", - "name": "Houston Token", - "symbol": "hou" - }, - { - "id": "hover", - "name": "Hover", - "symbol": "hov" - }, - { - "id": "howcat", - "name": "Howcat", - "symbol": "hcat" - }, - { - "id": "howdysol", - "name": "HowdySol", - "symbol": "howdy" - }, - { - "id": "howinu", - "name": "HowInu", - "symbol": "how" - }, - { - "id": "howl-city", - "name": "Howl City", - "symbol": "hwl" - }, - { - "id": "hpohs888inu", - "name": "Hpohs888inu", - "symbol": "tether" - }, - { - "id": "hrc-crypto", - "name": "HRC Crypto", - "symbol": "hrcc" - }, - { - "id": "hsac-ordinals", - "name": "HSAC (Ordinals)", - "symbol": "hsac" - }, - { - "id": "hshare", - "name": "HyperCash", - "symbol": "hc" - }, - { - "id": "hsuite", - "name": "HbarSuite", - "symbol": "hsuite" - }, - { - "id": "htm", - "name": "HTM", - "symbol": "htm" - }, - { - "id": "htmlcoin", - "name": "HTMLCOIN", - "symbol": "html" - }, - { - "id": "htx-dao", - "name": "HTX DAO", - "symbol": "htx" - }, - { - "id": "hubble", - "name": "Hubble", - "symbol": "hbb" - }, - { - "id": "hubin-network", - "name": "Hubin Network", - "symbol": "hbn" - }, - { - "id": "hubot", - "name": "HUBOT", - "symbol": "hbt" - }, - { - "id": "hubswirl", - "name": "SwirlTokenX", - "symbol": "swirlx" - }, - { - "id": "huckleberry", - "name": "Huckleberry", - "symbol": "finn" - }, - { - "id": "hudex", - "name": "Hudex", - "symbol": "hu" - }, - { - "id": "hudi", - "name": "Hudi", - "symbol": "hudi" - }, - { - "id": "huebel-bolt", - "name": "Huebel Bolt", - "symbol": "bolt" - }, - { - "id": "hug", - "name": "HUG", - "symbol": "hug" - }, - { - "id": "hugewin", - "name": "HugeWin", - "symbol": "huge" - }, - { - "id": "hughug-coin", - "name": "HUGHUG", - "symbol": "hghg" - }, - { - "id": "huhu-cat", - "name": "Huhu Cat", - "symbol": "huhu" - }, - { - "id": "huma-finance", - "name": "Huma Finance", - "symbol": "huma" - }, - { - "id": "humandao", - "name": "humanDAO", - "symbol": "hdao" - }, - { - "id": "humaniq", - "name": "Humaniq", - "symbol": "hmq" - }, - { - "id": "humanize", - "name": "Humanize", - "symbol": "$hmt" - }, - { - "id": "humanode", - "name": "Humanode", - "symbol": "hmnd" - }, - { - "id": "humanoid-ai", - "name": "Humanoid AI", - "symbol": "humai" - }, - { - "id": "human-protocol", - "name": "HUMAN Protocol", - "symbol": "hmt" - }, - { - "id": "humans-ai", - "name": "Humans.ai", - "symbol": "heart" - }, - { - "id": "humanscape", - "name": "Hippocrat", - "symbol": "hpo" - }, - { - "id": "humanscarefoundationwater", - "name": "HumansCareFoundationWater", - "symbol": "hcfw" - }, - { - "id": "hummingbird-finance", - "name": "Hummingbird Finance [OLD]", - "symbol": "hmng" - }, - { - "id": "hummingbird-finance-2", - "name": "Hummingbird Finance", - "symbol": "hmng" - }, - { - "id": "hummingbot", - "name": "Hummingbot", - "symbol": "hbot" - }, - { - "id": "hummus", - "name": "Hummus", - "symbol": "hum" - }, - { - "id": "hump", - "name": "Hump", - "symbol": "hump" - }, - { - "id": "hund", - "name": "Hund", - "symbol": "hund" - }, - { - "id": "hundred", - "name": "HUNDRED (BSC)", - "symbol": "hundred" - }, - { - "id": "hundred-eth", - "name": "HUNDRED (ETH)", - "symbol": "hundred" - }, - { - "id": "hundred-finance", - "name": "Hundred Finance", - "symbol": "hnd" - }, - { - "id": "hungarian-vizsla-inu", - "name": "Hungarian Vizsla Inu", - "symbol": "hvi" - }, - { - "id": "hunny-love-token", - "name": "HunnyDAO", - "symbol": "love" - }, - { - "id": "hunter", - "name": "Hunter Token", - "symbol": "hntr" - }, - { - "id": "hunt-token", - "name": "Hunt", - "symbol": "hunt" - }, - { - "id": "huny", - "name": "Huny", - "symbol": "huny" - }, - { - "id": "huobi-bitcoin-cash", - "name": "Huobi Bitcoin Cash", - "symbol": "hbch" - }, - { - "id": "huobi-bridged-usdt-heco-chain", - "name": "Huobi Bridged USDT (Heco Chain)", - "symbol": "usdt" - }, - { - "id": "huobi-btc", - "name": "Huobi BTC", - "symbol": "hbtc" - }, - { - "id": "huobi-btc-wormhole", - "name": "Huobi BTC (Wormhole)", - "symbol": "hbtc" - }, - { - "id": "huobi-ethereum", - "name": "Huobi Ethereum", - "symbol": "heth" - }, - { - "id": "huobi-fil", - "name": "Huobi FIL", - "symbol": "hfil" - }, - { - "id": "huobi-litecoin", - "name": "Huobi Litecoin", - "symbol": "hltc" - }, - { - "id": "huobi-polkadot", - "name": "Huobi Polkadot", - "symbol": "hdot" - }, - { - "id": "huobi-pool-token", - "name": "Huobi Pool", - "symbol": "hpt" - }, - { - "id": "huobi-token", - "name": "Huobi", - "symbol": "ht" - }, - { - "id": "huralya", - "name": "Huralya", - "symbol": "lya" - }, - { - "id": "hurricane-nft", - "name": "Hurricane NFT", - "symbol": "nhct" - }, - { - "id": "hurricaneswap-token", - "name": "HurricaneSwap", - "symbol": "hct" - }, - { - "id": "husbant", - "name": "Husbant", - "symbol": "husbant" - }, - { - "id": "husd", - "name": "HUSD", - "symbol": "husd" - }, - { - "id": "hush", - "name": "Hush", - "symbol": "hush" - }, - { - "id": "hush-cash", - "name": "Hush.cash", - "symbol": "hush" - }, - { - "id": "husky-ai", - "name": "Husky.AI", - "symbol": "hus" - }, - { - "id": "husky-avax", - "name": "Husky Avax", - "symbol": "husky" - }, - { - "id": "hustlebot", - "name": "HustleBot", - "symbol": "hustle" - }, - { - "id": "hxacoin", - "name": "HXAcoin", - "symbol": "hxa" - }, - { - "id": "hxro", - "name": "HXRO", - "symbol": "hxro" - }, - { - "id": "hybrid-token-2f302f60-395f-4dd0-8c18-9c5418a61a31", - "name": "HYBRID TOKEN", - "symbol": "hbd" - }, - { - "id": "hydra", - "name": "Hydra", - "symbol": "hydra" - }, - { - "id": "hydra-2", - "name": "Hydra", - "symbol": "hydra" - }, - { - "id": "hydradx", - "name": "HydraDX", - "symbol": "hdx" - }, - { - "id": "hydranet", - "name": "Hydranet", - "symbol": "hdn" - }, - { - "id": "hydraverse", - "name": "Hydraverse", - "symbol": "hdv" - }, - { - "id": "hydro-protocol-2", - "name": "Hydro Protocol", - "symbol": "hdro" - }, - { - "id": "hydt-protocol-hydt", - "name": "HYDT", - "symbol": "hydt" - }, - { - "id": "hyena-coin", - "name": "Hyena Coin", - "symbol": "hyc" - }, - { - "id": "hygt", - "name": "HYGT", - "symbol": "hygt" - }, - { - "id": "hyme", - "name": "HYME", - "symbol": "hyme" - }, - { - "id": "hype-meme-token", - "name": "Hype Meme Token", - "symbol": "hmtt" - }, - { - "id": "hyper-3", - "name": "Hyper", - "symbol": "eon" - }, - { - "id": "hyper-4", - "name": "Hyper", - "symbol": "hyper" - }, - { - "id": "hyperbc", - "name": "HyperBC", - "symbol": "hbt" - }, - { - "id": "hyperblast", - "name": "HyperBlast", - "symbol": "hype" - }, - { - "id": "hyperbolic-protocol", - "name": "Hyperbolic Protocol", - "symbol": "hype" - }, - { - "id": "hypercent", - "name": "Hypercent", - "symbol": "hype" - }, - { - "id": "hyperchainx", - "name": "HyperChainX", - "symbol": "hyper" - }, - { - "id": "hypercomic", - "name": "HYPERCOMIC", - "symbol": "hyco" - }, - { - "id": "hypercycle", - "name": "HyperCycle", - "symbol": "hypc" - }, - { - "id": "hyperdao", - "name": "HyperDAO", - "symbol": "hdao" - }, - { - "id": "hypergpt", - "name": "HyperGPT", - "symbol": "hgpt" - }, - { - "id": "hyper-pay", - "name": "Hyper Pay", - "symbol": "hpy" - }, - { - "id": "hypersign-identity-token", - "name": "Hypersign Identity", - "symbol": "hid" - }, - { - "id": "hyperstake", - "name": "Element", - "symbol": "hyp" - }, - { - "id": "hypra", - "name": "HYPRA", - "symbol": "hyp" - }, - { - "id": "hypra-inu", - "name": "Hypra Inu", - "symbol": "hinu" - }, - { - "id": "hypr-network", - "name": "Hypr Network", - "symbol": "hypr" - }, - { - "id": "hyruleswap", - "name": "HyruleSwap", - "symbol": "rupee" - }, - { - "id": "hytopia", - "name": "HYCHAIN", - "symbol": "topia" - }, - { - "id": "hyve", - "name": "Hyve", - "symbol": "hyve" - }, - { - "id": "hzm-coin", - "name": "HZM Coin", - "symbol": "hzm" - }, - { - "id": "iagon", - "name": "Iagon", - "symbol": "iag" - }, - { - "id": "iamx", - "name": "IAMX", - "symbol": "iamx" - }, - { - "id": "iassets", - "name": "iAssets", - "symbol": "asset" - }, - { - "id": "iazuki", - "name": "IAzuki", - "symbol": "iazuki" - }, - { - "id": "ibc-bridged-axlusdc-xpla", - "name": "IBC Bridged axlUSDC (XPLA)", - "symbol": "axlusdc" - }, - { - "id": "ibc-index", - "name": "IBC Index", - "symbol": "ibcx" - }, - { - "id": "ibg-token", - "name": "iBG Finance (BSC)", - "symbol": "ibg" - }, - { - "id": "ibithub", - "name": "iBitHub", - "symbol": "ibh" - }, - { - "id": "ibs", - "name": "IBS", - "symbol": "ibs" - }, - { - "id": "ibtc-2", - "name": "iBTC", - "symbol": "ibtc" - }, - { - "id": "ibuffer-token", - "name": "Buffer Token", - "symbol": "bfr" - }, - { - "id": "icarus-m-guild-war-velzeroth", - "name": "Icarus M: Guild War VELZEROTH", - "symbol": "vel" - }, - { - "id": "ice", - "name": "Ice Network", - "symbol": "ice" - }, - { - "id": "ice-2", - "name": "Ice", - "symbol": "ice" - }, - { - "id": "icecream", - "name": "IceCreamSwap", - "symbol": "ice" - }, - { - "id": "icecreamswap-wcore", - "name": "IceCreamSwap WCORE", - "symbol": "wcore" - }, - { - "id": "ice-net", - "name": "ICE NET", - "symbol": "ice" - }, - { - "id": "ice-token", - "name": "Popsicle Finance", - "symbol": "ice" - }, - { - "id": "ic-ghost", - "name": "IC Ghost", - "symbol": "ghost" - }, - { - "id": "ichi-farm", - "name": "ICHI", - "symbol": "ichi" - }, - { - "id": "iclick-inu", - "name": "ICLICK Inu", - "symbol": "iclick" - }, - { - "id": "icomex", - "name": "iCOMEX", - "symbol": "icmx" - }, - { - "id": "icommunity", - "name": "iCommunity", - "symbol": "icom" - }, - { - "id": "icon", - "name": "ICON", - "symbol": "icx" - }, - { - "id": "iconiq-lab-token", - "name": "Deutsche Digital Assets", - "symbol": "icnq" - }, - { - "id": "icon-x-world", - "name": "Icon.X World", - "symbol": "icnx" - }, - { - "id": "icosa", - "name": "Icosa", - "symbol": "icsa" - }, - { - "id": "icpanda-dao", - "name": "ICPanda DAO", - "symbol": "panda" - }, - { - "id": "icpi", - "name": "ICPI", - "symbol": "icpi" - }, - { - "id": "icrypex-token", - "name": "Icrypex Token", - "symbol": "icpx" - }, - { - "id": "ictech", - "name": "ICTech", - "symbol": "ict" - }, - { - "id": "ic-x", - "name": "IC-X", - "symbol": "icx" - }, - { - "id": "icy", - "name": "Icy", - "symbol": "ic" - }, - { - "id": "icycro", - "name": "IcyCRO", - "symbol": "icy" - }, - { - "id": "idavoll-network", - "name": "Idavoll DAO", - "symbol": "idv" - }, - { - "id": "ideachain", - "name": "IdeaChain", - "symbol": "ich" - }, - { - "id": "ideal-opportunities", - "name": "IO", - "symbol": "io" - }, - { - "id": "ideaology", - "name": "Ideaology", - "symbol": "idea" - }, - { - "id": "idefiyieldprotocol", - "name": "iDypius", - "symbol": "idyp" - }, - { - "id": "idena", - "name": "Idena", - "symbol": "idna" - }, - { - "id": "ide-x-ai", - "name": "Ide.x.ai", - "symbol": "ide" - }, - { - "id": "idexo-token", - "name": "Idexo", - "symbol": "ido" - }, - { - "id": "idia", - "name": "Impossible Finance Launchpad", - "symbol": "idia" - }, - { - "id": "idle", - "name": "IDLE", - "symbol": "idle" - }, - { - "id": "idle-dai-risk-adjusted", - "name": "IdleDAI (Risk Adjusted)", - "symbol": "idledaisafe" - }, - { - "id": "idle-dai-yield", - "name": "IdleDAI (Best Yield)", - "symbol": "idledaiyield" - }, - { - "id": "idle-susd-yield", - "name": "IdleSUSD (Yield)", - "symbol": "idlesusdyield" - }, - { - "id": "idle-tusd-yield", - "name": "IdleTUSD (Best Yield)", - "symbol": "idletusdyield" - }, - { - "id": "idle-usdc-risk-adjusted", - "name": "IdleUSDC (Risk Adjusted)", - "symbol": "idleusdcsafe" - }, - { - "id": "idle-usdc-yield", - "name": "IdleUSDC (Yield)", - "symbol": "idleusdcyield" - }, - { - "id": "idle-usdt-risk-adjusted", - "name": "IdleUSDT (Risk Adjusted)", - "symbol": "idleusdtsafe" - }, - { - "id": "idle-usdt-yield", - "name": "IdleUSDT (Yield)", - "symbol": "idleusdtyield" - }, - { - "id": "idle-wbtc-yield", - "name": "IdleWBTC (Best Yield)", - "symbol": "idlewbtcyield" - }, - { - "id": "idm-token", - "name": "IDM Coop", - "symbol": "idm" - }, - { - "id": "i-dont-know", - "name": "i dont know", - "symbol": "idk" - }, - { - "id": "idoodles", - "name": "IDOODLES", - "symbol": "idoodles" - }, - { - "id": "idrx", - "name": "IDRX", - "symbol": "idrx" - }, - { - "id": "ierc-20", - "name": "IERC-20", - "symbol": "" - }, - { - "id": "iethereum", - "name": "iEthereum", - "symbol": "ieth" - }, - { - "id": "iexec-rlc", - "name": "iExec RLC", - "symbol": "rlc" - }, - { - "id": "ifarm", - "name": "iFARM", - "symbol": "ifarm" - }, - { - "id": "ifortune", - "name": "iFortune", - "symbol": "ifc" - }, - { - "id": "igames", - "name": "iGameS", - "symbol": "igs" - }, - { - "id": "ignis", - "name": "Ignis", - "symbol": "ignis" - }, - { - "id": "ignore-fud", - "name": "Ignore Fud", - "symbol": "4token" - }, - { - "id": "iguverse", - "name": "IguVerse IGUP", - "symbol": "igup" - }, - { - "id": "iguverse-igu", - "name": "IguVerse IGU", - "symbol": "igu" - }, - { - "id": "iht-real-estate-protocol", - "name": "IHT Real Estate Protocol", - "symbol": "iht" - }, - { - "id": "iinjaz", - "name": "iinjaz", - "symbol": "ijz" - }, - { - "id": "ijascoin", - "name": "IjasCoin", - "symbol": "ijc" - }, - { - "id": "ikolf", - "name": "IKOLF", - "symbol": "ikolf" - }, - { - "id": "ilcapo", - "name": "ILCAPO", - "symbol": "capo" - }, - { - "id": "ilcoin", - "name": "ILCOIN", - "symbol": "ilc" - }, - { - "id": "illumicati", - "name": "Illumicati", - "symbol": "milk" - }, - { - "id": "illuminati", - "name": "Illuminati", - "symbol": "ilum" - }, - { - "id": "illuminaticoin", - "name": "IlluminatiCoin", - "symbol": "nati" - }, - { - "id": "illuminex", - "name": "illumineX", - "symbol": "ix" - }, - { - "id": "illuvia", - "name": "illuvia", - "symbol": "illuvia" - }, - { - "id": "illuvium", - "name": "Illuvium", - "symbol": "ilv" - }, - { - "id": "i-love-puppies", - "name": "I love puppies", - "symbol": "puppies" - }, - { - "id": "i-love-snoopy", - "name": "I LOVE SNOOPY", - "symbol": "lovesnoopy" - }, - { - "id": "imagecoin", - "name": "ImageCoin", - "symbol": "img" - }, - { - "id": "imagine", - "name": "Imagine", - "symbol": "imagine" - }, - { - "id": "imayc", - "name": "IMAYC", - "symbol": "imayc" - }, - { - "id": "ime-lab", - "name": "iMe Lab", - "symbol": "lime" - }, - { - "id": "imgnai", - "name": "Image Generation AI", - "symbol": "imgnai" - }, - { - "id": "immortaldao", - "name": "ImmortalDAO", - "symbol": "immo" - }, - { - "id": "immortl", - "name": "Immortl (OLD)", - "symbol": "imrtl" - }, - { - "id": "immutable", - "name": "Immutable", - "symbol": "dara" - }, - { - "id": "immutable-x", - "name": "Immutable", - "symbol": "imx" - }, - { - "id": "immutable-zkevm-bridged-eth", - "name": "Immutable zkEVM Bridged ETH", - "symbol": "eth" - }, - { - "id": "imo", - "name": "IMO", - "symbol": "imo" - }, - { - "id": "imov", - "name": "IMOV", - "symbol": "imt" - }, - { - "id": "impactmarket", - "name": "impactMarket", - "symbol": "pact" - }, - { - "id": "imperium-empires", - "name": "Imperium Empires", - "symbol": "ime" - }, - { - "id": "impermax-2", - "name": "Impermax", - "symbol": "ibex" - }, - { - "id": "impls-finance", - "name": "IMPLS Finance", - "symbol": "impls" - }, - { - "id": "impossible-finance", - "name": "Impossible Finance", - "symbol": "if" - }, - { - "id": "impostors-blood", - "name": "Impostors Blood", - "symbol": "blood" - }, - { - "id": "impt", - "name": "IMPT", - "symbol": "impt" - }, - { - "id": "inae", - "name": "iNAE", - "symbol": "inae" - }, - { - "id": "inceptionlrt-sfrxet", - "name": "Inception sfrxETH", - "symbol": "insfrxeth" - }, - { - "id": "inception-restaked-ankreth", - "name": "Inception ankrETH", - "symbol": "inankreth" - }, - { - "id": "inception-restaked-cbeth", - "name": "Inception cbETH", - "symbol": "incbeth" - }, - { - "id": "inception-restaked-ethx", - "name": "Inception ETHx", - "symbol": "inethx" - }, - { - "id": "inception-restaked-lseth", - "name": "Inception lsETH", - "symbol": "inlseth" - }, - { - "id": "inception-restaked-meth", - "name": "Inception mETH", - "symbol": "inmeth" - }, - { - "id": "inception-restaked-oeth", - "name": "Inception oETH", - "symbol": "inoeth" - }, - { - "id": "inception-restaked-oseth", - "name": "Inception osETH", - "symbol": "inoseth" - }, - { - "id": "inception-restaked-reth", - "name": "Inception rETH", - "symbol": "inreth" - }, - { - "id": "inception-restaked-steth", - "name": "Inception stETH", - "symbol": "insteth" - }, - { - "id": "inception-restaked-sweth", - "name": "Inception swETH", - "symbol": "insweth" - }, - { - "id": "inception-restaked-wbeth", - "name": "Inception wbETH", - "symbol": "inwbeth" - }, - { - "id": "inci-token", - "name": "Inci", - "symbol": "inci" - }, - { - "id": "incognito-2", - "name": "Incognito", - "symbol": "prv" - }, - { - "id": "index20", - "name": "INDEX20", - "symbol": "i20" - }, - { - "id": "indexai", - "name": "IndexAI", - "symbol": "iai" - }, - { - "id": "index-avalanche-defi", - "name": "Index Avalanche DeFi", - "symbol": "ixad" - }, - { - "id": "index-coop-bitcoin-2x-index", - "name": "Index Coop Bitcoin 2x Index", - "symbol": "btc2x" - }, - { - "id": "index-coop-coindesk-eth-trend-index", - "name": "Index Coop CoinDesk ETH Trend Index", - "symbol": "cdeti" - }, - { - "id": "index-cooperative", - "name": "Index Cooperative", - "symbol": "index" - }, - { - "id": "index-coop-eth-2x-flexible-leverage-index", - "name": "Index Coop - ETH 2x Flexible Leverage Index (Polygon)", - "symbol": "eth2x-fli-p" - }, - { - "id": "index-coop-ethereum-2x-index", - "name": "Index Coop Ethereum 2x Index", - "symbol": "eth2x" - }, - { - "id": "index-coop-large-cap", - "name": "Index Coop Large Cap Index", - "symbol": "ic21" - }, - { - "id": "index-coop-matic-2x-flexible-leverage-index", - "name": "Index Coop - MATIC 2x Flexible Leverage Index", - "symbol": "matic2x-fli-p" - }, - { - "id": "indexed-finance", - "name": "Indexed Finance", - "symbol": "ndx" - }, - { - "id": "indian-call-center", - "name": "Indian Call Center", - "symbol": "icc" - }, - { - "id": "indian-shiba-inu", - "name": "Indian Shiba Inu", - "symbol": "indshib" - }, - { - "id": "indigg", - "name": "IndiGG", - "symbol": "indi" - }, - { - "id": "indigg-kratos-cash", - "name": "IndiGG Kratos Cash", - "symbol": "kcash" - }, - { - "id": "indigo-dao-governance-token", - "name": "Indigo Protocol", - "symbol": "indy" - }, - { - "id": "indigo-protocol-ieth", - "name": "Indigo Protocol iETH", - "symbol": "ieth" - }, - { - "id": "inery", - "name": "Inery", - "symbol": "$inr" - }, - { - "id": "infiblue-world", - "name": "Infiblue World", - "symbol": "monie" - }, - { - "id": "inficloud", - "name": "InfiCloud", - "symbol": "inficloud" - }, - { - "id": "infinite", - "name": "Infinite", - "symbol": "inf" - }, - { - "id": "infinitecoin", - "name": "Infinitecoin", - "symbol": "ifc" - }, - { - "id": "infinitee", - "name": "Infinitee", - "symbol": "inftee" - }, - { - "id": "infinitorr", - "name": "InfiniTORR", - "symbol": "torr" - }, - { - "id": "infinity-angel", - "name": "Infinity Games", - "symbol": "ing" - }, - { - "id": "infinitybit-token", - "name": "InfinityBit Token", - "symbol": "ibit" - }, - { - "id": "infinity-box", - "name": "Infinity Box", - "symbol": "ibox" - }, - { - "id": "infinity-network", - "name": "Infinity Network", - "symbol": "in" - }, - { - "id": "infinity-pad-2", - "name": "Infinity PAD", - "symbol": "ipad" - }, - { - "id": "infinity-protocol", - "name": "Infinity Protocol", - "symbol": "infinity" - }, - { - "id": "infinity-rocket-token", - "name": "Infinity Rocket", - "symbol": "irt" - }, - { - "id": "infinity-skies", - "name": "Infinity Skies", - "symbol": "isky" - }, - { - "id": "inflation-hedging-coin", - "name": "Inflation Hedging Coin", - "symbol": "ihc" - }, - { - "id": "infliv", - "name": "INFLIV", - "symbol": "ifv" - }, - { - "id": "influpia", - "name": "Influpia", - "symbol": "ing" - }, - { - "id": "infrax", - "name": "infraX", - "symbol": "infra" - }, - { - "id": "inftspace", - "name": "iNFTspace", - "symbol": "ins" - }, - { - "id": "inheritance-art", - "name": "inheritance Art", - "symbol": "iai" - }, - { - "id": "init", - "name": "Inite", - "symbol": "init" - }, - { - "id": "inj-boys", - "name": "INJ BOYS", - "symbol": "boys" - }, - { - "id": "injective-kings", - "name": "Injective Kings", - "symbol": "ikings" - }, - { - "id": "injective-pepes", - "name": "Injective Pepes", - "symbol": "$ipepe" - }, - { - "id": "injective-protocol", - "name": "Injective", - "symbol": "inj" - }, - { - "id": "injineer", - "name": "Injineer", - "symbol": "injer" - }, - { - "id": "inj-inu", - "name": "INJ INU", - "symbol": "$injinu" - }, - { - "id": "ink", - "name": "Ink", - "symbol": "ink" - }, - { - "id": "ink-fantom", - "name": "Ink Fantom", - "symbol": "ink" - }, - { - "id": "ink-finance", - "name": "Ink Finance", - "symbol": "quill" - }, - { - "id": "innova", - "name": "Innova", - "symbol": "inn" - }, - { - "id": "innova-defi", - "name": "Innova DeFi", - "symbol": "$innova" - }, - { - "id": "innovative-bioresearch", - "name": "Innovative Bioresearch Coin", - "symbol": "innbc" - }, - { - "id": "inofi", - "name": "INOFi", - "symbol": "fon" - }, - { - "id": "in-pepe-we-trust", - "name": "IN PEPE WE TRUST", - "symbol": "ipwt" - }, - { - "id": "inpulse-x-2", - "name": "InpulseX", - "symbol": "ipx" - }, - { - "id": "ins3-finance-coin", - "name": "Ins3.Finance Coin", - "symbol": "itf" - }, - { - "id": "insc", - "name": "INSC (Ordinals)", - "symbol": "insc" - }, - { - "id": "inscribe", - "name": "Inscribe", - "symbol": "ins" - }, - { - "id": "inscription-dao", - "name": "Inscription DAO", - "symbol": "icda" - }, - { - "id": "insect", - "name": "INSECT", - "symbol": "ins" - }, - { - "id": "insights-network", - "name": "INSTAR", - "symbol": "instar" - }, - { - "id": "insightx", - "name": "InsightX", - "symbol": "inx" - }, - { - "id": "insolvent", - "name": "inSOLvent", - "symbol": "insolvent" - }, - { - "id": "inspect", - "name": "Inspect", - "symbol": "insp" - }, - { - "id": "inspire-ai", - "name": "Inspire AI", - "symbol": "insp" - }, - { - "id": "insrt-finance", - "name": "Insrt Finance", - "symbol": "$insrt" - }, - { - "id": "instabridge-wrapped-eth", - "name": "Instabridge Wrapped ETH (Radix)", - "symbol": "xeth" - }, - { - "id": "instabridge-wrapped-usdt", - "name": "Instabridge Wrapped USDT (Radix)", - "symbol": "xusdt" - }, - { - "id": "instadapp", - "name": "Instadapp", - "symbol": "inst" - }, - { - "id": "instadapp-dai", - "name": "Instadapp DAI", - "symbol": "idai" - }, - { - "id": "instadapp-eth", - "name": "iETH v1", - "symbol": "ieth" - }, - { - "id": "instadapp-eth-v2", - "name": "Instadapp ETH v2", - "symbol": "ieth v2" - }, - { - "id": "instadapp-usdc", - "name": "Instadapp USDC", - "symbol": "iusdc" - }, - { - "id": "instadapp-wbtc", - "name": "Instadapp WBTC", - "symbol": "iwbtc" - }, - { - "id": "insula", - "name": "Insula", - "symbol": "isla" - }, - { - "id": "insurace", - "name": "InsurAce", - "symbol": "insur" - }, - { - "id": "insure", - "name": "inSure DeFi", - "symbol": "sure" - }, - { - "id": "insurex", - "name": "iXledger", - "symbol": "ixt" - }, - { - "id": "integral", - "name": "Integral", - "symbol": "itgr" - }, - { - "id": "integritee", - "name": "Integritee", - "symbol": "teer" - }, - { - "id": "intelligence-on-chain", - "name": "Intelligence On Chain", - "symbol": "ioc" - }, - { - "id": "intelliquant", - "name": "IntelliQuant", - "symbol": "inqu" - }, - { - "id": "intellix", - "name": "Intellix", - "symbol": "itx" - }, - { - "id": "intelly", - "name": "Intelly", - "symbol": "intl" - }, - { - "id": "interactwith-token", - "name": "InteractWith", - "symbol": "inter" - }, - { - "id": "interbtc", - "name": "interBTC", - "symbol": "ibtc" - }, - { - "id": "interest-bearing-eth", - "name": "Interest Bearing ETH", - "symbol": "ibeth" - }, - { - "id": "interest-compounding-eth-index", - "name": "Interest Compounding ETH Index", - "symbol": "iceth" - }, - { - "id": "interfinex-bills", - "name": "Interfinex Bills", - "symbol": "ifex" - }, - { - "id": "interlay", - "name": "Interlay", - "symbol": "intr" - }, - { - "id": "inter-milan-fan-token", - "name": "Inter Milan Fan Token", - "symbol": "inter" - }, - { - "id": "international-stable-currency", - "name": "International Stable Currency", - "symbol": "isc" - }, - { - "id": "internet", - "name": "Internet", - "symbol": "net" - }, - { - "id": "internet-computer", - "name": "Internet Computer", - "symbol": "icp" - }, - { - "id": "internet-computer-technology", - "name": "Internet Computer Technology", - "symbol": "ict" - }, - { - "id": "internet-doge", - "name": "Internet Doge", - "symbol": "idoge" - }, - { - "id": "internet-money", - "name": "Internet Money (ETH)", - "symbol": "im" - }, - { - "id": "internet-money-bsc", - "name": "Internet Money (BSC)", - "symbol": "im" - }, - { - "id": "internet-of-energy-network", - "name": "Internet of Energy Network", - "symbol": "ioen" - }, - { - "id": "internet-token-2", - "name": "Internet Token", - "symbol": "int" - }, - { - "id": "interns", - "name": "Interns", - "symbol": "intern" - }, - { - "id": "internxt", - "name": "Internxt", - "symbol": "inxt" - }, - { - "id": "interport-token", - "name": "Interport Token", - "symbol": "itp" - }, - { - "id": "inter-stable-token", - "name": "Inter Stable Token", - "symbol": "ist" - }, - { - "id": "interstellar-domain-order", - "name": "Interstellar Domain Order", - "symbol": "ido" - }, - { - "id": "intexcoin", - "name": "INTEXCOIN", - "symbol": "intx" - }, - { - "id": "intoverse", - "name": "INTOverse", - "symbol": "tox" - }, - { - "id": "intrepid-token", - "name": "Intrepid Token", - "symbol": "int" - }, - { - "id": "intrinsic-number-up", - "name": "Intrinsic Number Up", - "symbol": "inu" - }, - { - "id": "inu", - "name": "Inu.", - "symbol": "inu" - }, - { - "id": "inu-inu", - "name": "Inu Inu", - "symbol": "inuinu" - }, - { - "id": "inuko-finance", - "name": "Inuko Finance", - "symbol": "inuko" - }, - { - "id": "inu-token-63736428-0d5c-4281-8038-3e62c35ac278", - "name": "Inu Token", - "symbol": "inu" - }, - { - "id": "invectai", - "name": "InvectAI", - "symbol": "invectai" - }, - { - "id": "inverse-ethereum-volatility-index-token", - "name": "Inverse Ethereum Volatility Index Token", - "symbol": "iethv" - }, - { - "id": "inverse-finance", - "name": "Inverse Finance", - "symbol": "inv" - }, - { - "id": "invest-club-global", - "name": "Invest Club Global", - "symbol": "icg" - }, - { - "id": "investdex", - "name": "InvestDex", - "symbol": "invest" - }, - { - "id": "investive", - "name": "INVESTIVE", - "symbol": "in" - }, - { - "id": "invi-token", - "name": "INVI", - "symbol": "invi" - }, - { - "id": "invoke", - "name": "Invoker", - "symbol": "iv" - }, - { - "id": "inx-token-2", - "name": "INX Token", - "symbol": "inx" - }, - { - "id": "iobusd", - "name": "ioBUSD", - "symbol": "iobusd" - }, - { - "id": "ioeth", - "name": "ioETH", - "symbol": "ioeth" - }, - { - "id": "ioi-token", - "name": "IOI Token", - "symbol": "ioi" - }, - { - "id": "ion", - "name": "Ion", - "symbol": "ion" - }, - { - "id": "ionic-pocket-token", - "name": "Ionic Pocket Token", - "symbol": "inp" - }, - { - "id": "ionic-protocol", - "name": "Ionic Protocol", - "symbol": "ion" - }, - { - "id": "iostoken", - "name": "IOST", - "symbol": "iost" - }, - { - "id": "iota", - "name": "IOTA", - "symbol": "iota" - }, - { - "id": "iotec-finance", - "name": "Iotec Finance", - "symbol": "iot" - }, - { - "id": "iotex", - "name": "IoTeX", - "symbol": "iotx" - }, - { - "id": "iotex-bridged-busd-iotex", - "name": "IoTeX Bridged BUSD (IoTeX)", - "symbol": "busd" - }, - { - "id": "iotex-monster-go", - "name": "Iotex Monster Go", - "symbol": "mtgo" - }, - { - "id": "iotexpad", - "name": "IoTeXPad", - "symbol": "tex" - }, - { - "id": "iotexshiba", - "name": "IoTexShiba", - "symbol": "ioshib" - }, - { - "id": "iotube-bridged-geod-iotex", - "name": "ioTube Bridged GEOD (IoTeX)", - "symbol": "geod" - }, - { - "id": "iotube-bridged-wifi-iotex", - "name": "ioTube Bridged WIFI (IoTeX)", - "symbol": "wifi" - }, - { - "id": "iotube-bridged-wnt-iotex", - "name": "ioTube Bridged WNT (IoTeX)", - "symbol": "wnt" - }, - { - "id": "iotube-bridged-xnet-iotex", - "name": "ioTube Bridged XNET (IoTeX)", - "symbol": "xnet" - }, - { - "id": "iousdc", - "name": "Bridged USD Coin (IoTeX)", - "symbol": "iousdc" - }, - { - "id": "iousdt", - "name": "Bridged Tether (IoTeX)", - "symbol": "iousdt" - }, - { - "id": "iowbtc", - "name": "ioWBTC", - "symbol": "iowbtc" - }, - { - "id": "iown", - "name": "iOWN", - "symbol": "iown" - }, - { - "id": "ipmb", - "name": "IPMB", - "symbol": "ipmb" - }, - { - "id": "ipor", - "name": "IPOR", - "symbol": "ipor" - }, - { - "id": "ipulse", - "name": "iPulse", - "symbol": "pls" - }, - { - "id": "ipverse", - "name": "IPVERSE", - "symbol": "ipv" - }, - { - "id": "ipx-token", - "name": "Tachyon Protocol", - "symbol": "ipx" - }, - { - "id": "iq50", - "name": "IQ50", - "symbol": "iq50" - }, - { - "id": "iqeon", - "name": "IQeon", - "symbol": "iqn" - }, - { - "id": "iq-protocol", - "name": "IQ Protocol", - "symbol": "iqt" - }, - { - "id": "irena-green-energy", - "name": "Irena Coin Apps", - "symbol": "irena" - }, - { - "id": "iridium", - "name": "Iridium", - "symbol": "ird" - }, - { - "id": "iris-ecosystem", - "name": "Iris Ecosystem", - "symbol": "iristoken" - }, - { - "id": "iris-network", - "name": "IRISnet", - "symbol": "iris" - }, - { - "id": "iris-token-2", - "name": "Iris", - "symbol": "iris" - }, - { - "id": "iron-bank", - "name": "Iron Bank", - "symbol": "ib" - }, - { - "id": "iron-bank-euro", - "name": "Iron Bank EUR", - "symbol": "ibeur" - }, - { - "id": "iron-bsc", - "name": "Iron BSC", - "symbol": "iron" - }, - { - "id": "iron-finance", - "name": "Iron Finance", - "symbol": "ice" - }, - { - "id": "iron-fish", - "name": "Iron Fish", - "symbol": "iron" - }, - { - "id": "iron-stablecoin", - "name": "Iron", - "symbol": "iron" - }, - { - "id": "iron-titanium-token", - "name": "IRON Titanium", - "symbol": "titan" - }, - { - "id": "iryde", - "name": "iRYDE", - "symbol": "iryde" - }, - { - "id": "isengard-nft-marketplace", - "name": "Isengard NFT Marketplace", - "symbol": "iset-84e55e" - }, - { - "id": "ishares-msci-world-etf-tokenized-stock-defichain", - "name": "iShares MSCI World ETF Tokenized Stock Defichain", - "symbol": "durth" - }, - { - "id": "ishi", - "name": "Ishi", - "symbol": "ishi" - }, - { - "id": "ishib", - "name": "iSHIB", - "symbol": "ishib" - }, - { - "id": "ishook", - "name": "iShook", - "symbol": "shk" - }, - { - "id": "isiklar-coin", - "name": "Isiklar Coin", - "symbol": "isikc" - }, - { - "id": "iskra-token", - "name": "ISKRA Token", - "symbol": "isk" - }, - { - "id": "islamic-coin", - "name": "Islamic Coin", - "symbol": "islm" - }, - { - "id": "islamicoin", - "name": "ISLAMICOIN", - "symbol": "islami" - }, - { - "id": "islander", - "name": "Islander", - "symbol": "isa" - }, - { - "id": "ispolink", - "name": "Ispolink", - "symbol": "isp" - }, - { - "id": "issp", - "name": "ISSP", - "symbol": "issp" - }, - { - "id": "issuaa", - "name": "ISSUAA", - "symbol": "iss" - }, - { - "id": "istable", - "name": "iStable", - "symbol": "i-stable" - }, - { - "id": "istanbul-basaksehir-fan-token", - "name": "\u0130stanbul Ba\u015fak\u015fehir Fan Token", - "symbol": "ibfk" - }, - { - "id": "istanbul-wild-cats-fan-token", - "name": "\u0130stanbul Wild Cats Fan Token", - "symbol": "iwft" - }, - { - "id": "istep", - "name": "iSTEP", - "symbol": "istep" - }, - { - "id": "isynthetic-token", - "name": "iSynthetic Token", - "symbol": "syth" - }, - { - "id": "italian-national-football-team-fan-token", - "name": "Italian National Football Team Fan Token", - "symbol": "ita" - }, - { - "id": "itam-games", - "name": "ITAM Games", - "symbol": "itam" - }, - { - "id": "itc", - "name": "ITC", - "symbol": "itc" - }, - { - "id": "itemverse", - "name": "ITEMVERSE", - "symbol": "item" - }, - { - "id": "itheum", - "name": "Itheum", - "symbol": "itheum" - }, - { - "id": "its-as-shrimple-as-that", - "name": "its as shrimple as that", - "symbol": "shrimple" - }, - { - "id": "itsbloc", - "name": "ITSBLOC", - "symbol": "itsb" - }, - { - "id": "it-s-just-a-rock", - "name": "Rock", - "symbol": "rock" - }, - { - "id": "it-s-so-over", - "name": "It's so over", - "symbol": "over" - }, - { - "id": "it-technology-global-ltd", - "name": "IT Technology Global Ltd", - "symbol": "itg" - }, - { - "id": "iucn-coin", - "name": "IUCN Coin", - "symbol": "iucn" - }, - { - "id": "iusd", - "name": "iUSD", - "symbol": "iusd" - }, - { - "id": "iustitia-coin", - "name": "Iustitia Coin", - "symbol": "ius" - }, - { - "id": "ivendpay", - "name": "ivendPay", - "symbol": "ivpay" - }, - { - "id": "ivy-live", - "name": "Ivy Live", - "symbol": "ivy" - }, - { - "id": "i-well-track-pro", - "name": "I WELL TRACK PRO", - "symbol": "iwell" - }, - { - "id": "i-will-poop-it-nft", - "name": "I will poop it NFT", - "symbol": "shit" - }, - { - "id": "ixcoin", - "name": "Ixcoin", - "symbol": "ixc" - }, - { - "id": "ixicash", - "name": "IXI", - "symbol": "ixi" - }, - { - "id": "ixirswap", - "name": "Ixirswap", - "symbol": "ixir" - }, - { - "id": "ixo", - "name": "IXO", - "symbol": "ixo" - }, - { - "id": "ix-swap", - "name": "IX Swap", - "symbol": "ixs" - }, - { - "id": "ix-token", - "name": "Planet IX", - "symbol": "ixt" - }, - { - "id": "iykyk", - "name": "IYKYK", - "symbol": "iykyk" - }, - { - "id": "iyu-finance", - "name": "IYU Finance", - "symbol": "iyu" - }, - { - "id": "izumi-bond-usd", - "name": "iZUMi Bond USD", - "symbol": "iusd" - }, - { - "id": "izumi-finance", - "name": "iZUMi Finance", - "symbol": "izi" - }, - { - "id": "jable", - "name": "Jable", - "symbol": "jab" - }, - { - "id": "jackal-protocol", - "name": "Jackal Protocol", - "symbol": "jkl" - }, - { - "id": "jackbot", - "name": "JACKBOT", - "symbol": "jbot" - }, - { - "id": "jackpool-finance", - "name": "JackPool.finance", - "symbol": "jfi" - }, - { - "id": "jackpot", - "name": "Jackpot", - "symbol": "777" - }, - { - "id": "jackpotdoge", - "name": "JackpotDoge", - "symbol": "jpd" - }, - { - "id": "jack-token", - "name": "Jack Token", - "symbol": "jack" - }, - { - "id": "jacy", - "name": "JACY", - "symbol": "jacy" - }, - { - "id": "jade", - "name": "DeFi Kingdoms Jade", - "symbol": "jade" - }, - { - "id": "jade-currency", - "name": "Jade Currency", - "symbol": "jade" - }, - { - "id": "jaiho-crypto", - "name": "Jaiho Crypto", - "symbol": "jaiho" - }, - { - "id": "jake-newman-enterprises", - "name": "Jake Newman Enterprises", - "symbol": "jne" - }, - { - "id": "jalapeno-finance", - "name": "Jalapeno Finance", - "symbol": "jala" - }, - { - "id": "janus-network", - "name": "Janus Network", - "symbol": "jns" - }, - { - "id": "jared-from-subway", - "name": "Jared From Subway", - "symbol": "jared" - }, - { - "id": "jarvis-2", - "name": "Jarvis", - "symbol": "jarvis" - }, - { - "id": "jarvis-reward-token", - "name": "Jarvis Reward", - "symbol": "jrt" - }, - { - "id": "jarvis-synthetic-euro", - "name": "Jarvis Synthetic Euro", - "symbol": "jeur" - }, - { - "id": "jarvis-synthetic-japanese-yen", - "name": "Jarvis Synthetic Japanese Yen", - "symbol": "jjpy" - }, - { - "id": "jarvis-synthetic-swiss-franc", - "name": "Jarvis Synthetic Swiss Franc", - "symbol": "jchf" - }, - { - "id": "jaseonmun", - "name": "Joseon-Mun", - "symbol": "jsm" - }, - { - "id": "jasmine-forwards-voluntary-rec-front-half-2024-liquidity-token", - "name": "Jasmine Forwards Voluntary REC Front-Half 2024 Liquidity Token", - "symbol": "fjlt-f24" - }, - { - "id": "jasmycoin", - "name": "JasmyCoin", - "symbol": "jasmy" - }, - { - "id": "jason-eth", - "name": "Jason (Eth)", - "symbol": "jason" - }, - { - "id": "jason-sol", - "name": "Jason (Sol)", - "symbol": "jason" - }, - { - "id": "javelin", - "name": "Javelin", - "symbol": "jvl" - }, - { - "id": "javsphere", - "name": "Javsphere", - "symbol": "jav" - }, - { - "id": "jax-network", - "name": "Jax.Network", - "symbol": "wjxn" - }, - { - "id": "jaypegggers", - "name": "Jaypeggers", - "symbol": "jay" - }, - { - "id": "jc-coin", - "name": "JC Coin", - "symbol": "jcc" - }, - { - "id": "jd-coin", - "name": "JD Coin", - "symbol": "jdc" - }, - { - "id": "jefe", - "name": "Jefe", - "symbol": "jefe" - }, - { - "id": "jefe-2", - "name": "Jefe", - "symbol": "jefe" - }, - { - "id": "jeff", - "name": "Jeff", - "symbol": "jeff" - }, - { - "id": "jeff-2", - "name": "JEFF", - "symbol": "jeff" - }, - { - "id": "jeffworld-token", - "name": "JEFFWorld Token", - "symbol": "jeff" - }, - { - "id": "jelly-esports", - "name": "Jelly eSports", - "symbol": "jelly" - }, - { - "id": "jellyfish-mobile", - "name": "Jellyfish Mobile", - "symbol": "jfish" - }, - { - "id": "jellyverse", - "name": "Jellyverse", - "symbol": "jly" - }, - { - "id": "jen-coin", - "name": "JEN COIN", - "symbol": "jen" - }, - { - "id": "jennyco", - "name": "JennyCo", - "symbol": "jco" - }, - { - "id": "jeo-boden", - "name": "Jeo Boden", - "symbol": "boden" - }, - { - "id": "jerry-inu", - "name": "Jerry Inu", - "symbol": "jerry" - }, - { - "id": "jesus", - "name": "Jesus", - "symbol": "raptor" - }, - { - "id": "jesus-coin", - "name": "Jesus Coin", - "symbol": "jesus" - }, - { - "id": "jesus-on-sol", - "name": "JESUS ON SOL", - "symbol": "jesus" - }, - { - "id": "jet", - "name": "JET", - "symbol": "jet" - }, - { - "id": "jetcoin", - "name": "Jetcoin", - "symbol": "jet" - }, - { - "id": "jetoken", - "name": "JeToken", - "symbol": "jets" - }, - { - "id": "jetset", - "name": "Jetset", - "symbol": "jts" - }, - { - "id": "jetton", - "name": "JetTon Game", - "symbol": "jetton" - }, - { - "id": "jexchange", - "name": "JEXchange", - "symbol": "jex" - }, - { - "id": "jfin-coin", - "name": "JFIN Coin", - "symbol": "jfin" - }, - { - "id": "jigstack", - "name": "Jigstack", - "symbol": "stak" - }, - { - "id": "jill-boden", - "name": "Jill Boden", - "symbol": "jillboden" - }, - { - "id": "jimmy-on-solana", - "name": "Jimmy on Solana", - "symbol": "jimmy" - }, - { - "id": "jindo-inu", - "name": "Jindo Inu", - "symbol": "jind" - }, - { - "id": "jinko-ai", - "name": "Jinko AI", - "symbol": "jinko" - }, - { - "id": "jito-governance-token", - "name": "Jito", - "symbol": "jto" - }, - { - "id": "jito-staked-sol", - "name": "Jito Staked SOL", - "symbol": "jitosol" - }, - { - "id": "jiyuu", - "name": "Jiyuu", - "symbol": "jiyuu" - }, - { - "id": "jizzrocket", - "name": "JizzRocket", - "symbol": "jizz" - }, - { - "id": "jjmoji", - "name": "Jjmoji", - "symbol": "jj" - }, - { - "id": "jobai", - "name": "JobAi", - "symbol": "job" - }, - { - "id": "jobchain", - "name": "Jobchain", - "symbol": "job" - }, - { - "id": "joe", - "name": "JOE", - "symbol": "joe" - }, - { - "id": "joe-coin", - "name": "Joe Coin", - "symbol": "joe" - }, - { - "id": "joe-hat-token", - "name": "Joe Hat", - "symbol": "hat" - }, - { - "id": "joel", - "name": "Joel", - "symbol": "joel" - }, - { - "id": "joe-yo-coin", - "name": "Joe-Yo Coin", - "symbol": "jyc" - }, - { - "id": "john-doge", - "name": "John Doge", - "symbol": "jdoge" - }, - { - "id": "john-pork", - "name": "john pork", - "symbol": "pork" - }, - { - "id": "johor-darul-ta-zim-fc", - "name": "Johor Darul Ta\u2019zim FC Fan Token", - "symbol": "jdt" - }, - { - "id": "join-learn-and-thrive-token", - "name": "JLT Token", - "symbol": "jlt" - }, - { - "id": "jojo", - "name": "JOJO", - "symbol": "jojo" - }, - { - "id": "joker", - "name": "Joker", - "symbol": "joker" - }, - { - "id": "joltify", - "name": "Joltify", - "symbol": "jolt" - }, - { - "id": "jones", - "name": "$JONES", - "symbol": "$jones" - }, - { - "id": "jones-dao", - "name": "Jones DAO", - "symbol": "jones" - }, - { - "id": "jones-glp", - "name": "Jones GLP", - "symbol": "jglp" - }, - { - "id": "jones-usdc", - "name": "Jones USDC", - "symbol": "jusdc" - }, - { - "id": "jongro-boutique", - "name": "Jongro Boutique", - "symbol": "jobt" - }, - { - "id": "jonny-five", - "name": "Jonny Five", - "symbol": "jfive" - }, - { - "id": "joops", - "name": "JOOPS", - "symbol": "joops" - }, - { - "id": "joram-poowel", - "name": "JORAM POOWEL", - "symbol": "poowel" - }, - { - "id": "journart", - "name": "JournArt", - "symbol": "jart" - }, - { - "id": "journey-ai", - "name": "Journey", - "symbol": "jrny" - }, - { - "id": "jovjou", - "name": "JovJou", - "symbol": "jovjou" - }, - { - "id": "joystick-club", - "name": "Joystick.club", - "symbol": "joy" - }, - { - "id": "joystream", - "name": "Joystream", - "symbol": "joy" - }, - { - "id": "jp", - "name": "JP", - "symbol": "jp" - }, - { - "id": "jpeg-d", - "name": "JPEG'd (OLD)", - "symbol": "jpeg" - }, - { - "id": "jpeg-d-2", - "name": "JPEG'd", - "symbol": "jpgd" - }, - { - "id": "jpeg-ordinals", - "name": "JPEG (Ordinals)", - "symbol": "jpeg" - }, - { - "id": "jpg-nft-index", - "name": "JPG NFT Index", - "symbol": "jpg" - }, - { - "id": "jpgoldcoin", - "name": "JPGoldCoin", - "symbol": "jpgc" - }, - { - "id": "jpg-store", - "name": "JPG", - "symbol": "jpg" - }, - { - "id": "jpool", - "name": "JPool", - "symbol": "jsol" - }, - { - "id": "jpyc", - "name": "JPY Coin v1", - "symbol": "jpyc" - }, - { - "id": "jpy-coin", - "name": "JPY Coin", - "symbol": "jpyc" - }, - { - "id": "jtc-network", - "name": "JTC Network", - "symbol": "jtc" - }, - { - "id": "jts", - "name": "JTS", - "symbol": "jts" - }, - { - "id": "judas", - "name": "JUDAS", - "symbol": "$judas" - }, - { - "id": "judge-ai", - "name": "Judge AI", - "symbol": "judge" - }, - { - "id": "judgment-ai", - "name": "Judgment AI", - "symbol": "jmtai" - }, - { - "id": "juggernaut", - "name": "Juggernaut", - "symbol": "jgn" - }, - { - "id": "jugni", - "name": "JUGNI", - "symbol": "jugni" - }, - { - "id": "juice", - "name": "Juice", - "symbol": "$juice" - }, - { - "id": "juicebox", - "name": "Juicebox", - "symbol": "jbx" - }, - { - "id": "juice-finance", - "name": "Juice Finance", - "symbol": "juice" - }, - { - "id": "jujube", - "name": "Jujube", - "symbol": "jujube" - }, - { - "id": "julswap", - "name": "JulSwap", - "symbol": "juld" - }, - { - "id": "jumbo-exchange", - "name": "Jumbo Exchange", - "symbol": "jumbo" - }, - { - "id": "jumptoken", - "name": "JumpToken", - "symbol": "jmpt" - }, - { - "id": "jungle", - "name": "Jungle", - "symbol": "jungle" - }, - { - "id": "jungle-defi", - "name": "Jungle DeFi", - "symbol": "jfi" - }, - { - "id": "jungleking-tigercoin", - "name": "JungleKing TigerCoin", - "symbol": "tiger" - }, - { - "id": "jungle-labz", - "name": "Jungle Labz", - "symbol": "jngl" - }, - { - "id": "juno-network", - "name": "JUNO", - "symbol": "juno" - }, - { - "id": "jupbot", - "name": "JupBot", - "symbol": "jupbot" - }, - { - "id": "jupiter", - "name": "Jupiter Project", - "symbol": "jup" - }, - { - "id": "jupiter-exchange-solana", - "name": "Jupiter", - "symbol": "jup" - }, - { - "id": "jupiter-perpetuals-liquidity-provider-token", - "name": "Jupiter Perpetuals Liquidity Provider Token", - "symbol": "jlp" - }, - { - "id": "jupu", - "name": "Jupu", - "symbol": "jupu" - }, - { - "id": "jur", - "name": "Jur", - "symbol": "jur" - }, - { - "id": "jusd", - "name": "JUSD", - "symbol": "jusd" - }, - { - "id": "just", - "name": "JUST", - "symbol": "jst" - }, - { - "id": "just-a-black-rock-on-base", - "name": "Just a Black Rock on Base", - "symbol": "rock" - }, - { - "id": "justanegg-2", - "name": "JustAnEgg", - "symbol": "egg" - }, - { - "id": "justmoney-2", - "name": "JustMoney", - "symbol": "jm" - }, - { - "id": "just-stablecoin", - "name": "JUST Stablecoin", - "symbol": "usdj" - }, - { - "id": "just-the-tip", - "name": "Just The Tip", - "symbol": "tips" - }, - { - "id": "justus", - "name": "Justus", - "symbol": "jtt" - }, - { - "id": "juventus-fan-token", - "name": "Juventus Fan Token", - "symbol": "juv" - }, - { - "id": "k21", - "name": "K21", - "symbol": "k21" - }, - { - "id": "k9-finance-dao", - "name": "K9 Finance DAO", - "symbol": "knine" - }, - { - "id": "kabochan", - "name": "KaboChan", - "symbol": "kabo" - }, - { - "id": "kabosu", - "name": "Kabosu", - "symbol": "kabosu" - }, - { - "id": "kabosu-2", - "name": "KaBoSu", - "symbol": "kabosu" - }, - { - "id": "kabosu-3", - "name": "Kabosu", - "symbol": "$kabosu" - }, - { - "id": "kabosu-arbitrum", - "name": "Kabosu (Arbitrum)", - "symbol": "kabosu" - }, - { - "id": "kabosuceo", - "name": "KabosuCEO", - "symbol": "kceo" - }, - { - "id": "kabosu-inu", - "name": "Kabosu Inu", - "symbol": "kabosu" - }, - { - "id": "kabuni", - "name": "Kabuni", - "symbol": "kbc" - }, - { - "id": "kaby-arena", - "name": "Kaby Arena", - "symbol": "kaby" - }, - { - "id": "kaching", - "name": "Kaching", - "symbol": "kch" - }, - { - "id": "kaddex", - "name": "eckoDAO", - "symbol": "kdx" - }, - { - "id": "kadena", - "name": "Kadena", - "symbol": "kda" - }, - { - "id": "kaeri", - "name": "Kaeri", - "symbol": "kaeri" - }, - { - "id": "kafenio-coin", - "name": "Kafenio Coin", - "symbol": "kfn" - }, - { - "id": "kage", - "name": "Kage", - "symbol": "kage" - }, - { - "id": "kagla-finance", - "name": "Kagla Finance", - "symbol": "kgl" - }, - { - "id": "kaidex", - "name": "Kaidex", - "symbol": "kdx" - }, - { - "id": "kaif", - "name": "KAIF", - "symbol": "kaf" - }, - { - "id": "kaijuno8", - "name": "KAIJUNO8", - "symbol": "kaiju" - }, - { - "id": "kairos-a612bf05-b9c8-4e6b-aeb6-1f5b788ddd40", - "name": "Kairos", - "symbol": "$kairos" - }, - { - "id": "kaizen", - "name": "Kaizen.Finance", - "symbol": "kzen" - }, - { - "id": "kaka-nft-world", - "name": "KAKA NFT World", - "symbol": "kaka" - }, - { - "id": "kala", - "name": "Kala", - "symbol": "kala" - }, - { - "id": "kalamint", - "name": "Kalamint", - "symbol": "kalam" - }, - { - "id": "kalao", - "name": "Kalao", - "symbol": "klo" - }, - { - "id": "kaleidocube", - "name": "KaleidoCube", - "symbol": "$kalei" - }, - { - "id": "kalichain", - "name": "Kalichain", - "symbol": "kalis" - }, - { - "id": "kalisten", - "name": "Kalisten", - "symbol": "ks" - }, - { - "id": "kalmar", - "name": "KALM", - "symbol": "kalm" - }, - { - "id": "kalycoin", - "name": "KalyChain", - "symbol": "klc" - }, - { - "id": "kamaleont", - "name": "Kamaleont", - "symbol": "klt" - }, - { - "id": "kambria", - "name": "Kambria", - "symbol": "kat" - }, - { - "id": "kampay", - "name": "Kampay", - "symbol": "kampay" - }, - { - "id": "kan", - "name": "BitKan", - "symbol": "kan" - }, - { - "id": "kanagawa-nami", - "name": "Kanagawa Nami", - "symbol": "okinami" - }, - { - "id": "kanaloa-network", - "name": "Kanaloa Network", - "symbol": "kana" - }, - { - "id": "kang3n", - "name": "kang3n", - "symbol": "kang3n" - }, - { - "id": "kanga-exchange", - "name": "Kanga Exchange", - "symbol": "kng" - }, - { - "id": "kangal", - "name": "Kangal", - "symbol": "kangal" - }, - { - "id": "kangaroo-community", - "name": "Kangaroo Community", - "symbol": "kroo" - }, - { - "id": "kannagi-finance", - "name": "Kannagi Finance", - "symbol": "kana" - }, - { - "id": "kanpeki", - "name": "Kanpeki", - "symbol": "kae" - }, - { - "id": "kanye", - "name": "Kanye", - "symbol": "ye" - }, - { - "id": "kapital-dao", - "name": "KAP Games", - "symbol": "kap" - }, - { - "id": "karastar-umy", - "name": "KaraStar UMY", - "symbol": "umy" - }, - { - "id": "karat", - "name": "Karat", - "symbol": "kat" - }, - { - "id": "karate-combat", - "name": "Karate Combat", - "symbol": "karate" - }, - { - "id": "karbo", - "name": "Karbo", - "symbol": "krb" - }, - { - "id": "kardiachain", - "name": "KardiaChain", - "symbol": "kai" - }, - { - "id": "karencoin", - "name": "KarenCoin", - "symbol": "karen" - }, - { - "id": "karen-hates-you", - "name": "Karen Hates You", - "symbol": "karen" - }, - { - "id": "karen-pepe", - "name": "Karen Pepe", - "symbol": "$kepe" - }, - { - "id": "karlsen", - "name": "Karlsen", - "symbol": "kls" - }, - { - "id": "karmacoin", - "name": "KarmaCoin", - "symbol": "karma" - }, - { - "id": "karma-dao", - "name": "Karma DAO", - "symbol": "karma" - }, - { - "id": "karmaverse", - "name": "Karmaverse", - "symbol": "knot" - }, - { - "id": "karmaverse-zombie-serum", - "name": "Karmaverse Zombie Serum", - "symbol": "serum" - }, - { - "id": "karsiyaka-taraftar-token", - "name": "Kar\u015f\u0131yaka Taraftar Fan Token", - "symbol": "ksk" - }, - { - "id": "karura", - "name": "Karura", - "symbol": "kar" - }, - { - "id": "kasa-central", - "name": "Kasa Central", - "symbol": "kasa" - }, - { - "id": "kaspa", - "name": "Kaspa", - "symbol": "kas" - }, - { - "id": "kaspa-classic", - "name": "Kaspa Classic", - "symbol": "cas" - }, - { - "id": "kaspamining", - "name": "KASPAMINING", - "symbol": "kmn" - }, - { - "id": "kassandra", - "name": "Kassandra", - "symbol": "kacy" - }, - { - "id": "kasta", - "name": "Kasta", - "symbol": "kasta" - }, - { - "id": "katana-inu", - "name": "Katana Inu", - "symbol": "kata" - }, - { - "id": "kattana", - "name": "Kattana", - "symbol": "ktn" - }, - { - "id": "kava", - "name": "Kava", - "symbol": "kava" - }, - { - "id": "kava-lend", - "name": "Kava Lend", - "symbol": "hard" - }, - { - "id": "kava-swap", - "name": "Kava Swap", - "symbol": "swp" - }, - { - "id": "kawaii-islands", - "name": "Kawaii Islands", - "symbol": "kwt" - }, - { - "id": "kay-pacha", - "name": "Kay Pacha", - "symbol": "pacha" - }, - { - "id": "kcal", - "name": "KCAL", - "symbol": "kcal" - }, - { - "id": "kccpad", - "name": "KCCPad", - "symbol": "kccpad" - }, - { - "id": "kdag", - "name": "King DAG", - "symbol": "kdag" - }, - { - "id": "kdlaunch", - "name": "KDLaunch", - "symbol": "kdl" - }, - { - "id": "kdswap", - "name": "KDSwap", - "symbol": "kds" - }, - { - "id": "keep3rv1", - "name": "Keep3rV1", - "symbol": "kp3r" - }, - { - "id": "keep-finance", - "name": "Keep Finance", - "symbol": "keep" - }, - { - "id": "keep-network", - "name": "Keep Network", - "symbol": "keep" - }, - { - "id": "keeps-coin", - "name": "KEEPs Coin", - "symbol": "kverse" - }, - { - "id": "kei-finance", - "name": "KEI Finance", - "symbol": "kei" - }, - { - "id": "kek", - "name": "KEK", - "symbol": "keke" - }, - { - "id": "kekchain", - "name": "KeKChain", - "symbol": "kek" - }, - { - "id": "kekcoin-eth", - "name": "Kekcoin (ETH)", - "symbol": "kek" - }, - { - "id": "keke-inu", - "name": "Keke Inu", - "symbol": "keke" - }, - { - "id": "keko", - "name": "Keko", - "symbol": "keko" - }, - { - "id": "kelp-dao-restaked-eth", - "name": "Kelp DAO Restaked ETH", - "symbol": "rseth" - }, - { - "id": "kelp-earned-points", - "name": "Kelp Earned Points", - "symbol": "kep" - }, - { - "id": "kelvpn", - "name": "KelVPN", - "symbol": "kel" - }, - { - "id": "kemacoin", - "name": "KemaCoin", - "symbol": "kema" - }, - { - "id": "kenda", - "name": "Kenda", - "symbol": "knda" - }, - { - "id": "kendoll-janner", - "name": "Kendoll Janner", - "symbol": "ken" - }, - { - "id": "kendu-inu", - "name": "Kendu Inu", - "symbol": "kendu" - }, - { - "id": "kenka-metaverse", - "name": "KENKA METAVERSE", - "symbol": "kenka" - }, - { - "id": "kenshi-2", - "name": "Kenshi", - "symbol": "kns" - }, - { - "id": "kento", - "name": "Kento", - "symbol": "knto" - }, - { - "id": "kephi-gallery", - "name": "Kephi Gallery", - "symbol": "kphi" - }, - { - "id": "kepple", - "name": "Kepple", - "symbol": "kpl" - }, - { - "id": "kerc", - "name": "KERC", - "symbol": "kerc" - }, - { - "id": "kermit-cc0e2d66-4b46-4eaf-9f4e-5caa883d1c09", - "name": "Kermit", - "symbol": "kermit" - }, - { - "id": "kerosene", - "name": "Kerosene", - "symbol": "kerosene" - }, - { - "id": "ketaicoin", - "name": "Ketaicoin", - "symbol": "ethereum" - }, - { - "id": "kevin-2", - "name": "Kevin", - "symbol": "kevin" - }, - { - "id": "kewl", - "name": "Kewl", - "symbol": "kewl" - }, - { - "id": "kewl-exchange", - "name": "KEWL EXCHANGE", - "symbol": "kwl" - }, - { - "id": "keyboard-cat", - "name": "Keyboard Cat", - "symbol": "keycat" - }, - { - "id": "keyboard-cat-base", - "name": "Keyboard Cat (Base)", - "symbol": "keycat" - }, - { - "id": "keydog", - "name": "KEYDOG", - "symbol": "$keydog" - }, - { - "id": "keyfi", - "name": "KeyFi", - "symbol": "keyfi" - }, - { - "id": "keyoflife", - "name": "KeyOfLife", - "symbol": "kol" - }, - { - "id": "keysatin", - "name": "KeySATIN", - "symbol": "keysatin" - }, - { - "id": "keysians-network", - "name": "Keysians Network", - "symbol": "ken" - }, - { - "id": "keys-token", - "name": "Keys", - "symbol": "keys" - }, - { - "id": "ki", - "name": "KI", - "symbol": "xki" - }, - { - "id": "kiba-inu", - "name": "Kiba Inu", - "symbol": "kiba" - }, - { - "id": "kibble", - "name": "Kibble", - "symbol": "kibble" - }, - { - "id": "kibbleswap", - "name": "KibbleSwap", - "symbol": "kib" - }, - { - "id": "kiboshib", - "name": "KiboShib", - "symbol": "kibshi" - }, - { - "id": "kick", - "name": "Kick", - "symbol": "kick" - }, - { - "id": "kickpad", - "name": "KickPad", - "symbol": "kpad" - }, - { - "id": "kiirocoin", - "name": "Kiirocoin", - "symbol": "kiiro" - }, - { - "id": "killer-bean", - "name": "Killer Bean", - "symbol": "bean" - }, - { - "id": "kilopi-8ee65670-efa5-4414-b9b4-1a1240415d74", - "name": "Kilopi", - "symbol": "lop" - }, - { - "id": "kilt-protocol", - "name": "KILT Protocol", - "symbol": "kilt" - }, - { - "id": "kimbo", - "name": "Kimbo", - "symbol": "kimbo" - }, - { - "id": "kimchi-finance", - "name": "KIMCHI.finance", - "symbol": "kimchi" - }, - { - "id": "kin", - "name": "Kin", - "symbol": "kin" - }, - { - "id": "kindness-for-the-soul", - "name": "Kindness For The Soul", - "symbol": "kind" - }, - { - "id": "kindness-for-the-soul-soul", - "name": "Kindness For The Soul SOUL", - "symbol": "soul" - }, - { - "id": "kinect-finance", - "name": "Kinect Finance", - "symbol": "knt" - }, - { - "id": "kineko", - "name": "KKO Protocol", - "symbol": "kko" - }, - { - "id": "kineko-knk", - "name": "Kineko", - "symbol": "knk" - }, - { - "id": "kine-protocol", - "name": "Kine Protocol", - "symbol": "kine" - }, - { - "id": "kinesis-gold", - "name": "Kinesis Gold", - "symbol": "kau" - }, - { - "id": "kinesis-silver", - "name": "Kinesis Silver", - "symbol": "kag" - }, - { - "id": "kinetixfi", - "name": "KinetixFi", - "symbol": "kfi" - }, - { - "id": "king-2", - "name": "KING Coin", - "symbol": "king" - }, - { - "id": "kingaru", - "name": "Kingaru", - "symbol": "kru" - }, - { - "id": "king-bonk", - "name": "King Bonk", - "symbol": "kingbonk" - }, - { - "id": "king-cat", - "name": "King Cat", - "symbol": "kingcat" - }, - { - "id": "king-dog-inu", - "name": "King Dog Inu", - "symbol": "kingdog" - }, - { - "id": "kingdomgame", - "name": "KingdomGame", - "symbol": "kingdom" - }, - { - "id": "kingdom-game-4-0", - "name": "KingdomStarter", - "symbol": "kdg" - }, - { - "id": "kingdom-karnage", - "name": "Kingdom Karnage", - "symbol": "kkt" - }, - { - "id": "kingdom-of-ants-ant-coins", - "name": "Kingdom of ANTs ANT Coins", - "symbol": "antc" - }, - { - "id": "kingdomverse", - "name": "Kingdomverse", - "symbol": "king" - }, - { - "id": "kingdomx", - "name": "KingdomX", - "symbol": "kt" - }, - { - "id": "king-forever", - "name": "KING FOREVER", - "symbol": "kfr" - }, - { - "id": "king-grok", - "name": "King Grok", - "symbol": "kinggrok" - }, - { - "id": "king-of-legends-2", - "name": "King of Legends", - "symbol": "kol" - }, - { - "id": "king-shiba", - "name": "King Shiba", - "symbol": "kingshib" - }, - { - "id": "kingshit", - "name": "Kingshit", - "symbol": "kingshit" - }, - { - "id": "kingspeed", - "name": "KingSpeed", - "symbol": "ksc" - }, - { - "id": "kingu", - "name": "KingU", - "symbol": "kingu" - }, - { - "id": "king-wif", - "name": "King WIF", - "symbol": "kingwif" - }, - { - "id": "kingyton", - "name": "KingyTON", - "symbol": "kingy" - }, - { - "id": "kinka", - "name": "Kinka", - "symbol": "xnk" - }, - { - "id": "kintsugi", - "name": "Kintsugi", - "symbol": "kint" - }, - { - "id": "kintsugi-btc", - "name": "Kintsugi BTC", - "symbol": "kbtc" - }, - { - "id": "kira", - "name": "KIRA", - "symbol": "kira" - }, - { - "id": "kira-2", - "name": "KIRA", - "symbol": "kira" - }, - { - "id": "kira-network", - "name": "KIRA Network", - "symbol": "kex" - }, - { - "id": "kira-the-injective-cat", - "name": "Kira the Injective Cat", - "symbol": "kira" - }, - { - "id": "kirobo", - "name": "KIRO", - "symbol": "kiro" - }, - { - "id": "kiseki", - "name": "Kiseki", - "symbol": "kitup" - }, - { - "id": "kishimoto", - "name": "Kishimoto", - "symbol": "kishimoto" - }, - { - "id": "kishu-inu", - "name": "Kishu Inu", - "symbol": "kishu" - }, - { - "id": "kishu-ken", - "name": "Kishu Ken", - "symbol": "kishk" - }, - { - "id": "kissan", - "name": "Kissan", - "symbol": "ksn" - }, - { - "id": "kitbull", - "name": "Kitbull", - "symbol": "kitbull" - }, - { - "id": "kite", - "name": "Kite", - "symbol": "kite" - }, - { - "id": "kitsumon", - "name": "Kitsumon", - "symbol": "$kmc" - }, - { - "id": "kitsune", - "name": "Kitsune", - "symbol": "kit" - }, - { - "id": "kittenfinance", - "name": "KittenFinance", - "symbol": "kif" - }, - { - "id": "kitten-haimer", - "name": "Kitten Haimer", - "symbol": "khai" - }, - { - "id": "kitti", - "name": "KITTI", - "symbol": "kitti" - }, - { - "id": "kitty", - "name": "Kitty", - "symbol": "kit" - }, - { - "id": "kitty-ai", - "name": "Kitty AI", - "symbol": "kitty" - }, - { - "id": "kittycake", - "name": "KittyCake", - "symbol": "kcake" - }, - { - "id": "kitty-coin-solana", - "name": "Kitty Coin Solana", - "symbol": "kitty" - }, - { - "id": "kitty-inu", - "name": "Kitty Inu", - "symbol": "kitty" - }, - { - "id": "kiwi", - "name": "kiwi", - "symbol": "kiwi" - }, - { - "id": "kiwi-deployer-bot", - "name": "KIWI DEPLOYER BOT", - "symbol": "$kiwi" - }, - { - "id": "kiwi-meme", - "name": "Kiwi", - "symbol": "kiwi" - }, - { - "id": "kiwi-token-2", - "name": "KIWI Token", - "symbol": "kiwi" - }, - { - "id": "kizuna", - "name": "Kizuna", - "symbol": "kizuna" - }, - { - "id": "klap-finance", - "name": "Klap Finance", - "symbol": "klap" - }, - { - "id": "klaycity-orb", - "name": "Orbcity", - "symbol": "orb" - }, - { - "id": "klaydice", - "name": "Klaydice", - "symbol": "dice" - }, - { - "id": "klayfi-finance", - "name": "KlayFi Finance", - "symbol": "kfi" - }, - { - "id": "klayswap-protocol", - "name": "KlaySwap Protocol", - "symbol": "ksp" - }, - { - "id": "klaytn-dai", - "name": "Klaytn Dai", - "symbol": "kdai" - }, - { - "id": "klay-token", - "name": "Klaytn", - "symbol": "klay" - }, - { - "id": "klaytu", - "name": "Klaytu", - "symbol": "ktu" - }, - { - "id": "kleekai", - "name": "KleeKai", - "symbol": "klee" - }, - { - "id": "kleomedes", - "name": "Kleomedes", - "symbol": "kleo" - }, - { - "id": "kleros", - "name": "Kleros", - "symbol": "pnk" - }, - { - "id": "kleva", - "name": "KLEVA", - "symbol": "kleva" - }, - { - "id": "klever", - "name": "Klever", - "symbol": "klv" - }, - { - "id": "klever-finance", - "name": "Klever Finance", - "symbol": "kfi" - }, - { - "id": "kleverkid-coin", - "name": "Kleverkid Coin", - "symbol": "kid" - }, - { - "id": "klima-dao", - "name": "KlimaDAO", - "symbol": "klima" - }, - { - "id": "klubcoin", - "name": "KlubCoin", - "symbol": "klub" - }, - { - "id": "kmushicoin", - "name": "Kmushicoin", - "symbol": "ktv" - }, - { - "id": "knights-peasants", - "name": "Knights & Peasants", - "symbol": "knight" - }, - { - "id": "knightswap", - "name": "KnightSwap", - "symbol": "knight" - }, - { - "id": "knight-war-spirits", - "name": "Knight War Spirits", - "symbol": "kws" - }, - { - "id": "knit-finance", - "name": "Knit Finance", - "symbol": "kft" - }, - { - "id": "knob", - "name": "KNOB$", - "symbol": "knob" - }, - { - "id": "koakuma", - "name": "Koakuma", - "symbol": "kkma" - }, - { - "id": "koala-ai", - "name": "KOALA AI", - "symbol": "koko" - }, - { - "id": "koava", - "name": "Koava", - "symbol": "koava" - }, - { - "id": "kobe", - "name": "Kobe", - "symbol": "beef" - }, - { - "id": "kocaelispor-fan-token", - "name": "Kocaelispor Fan Token", - "symbol": "kstt" - }, - { - "id": "kochi-ken", - "name": "Kochi Ken", - "symbol": "kochi" - }, - { - "id": "koda-finance", - "name": "Koda Cryptocurrency", - "symbol": "koda" - }, - { - "id": "kogecoin", - "name": "KogeCoin", - "symbol": "kogecoin" - }, - { - "id": "kohenoor", - "name": "KOHENOOR", - "symbol": "ken" - }, - { - "id": "koi", - "name": "KOI", - "symbol": "koi" - }, - { - "id": "koi-2", - "name": "KOI", - "symbol": "koi" - }, - { - "id": "koi-3", - "name": "Koi", - "symbol": "koi" - }, - { - "id": "koinbay-token", - "name": "KoinBay Token", - "symbol": "kbt" - }, - { - "id": "koinon", - "name": "Koinon", - "symbol": "koin" - }, - { - "id": "koinos", - "name": "Koinos", - "symbol": "koin" - }, - { - "id": "koji", - "name": "Koji", - "symbol": "koji" - }, - { - "id": "kok", - "name": "KOK", - "symbol": "kok" - }, - { - "id": "kokoa-finance", - "name": "Kokoa Finance", - "symbol": "kokoa" - }, - { - "id": "kokoa-stable-dollar", - "name": "Kokoa Stable Dollar", - "symbol": "ksd" - }, - { - "id": "kokonut-swap", - "name": "Kokonut Swap", - "symbol": "kokos" - }, - { - "id": "kolibri-dao", - "name": "Kolibri DAO", - "symbol": "kdao" - }, - { - "id": "kolibri-usd", - "name": "Kolibri USD", - "symbol": "kusd" - }, - { - "id": "kollector", - "name": "Kollector", - "symbol": "kltr" - }, - { - "id": "kommunitas", - "name": "Kommunitas", - "symbol": "kom" - }, - { - "id": "komodo", - "name": "Komodo", - "symbol": "kmd" - }, - { - "id": "kompete", - "name": "KOMPETE", - "symbol": "kompete" - }, - { - "id": "kondux-v2", - "name": "KONDUX", - "symbol": "kndx" - }, - { - "id": "kong", - "name": "KONG", - "symbol": "kong" - }, - { - "id": "konke", - "name": "Konke", - "symbol": "konke" - }, - { - "id": "konnect", - "name": "Konnect", - "symbol": "kct" - }, - { - "id": "konomi-network", - "name": "Konomi Network", - "symbol": "kono" - }, - { - "id": "konpay", - "name": "KonPay", - "symbol": "kon" - }, - { - "id": "koop360", - "name": "Koop360", - "symbol": "koop" - }, - { - "id": "korra", - "name": "KORRA", - "symbol": "korra" - }, - { - "id": "kortana", - "name": "Kortana", - "symbol": "kora" - }, - { - "id": "kotia", - "name": "kotia", - "symbol": "kot" - }, - { - "id": "kounotori", - "name": "Kounotori", - "symbol": "kto" - }, - { - "id": "kovin-segnocchi", - "name": "Kovin Segnocchi", - "symbol": "kovin" - }, - { - "id": "koyo", - "name": "K\u014dy\u014d", - "symbol": "kyo" - }, - { - "id": "koyo-6e93c7c7-03a3-4475-86a1-f0bc80ee09d6", - "name": "Koyo", - "symbol": "koy" - }, - { - "id": "k-pop-click-coin", - "name": "K-POP CLICK COIN", - "symbol": "kpc" - }, - { - "id": "kpop-coin", - "name": "KPOP Coin", - "symbol": "kpop" - }, - { - "id": "k-pop-on-solana", - "name": "K-Pop on Solana", - "symbol": "kpop" - }, - { - "id": "kragger-inu", - "name": "Kragger Inu", - "symbol": "kinu" - }, - { - "id": "krav", - "name": "Krav", - "symbol": "krav" - }, - { - "id": "kreaitor", - "name": "Kreaitor", - "symbol": "kai" - }, - { - "id": "krees", - "name": "Krees", - "symbol": "krees" - }, - { - "id": "krest", - "name": "Krest", - "symbol": "krest" - }, - { - "id": "krida-fans", - "name": "Krida Fans", - "symbol": "krida" - }, - { - "id": "krill", - "name": "Krill", - "symbol": "krill" - }, - { - "id": "kripto", - "name": "Kripto", - "symbol": "kripto" - }, - { - "id": "kripto-galaxy-battle", - "name": "Kripto Galaxy Battle", - "symbol": "kaba" - }, - { - "id": "krogan", - "name": "Krogan", - "symbol": "kro" - }, - { - "id": "kroma", - "name": "Kroma", - "symbol": "kro" - }, - { - "id": "kromatika", - "name": "Kromatika", - "symbol": "krom" - }, - { - "id": "kronobit", - "name": "Kronobit Networks Blockchain", - "symbol": "knb" - }, - { - "id": "krown", - "name": "KROWN", - "symbol": "krw" - }, - { - "id": "kryll", - "name": "KRYLL", - "symbol": "krl" - }, - { - "id": "krypto-fraxtal-chicken", - "name": "Krypto Fraxtal Chicken", - "symbol": "kfc" - }, - { - "id": "kryptokrona", - "name": "Kryptokrona", - "symbol": "xkr" - }, - { - "id": "kryptomon", - "name": "Kryptomon", - "symbol": "kmon" - }, - { - "id": "krypton-dao", - "name": "Krypton DAO", - "symbol": "krd" - }, - { - "id": "kryptonite", - "name": "Kryptonite", - "symbol": "seilor" - }, - { - "id": "kryptonite-staked-sei", - "name": "Kryptonite Staked SEI", - "symbol": "stsei" - }, - { - "id": "krypton-token", - "name": "Krypton Galaxy Coin", - "symbol": "kgc" - }, - { - "id": "kryxivia-game", - "name": "Kryxivia Game", - "symbol": "kxa" - }, - { - "id": "kryza-exchange", - "name": "KRYZA Exchange", - "symbol": "krx" - }, - { - "id": "kryza-network", - "name": "KRYZA Network", - "symbol": "krn" - }, - { - "id": "k-stadium", - "name": "K Stadium", - "symbol": "ksta" - }, - { - "id": "kstarcoin", - "name": "KStarCoin", - "symbol": "ksc" - }, - { - "id": "kstarnft", - "name": "KStarNFT", - "symbol": "knft" - }, - { - "id": "k-tune", - "name": "K-Tune", - "symbol": "ktt" - }, - { - "id": "ktx-finance", - "name": "KTX.Finance", - "symbol": "ktc" - }, - { - "id": "kubecoin", - "name": "KubeCoin", - "symbol": "kube" - }, - { - "id": "kubic", - "name": "Kubic", - "symbol": "kubic" - }, - { - "id": "kucoin-bridged-usdc-kucoin-community-chain", - "name": "Kucoin Bridged USDC (KuCoin Community Chain)", - "symbol": "usdc" - }, - { - "id": "kucoin-bridged-usdt-kucoin-community-chain", - "name": "Kucoin Bridged USDT (KuCoin Community Chain)", - "symbol": "usdt" - }, - { - "id": "kucoin-shares", - "name": "KuCoin", - "symbol": "kcs" - }, - { - "id": "kudoe", - "name": "Kudoe", - "symbol": "kdoe" - }, - { - "id": "kujira", - "name": "Kujira", - "symbol": "kuji" - }, - { - "id": "kuku", - "name": "KuKu", - "symbol": "kuku" - }, - { - "id": "kuku-eth", - "name": "KuKu", - "symbol": "kuku" - }, - { - "id": "kuma", - "name": "KUMA", - "symbol": "kuma" - }, - { - "id": "kumadex-token", - "name": "KumaDex Token", - "symbol": "dkuma" - }, - { - "id": "kuma-inu", - "name": "Kuma Inu", - "symbol": "kuma" - }, - { - "id": "kumamon-finance", - "name": "Kumamon Finance", - "symbol": "kumamon" - }, - { - "id": "kuma-protocol-fr-kuma-interest-bearing-token", - "name": "KUMA Protocol FR KUMA Interest Bearing Token", - "symbol": "frk" - }, - { - "id": "kuma-protocol-wrapped-frk", - "name": "KUMA Protocol Wrapped FRK", - "symbol": "wfrk" - }, - { - "id": "kuma-protocol-wrapped-usk", - "name": "KUMA Protocol Wrapped USK", - "symbol": "wusk" - }, - { - "id": "kunaikash", - "name": "KunaiKash", - "symbol": "kunai" - }, - { - "id": "kunci-coin", - "name": "Kunci Coin", - "symbol": "kunci" - }, - { - "id": "kuni", - "name": "Kuni", - "symbol": "kuni" - }, - { - "id": "kunji-finance", - "name": "Kunji Finance", - "symbol": "knj" - }, - { - "id": "kunkun-coin", - "name": "KUNKUN Coin", - "symbol": "kunkun" - }, - { - "id": "kurobi", - "name": "Kurobi", - "symbol": "kuro" - }, - { - "id": "kuroneko", - "name": "KURONEKO", - "symbol": "jiji" - }, - { - "id": "kusama", - "name": "Kusama", - "symbol": "ksm" - }, - { - "id": "kusd-t", - "name": "KUSD-T", - "symbol": "kusd-t" - }, - { - "id": "kushcoin-sol", - "name": "kushcoin.sol", - "symbol": "kush" - }, - { - "id": "kusunoki-samurai", - "name": "Kusunoki Samurai", - "symbol": "kusunoki" - }, - { - "id": "kuswap", - "name": "KuSwap", - "symbol": "kus" - }, - { - "id": "kuza-finance-qe", - "name": "Kuza Finance QE", - "symbol": "qe" - }, - { - "id": "kvants-ai", - "name": "Kvants AI", - "symbol": "kvnt" - }, - { - "id": "kwai", - "name": "KWAI", - "symbol": "kwai" - }, - { - "id": "kwenta", - "name": "Kwenta", - "symbol": "kwenta" - }, - { - "id": "kyanite", - "name": "Kyanite", - "symbol": "kyan" - }, - { - "id": "kyberdyne", - "name": "Kyberdyne", - "symbol": "kbd" - }, - { - "id": "kyber-network", - "name": "Kyber Network Crystal Legacy", - "symbol": "kncl" - }, - { - "id": "kyber-network-crystal", - "name": "Kyber Network Crystal", - "symbol": "knc" - }, - { - "id": "kylacoin", - "name": "Kylacoin", - "symbol": "kcn" - }, - { - "id": "kyoko", - "name": "Kyoko", - "symbol": "kyoko" - }, - { - "id": "kyotoswap", - "name": "KyotoSwap", - "symbol": "kswap" - }, - { - "id": "kyrrex", - "name": "Kyrrex", - "symbol": "krrx" - }, - { - "id": "kyte-one", - "name": "Kyte.One", - "symbol": "kte" - }, - { - "id": "kyve-network", - "name": "KYVE Network", - "symbol": "kyve" - }, - { - "id": "kzcash", - "name": "Kzcash", - "symbol": "kzc" - }, - { - "id": "l", - "name": "L", - "symbol": "l" - }, - { - "id": "l2ve-inu", - "name": "L2VE INU", - "symbol": "l2ve" - }, - { - "id": "l3t-h1m-c00k", - "name": "L3T H1M C00K", - "symbol": "dough" - }, - { - "id": "l3usd", - "name": "L3USD", - "symbol": "l3usd" - }, - { - "id": "l7dex", - "name": "L7DEX", - "symbol": "lsd" - }, - { - "id": "label-foundation", - "name": "LABEL Foundation", - "symbol": "lbl" - }, - { - "id": "labs-group", - "name": "LABSV2", - "symbol": "labsv2" - }, - { - "id": "labs-protocol", - "name": "LABS Protocol", - "symbol": "labs" - }, - { - "id": "la-coin", - "name": "La Coin", - "symbol": "lac" - }, - { - "id": "lacostoken", - "name": "Lacostoken", - "symbol": "lcsn" - }, - { - "id": "laelaps", - "name": "Laelaps", - "symbol": "laelaps" - }, - { - "id": "laika", - "name": "Laika", - "symbol": "laika" - }, - { - "id": "laikaverse", - "name": "LaikaVerse", - "symbol": "laika" - }, - { - "id": "laine-stake", - "name": "Laine Stake", - "symbol": "lainesol" - }, - { - "id": "lakeviewmeta", - "name": "LakeViewMeta", - "symbol": "lvm" - }, - { - "id": "lamas-finance", - "name": "Lamas Finance", - "symbol": "lmf" - }, - { - "id": "lamb-by-opnx", - "name": "LAMB by OPNX", - "symbol": "lamb" - }, - { - "id": "lambda", - "name": "Lambda", - "symbol": "lamb" - }, - { - "id": "lambda-markets", - "name": "Lambda Markets", - "symbol": "lmda" - }, - { - "id": "lambo-0fcbf0f7-1a8f-470d-ba09-797d5e95d836", - "name": "$LAMBO", - "symbol": "lambo" - }, - { - "id": "lambo-2", - "name": "Lambo", - "symbol": "lambo" - }, - { - "id": "lambo-and-moon", - "name": "LAMBO AND MOON", - "symbol": "lm" - }, - { - "id": "lanacoin", - "name": "LanaCoin", - "symbol": "lana" - }, - { - "id": "lanceria", - "name": "Lanceria", - "symbol": "lanc" - }, - { - "id": "landboard", - "name": "Landboard", - "symbol": "land" - }, - { - "id": "land-of-conquest-slg", - "name": "SLG.GAMES", - "symbol": "slg" - }, - { - "id": "land-of-heroes", - "name": "Land Of Heroes", - "symbol": "loh" - }, - { - "id": "landshare", - "name": "Landshare", - "symbol": "land" - }, - { - "id": "landtorn-shard", - "name": "Landtorn Shard", - "symbol": "shard" - }, - { - "id": "landwolf", - "name": "LandWolf", - "symbol": "wolf" - }, - { - "id": "landwolf-2", - "name": "Landwolf", - "symbol": "wolf" - }, - { - "id": "landwolf-3", - "name": "LANDWOLF", - "symbol": "landwolf" - }, - { - "id": "landwolf-base", - "name": "Landwolf", - "symbol": "wolf" - }, - { - "id": "landwolf-on-avax", - "name": "Landwolf on AVAX", - "symbol": "wolf" - }, - { - "id": "landx-governance-token", - "name": "LandX Governance Token", - "symbol": "lndx" - }, - { - "id": "lanify", - "name": "Lanify", - "symbol": "lan" - }, - { - "id": "lan-network", - "name": "LAN Network", - "symbol": "lan" - }, - { - "id": "lapapuy", - "name": "Lampapuy", - "symbol": "lpp" - }, - { - "id": "la-peseta", - "name": "La Peseta [OLD]", - "symbol": "pta" - }, - { - "id": "la-peseta-2", - "name": "La Peseta", - "symbol": "ptas" - }, - { - "id": "laqira-protocol", - "name": "Laqira Protocol", - "symbol": "lqr" - }, - { - "id": "larace", - "name": "LaRace", - "symbol": "lar" - }, - { - "id": "larissa-blockchain", - "name": "Larissa Blockchain", - "symbol": "lrs" - }, - { - "id": "larix", - "name": "Larix", - "symbol": "larix" - }, - { - "id": "larry", - "name": "Larry", - "symbol": "larry" - }, - { - "id": "larry-the-llama", - "name": "Larry the Llama", - "symbol": "larry" - }, - { - "id": "latoken", - "name": "LA", - "symbol": "la" - }, - { - "id": "lattice-token", - "name": "Lattice", - "symbol": "ltx" - }, - { - "id": "laughcoin", - "name": "Laughcoin", - "symbol": "laughcoin" - }, - { - "id": "launchblock", - "name": "LaunchBlock", - "symbol": "lbp" - }, - { - "id": "launchpool", - "name": "Launchpool", - "symbol": "lpool" - }, - { - "id": "laurion-404", - "name": "Laurion 404", - "symbol": "laurion" - }, - { - "id": "lava", - "name": "Lava", - "symbol": "lava" - }, - { - "id": "lavandos", - "name": "Lavandos", - "symbol": "lave" - }, - { - "id": "lavaswap", - "name": "Lavaswap", - "symbol": "lava" - }, - { - "id": "lavita", - "name": "Lavita", - "symbol": "lavita" - }, - { - "id": "law", - "name": "LAW", - "symbol": "law" - }, - { - "id": "law-blocks", - "name": "Law Blocks", - "symbol": "lbt" - }, - { - "id": "layer2dao", - "name": "Layer2DAO", - "symbol": "l2dao" - }, - { - "id": "layer4-network", - "name": "Layer4 Network", - "symbol": "layer4" - }, - { - "id": "layergpt", - "name": "LayerGPT", - "symbol": "lgpt" - }, - { - "id": "layerium", - "name": "Layerium", - "symbol": "lyum" - }, - { - "id": "layer-network", - "name": "Layer Network", - "symbol": "layer" - }, - { - "id": "layer-one-x", - "name": "Layer One X", - "symbol": "l1x" - }, - { - "id": "layerzero", - "name": "LayerZero", - "symbol": "zro" - }, - { - "id": "layerzero-bridged-usdc-aptos", - "name": "LayerZero Bridged USDC (Aptos)", - "symbol": "zusdc" - }, - { - "id": "layerzero-usdc", - "name": "Bridged USD Coin (LayerZero)", - "symbol": "lzusdc" - }, - { - "id": "lazio-fan-token", - "name": "Lazio Fan Token", - "symbol": "lazio" - }, - { - "id": "lbk", - "name": "LBK", - "symbol": "lbk" - }, - { - "id": "lbry-credits", - "name": "LBRY Credits", - "symbol": "lbc" - }, - { - "id": "lcx", - "name": "LCX", - "symbol": "lcx" - }, - { - "id": "leaderdao", - "name": "LeaderDAO", - "symbol": "ldao" - }, - { - "id": "league-bot", - "name": "League Bot", - "symbol": "league" - }, - { - "id": "league-of-ancients", - "name": "League of Ancients", - "symbol": "loa" - }, - { - "id": "league-of-kingdoms", - "name": "League of Kingdoms", - "symbol": "loka" - }, - { - "id": "leancoin", - "name": "Leancoin", - "symbol": "lean" - }, - { - "id": "leandro-lopes", - "name": "Leandro Lopes", - "symbol": "lopes" - }, - { - "id": "leap-token", - "name": "LEAP Token", - "symbol": "leap" - }, - { - "id": "learning-star", - "name": "Learning Star", - "symbol": "lstar" - }, - { - "id": "leash", - "name": "Doge Killer", - "symbol": "leash" - }, - { - "id": "leaxcoin", - "name": "Leaxcoin", - "symbol": "leax" - }, - { - "id": "ledgerland", - "name": "LedgerLand", - "symbol": "lger" - }, - { - "id": "ledgis", - "name": "Ledgis", - "symbol": "led" - }, - { - "id": "ledgity-token", - "name": "Ledgity Token", - "symbol": "ldy" - }, - { - "id": "lee", - "name": "Lee", - "symbol": "lee" - }, - { - "id": "leeds-united-fan-token", - "name": "Leeds United Fan Token", - "symbol": "lufc" - }, - { - "id": "leeroy-jenkins", - "name": "LEEROY JENKINS", - "symbol": "leeroy" - }, - { - "id": "leetcoin", - "name": "LEETCoin", - "symbol": "leet" - }, - { - "id": "leetswap-canto", - "name": "LeetSwap (Canto)", - "symbol": "leet" - }, - { - "id": "legacy-ichi", - "name": "Legacy ICHI", - "symbol": "ichi" - }, - { - "id": "legendary-meme", - "name": "Legendary MEME", - "symbol": "lme" - }, - { - "id": "legend-of-annihilation", - "name": "Legend of Annihilation", - "symbol": "loa" - }, - { - "id": "legend-of-fantasy-war", - "name": "Linked Finance World", - "symbol": "lfw" - }, - { - "id": "legends-of-elysium", - "name": "Legends of Elysium", - "symbol": "loe" - }, - { - "id": "legends-of-sol", - "name": "Legends Of SOL", - "symbol": "legend" - }, - { - "id": "legends-token", - "name": "Legends Token", - "symbol": "lg" - }, - { - "id": "legia-warsaw-fan-token", - "name": "Legia Warsaw Fan Token", - "symbol": "leg" - }, - { - "id": "legion-network", - "name": "Legion Network", - "symbol": "lgx" - }, - { - "id": "legion-ventures", - "name": "Legion Ventures", - "symbol": "$legion" - }, - { - "id": "lego-coin-v2", - "name": "Lego Coin V2", - "symbol": "lego" - }, - { - "id": "lehman-brothers", - "name": "Lehman Brothers", - "symbol": "leh" - }, - { - "id": "leia", - "name": "Leia", - "symbol": "leia" - }, - { - "id": "leia-the-cat", - "name": "Leia the Cat", - "symbol": "leia" - }, - { - "id": "leicester-tigers-fan-token", - "name": "Leicester Tigers Fan Token", - "symbol": "tigers" - }, - { - "id": "leisuremeta", - "name": "LeisureMeta", - "symbol": "lm" - }, - { - "id": "le-meow", - "name": "Le Meow", - "symbol": "lemeow" - }, - { - "id": "lemochain", - "name": "LemoChain", - "symbol": "lemo" - }, - { - "id": "lemonchain", - "name": "LemonChain", - "symbol": "lemc" - }, - { - "id": "lemond", - "name": "Lemond", - "symbol": "lemd" - }, - { - "id": "lemon-terminal", - "name": "Lemon Terminal", - "symbol": "lemon" - }, - { - "id": "lemon-token", - "name": "Crypto Lemon", - "symbol": "lemn" - }, - { - "id": "lena", - "name": "Lena", - "symbol": "lena" - }, - { - "id": "lendfi-finance", - "name": "Lendfi Finance", - "symbol": "lendfi" - }, - { - "id": "lendhub", - "name": "Lendhub", - "symbol": "lhb" - }, - { - "id": "lendle", - "name": "Lendle", - "symbol": "lend" - }, - { - "id": "lendora-protocol", - "name": "Lendora Protocol", - "symbol": "lora" - }, - { - "id": "lendrr", - "name": "LendrR", - "symbol": "lndrr" - }, - { - "id": "lendrusre", - "name": "LendrUSRE", - "symbol": "usre" - }, - { - "id": "lends", - "name": "Lends", - "symbol": "lends" - }, - { - "id": "lenny-face", - "name": "Lenny Face", - "symbol": "( \u0361\u00b0 \u035c\u0296 \u0361\u00b0)" - }, - { - "id": "leoavax", - "name": "LeoAVAX", - "symbol": "leo" - }, - { - "id": "leonicorn-swap-leons", - "name": "Leonicorn Swap LEONS", - "symbol": "leons" - }, - { - "id": "leonidasbilic", - "name": "Leonidasbilic", - "symbol": "lio" - }, - { - "id": "leonidas-token", - "name": "Leonidas Token", - "symbol": "leonidas" - }, - { - "id": "leopard", - "name": "Leopard", - "symbol": "leopard" - }, - { - "id": "leopold", - "name": "LEO", - "symbol": "leo" - }, - { - "id": "leo-token", - "name": "LEO Token", - "symbol": "leo" - }, - { - "id": "leox", - "name": "LEOX", - "symbol": "leox" - }, - { - "id": "lernitas", - "name": "LERNITAS", - "symbol": "2192" - }, - { - "id": "leslie", - "name": "Leslie", - "symbol": "leslie" - }, - { - "id": "lessfngas", - "name": "LessFnGas", - "symbol": "lfg" - }, - { - "id": "lethean", - "name": "Lethean", - "symbol": "lthn" - }, - { - "id": "let-s-get-hai", - "name": "Let's Get HAI", - "symbol": "hai" - }, - { - "id": "lets-go-brandon", - "name": "Lets Go Brandon", - "symbol": "letsgo" - }, - { - "id": "levana-protocol", - "name": "Levana", - "symbol": "lvn" - }, - { - "id": "levante-ud-fan-token", - "name": "Levante U.D. Fan Token", - "symbol": "lev" - }, - { - "id": "level", - "name": "Level", - "symbol": "lvl" - }, - { - "id": "levelg", - "name": "LEVELG", - "symbol": "levelg" - }, - { - "id": "level-governance", - "name": "Level Governance", - "symbol": "lgo" - }, - { - "id": "lever", - "name": "LeverFi", - "symbol": "lever" - }, - { - "id": "leverageinu", - "name": "LeverageInu", - "symbol": "levi" - }, - { - "id": "leverj-gluon", - "name": "Leverj Gluon", - "symbol": "l2" - }, - { - "id": "lever-network", - "name": "Lever Network", - "symbol": "lev" - }, - { - "id": "levolution", - "name": "Levolution", - "symbol": "levl" - }, - { - "id": "lexa-ai", - "name": "LEXA AI", - "symbol": "lexa" - }, - { - "id": "lexer-markets", - "name": "LEXER Markets", - "symbol": "lex" - }, - { - "id": "lfg", - "name": "LFG", - "symbol": "@lfg" - }, - { - "id": "lfg-coin", - "name": "LFG coin", - "symbol": "lfg" - }, - { - "id": "lfgswap-finance", - "name": "LFGSwap Finance", - "symbol": "lfg" - }, - { - "id": "lfgswap-finance-core", - "name": "LFGSwap Finance(CORE)", - "symbol": "lfg" - }, - { - "id": "lfi", - "name": "LFi", - "symbol": "lfi" - }, - { - "id": "lgcy-network", - "name": "LGCY Network", - "symbol": "lgcy" - }, - { - "id": "liberland-lld", - "name": "Liberland LLD", - "symbol": "lld" - }, - { - "id": "libero-financial", - "name": "Libero Financial", - "symbol": "libero" - }, - { - "id": "liberty-square-filth", - "name": "Liberty Square Filth", - "symbol": "flth" - }, - { - "id": "libfi", - "name": "Libfi", - "symbol": "libx" - }, - { - "id": "libra-3", - "name": "0L Network", - "symbol": "libra" - }, - { - "id": "libra-credit", - "name": "Libra Credit", - "symbol": "lba" - }, - { - "id": "libra-incentix", - "name": "Libra Incentix", - "symbol": "lixx" - }, - { - "id": "libra-protocol", - "name": "Libra Protocol", - "symbol": "lbr" - }, - { - "id": "libra-protocol-2", - "name": "Libra Protocol", - "symbol": "libra" - }, - { - "id": "libre", - "name": "Libre", - "symbol": "libre" - }, - { - "id": "lichang", - "name": "Lichang", - "symbol": "lc" - }, - { - "id": "lickgoat", - "name": "LICKGOAT", - "symbol": "lick" - }, - { - "id": "lido-dao", - "name": "Lido DAO", - "symbol": "ldo" - }, - { - "id": "lido-dao-wormhole", - "name": "Lido DAO (Wormhole)", - "symbol": "ldo" - }, - { - "id": "lido-on-kusama", - "name": "Lido on Kusama", - "symbol": "wstksm" - }, - { - "id": "lido-staked-matic", - "name": "Lido Staked Matic", - "symbol": "stmatic" - }, - { - "id": "lido-staked-sol", - "name": "Lido Staked SOL", - "symbol": "stsol" - }, - { - "id": "lidya", - "name": "Lidya", - "symbol": "lidya" - }, - { - "id": "lien", - "name": "Lien", - "symbol": "lien" - }, - { - "id": "lif3", - "name": "LIF3 (OLD)", - "symbol": "lif3" - }, - { - "id": "lif3-2", - "name": "Lif3", - "symbol": "lif3" - }, - { - "id": "lif3-lshare", - "name": "LIF3 LSHARE (OLD)", - "symbol": "lshare" - }, - { - "id": "lif3-lshare-new", - "name": "LIF3 LSHARE", - "symbol": "lshare" - }, - { - "id": "life-coin", - "name": "Supernova Shards Life Coin", - "symbol": "lfc" - }, - { - "id": "life-crypto", - "name": "Life Crypto", - "symbol": "life" - }, - { - "id": "liferestart", - "name": "LifeRestart (Ordinals)", - "symbol": "efil" - }, - { - "id": "life-token-v2", - "name": "Life v2", - "symbol": "ltnv2" - }, - { - "id": "lifinity", - "name": "Lifinity", - "symbol": "lfnty" - }, - { - "id": "lifti", - "name": "Lifti", - "symbol": "lft" - }, - { - "id": "lightcoin", - "name": "Lightcoin", - "symbol": "lhc" - }, - { - "id": "lightcycle", - "name": "LightCycle", - "symbol": "lilc" - }, - { - "id": "light-defi", - "name": "Light Defi", - "symbol": "light" - }, - { - "id": "lightlink", - "name": "LightLink", - "symbol": "ll" - }, - { - "id": "lightning-bitcoin", - "name": "Lightning Bitcoin", - "symbol": "lbtc" - }, - { - "id": "lightning-protocol", - "name": "Lightning Protocol", - "symbol": "light" - }, - { - "id": "lightyears", - "name": "Lightyears", - "symbol": "year" - }, - { - "id": "ligma-node", - "name": "Ligma Node", - "symbol": "ligma" - }, - { - "id": "ligo-ordinals", - "name": "Ligo (Ordinals)", - "symbol": "ligo" - }, - { - "id": "likecoin", - "name": "LikeCoin", - "symbol": "like" - }, - { - "id": "lilai", - "name": "LilAI", - "symbol": "lilai" - }, - { - "id": "limestone-network", - "name": "Limestone Network", - "symbol": "limex" - }, - { - "id": "limewire-token", - "name": "LimeWire", - "symbol": "lmwr" - }, - { - "id": "limocoin-swap", - "name": "Limocoin Swap", - "symbol": "lmcswap" - }, - { - "id": "limoverse", - "name": "Limoverse", - "symbol": "limo" - }, - { - "id": "lina", - "name": "LINA", - "symbol": "lina" - }, - { - "id": "linda-2", - "name": "Linda", - "symbol": "linda" - }, - { - "id": "lineabank", - "name": "LineaBank", - "symbol": "lab" - }, - { - "id": "linear", - "name": "Linear", - "symbol": "lina" - }, - { - "id": "linear-protocol", - "name": "LiNEAR Protocol Staked NEAR", - "symbol": "linear" - }, - { - "id": "linear-protocol-lnr", - "name": "LiNEAR Protocol LNR", - "symbol": "lnr" - }, - { - "id": "linea-velocore", - "name": "Linea Velocore", - "symbol": "lvc" - }, - { - "id": "linea-voyage-xp", - "name": "Linea Voyage XP", - "symbol": "lxp" - }, - { - "id": "linework-coin", - "name": "Linework Coin", - "symbol": "lwc" - }, - { - "id": "lingose", - "name": "Lingose", - "symbol": "ling" - }, - { - "id": "link", - "name": "FINSCHIA", - "symbol": "fnsa" - }, - { - "id": "linkeye", - "name": "Linkeye", - "symbol": "let" - }, - { - "id": "linkfi", - "name": "LINKFI", - "symbol": "linkfi" - }, - { - "id": "linkpool", - "name": "LinkPool", - "symbol": "lpl" - }, - { - "id": "links", - "name": "Links", - "symbol": "links" - }, - { - "id": "linktensor", - "name": "LinkTensor", - "symbol": "lts" - }, - { - "id": "linktoa", - "name": "LinkTao", - "symbol": "ltao" - }, - { - "id": "link-yvault", - "name": "LINK yVault", - "symbol": "yvlink" - }, - { - "id": "linq", - "name": "Linq", - "symbol": "linq" - }, - { - "id": "linqai", - "name": "LinqAI", - "symbol": "lnq" - }, - { - "id": "lionceo", - "name": "LionCEO", - "symbol": "lceo" - }, - { - "id": "lion-dao", - "name": "Lion DAO", - "symbol": "roar" - }, - { - "id": "liondex", - "name": "LionDEX", - "symbol": "lion" - }, - { - "id": "lion-scrub-money-2", - "name": "Lion Scrub Money", - "symbol": "lion" - }, - { - "id": "lion-token", - "name": "Lion", - "symbol": "lion" - }, - { - "id": "liq-protocol", - "name": "LIQ Protocol", - "symbol": "liq" - }, - { - "id": "liquicats", - "name": "LiquiCats", - "symbol": "meow" - }, - { - "id": "liquid-astr", - "name": "Liquid ASTR", - "symbol": "nastr" - }, - { - "id": "liquid-atom", - "name": "Liquid ATOM", - "symbol": "latom" - }, - { - "id": "liquid-collectibles", - "name": "Liquid Collectibles", - "symbol": "lico" - }, - { - "id": "liquid-cro", - "name": "Liquid CRO", - "symbol": "lcro" - }, - { - "id": "liquid-crypto", - "name": "Liquid Crypto", - "symbol": "lqdx" - }, - { - "id": "liquiddriver", - "name": "LiquidDriver", - "symbol": "lqdr" - }, - { - "id": "liquid-driver-liveretro", - "name": "Liquid Driver liveRETRO", - "symbol": "liveretro" - }, - { - "id": "liquid-driver-livethe", - "name": "Liquid Driver liveTHE", - "symbol": "livethe" - }, - { - "id": "liquid-finance", - "name": "Liquid Finance", - "symbol": "liqd" - }, - { - "id": "liquid-finance-arch", - "name": "Liquid Finance ARCH", - "symbol": "sarch" - }, - { - "id": "liquidifty", - "name": "Lifty", - "symbol": "lqt" - }, - { - "id": "liquidify-077fd783-dead-4809-b5a9-0d9876f6ea5c", - "name": "Liquidify", - "symbol": "liquid" - }, - { - "id": "liquidityrush", - "name": "LiquidityRush", - "symbol": "liqr" - }, - { - "id": "liquid-ksm", - "name": "Liquid KSM", - "symbol": "lksm" - }, - { - "id": "liquidlayer", - "name": "LiquidLayer", - "symbol": "lila" - }, - { - "id": "liquid-loans", - "name": "Liquid Loans", - "symbol": "loan" - }, - { - "id": "liquid-loans-usdl", - "name": "Liquid Loans USDL", - "symbol": "usdl" - }, - { - "id": "liquid-mercury", - "name": "Liquid Mercury", - "symbol": "merc" - }, - { - "id": "liquid-protocol", - "name": "Liquid Protocol", - "symbol": "lp" - }, - { - "id": "liquid-savings-dai", - "name": "Liquid Savings DAI", - "symbol": "lsdai" - }, - { - "id": "liquid-solana-derivative", - "name": "Liquid Solana Derivative", - "symbol": "lsd" - }, - { - "id": "liquid-staked-canto", - "name": "Liquid Staked Canto", - "symbol": "scanto" - }, - { - "id": "liquid-staked-ethereum", - "name": "Liquid Staked ETH", - "symbol": "lseth" - }, - { - "id": "liquid-staked-flow", - "name": "Increment Staked FLOW", - "symbol": "stflow" - }, - { - "id": "liquid-staking-crescent", - "name": "Liquid Staking Crescent", - "symbol": "bcre" - }, - { - "id": "liquid-staking-derivative", - "name": "Liquid Staking Derivative", - "symbol": "lsd" - }, - { - "id": "liquid-staking-dot", - "name": "Liquid Staking Dot", - "symbol": "ldot" - }, - { - "id": "liquid-staking-index", - "name": "Liquid Staking Index", - "symbol": "lsi" - }, - { - "id": "liquid-staking-token", - "name": "Liquid Staking Token", - "symbol": "lst" - }, - { - "id": "liquidus", - "name": "Liquidus (Old)", - "symbol": "liq" - }, - { - "id": "liquidus-2", - "name": "Liquidus", - "symbol": "liq" - }, - { - "id": "liquify-network", - "name": "Liquify Network", - "symbol": "liquify" - }, - { - "id": "liquis", - "name": "Liquis", - "symbol": "liq" - }, - { - "id": "liquity", - "name": "Liquity", - "symbol": "lqty" - }, - { - "id": "liquity-usd", - "name": "Liquity USD", - "symbol": "lusd" - }, - { - "id": "liqwid-finance", - "name": "Liqwid Finance", - "symbol": "lq" - }, - { - "id": "liqwrap", - "name": "LiqWrap", - "symbol": "lqw" - }, - { - "id": "lirat", - "name": "LiraT", - "symbol": "tryt" - }, - { - "id": "lisk", - "name": "Lisk", - "symbol": "lsk" - }, - { - "id": "lit", - "name": "LIT", - "symbol": "lit" - }, - { - "id": "lite", - "name": "LITE", - "symbol": "lite" - }, - { - "id": "litecash", - "name": "Litecash", - "symbol": "cash" - }, - { - "id": "litecoin", - "name": "Litecoin", - "symbol": "ltc" - }, - { - "id": "litecoin-cash", - "name": "Litecoin Cash", - "symbol": "lcc" - }, - { - "id": "litecoin-plus", - "name": "SpiderByte", - "symbol": "spb" - }, - { - "id": "litecoinz", - "name": "LitecoinZ", - "symbol": "ltz" - }, - { - "id": "litedoge", - "name": "LiteDoge", - "symbol": "ldoge" - }, - { - "id": "litentry", - "name": "Litentry", - "symbol": "lit" - }, - { - "id": "litherium", - "name": "Litherium", - "symbol": "lith" - }, - { - "id": "lithium-finance", - "name": "Lithium Finance", - "symbol": "lith" - }, - { - "id": "lithium-ventures", - "name": "Lithium Ventures", - "symbol": "ions" - }, - { - "id": "lithosphere", - "name": "Lithosphere", - "symbol": "litho" - }, - { - "id": "litlab-games", - "name": "LitLab Games", - "symbol": "litt" - }, - { - "id": "little-angry-bunny-v2", - "name": "Little Angry Bunny v2", - "symbol": "lab-v2" - }, - { - "id": "little-bunny-rocket", - "name": "Little Bunny Rocket", - "symbol": "lbr" - }, - { - "id": "little-dragon", - "name": "Little Dragon", - "symbol": "1on8" - }, - { - "id": "littleinu", - "name": "LittleInu", - "symbol": "linu" - }, - { - "id": "little-rabbit-v2", - "name": "Little Rabbit V2", - "symbol": "ltrbt" - }, - { - "id": "little-ugly-duck", - "name": "Little Ugly Duck", - "symbol": "lud" - }, - { - "id": "livegreen-coin", - "name": "LiveGreen Coin", - "symbol": "lgc" - }, - { - "id": "livepeer", - "name": "Livepeer", - "symbol": "lpt" - }, - { - "id": "livex-network", - "name": "Livex Network", - "symbol": "live" - }, - { - "id": "liza-2", - "name": "LIZA", - "symbol": "liza" - }, - { - "id": "lizard", - "name": "Lizard", - "symbol": "lizard" - }, - { - "id": "lizardtoken-finance", - "name": "LizardToken.Finance", - "symbol": "liz" - }, - { - "id": "lmeow", - "name": "lmeow", - "symbol": "lmeow" - }, - { - "id": "lmeow-2", - "name": "lmeow", - "symbol": "lmeow" - }, - { - "id": "lndry", - "name": "LNDRY", - "symbol": "lndry" - }, - { - "id": "loaf-cat", - "name": "LOAF CAT", - "symbol": "loaf" - }, - { - "id": "lobo", - "name": "LOBO", - "symbol": "lobo" - }, - { - "id": "lobster", - "name": "LOBSTER", - "symbol": "$lobster" - }, - { - "id": "localai", - "name": "LocalAI", - "symbol": "locai" - }, - { - "id": "localcoinswap", - "name": "LocalCoinSwap", - "symbol": "lcs" - }, - { - "id": "local-money", - "name": "Local Money", - "symbol": "local" - }, - { - "id": "localtrade", - "name": "LocalTrade", - "symbol": "ltt" - }, - { - "id": "locgame", - "name": "LOCG", - "symbol": "$locg" - }, - { - "id": "lockchain", - "name": "LockTrip", - "symbol": "loc" - }, - { - "id": "lockheed-martin-inu", - "name": "Lockheed Martin Inu", - "symbol": "lmi" - }, - { - "id": "lockness", - "name": "Lockness", - "symbol": "lkn" - }, - { - "id": "lockon-passive-index", - "name": "LOCKON Passive Index", - "symbol": "lpi" - }, - { - "id": "locus-chain", - "name": "Locus Chain", - "symbol": "locus" - }, - { - "id": "locus-finance", - "name": "Locus Finance", - "symbol": "locus" - }, - { - "id": "lodestar", - "name": "Lodestar", - "symbol": "lode" - }, - { - "id": "lode-token", - "name": "LODE Token", - "symbol": "lode" - }, - { - "id": "lofi", - "name": "LOFI", - "symbol": "lofi" - }, - { - "id": "logarithm-games", - "name": "Logarithm games", - "symbol": "logg" - }, - { - "id": "logic", - "name": "LOGIC", - "symbol": "logic" - }, - { - "id": "loki-network", - "name": "Oxen", - "symbol": "oxen" - }, - { - "id": "lokr", - "name": "Lokr", - "symbol": "lkr" - }, - { - "id": "lol-2", - "name": "LOL", - "symbol": "lol" - }, - { - "id": "lola", - "name": "LOLA", - "symbol": "lola" - }, - { - "id": "lola-2", - "name": "Lola", - "symbol": "lola" - }, - { - "id": "lolik-staked-ftn", - "name": "Lolik Staked FTN", - "symbol": "stftn" - }, - { - "id": "lonelyfans", - "name": "LonelyFans", - "symbol": "lof" - }, - { - "id": "long", - "name": "LOONG", - "symbol": "long" - }, - { - "id": "long-2", - "name": "Long \u9f99", - "symbol": "long" - }, - { - "id": "long-3", - "name": "Long", - "symbol": "long" - }, - { - "id": "long-bitcoin", - "name": "Long Bitcoin", - "symbol": "long" - }, - { - "id": "long-boi", - "name": "long boi", - "symbol": "long" - }, - { - "id": "longchenchen", - "name": "Longchenchen", - "symbol": "long" - }, - { - "id": "long-eth", - "name": "LONG (ETH)", - "symbol": "long" - }, - { - "id": "longfu", - "name": "longfu", - "symbol": "longfu" - }, - { - "id": "long-johnson", - "name": "Long Johnson", - "symbol": "olong" - }, - { - "id": "long-mao", - "name": "Long Mao", - "symbol": "lmao" - }, - { - "id": "long-nose-dog", - "name": "Long Nose Dog", - "symbol": "long" - }, - { - "id": "long-totem", - "name": "LONG TOTEM", - "symbol": "long" - }, - { - "id": "lonk-on-near", - "name": "Lonk", - "symbol": "lonk" - }, - { - "id": "lookscoin", - "name": "LooksCoin", - "symbol": "look" - }, - { - "id": "looksrare", - "name": "LooksRare", - "symbol": "looks" - }, - { - "id": "loom", - "name": "Loom", - "symbol": "loom" - }, - { - "id": "loom-network", - "name": "Loom Network (OLD)", - "symbol": "loomold" - }, - { - "id": "loom-network-new", - "name": "Loom Network (NEW)", - "symbol": "loom" - }, - { - "id": "loong", - "name": "Loong", - "symbol": "loong" - }, - { - "id": "loong-2", - "name": "Loong", - "symbol": "loong" - }, - { - "id": "loong-2024", - "name": "LOONG 2024", - "symbol": "loong" - }, - { - "id": "loong-chenchen", - "name": "Loong Chenchen", - "symbol": "loong" - }, - { - "id": "loon-network", - "name": "Loon Network", - "symbol": "loon" - }, - { - "id": "loop", - "name": "LOOP", - "symbol": "loop" - }, - { - "id": "loopnetwork", - "name": "LoopNetwork", - "symbol": "loop" - }, - { - "id": "loop-of-infinity", - "name": "Loop Of Infinity", - "symbol": "loi" - }, - { - "id": "loopring", - "name": "Loopring", - "symbol": "lrc" - }, - { - "id": "loopy", - "name": "Loopy", - "symbol": "loopy" - }, - { - "id": "loot", - "name": "Lootex", - "symbol": "loot" - }, - { - "id": "lootbot", - "name": "LootBot", - "symbol": "loot" - }, - { - "id": "looted-network", - "name": "Looted Network", - "symbol": "loot" - }, - { - "id": "looter", - "name": "Looter", - "symbol": "looter" - }, - { - "id": "lopo", - "name": "LOPO", - "symbol": "lopo" - }, - { - "id": "lord-of-dragons", - "name": "Lord of Dragons", - "symbol": "logt" - }, - { - "id": "lords", - "name": "LORDS", - "symbol": "lords" - }, - { - "id": "lormhole", - "name": "Lormhole", - "symbol": "l" - }, - { - "id": "loserchick-egg", - "name": "LoserChick EGG", - "symbol": "egg" - }, - { - "id": "loser-coin", - "name": "Loser Coin", - "symbol": "lowb" - }, - { - "id": "lossless", - "name": "Lossless", - "symbol": "lss" - }, - { - "id": "lost", - "name": "Lost", - "symbol": "lost" - }, - { - "id": "lost-world", - "name": "Lost World", - "symbol": "lost" - }, - { - "id": "lotty", - "name": "Lotty", - "symbol": "lotty" - }, - { - "id": "loungem", - "name": "LoungeM", - "symbol": "lzm" - }, - { - "id": "love-earn-enjoy", - "name": "Love Earn Enjoy", - "symbol": "lee" - }, - { - "id": "love-hate-inu", - "name": "Love Hate Inu", - "symbol": "lhinu" - }, - { - "id": "love-io", - "name": "Love.io", - "symbol": "love" - }, - { - "id": "lovely-inu-finance", - "name": "Lovely Inu finance", - "symbol": "lovely" - }, - { - "id": "love-token-2", - "name": "Love Token", - "symbol": "love" - }, - { - "id": "lowq", - "name": "LowQ", - "symbol": "lowq" - }, - { - "id": "lox-network", - "name": "Lox Network", - "symbol": "lox" - }, - { - "id": "lp-3pool-curve", - "name": "LP 3pool Curve", - "symbol": "3crv" - }, - { - "id": "lp-renbtc-curve", - "name": "LP renBTC Curve", - "symbol": "renbtccurve" - }, - { - "id": "lp-scurve", - "name": "LP-sCurve", - "symbol": "scurve" - }, - { - "id": "lp-yearn-crv-vault", - "name": "LP Yearn CRV Vault", - "symbol": "lp-ycrv" - }, - { - "id": "lsdoge", - "name": "LSDoge", - "symbol": "lsdoge" - }, - { - "id": "lsdx-finance", - "name": "LSDx Finance", - "symbol": "lsd" - }, - { - "id": "lsdx-pool", - "name": "LSDx Pool", - "symbol": "ethx" - }, - { - "id": "lto-network", - "name": "LTO Network", - "symbol": "lto" - }, - { - "id": "lua-token", - "name": "LuaSwap", - "symbol": "lua" - }, - { - "id": "lube", - "name": "LUBE", - "symbol": "lube" - }, - { - "id": "luca", - "name": "LUCA", - "symbol": "luca" - }, - { - "id": "lucha", - "name": "Lucha", - "symbol": "lucha" - }, - { - "id": "lucidao", - "name": "Lucidao", - "symbol": "lcd" - }, - { - "id": "lucky7", - "name": "Lucky7", - "symbol": "7" - }, - { - "id": "lucky8", - "name": "Lucky8", - "symbol": "888" - }, - { - "id": "luckybird", - "name": "LuckyBird", - "symbol": "bird" - }, - { - "id": "lucky-block", - "name": "Lucky Block", - "symbol": "lblock" - }, - { - "id": "lucky-coin", - "name": "Lucky Coin", - "symbol": "lucky" - }, - { - "id": "luckycoin-2", - "name": "LuckyCoin", - "symbol": "lkc" - }, - { - "id": "luckyinu", - "name": "Luckyinu", - "symbol": "lucky" - }, - { - "id": "lucky-roo", - "name": "Lucky Roo", - "symbol": "roo" - }, - { - "id": "luckysleprecoin", - "name": "LuckysLeprecoin", - "symbol": "luckyslp" - }, - { - "id": "luckytoad", - "name": "LuckyToad", - "symbol": "toad" - }, - { - "id": "lucretius", - "name": "Lucretius", - "symbol": "luc" - }, - { - "id": "lucro", - "name": "Lucro", - "symbol": "lcr" - }, - { - "id": "lucrosus-capital", - "name": "Lucrosus Capital", - "symbol": "$luca" - }, - { - "id": "ludos", - "name": "Ludos Protocol", - "symbol": "lud" - }, - { - "id": "luffy-inu", - "name": "Luffy", - "symbol": "luffy" - }, - { - "id": "luigiswap", - "name": "LuigiSwap", - "symbol": "luigi" - }, - { - "id": "lukso-token", - "name": "LUKSO [OLD]", - "symbol": "lyxe" - }, - { - "id": "lukso-token-2", - "name": "LUKSO", - "symbol": "lyx" - }, - { - "id": "lumenswap", - "name": "Lumenswap", - "symbol": "lsp" - }, - { - "id": "lumerin", - "name": "Lumerin", - "symbol": "lmr" - }, - { - "id": "lumi", - "name": "LUMI", - "symbol": "lumi" - }, - { - "id": "lumi-credits", - "name": "LUMI Credits", - "symbol": "lumi" - }, - { - "id": "lumi-finance", - "name": "Lumi Finance", - "symbol": "lua" - }, - { - "id": "lumi-finance-governance-token", - "name": "Lumi Finance Governance Token", - "symbol": "luag" - }, - { - "id": "lumi-finance-lua-option", - "name": "Lumi Finance LUA Option", - "symbol": "luaop" - }, - { - "id": "lumi-finance-luausd", - "name": "Lumi Finance LUAUSD", - "symbol": "luausd" - }, - { - "id": "lumiiitoken", - "name": "Lumiii", - "symbol": "lumiii" - }, - { - "id": "lumin", - "name": "Lumin", - "symbol": "lumin" - }, - { - "id": "lumishare", - "name": "Lumishare", - "symbol": "lumi" - }, - { - "id": "lumiterra-totem-404", - "name": "LumiTerra Totem 404", - "symbol": "ltm04" - }, - { - "id": "lum-network", - "name": "Lum Network", - "symbol": "lum" - }, - { - "id": "luna28", - "name": "Luna28", - "symbol": "$luna" - }, - { - "id": "lunachow", - "name": "LunaChow", - "symbol": "luchow" - }, - { - "id": "lunadoge", - "name": "LunaDoge", - "symbol": "loge" - }, - { - "id": "lunafi", - "name": "Lunafi", - "symbol": "lfi" - }, - { - "id": "lunagens", - "name": "LunaGens", - "symbol": "lung" - }, - { - "id": "luna-inu", - "name": "Luna Inu", - "symbol": "linu" - }, - { - "id": "lunaone", - "name": "LunaOne", - "symbol": "xln" - }, - { - "id": "lunar", - "name": "Lunar [OLD]", - "symbol": "lnr" - }, - { - "id": "lunar-2", - "name": "Lunar", - "symbol": "lnr" - }, - { - "id": "lunar-3", - "name": "Lunar", - "symbol": "lunar" - }, - { - "id": "lunarium", - "name": "Lunarium", - "symbol": "xln" - }, - { - "id": "lunarstorm", - "name": "LunarStorm", - "symbol": "lust" - }, - { - "id": "luna-rush", - "name": "Luna Rush", - "symbol": "lus" - }, - { - "id": "lunatics", - "name": "Lunatics", - "symbol": "lunat" - }, - { - "id": "lunatics-eth", - "name": "Lunatics [ETH]", - "symbol": "lunat" - }, - { - "id": "luna-wormhole", - "name": "Terra Classic (Wormhole)", - "symbol": "lunc" - }, - { - "id": "lunax", - "name": "Stader LunaX", - "symbol": "lunax" - }, - { - "id": "luncarmy", - "name": "LUNCARMY", - "symbol": "luncarmy" - }, - { - "id": "lunchdao", - "name": "LunchDAO", - "symbol": "lunch" - }, - { - "id": "lunch-money", - "name": "Lunch Money", - "symbol": "lmy" - }, - { - "id": "lunr-token", - "name": "LunarCrush", - "symbol": "lunr" - }, - { - "id": "lunyr", - "name": "Lunyr", - "symbol": "lun" - }, - { - "id": "lusd", - "name": "LUSD [OLD]", - "symbol": "lusd" - }, - { - "id": "lusd-2", - "name": "LUSD", - "symbol": "lusd" - }, - { - "id": "lusd-yvault", - "name": "LUSD yVault", - "symbol": "yvlusd" - }, - { - "id": "lush-ai", - "name": "Lush AI", - "symbol": "lush" - }, - { - "id": "lux-bio-exchange-coin", - "name": "LUX BIO EXCHANGE COIN", - "symbol": "lbxc" - }, - { - "id": "luxcoin", - "name": "LUXCoin", - "symbol": "lux" - }, - { - "id": "luxurious-pro-network-token", - "name": "Luxurious Pro Network", - "symbol": "lpnt" - }, - { - "id": "luxy", - "name": "Luxy", - "symbol": "luxy" - }, - { - "id": "lvusd", - "name": "lvUSD", - "symbol": "lvusd" - }, - { - "id": "lxly-bridged-dai-astar-zkevm", - "name": "LxLy Bridged DAI (Astar zkEVM)", - "symbol": "dai" - }, - { - "id": "lxly-bridged-usdc-astar-zkevm", - "name": "LxLy Bridged USDC (Astar zkEVM)", - "symbol": "usdc" - }, - { - "id": "lxly-bridged-usdt-astar-zkevm", - "name": "LxLy Bridged USDT (Astar zkEVM)", - "symbol": "usdt" - }, - { - "id": "lybra-finance", - "name": "Lybra", - "symbol": "lbr" - }, - { - "id": "lydia-finance", - "name": "Lydia Finance", - "symbol": "lyd" - }, - { - "id": "lyfe-2", - "name": "Lyfe", - "symbol": "lyfe" - }, - { - "id": "lyfebloc", - "name": "Lyfebloc", - "symbol": "lbt" - }, - { - "id": "lyfe-gold", - "name": "Lyfe Gold", - "symbol": "lgold" - }, - { - "id": "lyfe-silver", - "name": "Lyfe Silver", - "symbol": "lsilver" - }, - { - "id": "lympo", - "name": "Lympo", - "symbol": "lym" - }, - { - "id": "lympo-market-token", - "name": "Lympo Market", - "symbol": "lmt" - }, - { - "id": "lyncoin", - "name": "Lyncoin", - "symbol": "lcn" - }, - { - "id": "lynex", - "name": "Lynex", - "symbol": "lynx" - }, - { - "id": "lynkey", - "name": "LynKey", - "symbol": "lynk" - }, - { - "id": "lynx", - "name": "Lynx", - "symbol": "lynx" - }, - { - "id": "lynx-2", - "name": "LYNX", - "symbol": "lynx" - }, - { - "id": "lyptus-token", - "name": "Lyptus", - "symbol": "lyptus" - }, - { - "id": "lyra-2", - "name": "Lyra", - "symbol": "lyra" - }, - { - "id": "lyra-finance", - "name": "Lyra Finance", - "symbol": "lyra" - }, - { - "id": "lyte-finance", - "name": "Lyte Finance", - "symbol": "lyte" - }, - { - "id": "lyve-finance", - "name": "Lyve Finance", - "symbol": "lyve" - }, - { - "id": "lyzi", - "name": "Lyzi", - "symbol": "lyzi" - }, - { - "id": "m2", - "name": "M2", - "symbol": "m2" - }, - { - "id": "m2-global-wealth-limited-mmx", - "name": "MMX", - "symbol": "mmx" - }, - { - "id": "maal-chain", - "name": "Maal Chain", - "symbol": "maal" - }, - { - "id": "macaronswap", - "name": "MacaronSwap", - "symbol": "mcrn" - }, - { - "id": "mackerel", - "name": "Mackerel", - "symbol": "macks" - }, - { - "id": "mackerel-2", - "name": "Mackerel", - "symbol": "macke" - }, - { - "id": "mad", - "name": "MAD", - "symbol": "mad" - }, - { - "id": "madai", - "name": "Morpho-Aave Dai Stablecoin", - "symbol": "madai" - }, - { - "id": "mad-bears-club-2", - "name": "Mad Bears Club", - "symbol": "mbc" - }, - { - "id": "mad-bucks", - "name": "MAD Bucks", - "symbol": "mad" - }, - { - "id": "madlad", - "name": "MADLAD", - "symbol": "mad" - }, - { - "id": "mad-meerkat-etf", - "name": "Mad Meerkat ETF", - "symbol": "metf" - }, - { - "id": "mad-meerkat-optimizer", - "name": "Mad Meerkat Optimizer", - "symbol": "mmo" - }, - { - "id": "mad-usd", - "name": "Mad USD", - "symbol": "musd" - }, - { - "id": "mad-viking-games-token", - "name": "Mad Viking Games Token", - "symbol": "mvg" - }, - { - "id": "madworld", - "name": "MADworld", - "symbol": "umad" - }, - { - "id": "maga", - "name": "MAGA", - "symbol": "trump" - }, - { - "id": "maga-2", - "name": "MAGA", - "symbol": "trump" - }, - { - "id": "maga-coin", - "name": "MAGA Coin BSC", - "symbol": "maga" - }, - { - "id": "maga-coin-eth", - "name": "MAGA Coin ETH", - "symbol": "maga" - }, - { - "id": "magaiba", - "name": "MAGAIBA", - "symbol": "magaiba" - }, - { - "id": "magic", - "name": "Magic", - "symbol": "magic" - }, - { - "id": "magical-blocks", - "name": "Magical Blocks", - "symbol": "mblk" - }, - { - "id": "magicaltux", - "name": "Magicaltux", - "symbol": "tux" - }, - { - "id": "magic-beasties", - "name": "Magic Beasties", - "symbol": "bsts" - }, - { - "id": "magic-bot", - "name": "Magic-BOT", - "symbol": "magic" - }, - { - "id": "magic-carpet-ride", - "name": "Magic Carpet Ride", - "symbol": "magic" - }, - { - "id": "magiccraft", - "name": "MagicCraft", - "symbol": "mcrt" - }, - { - "id": "magic-crystal", - "name": "Magic Crystal", - "symbol": "mc" - }, - { - "id": "magic-cube", - "name": "Magic Cube Coin", - "symbol": "mcc" - }, - { - "id": "magicglp", - "name": "MagicGLP", - "symbol": "magicglp" - }, - { - "id": "magic-gpt-game", - "name": "Magic GPT Game", - "symbol": "mgpt" - }, - { - "id": "magic-internet-cash", - "name": "Magic Internet Cash", - "symbol": "mic" - }, - { - "id": "magic-internet-money", - "name": "Magic Internet Money", - "symbol": "mim" - }, - { - "id": "magic-internet-money-meme", - "name": "Magic Internet Money (Meme)", - "symbol": "mim" - }, - { - "id": "magic-lum", - "name": "Magic LUM", - "symbol": "mlum" - }, - { - "id": "magic-power", - "name": "Magic Power", - "symbol": "mgp" - }, - { - "id": "magicring", - "name": "MagicRing", - "symbol": "mring" - }, - { - "id": "magic-shoes", - "name": "MAGIC SHOES", - "symbol": "mct" - }, - { - "id": "magic-square", - "name": "Magic Square", - "symbol": "sqr" - }, - { - "id": "magic-token", - "name": "MagicLand", - "symbol": "magic" - }, - { - "id": "magic-yearn-share", - "name": "Magic Yearn Share", - "symbol": "mys" - }, - { - "id": "magik", - "name": "Magik", - "symbol": "magik" - }, - { - "id": "magikal-ai", - "name": "MAGIKAL.ai", - "symbol": "mgkl" - }, - { - "id": "magnate-finance", - "name": "Magnate Finance", - "symbol": "mag" - }, - { - "id": "magnesium", - "name": "Magnesium", - "symbol": "mag" - }, - { - "id": "magnetgold", - "name": "MagnetGold", - "symbol": "mtg" - }, - { - "id": "magnetic", - "name": "Magnetic", - "symbol": "mag" - }, - { - "id": "magnum-2", - "name": "Magnum", - "symbol": "mag" - }, - { - "id": "magnus", - "name": "Magnus", - "symbol": "mag" - }, - { - "id": "magpie", - "name": "Magpie", - "symbol": "mgp" - }, - { - "id": "magpie-wom", - "name": "Magpie WOM", - "symbol": "mwom" - }, - { - "id": "mahadao", - "name": "MahaDAO", - "symbol": "maha" - }, - { - "id": "maia", - "name": "Maia", - "symbol": "maia" - }, - { - "id": "mai-arbitrum", - "name": "MAI (Arbitrum)", - "symbol": "mimatic" - }, - { - "id": "maiar-dex", - "name": "xExchange", - "symbol": "mex" - }, - { - "id": "mai-avalanche", - "name": "MAI (Avalanche)", - "symbol": "mimatic" - }, - { - "id": "mai-base", - "name": "MAI (Base)", - "symbol": "mimatic" - }, - { - "id": "mai-bsc", - "name": "MAI (BSC)", - "symbol": "mimatic" - }, - { - "id": "maidaan", - "name": "Maidaan", - "symbol": "mdn" - }, - { - "id": "maidsafecoin", - "name": "MaidSafeCoin", - "symbol": "emaid" - }, - { - "id": "maidsafecoin-token", - "name": "Maidsafecoin Token", - "symbol": "maid" - }, - { - "id": "maid-sweepers", - "name": "Maid Sweepers", - "symbol": "swprs" - }, - { - "id": "mai-ethereum", - "name": "MAI (Ethereum)", - "symbol": "mimatic" - }, - { - "id": "mai-fantom", - "name": "MAI (Fantom)", - "symbol": "mimatic" - }, - { - "id": "mai-kava", - "name": "MAI (Kava)", - "symbol": "mimatic" - }, - { - "id": "mai-linea", - "name": "MAI (Linea)", - "symbol": "mimatic" - }, - { - "id": "main", - "name": "Main", - "symbol": "main" - }, - { - "id": "mainframe", - "name": "Mainframe", - "symbol": "mft" - }, - { - "id": "mainnetz", - "name": "MainnetZ", - "symbol": "netz" - }, - { - "id": "mainstream-for-the-underground", - "name": "Mainstream For The Underground", - "symbol": "mftu" - }, - { - "id": "mai-optimism", - "name": "MAI (Optimism)", - "symbol": "mimatic" - }, - { - "id": "mai-polygon-zkevm", - "name": "MAI (Polygon zkEVM)", - "symbol": "mimatic" - }, - { - "id": "majin", - "name": "Majin", - "symbol": "majin" - }, - { - "id": "majo", - "name": "Majo", - "symbol": "majo" - }, - { - "id": "majority-blockchain", - "name": "Majority Blockchain", - "symbol": "tmc" - }, - { - "id": "makalink", - "name": "Makalink", - "symbol": "maka" - }, - { - "id": "make-ethereum-great-again", - "name": "Make Ethereum Great Again", - "symbol": "$mega" - }, - { - "id": "maker", - "name": "Maker", - "symbol": "mkr" - }, - { - "id": "maker-flip", - "name": "Maker Flip", - "symbol": "mkf" - }, - { - "id": "makerx", - "name": "MakerX", - "symbol": "mkx" - }, - { - "id": "make-solana-great-again", - "name": "Make Solana Great Again", - "symbol": "$trump" - }, - { - "id": "makiswap", - "name": "MakiSwap", - "symbol": "maki" - }, - { - "id": "malgo-finance", - "name": "Malgo Finance", - "symbol": "mgxg" - }, - { - "id": "malinka", - "name": "Malinka", - "symbol": "mlnk" - }, - { - "id": "mammoth-2", - "name": "Mammoth", - "symbol": "wooly" - }, - { - "id": "mammothai", - "name": "MammothAI", - "symbol": "mamai" - }, - { - "id": "manacoin", - "name": "ManaCoin", - "symbol": "mnc" - }, - { - "id": "manchester-city-fan-token", - "name": "Manchester City Fan Token", - "symbol": "city" - }, - { - "id": "mancium", - "name": "Mancium", - "symbol": "manc" - }, - { - "id": "mandala-exchange-token", - "name": "Mandala Exchange", - "symbol": "mdx" - }, - { - "id": "mandox-2", - "name": "MandoX", - "symbol": "mandox" - }, - { - "id": "mane", - "name": "MANE", - "symbol": "mane" - }, - { - "id": "maneki-neko", - "name": "Maneki-neko", - "symbol": "neki" - }, - { - "id": "mangata-x", - "name": "Mangata X", - "symbol": "mgx" - }, - { - "id": "manga-token", - "name": "Manga", - "symbol": "$manga" - }, - { - "id": "mangoman-intelligent", - "name": "MangoMan Intelligent", - "symbol": "mmit" - }, - { - "id": "mango-markets", - "name": "Mango", - "symbol": "mngo" - }, - { - "id": "manifold-finance", - "name": "Manifold Finance", - "symbol": "fold" - }, - { - "id": "man-man-man", - "name": "MAN MAN MAN", - "symbol": "man" - }, - { - "id": "mantadao", - "name": "MantaDAO", - "symbol": "mnta" - }, - { - "id": "manta-network", - "name": "Manta Network", - "symbol": "manta" - }, - { - "id": "mante", - "name": "Mante", - "symbol": "mante" - }, - { - "id": "mantis-network", - "name": "Mantis Network", - "symbol": "mntis" - }, - { - "id": "mantle", - "name": "Mantle", - "symbol": "mnt" - }, - { - "id": "mantle-bridged-usdc-mantle", - "name": "Mantle Bridged USDC (Mantle)", - "symbol": "usdc" - }, - { - "id": "mantle-bridged-usdt-mantle", - "name": "Mantle Bridged USDT (Mantle)", - "symbol": "usdt" - }, - { - "id": "mantle-inu", - "name": "Mantle Inu", - "symbol": "minu" - }, - { - "id": "mantle-staked-ether", - "name": "Mantle Staked Ether", - "symbol": "meth" - }, - { - "id": "mantle-usd", - "name": "Mantle USD", - "symbol": "musd" - }, - { - "id": "mantra-dao", - "name": "MANTRA", - "symbol": "om" - }, - { - "id": "manufactory-2", - "name": "ManuFactory", - "symbol": "mnft" - }, - { - "id": "maorabbit", - "name": "MaoRabbit", - "symbol": "maorabbit" - }, - { - "id": "maple", - "name": "Maple", - "symbol": "mpl" - }, - { - "id": "map-node", - "name": "Map Node", - "symbol": "mni" - }, - { - "id": "maps", - "name": "MAPS", - "symbol": "maps" - }, - { - "id": "mar3-ai", - "name": "MAR3 AI", - "symbol": "mar3" - }, - { - "id": "maranbet", - "name": "MaranBet", - "symbol": "maran" - }, - { - "id": "marbledao-artex", - "name": "MarbleDAO ARTEX", - "symbol": "artex" - }, - { - "id": "marblex", - "name": "Marblex", - "symbol": "mbx" - }, - { - "id": "marcopolo", - "name": "MAP Protocol", - "symbol": "map" - }, - { - "id": "mare-finance", - "name": "Mare Finance", - "symbol": "mare" - }, - { - "id": "margaritis", - "name": "Margaritis", - "symbol": "marga" - }, - { - "id": "marginswap", - "name": "Marginswap", - "symbol": "mfi" - }, - { - "id": "marhabadefi", - "name": "MarhabaDeFi", - "symbol": "mrhb" - }, - { - "id": "maria", - "name": "Maria", - "symbol": "maria" - }, - { - "id": "maricoin", - "name": "MariCoin", - "symbol": "mcoin" - }, - { - "id": "marinade", - "name": "Marinade", - "symbol": "mnde" - }, - { - "id": "market-making-pro", - "name": "Market Making Pro", - "symbol": "mmpro" - }, - { - "id": "marketpeak", - "name": "PEAKDEFI", - "symbol": "peak" - }, - { - "id": "marketraker", - "name": "MarketRaker AI", - "symbol": "raker" - }, - { - "id": "marketviz", - "name": "MARKETVIZ", - "symbol": "viz" - }, - { - "id": "mark-friend-tech", - "name": "Mark Jeffrey (Friend.tech)", - "symbol": "mark" - }, - { - "id": "marksman", - "name": "Marksman", - "symbol": "marks" - }, - { - "id": "marlin", - "name": "Marlin", - "symbol": "pond" - }, - { - "id": "marmalade-token", - "name": "Marmalade Token", - "symbol": "mard" - }, - { - "id": "marmara-credit-loops", - "name": "Marmara Credit Loops", - "symbol": "mcl" - }, - { - "id": "marnotaur", - "name": "Marnotaur", - "symbol": "taur" - }, - { - "id": "marpto-ordinals", - "name": "MARPTO", - "symbol": "mrpt" - }, - { - "id": "marquee", - "name": "Marquee", - "symbol": "marq" - }, - { - "id": "mars4", - "name": "MARS4", - "symbol": "mars4" - }, - { - "id": "marscoin", - "name": "Marscoin", - "symbol": "mars" - }, - { - "id": "marscolony", - "name": "MarsColony", - "symbol": "clny" - }, - { - "id": "marsdao", - "name": "MarsDAO", - "symbol": "mdao" - }, - { - "id": "mars-doginals", - "name": "MARS (DRC-20)", - "symbol": "mars" - }, - { - "id": "mars-ecosystem-token", - "name": "Mars Ecosystem", - "symbol": "xms" - }, - { - "id": "marshall-fighting-champio", - "name": "Marshall Fighting Championship", - "symbol": "mfc" - }, - { - "id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", - "name": "Mars Protocol", - "symbol": "mars" - }, - { - "id": "marswap", - "name": "Marswap", - "symbol": "mswap" - }, - { - "id": "marswap-farm", - "name": "MARSWAP FARM", - "symbol": "mswapf" - }, - { - "id": "martik", - "name": "Martik", - "symbol": "mtk" - }, - { - "id": "martin-shkreli-inu", - "name": "Martin Shkreli Inu", - "symbol": "msi" - }, - { - "id": "martkist", - "name": "Martkist", - "symbol": "martk" - }, - { - "id": "marty-inu", - "name": "Marty Inu", - "symbol": "marty" - }, - { - "id": "marumarunft", - "name": "marumaruNFT", - "symbol": "maru" - }, - { - "id": "marutaro", - "name": "MaruTaro", - "symbol": "maru" - }, - { - "id": "marvellex-classic", - "name": "Marvellex Classic", - "symbol": "mlxc" - }, - { - "id": "marvellex-venture-token", - "name": "Marvellex Venture Token", - "symbol": "mlxv" - }, - { - "id": "marvelous-nfts", - "name": "Marvelous NFTs", - "symbol": "mnft" - }, - { - "id": "marvin", - "name": "MARVIN", - "symbol": "marvin" - }, - { - "id": "marvin-2", - "name": "Marvin", - "symbol": "marvin" - }, - { - "id": "marvin-inu", - "name": "Marvin Inu", - "symbol": "marvin" - }, - { - "id": "masa-finance", - "name": "Masa", - "symbol": "masa" - }, - { - "id": "masari", - "name": "Masari", - "symbol": "msr" - }, - { - "id": "mask-network", - "name": "Mask Network", - "symbol": "mask" - }, - { - "id": "masq", - "name": "MASQ", - "symbol": "masq" - }, - { - "id": "mass", - "name": "MASS", - "symbol": "mass" - }, - { - "id": "massa", - "name": "Massa", - "symbol": "massa" - }, - { - "id": "massive-protocol", - "name": "Massive Protocol", - "symbol": "mav" - }, - { - "id": "mass-protocol", - "name": "Mass Protocol", - "symbol": "mass" - }, - { - "id": "mass-vehicle-ledger", - "name": "MVL", - "symbol": "mvl" - }, - { - "id": "masterdex", - "name": "MasterDEX", - "symbol": "mdex" - }, - { - "id": "mastermind", - "name": "Mastermind", - "symbol": "mastermind" - }, - { - "id": "masternode-btc", - "name": "Masternode BTC", - "symbol": "mnbtc" - }, - { - "id": "masters-of-the-memes", - "name": "Masters Of The Memes", - "symbol": "mom" - }, - { - "id": "masterwin", - "name": "MasterWin", - "symbol": "mw" - }, - { - "id": "matchcup", - "name": "Matchcup", - "symbol": "match" - }, - { - "id": "match-finance-eslbr", - "name": "Match Finance esLBR", - "symbol": "meslbr" - }, - { - "id": "match-token", - "name": "Match Token", - "symbol": "match" - }, - { - "id": "matchtrade", - "name": "MatchTrade", - "symbol": "match" - }, - { - "id": "mateable", - "name": "Mateable", - "symbol": "mtbc" - }, - { - "id": "materium", - "name": "Materium", - "symbol": "mtrm" - }, - { - "id": "math", - "name": "MATH", - "symbol": "math" - }, - { - "id": "matic-aave-aave", - "name": "Matic Aave Interest Bearing AAVE", - "symbol": "maaave" - }, - { - "id": "matic-aave-usdc", - "name": "Matic Aave Interest Bearing USDC", - "symbol": "mausdc" - }, - { - "id": "matic-dai-stablecoin", - "name": "Matic DAI Stablecoin", - "symbol": "dai-matic" - }, - { - "id": "matic-network", - "name": "Polygon", - "symbol": "matic" - }, - { - "id": "matic-plenty-bridge", - "name": "MATIC (Plenty Bridge)", - "symbol": "matic.e" - }, - { - "id": "matic-wormhole", - "name": "MATIC (Wormhole)", - "symbol": "maticpo" - }, - { - "id": "matr1x-fire", - "name": "Matr1x Fire", - "symbol": "fire" - }, - { - "id": "matrak-fan-token", - "name": "Matrak Fan Token", - "symbol": "mtrk" - }, - { - "id": "matrix-ai-network", - "name": "Matrix AI Network", - "symbol": "man" - }, - { - "id": "matrixetf", - "name": "MatrixETF", - "symbol": "mdf" - }, - { - "id": "matrixgpt", - "name": "MatrixGPT", - "symbol": "mai" - }, - { - "id": "matrix-protocol", - "name": "Matrix Protocol", - "symbol": "mtx" - }, - { - "id": "matrixswap", - "name": "Matrix Labs", - "symbol": "matrix" - }, - { - "id": "matrix-token", - "name": "Matrix Token", - "symbol": "mtix" - }, - { - "id": "matsuri-shiba-inu", - "name": "Matsuri Shiba Inu", - "symbol": "mshiba" - }, - { - "id": "mau", - "name": "MAU", - "symbol": "mau" - }, - { - "id": "mausdc", - "name": "Morpho-Aave USD Coin", - "symbol": "mausdc" - }, - { - "id": "mausdt", - "name": "Morpho-Aave Tether USD", - "symbol": "mausdt" - }, - { - "id": "mavaverse-token", - "name": "Mavaverse", - "symbol": "mvx" - }, - { - "id": "maverick-protocol", - "name": "Maverick Protocol", - "symbol": "mav" - }, - { - "id": "maw", - "name": "MAW", - "symbol": "maw" - }, - { - "id": "mawcat", - "name": "MawCAT", - "symbol": "maw" - }, - { - "id": "max", - "name": "MAX", - "symbol": "max" - }, - { - "id": "maxcoin", - "name": "Maxcoin", - "symbol": "max" - }, - { - "id": "maximus", - "name": "Maximus", - "symbol": "maxi" - }, - { - "id": "maximus-base", - "name": "Maximus BASE", - "symbol": "base" - }, - { - "id": "maximus-dao", - "name": "Maximus DAO", - "symbol": "maxi" - }, - { - "id": "maximus-deci", - "name": "Maximus DECI", - "symbol": "deci" - }, - { - "id": "maximus-lucky", - "name": "Maximus LUCKY", - "symbol": "lucky" - }, - { - "id": "maximus-pool-party", - "name": "Maximus Pool Party", - "symbol": "party" - }, - { - "id": "maximus-trio", - "name": "Maximus TRIO", - "symbol": "trio" - }, - { - "id": "maxi-ordinals", - "name": "MAXI (Ordinals)", - "symbol": "maxi" - }, - { - "id": "maxity", - "name": "Maxity", - "symbol": "max" - }, - { - "id": "max-token", - "name": "MAX", - "symbol": "max" - }, - { - "id": "maxwell-the-spinning-cat", - "name": "Maxwell the spinning cat", - "symbol": "cat" - }, - { - "id": "maxx", - "name": "Maxx", - "symbol": "$maxx" - }, - { - "id": "maxx-finance", - "name": "MAXX Finance", - "symbol": "maxx" - }, - { - "id": "maya-preferred-223", - "name": "Maya Preferred", - "symbol": "mayp" - }, - { - "id": "mayfair", - "name": "Mayfair", - "symbol": "may" - }, - { - "id": "maza", - "name": "Maza", - "symbol": "mzc" - }, - { - "id": "mazimatic", - "name": "MaziMatic", - "symbol": "mazi" - }, - { - "id": "mazze", - "name": "Mazze", - "symbol": "mazze" - }, - { - "id": "mbd-financials", - "name": "MBD Financials", - "symbol": "mbd" - }, - { - "id": "mcbroken", - "name": "McBROKEN", - "symbol": "mcbroken" - }, - { - "id": "mcdex", - "name": "MUX Protocol", - "symbol": "mcb" - }, - { - "id": "mcelo", - "name": "mCELO", - "symbol": "mcelo" - }, - { - "id": "mceur", - "name": "mcEUR", - "symbol": "mceur" - }, - { - "id": "mcfinance", - "name": "MCFinance", - "symbol": "mcf" - }, - { - "id": "mch-coin", - "name": "MCH Coin", - "symbol": "mchc" - }, - { - "id": "mci-coin", - "name": "Cyclub", - "symbol": "cyclub" - }, - { - "id": "mclaren-f1-fan-token", - "name": "McLaren F1 Fan Token", - "symbol": "mcl" - }, - { - "id": "mcoin1", - "name": "MCOIN", - "symbol": "mcoin" - }, - { - "id": "mcontent", - "name": "MContent", - "symbol": "mcontent" - }, - { - "id": "mcpepe-s", - "name": "McPepe's", - "symbol": "pepes" - }, - { - "id": "mcverse", - "name": "MCVERSE", - "symbol": "mcv" - }, - { - "id": "mdex", - "name": "Mdex (HECO)", - "symbol": "mdx" - }, - { - "id": "mdex-bsc", - "name": "Mdex (BSC)", - "symbol": "mdx" - }, - { - "id": "mdsquare", - "name": "MDsquare", - "symbol": "tmed" - }, - { - "id": "meadow", - "name": "Meadow", - "symbol": "meadow" - }, - { - "id": "meanfi", - "name": "Mean DAO", - "symbol": "mean" - }, - { - "id": "measurable-data-token", - "name": "Measurable Data", - "symbol": "mdt" - }, - { - "id": "meblox-protocol", - "name": "Meblox Protocol", - "symbol": "meb" - }, - { - "id": "mechachain", - "name": "Mechanium", - "symbol": "$mecha" - }, - { - "id": "mecha-morphing", - "name": "Mecha Morphing", - "symbol": "mape" - }, - { - "id": "mechaverse", - "name": "Mechaverse", - "symbol": "mc" - }, - { - "id": "mechazilla", - "name": "Mechazilla", - "symbol": "mecha" - }, - { - "id": "mech-master", - "name": "Mech Master", - "symbol": "mech" - }, - { - "id": "meconcash", - "name": "Meconcash", - "symbol": "mch" - }, - { - "id": "medamon", - "name": "Medamon", - "symbol": "mon" - }, - { - "id": "media-licensing-token", - "name": "Media Licensing Token", - "symbol": "mlt" - }, - { - "id": "media-network", - "name": "Media Network", - "symbol": "media" - }, - { - "id": "medibloc", - "name": "Medibloc", - "symbol": "med" - }, - { - "id": "medicalchain", - "name": "Medicalchain", - "symbol": "mtn" - }, - { - "id": "medicalveda", - "name": "MedicalVeda", - "symbol": "mveda" - }, - { - "id": "medicinal-pork", - "name": "Medicinal Pork", - "symbol": "mork" - }, - { - "id": "medicle", - "name": "Medicle", - "symbol": "mdi" - }, - { - "id": "medieus", - "name": "MEDIEUS", - "symbol": "mdus" - }, - { - "id": "medieval-empires", - "name": "Medieval Empires", - "symbol": "mee" - }, - { - "id": "medifakt", - "name": "Medifakt", - "symbol": "fakt" - }, - { - "id": "medishares", - "name": "MediShares", - "symbol": "mds" - }, - { - "id": "medping", - "name": "Medping", - "symbol": "mpg" - }, - { - "id": "meeb-master", - "name": "Meeb Master", - "symbol": "meeb" - }, - { - "id": "meeb-vault-nftx", - "name": "MEEB Vault (NFTX)", - "symbol": "meeb" - }, - { - "id": "meeds-dao", - "name": "Meeds DAO", - "symbol": "meed" - }, - { - "id": "meerkat-shares", - "name": "Meerkat Shares", - "symbol": "mshare" - }, - { - "id": "meetple", - "name": "Meetple", - "symbol": "mpt" - }, - { - "id": "meflex", - "name": "MEFLEX", - "symbol": "mef" - }, - { - "id": "meg4mint", - "name": "Meg4mint", - "symbol": "meg" - }, - { - "id": "megabot", - "name": "Megabot", - "symbol": "megabot" - }, - { - "id": "megalink", - "name": "Megalink", - "symbol": "mg8" - }, - { - "id": "megalodon", - "name": "MEGALODON", - "symbol": "mega" - }, - { - "id": "megapix", - "name": "Megapix", - "symbol": "mpix" - }, - { - "id": "megapont", - "name": "Megapont", - "symbol": "mega" - }, - { - "id": "megashibazilla", - "name": "MegaShibaZilla", - "symbol": "msz" - }, - { - "id": "megatech", - "name": "Megatech", - "symbol": "mgt" - }, - { - "id": "megatoken", - "name": "MegaToken", - "symbol": "mega" - }, - { - "id": "megaton-finance", - "name": "Megaton Finance", - "symbol": "mega" - }, - { - "id": "megaton-finance-wrapped-toncoin", - "name": "Megaton Finance Wrapped Toncoin", - "symbol": "wton" - }, - { - "id": "megaweapon", - "name": "Megaweapon", - "symbol": "$weapon" - }, - { - "id": "megaworld", - "name": "MegaWorld", - "symbol": "mega" - }, - { - "id": "mega-yacht-cult", - "name": "Mega Yacht Cult", - "symbol": "myc" - }, - { - "id": "me-gusta", - "name": "Me Gusta", - "symbol": "gusta" - }, - { - "id": "meld", - "name": "MELD [OLD]", - "symbol": "meld" - }, - { - "id": "meld-2", - "name": "MELD", - "symbol": "meld" - }, - { - "id": "meld-gold", - "name": "Meld Gold", - "symbol": "mcau" - }, - { - "id": "melega", - "name": "Melega", - "symbol": "marco" - }, - { - "id": "meli-games", - "name": "Meli Games", - "symbol": "meli" - }, - { - "id": "mellivora", - "name": "Mellivora", - "symbol": "mell" - }, - { - "id": "melon", - "name": "Enzyme", - "symbol": "mln" - }, - { - "id": "melon-2", - "name": "MELON", - "symbol": "melon" - }, - { - "id": "melon-dog", - "name": "Melon Dog", - "symbol": "melon" - }, - { - "id": "melos-studio", - "name": "Melos Studio", - "symbol": "melos" - }, - { - "id": "member", - "name": "member", - "symbol": "member" - }, - { - "id": "membrane", - "name": "Membrane", - "symbol": "mbrn" - }, - { - "id": "meme-ai", - "name": "Meme AI", - "symbol": "memeai" - }, - { - "id": "meme-ai-coin", - "name": "Meme AI Coin", - "symbol": "memeai" - }, - { - "id": "meme-alliance", - "name": "Meme Alliance", - "symbol": "mma" - }, - { - "id": "meme-brc-20", - "name": "MEME (Ordinals)", - "symbol": "meme" - }, - { - "id": "memebull", - "name": "MemeBull", - "symbol": "memebull" - }, - { - "id": "memecoin", - "name": "Memecoin", - "symbol": "mem" - }, - { - "id": "memecoin-2", - "name": "Memecoin", - "symbol": "meme" - }, - { - "id": "memecoindao", - "name": "Memecoindao", - "symbol": "$memes" - }, - { - "id": "meme-cult", - "name": "Meme Cult", - "symbol": "mcult" - }, - { - "id": "memedao", - "name": "MemeDAO", - "symbol": "memd" - }, - { - "id": "memedao-ai", - "name": "MemeDao.Ai", - "symbol": "mdai" - }, - { - "id": "memedefi", - "name": "MemeDefi", - "symbol": "memefi" - }, - { - "id": "meme-elon-doge-floki-2", - "name": "Meme Elon Doge Floki", - "symbol": "memelon" - }, - { - "id": "memeetf", - "name": "Bitget MemeETF", - "symbol": "memeetf" - }, - { - "id": "meme-etf", - "name": "Meme ETF", - "symbol": "memeetf" - }, - { - "id": "memefi-toybox-404", - "name": "Memefi Toybox 404", - "symbol": "toybox" - }, - { - "id": "memeflate", - "name": "Memeflate", - "symbol": "mflate" - }, - { - "id": "memehub", - "name": "Memehub", - "symbol": "memehub" - }, - { - "id": "meme-inu", - "name": "Meme Inu", - "symbol": "meme" - }, - { - "id": "meme-kombat", - "name": "Meme Kombat", - "symbol": "mk" - }, - { - "id": "meme-lordz", - "name": "Meme Lordz", - "symbol": "lordz" - }, - { - "id": "mememe", - "name": "MEMEME", - "symbol": "$mememe" - }, - { - "id": "meme-mint", - "name": "MEME MINT", - "symbol": "mememint" - }, - { - "id": "meme-moguls", - "name": "Meme Moguls", - "symbol": "mgls" - }, - { - "id": "meme-musk", - "name": "MEME MUSK", - "symbol": "mememusk" - }, - { - "id": "meme-network", - "name": "Meme Network", - "symbol": "meme" - }, - { - "id": "memepad", - "name": "MemePad", - "symbol": "mepad" - }, - { - "id": "memes-casino", - "name": "Memes Casino", - "symbol": "memes" - }, - { - "id": "meme-shib", - "name": "Meme Shib", - "symbol": "ms" - }, - { - "id": "memeshub", - "name": "MemesHub", - "symbol": "mht" - }, - { - "id": "memes-street", - "name": "Memes Street", - "symbol": "memes" - }, - { - "id": "memes-street-ai", - "name": "Memes Street AI", - "symbol": "mst" - }, - { - "id": "memes-vs-undead", - "name": "Memes vs Undead", - "symbol": "mvu" - }, - { - "id": "memetoon", - "name": "MEMETOON", - "symbol": "meme" - }, - { - "id": "memevengers", - "name": "MEMEVENGERS", - "symbol": "mmvg" - }, - { - "id": "memeverse", - "name": "Memeverse", - "symbol": "meme" - }, - { - "id": "memex", - "name": "MEMEX", - "symbol": "memex" - }, - { - "id": "memusic", - "name": "MeMusic", - "symbol": "mmt" - }, - { - "id": "menapay", - "name": "Menapay", - "symbol": "mpay" - }, - { - "id": "mend", - "name": "Mend", - "symbol": "mend" - }, - { - "id": "mendi-finance", - "name": "Mendi Finance", - "symbol": "mendi" - }, - { - "id": "menzy", - "name": "Menzy", - "symbol": "mnz" - }, - { - "id": "meow-casino", - "name": "Meow Casino", - "symbol": "meow" - }, - { - "id": "meowcat-2", - "name": "Meowcat", - "symbol": "meow" - }, - { - "id": "meowcoin", - "name": "MeowCoin", - "symbol": "mewc" - }, - { - "id": "meow-meme", - "name": "Meow Meme", - "symbol": "meow" - }, - { - "id": "merchant-token", - "name": "Merchant", - "symbol": "mto" - }, - { - "id": "merchdao", - "name": "MerchDAO", - "symbol": "mrch" - }, - { - "id": "mercle", - "name": "MERCLE", - "symbol": "$mercle" - }, - { - "id": "mercor-finance", - "name": "Mercor Finance", - "symbol": "mrcr" - }, - { - "id": "mercurial", - "name": "Mercurial", - "symbol": "mer" - }, - { - "id": "mercury-protocol-404", - "name": "Mercury Protocol 404", - "symbol": "m404" - }, - { - "id": "merebel", - "name": "Merebel", - "symbol": "meri" - }, - { - "id": "merge", - "name": "Merge", - "symbol": "merge" - }, - { - "id": "mergen", - "name": "Mergen", - "symbol": "mrgn" - }, - { - "id": "mergex", - "name": "MergeX", - "symbol": "mge" - }, - { - "id": "meridian-mst", - "name": "Meridian MST", - "symbol": "mst" - }, - { - "id": "merit-circle", - "name": "Merit Circle", - "symbol": "mc" - }, - { - "id": "merlinbox", - "name": "MerlinBox", - "symbol": "merlinbox" - }, - { - "id": "merlin-chain-bridged-voya-merlin", - "name": "Merlin Chain Bridged VOYA (Merlin)", - "symbol": "voya" - }, - { - "id": "merlin-chain-bridged-wrapped-btc-merlin", - "name": "Merlin Chain Bridged Wrapped BTC (Merlin)", - "symbol": "wbtc" - }, - { - "id": "merlinland", - "name": "MerlinLand", - "symbol": "merlinland" - }, - { - "id": "merlin-s-seal-btc", - "name": "Merlin's Seal BTC", - "symbol": "m-btc" - }, - { - "id": "merlinswap", - "name": "MerlinSwap", - "symbol": "mp" - }, - { - "id": "merrychristmas", - "name": "MerryChristmas [OLD]", - "symbol": "hohoho" - }, - { - "id": "merrychristmas-2", - "name": "MerryChristmas", - "symbol": "hohoho" - }, - { - "id": "merry-christmas-token", - "name": "Merry Christmas Token", - "symbol": "mct" - }, - { - "id": "meshbox", - "name": "MeshBox", - "symbol": "mesh" - }, - { - "id": "mesh-protocol", - "name": "Mesh Protocol", - "symbol": "mesh" - }, - { - "id": "meshswap-protocol", - "name": "Meshswap Protocol", - "symbol": "mesh" - }, - { - "id": "meshwave", - "name": "MeshWave", - "symbol": "mwave" - }, - { - "id": "meso", - "name": "Meso", - "symbol": "meso" - }, - { - "id": "meson-network", - "name": "Meson Network", - "symbol": "msn" - }, - { - "id": "messi-coin", - "name": "MESSI COIN", - "symbol": "messi" - }, - { - "id": "messier", - "name": "MESSIER", - "symbol": "m87" - }, - { - "id": "meta", - "name": "mStable Governance: Meta", - "symbol": "mta" - }, - { - "id": "meta-2", - "name": "META", - "symbol": "meta" - }, - { - "id": "meta-apes-peel", - "name": "Meta Apes PEEL", - "symbol": "peel" - }, - { - "id": "meta-art-connection", - "name": "Meta Art Connection", - "symbol": "mac" - }, - { - "id": "metababy", - "name": "Metababy", - "symbol": "baby" - }, - { - "id": "metabeat", - "name": "MetaBeat", - "symbol": "$beat" - }, - { - "id": "metabet", - "name": "MetaBET", - "symbol": "mbet" - }, - { - "id": "metabit-network", - "name": "Metabit Network", - "symbol": "bmtc" - }, - { - "id": "metable", - "name": "Metable", - "symbol": "mtbl" - }, - { - "id": "metablox", - "name": "MetaBlox", - "symbol": "mbx" - }, - { - "id": "metabot", - "name": "MetaBot", - "symbol": "metabot" - }, - { - "id": "metabrands", - "name": "MetaBrands", - "symbol": "mage" - }, - { - "id": "meta-bsc", - "name": "Meta BSC", - "symbol": "meta" - }, - { - "id": "metabusdcoin", - "name": "MetaLabz", - "symbol": "mlz" - }, - { - "id": "metacade", - "name": "Metacade", - "symbol": "mcade" - }, - { - "id": "metacash", - "name": "MetaCash", - "symbol": "meta" - }, - { - "id": "metacraft", - "name": "Metacraft", - "symbol": "mct" - }, - { - "id": "meta-dance", - "name": "META DANCE", - "symbol": "mdt" - }, - { - "id": "metaderby", - "name": "Metaderby", - "symbol": "dby" - }, - { - "id": "metaderby-hoof", - "name": "Metaderby Hoof", - "symbol": "hoof" - }, - { - "id": "metadium", - "name": "Metadium", - "symbol": "meta" - }, - { - "id": "meta-doge", - "name": "Meta Doge", - "symbol": "metadoge" - }, - { - "id": "metadoge-bsc", - "name": "MetaDoge BSC", - "symbol": "metadoge" - }, - { - "id": "metadoge-v2", - "name": "MetaDoge V2", - "symbol": "metadogev2" - }, - { - "id": "metados", - "name": "MetaDOS", - "symbol": "second" - }, - { - "id": "metaelfland", - "name": "MetaElfLand", - "symbol": "meld" - }, - { - "id": "metafastest", - "name": "METAFASTEST", - "symbol": "metaf" - }, - { - "id": "metafighter", - "name": "MetaFighter", - "symbol": "mf" - }, - { - "id": "metafinance", - "name": "MetaFinance", - "symbol": "mfi" - }, - { - "id": "meta_finance", - "name": "Meta Finance", - "symbol": "mf1" - }, - { - "id": "meta-finance", - "name": "Meta Finance", - "symbol": "meta" - }, - { - "id": "metafishing-2", - "name": "MetaFishing", - "symbol": "dgc" - }, - { - "id": "metafluence", - "name": "Metafluence", - "symbol": "meto" - }, - { - "id": "metafootball", - "name": "MetaFootball", - "symbol": "mtf" - }, - { - "id": "meta-fps", - "name": "Meta FPS", - "symbol": "mfps" - }, - { - "id": "metagalaxy-land", - "name": "Metagalaxy Land", - "symbol": "megaland" - }, - { - "id": "metagame", - "name": "MetaGame", - "symbol": "seed" - }, - { - "id": "metagame-arena", - "name": "Metagame Arena", - "symbol": "mga" - }, - { - "id": "metagamehub-dao", - "name": "MetaGameHub DAO", - "symbol": "mgh" - }, - { - "id": "metagaming-guild", - "name": "MetaGaming Guild", - "symbol": "mgg" - }, - { - "id": "metagods", - "name": "MetaGods", - "symbol": "mgod" - }, - { - "id": "metaguard", - "name": "MetaGuard", - "symbol": "mtgrd" - }, - { - "id": "metahamster", - "name": "Metahamster", - "symbol": "mham" - }, - { - "id": "metahero", - "name": "Metahero", - "symbol": "hero" - }, - { - "id": "metahorse-unity", - "name": "Metahorse Unity", - "symbol": "munity" - }, - { - "id": "metahub-finance", - "name": "MetaHub Finance", - "symbol": "men" - }, - { - "id": "metajuice", - "name": "Metajuice", - "symbol": "vcoin" - }, - { - "id": "metakings", - "name": "Metakings", - "symbol": "mtk" - }, - { - "id": "metal", - "name": "Metal DAO", - "symbol": "mtl" - }, - { - "id": "metaland-gameverse", - "name": "Monster", - "symbol": "mst" - }, - { - "id": "metalands", - "name": "Metalands", - "symbol": "pvp" - }, - { - "id": "meta-launcher", - "name": "Meta Launcher", - "symbol": "mtla" - }, - { - "id": "metal-blockchain", - "name": "Metal Blockchain", - "symbol": "metal" - }, - { - "id": "metal-dollar", - "name": "Metal Dollar", - "symbol": "xmd" - }, - { - "id": "metal-friends", - "name": "Metal Friends", - "symbol": "mtls" - }, - { - "id": "metalswap", - "name": "MetalSwap", - "symbol": "xmt" - }, - { - "id": "metal-tools", - "name": "Metal Tools", - "symbol": "metal" - }, - { - "id": "metamafia", - "name": "MetaMAFIA", - "symbol": "maf" - }, - { - "id": "metamall", - "name": "MetaMall", - "symbol": "mall" - }, - { - "id": "meta-masters-guild-games", - "name": "Meta Masters Guild Games", - "symbol": "memagx" - }, - { - "id": "metamecha", - "name": "MetaMecha", - "symbol": "mm" - }, - { - "id": "meta-merge-mana", - "name": "Meta Merge Mana", - "symbol": "mmm" - }, - { - "id": "met-a-meta-metameme", - "name": "met a meta metameme", - "symbol": "metameme" - }, - { - "id": "meta-mine", - "name": "META MINE", - "symbol": "mtmn" - }, - { - "id": "meta-minigames", - "name": "Meta Minigames", - "symbol": "mmg" - }, - { - "id": "metamonkeyai", - "name": "MetamonkeyAi", - "symbol": "mmai" - }, - { - "id": "meta-monopoly", - "name": "Meta Monopoly", - "symbol": "monopoly" - }, - { - "id": "metamoon", - "name": "MetaMoon", - "symbol": "metamoon" - }, - { - "id": "metamui", - "name": "MetaMUI", - "symbol": "mmui" - }, - { - "id": "metamundo", - "name": "Metamundo", - "symbol": "mmt" - }, - { - "id": "metanept", - "name": "Metanept", - "symbol": "nept" - }, - { - "id": "metan-evolutions", - "name": "Metan Evolutions", - "symbol": "metan" - }, - { - "id": "metaniagames", - "name": "MetaniaGames", - "symbol": "metania" - }, - { - "id": "metano", - "name": "Metano", - "symbol": "metano" - }, - { - "id": "metanyx", - "name": "Metanyx", - "symbol": "metx" - }, - { - "id": "meta-oasis", - "name": "Meta Oasis", - "symbol": "aim" - }, - { - "id": "metaoctagon", - "name": "MetaOctagon", - "symbol": "motg" - }, - { - "id": "metaplanet-ai", - "name": "MetaPlanet AI", - "symbol": "mplai" - }, - { - "id": "metaplex", - "name": "Metaplex", - "symbol": "mplx" - }, - { - "id": "meta-plus-token", - "name": "Meta Plus Token", - "symbol": "mts" - }, - { - "id": "metapocket", - "name": "MetaPocket", - "symbol": "mpckt" - }, - { - "id": "metapolitans", - "name": "Metapolitans", - "symbol": "maps" - }, - { - "id": "meta-pool", - "name": "Meta Pool", - "symbol": "meta" - }, - { - "id": "metapuss", - "name": "MetaPuss", - "symbol": "mtp" - }, - { - "id": "metaq", - "name": "MetaQ", - "symbol": "metaq" - }, - { - "id": "metarim", - "name": "MetaRim", - "symbol": "rim" - }, - { - "id": "metarix", - "name": "Metarix", - "symbol": "mtrx" - }, - { - "id": "metars-genesis", - "name": "Metars Genesis", - "symbol": "mrs" - }, - { - "id": "meta-ruffy", - "name": "MetaRuffy (MR)", - "symbol": "mr" - }, - { - "id": "metarun", - "name": "Metarun", - "symbol": "mrun" - }, - { - "id": "metasafemoon", - "name": "MetaSafeMoon", - "symbol": "metasfm" - }, - { - "id": "metashooter", - "name": "MetaShooter", - "symbol": "mhunt" - }, - { - "id": "metasoccer", - "name": "MetaSoccer", - "symbol": "msu" - }, - { - "id": "metastreet-v2-mwsteth-wpunks-20", - "name": "MetaStreet V2 mwstETH-WPUNKS:20", - "symbol": "punketh-20" - }, - { - "id": "metastrike", - "name": "Metastrike", - "symbol": "mts" - }, - { - "id": "metatdex", - "name": "TDEX Token", - "symbol": "tt" - }, - { - "id": "metathings", - "name": "Metathings", - "symbol": "mett" - }, - { - "id": "metatime-coin", - "name": "Metatime Coin", - "symbol": "mtc" - }, - { - "id": "metatoken", - "name": "MetaToken", - "symbol": "mtk" - }, - { - "id": "meta-toy-dragonz-saga-fxerc20", - "name": "Meta Toy DragonZ SAGA (FXERC20)", - "symbol": "fxmetod" - }, - { - "id": "metatrace", - "name": "MetaTrace", - "symbol": "trc" - }, - { - "id": "metavault-dao", - "name": "Metavault DAO", - "symbol": "mvd" - }, - { - "id": "metavault-trade", - "name": "Metavault Trade", - "symbol": "mvx" - }, - { - "id": "metaverse-etp", - "name": "Metaverse ETP", - "symbol": "etp" - }, - { - "id": "metaverse-face", - "name": "Metaverse Face", - "symbol": "mefa" - }, - { - "id": "metaverse-hub", - "name": "Metaverse Hub", - "symbol": "mhub" - }, - { - "id": "metaverse-index", - "name": "Metaverse Index", - "symbol": "mvi" - }, - { - "id": "metaverse-kombat", - "name": "Metaverse Kombat", - "symbol": "mvk" - }, - { - "id": "metaverse-m", - "name": "MetaVerse-M", - "symbol": "m" - }, - { - "id": "metaverse-miner", - "name": "Metaverse Miner", - "symbol": "meta" - }, - { - "id": "metaverse-network-pioneer", - "name": "MNet Pioneer", - "symbol": "neer" - }, - { - "id": "metaverser", - "name": "Metaverser", - "symbol": "mtvt" - }, - { - "id": "metaverse-universal-assets-bmbi-ordinals", - "name": "Metaverse Universal Assets BMBI (Ordinals)", - "symbol": "bmbi" - }, - { - "id": "metaverse-vr", - "name": "Metaverse VR", - "symbol": "mevr" - }, - { - "id": "metaverse-world-membership", - "name": "Metaverse World Membership", - "symbol": "mwm" - }, - { - "id": "metaversex", - "name": "MetaverseX", - "symbol": "metax" - }, - { - "id": "metavisa", - "name": "metavisa", - "symbol": "mesa" - }, - { - "id": "metavpad", - "name": "MetaVPad", - "symbol": "metav" - }, - { - "id": "metawars", - "name": "MetaWars", - "symbol": "wars" - }, - { - "id": "metawear", - "name": "MetaWear", - "symbol": "wear" - }, - { - "id": "metaworld", - "name": "MetaWorld", - "symbol": "mw" - }, - { - "id": "metaxcosmos", - "name": "MetaXCosmos", - "symbol": "metax" - }, - { - "id": "metaxy", - "name": "Metaxy", - "symbol": "mxy" - }, - { - "id": "metazero", - "name": "MetaZero", - "symbol": "mzero" - }, - { - "id": "metazilla", - "name": "MetaZilla", - "symbol": "mz" - }, - { - "id": "metazoomee", - "name": "MetaZooMee", - "symbol": "mzm" - }, - { - "id": "metchain", - "name": "Metchain", - "symbol": "met" - }, - { - "id": "meter", - "name": "Meter Governance", - "symbol": "mtrg" - }, - { - "id": "meter-governance-mapped-by-meter-io", - "name": "Meter Governance mapped by Meter.io", - "symbol": "emtrg" - }, - { - "id": "meter-io-staked-mtrg", - "name": "Meter.io Staked MTRG", - "symbol": "stmtrg" - }, - { - "id": "meter-io-wrapped-stmtrg", - "name": "Meter.io Wrapped stMTRG", - "symbol": "wstmtrg" - }, - { - "id": "meter-passport-bridged-usdc-meter", - "name": "Meter Passport Bridged USDC (Meter)", - "symbol": "usdc" - }, - { - "id": "meter-stable", - "name": "Meter Stable", - "symbol": "mtr" - }, - { - "id": "metfi-2", - "name": "MetFi", - "symbol": "metfi" - }, - { - "id": "metisbot", - "name": "MetisBot", - "symbol": "mbot" - }, - { - "id": "metis-token", - "name": "Metis", - "symbol": "metis" - }, - { - "id": "metoshi", - "name": "Metoshi", - "symbol": "meto" - }, - { - "id": "metronome", - "name": "Metronome", - "symbol": "met" - }, - { - "id": "metropoly", - "name": "Metropoly", - "symbol": "metro" - }, - { - "id": "metroxynth", - "name": "Metroxynth", - "symbol": "mxh" - }, - { - "id": "mettalex", - "name": "Mettalex", - "symbol": "mtlx" - }, - { - "id": "metti-inu", - "name": "Metti Inu", - "symbol": "metti" - }, - { - "id": "mevai", - "name": "MevAI", - "symbol": "mai" - }, - { - "id": "meverse", - "name": "MEVerse", - "symbol": "mev" - }, - { - "id": "meveth", - "name": "mevETH", - "symbol": "meveth" - }, - { - "id": "mexican-peso-tether", - "name": "Mexican Peso Tether", - "symbol": "mxnt" - }, - { - "id": "mezz", - "name": "MEZZ", - "symbol": "mezz" - }, - { - "id": "mfercoin", - "name": "mfercoin", - "symbol": "mfer" - }, - { - "id": "mfers", - "name": "MFERS", - "symbol": "mfers" - }, - { - "id": "mfet", - "name": "MFET", - "symbol": "mfet" - }, - { - "id": "mhcash", - "name": "MHCASH", - "symbol": "mhcash" - }, - { - "id": "mia", - "name": "Mia", - "symbol": "mia" - }, - { - "id": "miaswap", - "name": "MiaSwap", - "symbol": "mia" - }, - { - "id": "mibr-fan-token", - "name": "MIBR Fan Token", - "symbol": "mibr" - }, - { - "id": "mice", - "name": "Mice (Ordinals)", - "symbol": "mice" - }, - { - "id": "mickey", - "name": "Mickey", - "symbol": "mickey" - }, - { - "id": "micro-ai", - "name": "Micro AI", - "symbol": "mai" - }, - { - "id": "micro-bitcoin-finance", - "name": "Micro Bitcoin Finance", - "symbol": "mbtc" - }, - { - "id": "micro-coq", - "name": "Micro Coq", - "symbol": "micro" - }, - { - "id": "microcredittoken", - "name": "MicroCreditToken", - "symbol": "1mct" - }, - { - "id": "micromoney", - "name": "MicroMoney", - "symbol": "amm" - }, - { - "id": "micropepe", - "name": "MicroPepe", - "symbol": "mpepe" - }, - { - "id": "micropets", - "name": "MicroPets [OLD]", - "symbol": "pets" - }, - { - "id": "micropets-2", - "name": "MicroPets", - "symbol": "pets" - }, - { - "id": "microsoft-tokenized-stock-defichain", - "name": "Microsoft Tokenized Stock Defichain", - "symbol": "dmsft" - }, - { - "id": "microtick", - "name": "Microtick", - "symbol": "tick" - }, - { - "id": "microtuber", - "name": "MicroTuber", - "symbol": "mct" - }, - { - "id": "microvisionchain", - "name": "MicrovisionChain", - "symbol": "space" - }, - { - "id": "midas-stusd", - "name": "Midas stUSD", - "symbol": "stusd" - }, - { - "id": "midas-token", - "name": "MIDAS Token", - "symbol": "mds" - }, - { - "id": "miggy", - "name": "Miggy", - "symbol": "miggy" - }, - { - "id": "miidas", - "name": "Miidas", - "symbol": "miidas" - }, - { - "id": "mikawa-inu", - "name": "Mikawa Inu", - "symbol": "mikawa" - }, - { - "id": "mikeneko", - "name": "MiKeNeKo", - "symbol": "mike" - }, - { - "id": "milady-meme-coin", - "name": "Milady Meme Coin", - "symbol": "ladys" - }, - { - "id": "milady-vault-nftx", - "name": "Milady Vault (NFTX)", - "symbol": "milady" - }, - { - "id": "milei", - "name": "MILEI", - "symbol": "milei" - }, - { - "id": "milei-token", - "name": "MILEI Token", - "symbol": "milei" - }, - { - "id": "milestone-millions", - "name": "Milestone Millions", - "symbol": "msmil" - }, - { - "id": "mileverse", - "name": "MileVerse", - "symbol": "mvc" - }, - { - "id": "milk", - "name": "Cool Cats Milk", - "symbol": "milk" - }, - { - "id": "milk-2", - "name": "Milk", - "symbol": "milk" - }, - { - "id": "milkai", - "name": "MilkAI", - "symbol": "milkai" - }, - { - "id": "milk-alliance", - "name": "MiL.k Alliance", - "symbol": "mlk" - }, - { - "id": "milk-coin", - "name": "MILK Coin", - "symbol": "milk" - }, - { - "id": "milkshakeswap", - "name": "Milkshake Swap", - "symbol": "milk" - }, - { - "id": "milkyswap", - "name": "MilkySwap", - "symbol": "milky" - }, - { - "id": "milky-token", - "name": "Milky", - "symbol": "milky" - }, - { - "id": "milkyway-staked-tia", - "name": "MilkyWay Staked TIA", - "symbol": "milktia" - }, - { - "id": "mille-chain", - "name": "MILLE CHAIN", - "symbol": "mille" - }, - { - "id": "millenniumclub", - "name": "MillenniumClub Coin [OLD]", - "symbol": "mclb" - }, - { - "id": "millenniumclub-coin-new", - "name": "MillenniumClub Coin [NEW]", - "symbol": "mclb" - }, - { - "id": "milli-coin", - "name": "MILLI", - "symbol": "milli" - }, - { - "id": "millimeter", - "name": "Millimeter", - "symbol": "mm" - }, - { - "id": "million", - "name": "Million", - "symbol": "mm" - }, - { - "id": "milliondollarbaby", - "name": "Make DeFi Better", - "symbol": "mdb" - }, - { - "id": "million-monke", - "name": "Million Monke", - "symbol": "mimo" - }, - { - "id": "millonarios-fc-fan-token", - "name": "Millonarios FC Fan Token", - "symbol": "mfc" - }, - { - "id": "milo", - "name": "MILO", - "symbol": "milo" - }, - { - "id": "milo-2", - "name": "MILO", - "symbol": "milo" - }, - { - "id": "milo-dog", - "name": "MILO DOG", - "symbol": "milo dog" - }, - { - "id": "milo-inu", - "name": "Milo Inu", - "symbol": "milo" - }, - { - "id": "mim", - "name": "MIM", - "symbol": "swarm" - }, - { - "id": "mimany", - "name": "MIMANY", - "symbol": "mimany" - }, - { - "id": "mimas-finance", - "name": "Mimas Finance", - "symbol": "mimas" - }, - { - "id": "mimatic", - "name": "MAI", - "symbol": "mimatic" - }, - { - "id": "mimblewimblecoin", - "name": "MimbleWimbleCoin", - "symbol": "mwc" - }, - { - "id": "mimbo", - "name": "Mimbo", - "symbol": "mimbo" - }, - { - "id": "mimir-token", - "name": "Mimir", - "symbol": "mimir" - }, - { - "id": "mimo-capital-ag-us-kuma-interest-bearing-token", - "name": "KUMA Protocol US KUMA Interest Bearing Token", - "symbol": "usk" - }, - { - "id": "mimo-parallel-governance-token", - "name": "Mimo Governance", - "symbol": "mimo" - }, - { - "id": "mimosa", - "name": "Mimosa", - "symbol": "mimo" - }, - { - "id": "mina-protocol", - "name": "Mina Protocol", - "symbol": "mina" - }, - { - "id": "minativerse", - "name": "MINATIVERSE", - "symbol": "mntc" - }, - { - "id": "minato", - "name": "Minato", - "symbol": "mnto" - }, - { - "id": "mindai", - "name": "MindAI", - "symbol": "mdai" - }, - { - "id": "mind-connect", - "name": "Mind Connect", - "symbol": "mind" - }, - { - "id": "mind-games-cortex", - "name": "MIND Games CORTEX", - "symbol": "crx" - }, - { - "id": "mind-language", - "name": "Mind", - "symbol": "mnd" - }, - { - "id": "mind-matrix", - "name": "Mind Matrix", - "symbol": "aimx" - }, - { - "id": "minds", - "name": "Minds", - "symbol": "minds" - }, - { - "id": "mindverse", - "name": "MindVerse", - "symbol": "mverse" - }, - { - "id": "mineable", - "name": "Mineable", - "symbol": "mnb" - }, - { - "id": "mine-ai", - "name": "Mine AI", - "symbol": "mai" - }, - { - "id": "minebase", - "name": "Minebase", - "symbol": "mbase" - }, - { - "id": "minelab", - "name": "Minelab", - "symbol": "melb" - }, - { - "id": "miner", - "name": "MINER", - "symbol": "miner" - }, - { - "id": "mineral", - "name": "Mineral", - "symbol": "mnr" - }, - { - "id": "miner-arena", - "name": "Miner Arena", - "symbol": "minar" - }, - { - "id": "minergatetoken", - "name": "MinerGateToken", - "symbol": "mgt" - }, - { - "id": "minergold-io", - "name": "MinerGold.io", - "symbol": "mgold" - }, - { - "id": "miners-of-kadenia", - "name": "Miners of Kadenia", - "symbol": "mok" - }, - { - "id": "minerva-money", - "name": "Minerva Money", - "symbol": "mine" - }, - { - "id": "minerva-wallet", - "name": "Minerva Wallet", - "symbol": "miva" - }, - { - "id": "minesee", - "name": "MineSee", - "symbol": "see" - }, - { - "id": "mineshield", - "name": "Mineshield", - "symbol": "mns" - }, - { - "id": "mines-of-dalarnia", - "name": "Mines of Dalarnia", - "symbol": "dar" - }, - { - "id": "mini", - "name": "Mini", - "symbol": "mini" - }, - { - "id": "mini-grok", - "name": "Mini Grok (OLD)", - "symbol": "mini grok" - }, - { - "id": "mini-grok-2", - "name": "Mini Grok", - "symbol": "mini grok" - }, - { - "id": "minima", - "name": "Minima", - "symbol": "minima" - }, - { - "id": "mini-metis", - "name": "Mini Metis", - "symbol": "minime" - }, - { - "id": "minswap", - "name": "Minswap", - "symbol": "min" - }, - { - "id": "mint-club", - "name": "Mint Club", - "symbol": "mint" - }, - { - "id": "mintdao", - "name": "MintDAO", - "symbol": "mint" - }, - { - "id": "minted", - "name": "Minted", - "symbol": "mtd" - }, - { - "id": "mintera", - "name": "Mintera", - "symbol": "mnte" - }, - { - "id": "minterest", - "name": "Minterest", - "symbol": "minty" - }, - { - "id": "minti", - "name": "Minti", - "symbol": "minti" - }, - { - "id": "mintlayer", - "name": "Mintlayer", - "symbol": "ml" - }, - { - "id": "minto", - "name": "Minto", - "symbol": "btcmt" - }, - { - "id": "mintra", - "name": "Mintra", - "symbol": "mint" - }, - { - "id": "minu", - "name": "Minu", - "symbol": "minu" - }, - { - "id": "minu-the-manta", - "name": "Minu the Manta", - "symbol": "mnu" - }, - { - "id": "miracle-play", - "name": "Miracle Play", - "symbol": "mpt" - }, - { - "id": "mirage-2", - "name": "Mirage", - "symbol": "mirage" - }, - { - "id": "miraqle", - "name": "MiraQle", - "symbol": "mql" - }, - { - "id": "mirrored-ether", - "name": "Mirrored Ether", - "symbol": "meth" - }, - { - "id": "mirror-protocol", - "name": "Mirror Protocol", - "symbol": "mir" - }, - { - "id": "mir-token", - "name": "Mir Token", - "symbol": "mir" - }, - { - "id": "misbloc", - "name": "Misbloc", - "symbol": "msb" - }, - { - "id": "missionmars", - "name": "MissionMars", - "symbol": "mmars" - }, - { - "id": "mist", - "name": "Mist", - "symbol": "mist" - }, - { - "id": "mistery", - "name": "Mistery", - "symbol": "mery" - }, - { - "id": "mithril", - "name": "Mithril", - "symbol": "mith" - }, - { - "id": "mithril-share", - "name": "Mithril Share", - "symbol": "mis" - }, - { - "id": "mixin", - "name": "Mixin", - "symbol": "xin" - }, - { - "id": "mixmarvel", - "name": "MixMarvel", - "symbol": "mix" - }, - { - "id": "mixmob", - "name": "MixMob", - "symbol": "mxm" - }, - { - "id": "mixtoearn", - "name": "MixToEarn", - "symbol": "mte" - }, - { - "id": "mixtrust", - "name": "MixTrust", - "symbol": "mxt" - }, - { - "id": "mizar", - "name": "Mizar", - "symbol": "mzr" - }, - { - "id": "mktcash", - "name": "Mktcash", - "symbol": "mch" - }, - { - "id": "mm72", - "name": "MM72", - "symbol": "mm72" - }, - { - "id": "mmfinance", - "name": "MMFinance (Cronos)", - "symbol": "mmf" - }, - { - "id": "mmfinance-arbitrum", - "name": "MMFinance (Arbitrum)", - "symbol": "mmf" - }, - { - "id": "mmf-money", - "name": "MMF Money", - "symbol": "burrow" - }, - { - "id": "mmocoin", - "name": "MMOCoin", - "symbol": "mmo" - }, - { - "id": "mms-cash", - "name": "MMS Cash", - "symbol": "mcash" - }, - { - "id": "mms-coin", - "name": "MMS Coin", - "symbol": "mmsc" - }, - { - "id": "mmss", - "name": "MMSS (Ordinals)", - "symbol": "mmss" - }, - { - "id": "mn-bridge", - "name": "MN Bridge", - "symbol": "mnb" - }, - { - "id": "mnet-continuum", - "name": "MNet Continuum", - "symbol": "nuum" - }, - { - "id": "mnicorp", - "name": "MnICorp", - "symbol": "mni" - }, - { - "id": "moai", - "name": "MOAI", - "symbol": "moai" - }, - { - "id": "mobifi", - "name": "MobiFi", - "symbol": "mofi" - }, - { - "id": "mobilecoin", - "name": "MobileCoin", - "symbol": "mob" - }, - { - "id": "mobile-crypto-pay-coin", - "name": "Mobile Crypto Pay Coin", - "symbol": "mcpc" - }, - { - "id": "mobility-coin", - "name": "Mobility Coin", - "symbol": "mobic" - }, - { - "id": "mobipad", - "name": "Mobipad", - "symbol": "mbp" - }, - { - "id": "mobist", - "name": "Mobist", - "symbol": "mitx" - }, - { - "id": "mobius", - "name": "Mobius", - "symbol": "mobi" - }, - { - "id": "mobius-finance", - "name": "Mobius Finance", - "symbol": "mot" - }, - { - "id": "mobius-money", - "name": "Mobius Money", - "symbol": "mobi" - }, - { - "id": "mobix", - "name": "MOBIX", - "symbol": "mobx" - }, - { - "id": "mobox", - "name": "Mobox", - "symbol": "mbox" - }, - { - "id": "mobster", - "name": "Mobster", - "symbol": "mob" - }, - { - "id": "moby", - "name": "Moby", - "symbol": "moby" - }, - { - "id": "mochadcoin", - "name": "MoChadCoin", - "symbol": "mochad" - }, - { - "id": "mochi", - "name": "Mochi", - "symbol": "mochi" - }, - { - "id": "mochicat", - "name": "MOCHICAT", - "symbol": "mochicat" - }, - { - "id": "mochi-market", - "name": "Mochi Market", - "symbol": "moma" - }, - { - "id": "mochi-thecatcoin", - "name": "Mochi", - "symbol": "mochi" - }, - { - "id": "mockjup", - "name": "mockJUP", - "symbol": "mockjup" - }, - { - "id": "mocossi-planet", - "name": "Mocossi Planet", - "symbol": "mcos" - }, - { - "id": "moda-dao", - "name": "MODA DAO", - "symbol": "moda" - }, - { - "id": "modai", - "name": "MODAI", - "symbol": "modai" - }, - { - "id": "modclub", - "name": "Modclub", - "symbol": "mod" - }, - { - "id": "mode", - "name": "Mode", - "symbol": "mode" - }, - { - "id": "mode-bridged-usdc-mode", - "name": "Mode Bridged USDC (Mode)", - "symbol": "usdc" - }, - { - "id": "mode-bridged-usdt-mode", - "name": "Mode Bridged USDT (Mode)", - "symbol": "usdt" - }, - { - "id": "mode-bridged-wbtc-mode", - "name": "Mode Bridged WBTC (Mode)", - "symbol": "wbtc" - }, - { - "id": "modefi", - "name": "Modefi", - "symbol": "mod" - }, - { - "id": "model-labs", - "name": "Model Labs", - "symbol": "model" - }, - { - "id": "modex", - "name": "Modex", - "symbol": "modex" - }, - { - "id": "modular-wallet", - "name": "Modular Wallet", - "symbol": "mod" - }, - { - "id": "modulus-domains-service", - "name": "Modulus Domain Service", - "symbol": "mods" - }, - { - "id": "moe", - "name": "MOE", - "symbol": "moe" - }, - { - "id": "moe-2", - "name": "Moe", - "symbol": "moe" - }, - { - "id": "moe-3", - "name": "MOE", - "symbol": "moe" - }, - { - "id": "moeda-loyalty-points", - "name": "Moeda Loyalty Points", - "symbol": "mda" - }, - { - "id": "moeta", - "name": "Moeta", - "symbol": "moeta" - }, - { - "id": "moew", - "name": "MOEW", - "symbol": "moew" - }, - { - "id": "mog", - "name": "MOG", - "symbol": "mog" - }, - { - "id": "mog-2", - "name": "Mog", - "symbol": "mog" - }, - { - "id": "mog-coin", - "name": "Mog Coin", - "symbol": "mog" - }, - { - "id": "moggo", - "name": "MOGGO", - "symbol": "moggo" - }, - { - "id": "mogul-productions", - "name": "Mogul Productions", - "symbol": "stars" - }, - { - "id": "mojito", - "name": "Mojito", - "symbol": "mojo" - }, - { - "id": "mojitoswap", - "name": "MojitoSwap", - "symbol": "mjt" - }, - { - "id": "molecules-of-korolchuk-ip-nft", - "name": "Molecules of Korolchuk IP-NFT", - "symbol": "vita-fast" - }, - { - "id": "molly-ai", - "name": "Molly AI", - "symbol": "molly" - }, - { - "id": "molly-gateway", - "name": "Molly", - "symbol": "molly" - }, - { - "id": "molten-2", - "name": "Molten", - "symbol": "molten" - }, - { - "id": "moments", - "name": "Moments Market", - "symbol": "mmt" - }, - { - "id": "mommy-doge", - "name": "Mommy Doge", - "symbol": "mommydoge" - }, - { - "id": "momoji", - "name": "MOMOJI", - "symbol": "emoji" - }, - { - "id": "momo-key", - "name": "MoMo Key", - "symbol": "key" - }, - { - "id": "momo-v2", - "name": "Momo v2", - "symbol": "momo v2" - }, - { - "id": "mona", - "name": "Monaco Planet", - "symbol": "mona" - }, - { - "id": "monaco", - "name": "MCO", - "symbol": "mco" - }, - { - "id": "monacoin", - "name": "MonaCoin", - "symbol": "mona" - }, - { - "id": "monai", - "name": "Monai", - "symbol": "monai" - }, - { - "id": "monaki", - "name": "Monaki", - "symbol": "monk" - }, - { - "id": "monarch", - "name": "Monarch", - "symbol": "mnrch" - }, - { - "id": "monat-money", - "name": "Monat Money", - "symbol": "monat" - }, - { - "id": "mona-token", - "name": "Mona Token", - "symbol": "lisa" - }, - { - "id": "monavale", - "name": "Monavale", - "symbol": "mona" - }, - { - "id": "monbasecoin", - "name": "MonbaseCoin", - "symbol": "mbc" - }, - { - "id": "mondo-community-coin", - "name": "Mondo Community Coin", - "symbol": "mndcc" - }, - { - "id": "mone-coin", - "name": "Mone Coin", - "symbol": "mone" - }, - { - "id": "monerium-eur-money", - "name": "Monerium EUR emoney", - "symbol": "eure" - }, - { - "id": "monero", - "name": "Monero", - "symbol": "xmr" - }, - { - "id": "monero-classic-xmc", - "name": "Monero-Classic", - "symbol": "xmc" - }, - { - "id": "monerov", - "name": "MoneroV", - "symbol": "xmv" - }, - { - "id": "monetas", - "name": "Monetas [OLD]", - "symbol": "mntg" - }, - { - "id": "monetas-2", - "name": "Monetas", - "symbol": "mntg" - }, - { - "id": "monetha", - "name": "Monetha", - "symbol": "mth" - }, - { - "id": "monet-society", - "name": "Monet Society", - "symbol": "monet" - }, - { - "id": "moneyark", - "name": "MoneyArk", - "symbol": "mark" - }, - { - "id": "moneybrain-bips", - "name": "Moneybrain BiPS", - "symbol": "bips" - }, - { - "id": "moneybyte", - "name": "Moneybyte", - "symbol": "mon" - }, - { - "id": "moneyhero", - "name": "Moneyhero", - "symbol": "myh" - }, - { - "id": "money-laundering-protocol", - "name": "Money Laundering Protocol", - "symbol": "mlp" - }, - { - "id": "money-on-chain", - "name": "Money On Chain", - "symbol": "moc" - }, - { - "id": "moneyswap", - "name": "MoneySwap", - "symbol": "mswap" - }, - { - "id": "mongcoin", - "name": "MongCoin", - "symbol": "mong" - }, - { - "id": "mongol-nft", - "name": "Mongol NFT", - "symbol": "mnft" - }, - { - "id": "mongoose", - "name": "Mongoose", - "symbol": "mongoose" - }, - { - "id": "monk", - "name": "Monk", - "symbol": "monk" - }, - { - "id": "monkcoin", - "name": "MonkCoin", - "symbol": "monk" - }, - { - "id": "monke", - "name": "Monke", - "symbol": "monke" - }, - { - "id": "monkecoin", - "name": "Monkecoin", - "symbol": "monke" - }, - { - "id": "monke-coin", - "name": "Monke", - "symbol": "monke" - }, - { - "id": "monked", - "name": "MONKED", - "symbol": "monked" - }, - { - "id": "monkex", - "name": "Monkex", - "symbol": "monkex" - }, - { - "id": "monkey", - "name": "MONKEY", - "symbol": "monkey" - }, - { - "id": "monkey-2", - "name": "Monkey", - "symbol": "monkey" - }, - { - "id": "monkeyball", - "name": "UNKJD", - "symbol": "mbs" - }, - { - "id": "monkeycoin", - "name": "MonkeyCoin", - "symbol": "mkc" - }, - { - "id": "monkeyhaircut", - "name": "monkeyhaircut", - "symbol": "monk" - }, - { - "id": "monkey-puppet", - "name": "Monkey Puppet", - "symbol": "mpm" - }, - { - "id": "monkeys", - "name": "Monkeys", - "symbol": "monkeys" - }, - { - "id": "monkeys-token", - "name": "Monkeys Token", - "symbol": "monkeys" - }, - { - "id": "monk-gg", - "name": "Monk.gg", - "symbol": "monkgg" - }, - { - "id": "monkie", - "name": "MONKIE", - "symbol": "monkie" - }, - { - "id": "monnos", - "name": "Monnos", - "symbol": "mns" - }, - { - "id": "monolend", - "name": "MonoLend", - "symbol": "mld" - }, - { - "id": "monomoney", - "name": "MonoMoney", - "symbol": "mono" - }, - { - "id": "mononoke-inu", - "name": "Mononoke Inu", - "symbol": "mononoke-inu" - }, - { - "id": "monopoly-layer2-duo", - "name": "Monopoly Layer2 DUO", - "symbol": "duo" - }, - { - "id": "monopoly-layer-3-poly", - "name": "Monopoly Layer 3 POLY", - "symbol": "poly" - }, - { - "id": "monopoly-millionaire-control", - "name": "Monopoly Millionaire Control", - "symbol": "mmc" - }, - { - "id": "monox", - "name": "MonoX", - "symbol": "mono" - }, - { - "id": "monsoon-finance", - "name": "Monsoon Finance", - "symbol": "mcash" - }, - { - "id": "monsta-infinite", - "name": "Monsta Infinite", - "symbol": "moni" - }, - { - "id": "monster-ball", - "name": "Monster Ball", - "symbol": "mfb" - }, - { - "id": "monster-galaxy", - "name": "Monster Galaxy", - "symbol": "ggm" - }, - { - "id": "monsterra", - "name": "Monsterra", - "symbol": "mstr" - }, - { - "id": "monsterra-mag", - "name": "Monsterra MAG", - "symbol": "mag" - }, - { - "id": "monstock", - "name": "Monstock", - "symbol": "mon" - }, - { - "id": "montage-token", - "name": "Montage Token", - "symbol": "mtgx" - }, - { - "id": "moochii", - "name": "Moochii", - "symbol": "moochii" - }, - { - "id": "mooi-network", - "name": "MOOI Network", - "symbol": "mooi" - }, - { - "id": "moola-celo-dollars", - "name": "Moola Celo Dollars", - "symbol": "mcusd" - }, - { - "id": "moolahverse", - "name": "Moolahverse", - "symbol": "mlh" - }, - { - "id": "moola-interest-bearing-creal", - "name": "Moola interest bearing CREAL", - "symbol": "mcreal" - }, - { - "id": "moola-market", - "name": "Moola Market", - "symbol": "moo" - }, - { - "id": "moon", - "name": "r/CryptoCurrency Moons", - "symbol": "moon" - }, - { - "id": "moonai-2", - "name": "MoonAI", - "symbol": "moonai" - }, - { - "id": "moon-air", - "name": "Moon Air", - "symbol": "moonair" - }, - { - "id": "moon-app", - "name": "Moon App", - "symbol": "app" - }, - { - "id": "moonarch", - "name": "Moonarch", - "symbol": "moonarch" - }, - { - "id": "moonbase-2", - "name": "MoonBase", - "symbol": "moon" - }, - { - "id": "moon-bay", - "name": "Moon Bay", - "symbol": "bay" - }, - { - "id": "moonbeam", - "name": "Moonbeam", - "symbol": "glmr" - }, - { - "id": "moonbeans", - "name": "MoonBeans", - "symbol": "beans" - }, - { - "id": "moonbot", - "name": "MoonBot", - "symbol": "mbot" - }, - { - "id": "mooncats-on-base", - "name": "Mooncats on Base", - "symbol": "mooncats" - }, - { - "id": "mooncat-vault-nftx", - "name": "MOONCAT Vault (NFTX)", - "symbol": "mooncat" - }, - { - "id": "mooncloud-ai", - "name": "MoonCloud.ai", - "symbol": "mcloud" - }, - { - "id": "moondogs", - "name": "Moondogs", - "symbol": "woof" - }, - { - "id": "moonedge", - "name": "MoonEdge", - "symbol": "mooned" - }, - { - "id": "mooner", - "name": "Mooner", - "symbol": "mnr" - }, - { - "id": "moonerium", - "name": "MOONERIUM", - "symbol": "moonerium" - }, - { - "id": "mooney", - "name": "Moon DAO", - "symbol": "mooney" - }, - { - "id": "moonflow", - "name": "Moonflow", - "symbol": "moon" - }, - { - "id": "moonft", - "name": "Moonft", - "symbol": "mtc" - }, - { - "id": "moon-inu", - "name": "MOON INU", - "symbol": "moon" - }, - { - "id": "moonions", - "name": "Moonions", - "symbol": "moonion" - }, - { - "id": "moonke", - "name": "Moonke", - "symbol": "moonke" - }, - { - "id": "moonkize", - "name": "MoonKize", - "symbol": "moonkize" - }, - { - "id": "moonlana", - "name": "MoonLana", - "symbol": "mola" - }, - { - "id": "moonlight-token", - "name": "Moonlight", - "symbol": "moonlight" - }, - { - "id": "moon-maker-protocol", - "name": "Moon Maker Protocol", - "symbol": "mmp" - }, - { - "id": "moon-ordinals", - "name": "MOON (Ordinals)", - "symbol": "moon" - }, - { - "id": "moonpot", - "name": "Moonpot", - "symbol": "pots" - }, - { - "id": "moonpot-finance", - "name": "MoonPot Finance", - "symbol": "moonpot" - }, - { - "id": "moon-rabbit", - "name": "Moon Rabbit", - "symbol": "aaa" - }, - { - "id": "moonriver", - "name": "Moonriver", - "symbol": "movr" - }, - { - "id": "moonscape", - "name": "Moonscape", - "symbol": "mscp" - }, - { - "id": "moonsdust", - "name": "MoonsDust", - "symbol": "moond" - }, - { - "id": "moonshots-farm", - "name": "Moonshots Farm", - "symbol": "bones" - }, - { - "id": "moonstarter", - "name": "MoonStarter", - "symbol": "mnst" - }, - { - "id": "moon-tropica", - "name": "Moon Tropica", - "symbol": "cah" - }, - { - "id": "moonwell", - "name": "Moonwell Apollo", - "symbol": "mfam" - }, - { - "id": "moonwell-artemis", - "name": "Moonwell", - "symbol": "well" - }, - { - "id": "moonwolf-io", - "name": "moonwolf.io", - "symbol": "wolf" - }, - { - "id": "moove-protocol", - "name": "Moove Protocol", - "symbol": "moove" - }, - { - "id": "mooxmoo", - "name": "MOOxMOO", - "symbol": "moox" - }, - { - "id": "mops", - "name": "Mops", - "symbol": "mops" - }, - { - "id": "mora", - "name": "Mora", - "symbol": "mora" - }, - { - "id": "mora-2", - "name": "Mora", - "symbol": "mora" - }, - { - "id": "moremoney-usd", - "name": "Moremoney USD", - "symbol": "money" - }, - { - "id": "more-token", - "name": "Moremoney Finance", - "symbol": "more" - }, - { - "id": "morfey", - "name": "Morfey", - "symbol": "morfey" - }, - { - "id": "mori-finance", - "name": "Mori Finance", - "symbol": "mori" - }, - { - "id": "moros-net", - "name": "MOROS NET", - "symbol": "moros" - }, - { - "id": "morph", - "name": "MORPH", - "symbol": "morph" - }, - { - "id": "morpher", - "name": "Morpher", - "symbol": "mph" - }, - { - "id": "morpheus-labs", - "name": "Morpheus Labs", - "symbol": "mind" - }, - { - "id": "morpheus-network", - "name": "Morpheus Network", - "symbol": "mnw" - }, - { - "id": "morpheus-token", - "name": "Morpheus Swap", - "symbol": "pills" - }, - { - "id": "morpho", - "name": "Morpho", - "symbol": "morpho" - }, - { - "id": "morpho-aave-curve-dao-token", - "name": "Morpho-Aave Curve DAO Token", - "symbol": "macrv" - }, - { - "id": "morpho-aave-wrapped-btc", - "name": "Morpho-Aave Wrapped BTC", - "symbol": "mawbtc" - }, - { - "id": "morpho-aave-wrapped-ether", - "name": "Morpho-Aave Wrapped Ether", - "symbol": "maweth" - }, - { - "id": "morpho-network", - "name": "Morpho Network", - "symbol": "morpho" - }, - { - "id": "morra", - "name": "Morra", - "symbol": "morra" - }, - { - "id": "mosolid", - "name": "moSOLID", - "symbol": "mosolid" - }, - { - "id": "mosquitos-finance", - "name": "Mosquitos Finance", - "symbol": "suckr" - }, - { - "id": "moss-carbon-credit", - "name": "Moss Carbon Credit", - "symbol": "mco2" - }, - { - "id": "mossland", - "name": "Mossland", - "symbol": "moc" - }, - { - "id": "most-global", - "name": "MOST Global", - "symbol": "mgp" - }, - { - "id": "motacoin", - "name": "MotaCoin", - "symbol": "mota" - }, - { - "id": "mother-earth", - "name": "Mother Earth", - "symbol": "mot" - }, - { - "id": "mother-of-memes", - "name": "Mother of Memes", - "symbol": "mom" - }, - { - "id": "mother-of-memes-2", - "name": "Mother of Memes", - "symbol": "haha" - }, - { - "id": "motion-motn", - "name": "MOTION", - "symbol": "motn" - }, - { - "id": "moto", - "name": "MOTO", - "symbol": "moto" - }, - { - "id": "motogp-fan-token", - "name": "MotoGP Fan Token", - "symbol": "mgpt" - }, - { - "id": "motorcoin", - "name": "Motorcoin", - "symbol": "mtrc" - }, - { - "id": "mound-token", - "name": "Mound", - "symbol": "mnd" - }, - { - "id": "mountain-protocol-usdm", - "name": "Mountain Protocol USD", - "symbol": "usdm" - }, - { - "id": "moutai", - "name": "Moutai", - "symbol": "moutai" - }, - { - "id": "moveapp", - "name": "MoveApp", - "symbol": "move" - }, - { - "id": "movecash", - "name": "MoveCash", - "symbol": "mca" - }, - { - "id": "move-dollar", - "name": "Move Dollar", - "symbol": "mod" - }, - { - "id": "mover-xyz", - "name": "Mover.xyz", - "symbol": "mover" - }, - { - "id": "movex-token", - "name": "Movex Token", - "symbol": "movex" - }, - { - "id": "movez", - "name": "MoveZ", - "symbol": "movez" - }, - { - "id": "moviebloc", - "name": "MovieBloc", - "symbol": "mbl" - }, - { - "id": "movo-smart-chain", - "name": "Movo Smart Chain", - "symbol": "movo" - }, - { - "id": "mozaic", - "name": "Mozaic", - "symbol": "moz" - }, - { - "id": "mozfire", - "name": "MOZFIRE", - "symbol": "moz" - }, - { - "id": "mpendle", - "name": "mPendle", - "symbol": "mpendle" - }, - { - "id": "mpeth", - "name": "mpETH", - "symbol": "mpeth" - }, - { - "id": "mpro-lab", - "name": "MPRO Lab", - "symbol": "mpro" - }, - { - "id": "mpx", - "name": "Morphex", - "symbol": "mpx" - }, - { - "id": "mr-beast-dog", - "name": "Mr.Beast Dog", - "symbol": "pinky" - }, - { - "id": "mr-mint", - "name": "Mr. Mint", - "symbol": "mnt" - }, - { - "id": "mr-rabbit-coin", - "name": "Mr Rabbit Coin", - "symbol": "mrabbit" - }, - { - "id": "mrspepe", - "name": "MrsPepe", - "symbol": "mrspepe" - }, - { - "id": "mrweb-finance-2", - "name": "MrWeb Finance", - "symbol": "ama" - }, - { - "id": "msol", - "name": "Marinade staked SOL", - "symbol": "msol" - }, - { - "id": "ms-paint", - "name": "MS Paint", - "symbol": "paint" - }, - { - "id": "msquare-global", - "name": "MSquare Global", - "symbol": "msq" - }, - { - "id": "mtfi", - "name": "MTFi", - "symbol": "mtfi" - }, - { - "id": "mtg-token", - "name": "MTG Token", - "symbol": "mtg" - }, - { - "id": "mt-pelerin-shares", - "name": "Mt Pelerin Shares", - "symbol": "mps" - }, - { - "id": "mt-token", - "name": "MT Tower", - "symbol": "mt" - }, - { - "id": "mu-coin", - "name": "Mu Coin", - "symbol": "mu" - }, - { - "id": "mudra-exchange", - "name": "Mudra", - "symbol": "mudra" - }, - { - "id": "mudra-mdr", - "name": "Mudra MDR", - "symbol": "mdr" - }, - { - "id": "muesliswap-milk", - "name": "MuesliSwap MILK", - "symbol": "milk" - }, - { - "id": "muesliswap-yield-token", - "name": "MuesliSwap Yield", - "symbol": "myield" - }, - { - "id": "muito-finance", - "name": "Muito Finance", - "symbol": "muto" - }, - { - "id": "multi-ai", - "name": "Multi AI", - "symbol": "mai" - }, - { - "id": "multibit", - "name": "Multibit", - "symbol": "mubi" - }, - { - "id": "multichain", - "name": "Multichain", - "symbol": "multi" - }, - { - "id": "multichain-bridged-busd-moonriver", - "name": "Multichain Bridged BUSD (Moonriver)", - "symbol": "busd" - }, - { - "id": "multichain-bridged-busd-okt-chain", - "name": "Multichain Bridged BUSD (OKT Chain)", - "symbol": "busd" - }, - { - "id": "multichain-bridged-usdc-dogechain", - "name": "Multichain Bridged USDC (Dogechain)", - "symbol": "usdc" - }, - { - "id": "multichain-bridged-usdc-fantom", - "name": "Multichain Bridged USDC (Fantom)", - "symbol": "usdc" - }, - { - "id": "multichain-bridged-usdc-kardiachain", - "name": "Multichain Bridged USDC (KardiaChain)", - "symbol": "usdc" - }, - { - "id": "multichain-bridged-usdc-kava", - "name": "Multichain Bridged USDC (Kava)", - "symbol": "usdc" - }, - { - "id": "multichain-bridged-usdc-moonbeam", - "name": "Multichain Bridged USDC (Moonbeam)", - "symbol": "usdc" - }, - { - "id": "multichain-bridged-usdc-syscoin", - "name": "Multichain Bridged USDC (Syscoin)", - "symbol": "usdc" - }, - { - "id": "multichain-bridged-usdc-telos", - "name": "Multichain Bridged USDC (Telos)", - "symbol": "usdc" - }, - { - "id": "multichain-bridged-usdt-bittorrent", - "name": "Multichain Bridged USDT (BitTorrent)", - "symbol": "usdt_t" - }, - { - "id": "multichain-bridged-usdt-moonbeam", - "name": "Multichain Bridged USDT (Moonbeam)", - "symbol": "usdt" - }, - { - "id": "multichain-bridged-usdt-moonriver", - "name": "Multichain Bridged USDT (Moonriver)", - "symbol": "usdt" - }, - { - "id": "multichain-bridged-usdt-syscoin", - "name": "Multichain Bridged USDT (Syscoin)", - "symbol": "usdt" - }, - { - "id": "multichain-bridged-usdt-telos", - "name": "Multichain Bridged USDT (Telos)", - "symbol": "usdt" - }, - { - "id": "multidex-ai", - "name": "MultiDEX AI", - "symbol": "mdx" - }, - { - "id": "multimoney-global", - "name": "MultiMoney.Global", - "symbol": "mmgt" - }, - { - "id": "multipad", - "name": "MultiPad", - "symbol": "mpad" - }, - { - "id": "multiplanetary-inus", - "name": "MultiPlanetary Inus", - "symbol": "inus" - }, - { - "id": "multiport", - "name": "Multiport", - "symbol": "port" - }, - { - "id": "multisys", - "name": "Multisys", - "symbol": "myus" - }, - { - "id": "multivac", - "name": "MultiVAC", - "symbol": "mtv" - }, - { - "id": "multiverse", - "name": "Multiverse", - "symbol": "ai" - }, - { - "id": "multiverse-capital", - "name": "Multiverse Capital", - "symbol": "mvc" - }, - { - "id": "mumba", - "name": "Mumba", - "symbol": "mumba" - }, - { - "id": "mu-meme", - "name": "Mu Meme", - "symbol": "mume" - }, - { - "id": "mummy-finance", - "name": "Mummy Finance", - "symbol": "mmy" - }, - { - "id": "mumu", - "name": "Mumu", - "symbol": "mumu" - }, - { - "id": "mumu-the-bull-2", - "name": "Mumu the Bull", - "symbol": "bull" - }, - { - "id": "mumu-the-bull-3", - "name": "MUMU THE BULL", - "symbol": "mumu" - }, - { - "id": "munch", - "name": "Munch", - "symbol": "munch" - }, - { - "id": "mundocrypto", - "name": "Mundocrypto", - "symbol": "mct" - }, - { - "id": "murasaki", - "name": "Murasaki", - "symbol": "mura" - }, - { - "id": "muratiai", - "name": "MuratiAI", - "symbol": "muratiai" - }, - { - "id": "musd", - "name": "mStable USD", - "symbol": "musd" - }, - { - "id": "muse-2", - "name": "Muse DAO", - "symbol": "muse" - }, - { - "id": "muse-ent-nft", - "name": "Muse ENT NFT", - "symbol": "msct" - }, - { - "id": "museum-of-crypto-art", - "name": "Museum of Crypto Art", - "symbol": "moca" - }, - { - "id": "musicn", - "name": "MusicN", - "symbol": "mint" - }, - { - "id": "musk-dao", - "name": "MUSK DAO", - "symbol": "musk" - }, - { - "id": "musk-gold", - "name": "MUSK Gold", - "symbol": "musk" - }, - { - "id": "musk-meme", - "name": "MUSK MEME", - "symbol": "muskmeme" - }, - { - "id": "muskx", - "name": "MuskX", - "symbol": "muskx" - }, - { - "id": "must", - "name": "Must", - "symbol": "must" - }, - { - "id": "mustafa", - "name": "Mustafa", - "symbol": "must" - }, - { - "id": "mutant-pepe", - "name": "Mutant Pepe", - "symbol": "mutant" - }, - { - "id": "mutatio-flies", - "name": "MUTATIO FLIES", - "symbol": "flies" - }, - { - "id": "mutatio-xcopyflies", - "name": "MUTATIO XCOPYFLIES", - "symbol": "flies" - }, - { - "id": "mute", - "name": "Mute", - "symbol": "mute" - }, - { - "id": "muttski", - "name": "Muttski", - "symbol": "muttski" - }, - { - "id": "muu-inu", - "name": "MUU", - "symbol": "$muu" - }, - { - "id": "muuu", - "name": "Muuu Finance", - "symbol": "muuu" - }, - { - "id": "muverse", - "name": "Muverse", - "symbol": "mu" - }, - { - "id": "muzzle", - "name": "MUZZLE", - "symbol": "muzz" - }, - { - "id": "mvcswap", - "name": "MvcSwap", - "symbol": "msp" - }, - { - "id": "mvs-multiverse", - "name": "MVS Multiverse", - "symbol": "mvs" - }, - { - "id": "mwcc-ordinals", - "name": "MWCC (Ordinals)", - "symbol": "mwcc" - }, - { - "id": "mxc", - "name": "Moonchain", - "symbol": "mxc" - }, - { - "id": "mxgp-fan-token", - "name": "MXGP Fan Token", - "symbol": "mxgp" - }, - { - "id": "mxmboxceus-token", - "name": "MxmBoxcEus Token", - "symbol": "mbe" - }, - { - "id": "mx-million-metaverse-dao", - "name": "Mx Million Metaverse DAO", - "symbol": "mxmdao" - }, - { - "id": "mxs-games", - "name": "MXS Games", - "symbol": "xseed" - }, - { - "id": "mx-token", - "name": "MX", - "symbol": "mx" - }, - { - "id": "mx-token-2", - "name": "MX TOKEN", - "symbol": "mxt" - }, - { - "id": "mybid", - "name": "myBID", - "symbol": "mbid" - }, - { - "id": "mybit-token", - "name": "MyBit", - "symbol": "myb" - }, - { - "id": "mybricks", - "name": "MyBricks", - "symbol": "bricks" - }, - { - "id": "myce", - "name": "MYCE", - "symbol": "yce" - }, - { - "id": "mycelium", - "name": "Mycelium", - "symbol": "myc" - }, - { - "id": "my-defi-legends", - "name": "My DeFi Legends", - "symbol": "dlegends" - }, - { - "id": "my-defi-pet", - "name": "My DeFi Pet", - "symbol": "dpet" - }, - { - "id": "my-master-war", - "name": "My Master War", - "symbol": "mat" - }, - { - "id": "my-metatrader", - "name": "My MetaTrader", - "symbol": "mmt" - }, - { - "id": "my-mom", - "name": "My MOM", - "symbol": "mom" - }, - { - "id": "my-neighbor-alice", - "name": "My Neighbor Alice", - "symbol": "alice" - }, - { - "id": "myntpay", - "name": "MyntPay", - "symbol": "mynt" - }, - { - "id": "mypiggiesbank", - "name": "MyPiggiesBank", - "symbol": "piggie" - }, - { - "id": "myra", - "name": "Myra", - "symbol": "myra" - }, - { - "id": "myra-token", - "name": "Myra Token", - "symbol": "myr" - }, - { - "id": "myre-the-dog", - "name": "Myre The Dog", - "symbol": "$myre" - }, - { - "id": "myria", - "name": "Myria", - "symbol": "myria" - }, - { - "id": "myriadcoin", - "name": "Myriad", - "symbol": "xmy" - }, - { - "id": "myriad-social", - "name": "Myriad Social", - "symbol": "myria" - }, - { - "id": "myro", - "name": "Myro", - "symbol": "$myro" - }, - { - "id": "myro-2-0", - "name": "MYRO 2.0", - "symbol": "myro2.0" - }, - { - "id": "myro-floki-ceo", - "name": "Myro Floki CEO", - "symbol": "myrofloki" - }, - { - "id": "myrowif", - "name": "MYROWIF", - "symbol": "myrowif" - }, - { - "id": "myrowifhat", - "name": "MyroWifHat", - "symbol": "mif" - }, - { - "id": "mystcl", - "name": "MYSTCL", - "symbol": "myst" - }, - { - "id": "mysterium", - "name": "Mysterium", - "symbol": "myst" - }, - { - "id": "mystic-treasure", - "name": "Mystic Treasure", - "symbol": "myt" - }, - { - "id": "myteamcoin", - "name": "Myteamcoin", - "symbol": "myc" - }, - { - "id": "mytheria", - "name": "Mytheria", - "symbol": "myra" - }, - { - "id": "mythic-ore", - "name": "Mythic Ore", - "symbol": "more" - }, - { - "id": "mythos", - "name": "Mythos", - "symbol": "myth" - }, - { - "id": "mytoken", - "name": "MyToken", - "symbol": "mt" - }, - { - "id": "nabox", - "name": "Nabox", - "symbol": "nabox" - }, - { - "id": "nacho-finance", - "name": "Nacho Finance", - "symbol": "nacho" - }, - { - "id": "nada-protocol-token", - "name": "NADA Protocol Token", - "symbol": "nada" - }, - { - "id": "nafter", - "name": "Nafter", - "symbol": "naft" - }, - { - "id": "naga", - "name": "NAGA", - "symbol": "ngc" - }, - { - "id": "nagaya", - "name": "NAGAYA", - "symbol": "ngy" - }, - { - "id": "nahmii", - "name": "Nahmii", - "symbol": "nii" - }, - { - "id": "naka-bodhi-token", - "name": "Naka Bodhi", - "symbol": "nbot" - }, - { - "id": "nakachain", - "name": "NakaChain", - "symbol": "naka" - }, - { - "id": "nakamoto-games", - "name": "Nakamoto Games", - "symbol": "naka" - }, - { - "id": "nals", - "name": "NALS", - "symbol": "nals" - }, - { - "id": "namecoin", - "name": "Namecoin", - "symbol": "nmc" - }, - { - "id": "nami-frame-futures", - "name": "Nami Frame Futures", - "symbol": "nao" - }, - { - "id": "namx", - "name": "Namx", - "symbol": "namx" - }, - { - "id": "nana-token", - "name": "NANA Token", - "symbol": "nana" - }, - { - "id": "nano", - "name": "Nano", - "symbol": "xno" - }, - { - "id": "nanobyte", - "name": "NanoByte", - "symbol": "nbt" - }, - { - "id": "nano-dogecoin", - "name": "Nano Dogecoin", - "symbol": "indc" - }, - { - "id": "nanomatic", - "name": "Nanomatic", - "symbol": "nano" - }, - { - "id": "nanometer-bitcoin", - "name": "NanoMeter Bitcoin", - "symbol": "nmbtc" - }, - { - "id": "naos-finance", - "name": "NAOS Finance", - "symbol": "naos" - }, - { - "id": "napoleon-x", - "name": "Napoleon X", - "symbol": "npx" - }, - { - "id": "napoli-fan-token", - "name": "Napoli Fan Token", - "symbol": "nap" - }, - { - "id": "naruto", - "name": "Naruto", - "symbol": "naruto" - }, - { - "id": "nasdex-token", - "name": "NASDEX", - "symbol": "nsdx" - }, - { - "id": "nation3", - "name": "Nation3", - "symbol": "nation" - }, - { - "id": "naturesgold", - "name": "NaturesGold", - "symbol": "ngold" - }, - { - "id": "natus-vincere-fan-token", - "name": "Natus Vincere Fan Token", - "symbol": "navi" - }, - { - "id": "nautilus-network", - "name": "Nautilus Network", - "symbol": "ntl" - }, - { - "id": "nav-coin", - "name": "Navcoin", - "symbol": "nav" - }, - { - "id": "navi", - "name": "NAVI Protocol", - "symbol": "navx" - }, - { - "id": "navis", - "name": "Navis", - "symbol": "nvs" - }, - { - "id": "navist", - "name": "Navist", - "symbol": "navist" - }, - { - "id": "navy-seal", - "name": "Navy seal", - "symbol": "navyseal" - }, - { - "id": "naxar", - "name": "Naxar", - "symbol": "naxar" - }, - { - "id": "naxion", - "name": "Naxion", - "symbol": "nxn" - }, - { - "id": "nbl", - "name": "NBL", - "symbol": "nbl" - }, - { - "id": "nchart", - "name": "Nchart Token", - "symbol": "chart" - }, - { - "id": "ndb", - "name": "NDB", - "symbol": "ndb" - }, - { - "id": "near", - "name": "NEAR Protocol", - "symbol": "near" - }, - { - "id": "nearlend-dao", - "name": "Nearlend DAO", - "symbol": "neld" - }, - { - "id": "nearpad", - "name": "Pad.Fi", - "symbol": "pad" - }, - { - "id": "nearstarter", - "name": "NEARStarter", - "symbol": "nstart" - }, - { - "id": "near-tinker-union-gear", - "name": "Near Tinker Union GEAR", - "symbol": "gear" - }, - { - "id": "neat", - "name": "NEAT", - "symbol": "neat" - }, - { - "id": "neblio", - "name": "Neblio", - "symbol": "nebl" - }, - { - "id": "nebula-2", - "name": "Nebula", - "symbol": "nebula" - }, - { - "id": "nebula-project", - "name": "Nebula Project", - "symbol": "nbla" - }, - { - "id": "nebulas", - "name": "Nebulas", - "symbol": "nas" - }, - { - "id": "ned", - "name": "NED", - "symbol": "ned" - }, - { - "id": "nefty", - "name": "NeftyBlocks", - "symbol": "nefty" - }, - { - "id": "neged", - "name": "Neged", - "symbol": "neged" - }, - { - "id": "neighbourhoods", - "name": "Neighbourhoods", - "symbol": "nht" - }, - { - "id": "neko", - "name": "NEKO", - "symbol": "neko" - }, - { - "id": "nekoverse-city-of-greed-anima-spirit-gem", - "name": "Nekoverse: City of Greed Anima Spirit Gem", - "symbol": "asg" - }, - { - "id": "nelore-coin", - "name": "Nelore Coin", - "symbol": "nlc" - }, - { - "id": "nem", - "name": "NEM", - "symbol": "xem" - }, - { - "id": "nemesis-downfall", - "name": "Nemesis Downfall", - "symbol": "nd" - }, - { - "id": "nemgame", - "name": "NemGame", - "symbol": "nem" - }, - { - "id": "nemo", - "name": "NEMO", - "symbol": "nemo" - }, - { - "id": "nengcoin", - "name": "Nengcoin", - "symbol": "neng" - }, - { - "id": "neo", - "name": "NEO", - "symbol": "neo" - }, - { - "id": "neoaudit-ai", - "name": "NeoAudit AI", - "symbol": "naai" - }, - { - "id": "neobot", - "name": "NeoBot", - "symbol": "neobot" - }, - { - "id": "neocortexai", - "name": "NeoCortexAI [OLD]", - "symbol": "corai" - }, - { - "id": "neocortexai-2", - "name": "NeoCortexAI", - "symbol": "ncorai" - }, - { - "id": "neon", - "name": "Neon", - "symbol": "neon" - }, - { - "id": "neonai", - "name": "NeonAI", - "symbol": "neonai" - }, - { - "id": "neon-exchange", - "name": "Nash", - "symbol": "nex" - }, - { - "id": "neonpass-bridged-usdc-neon", - "name": "NeonPass Bridged USDC (Neon)", - "symbol": "usdc" - }, - { - "id": "neonpass-bridged-usdt-neon", - "name": "Neonpass Bridged USDT (Neon)", - "symbol": "usdt" - }, - { - "id": "neopepe", - "name": "NeoPepe", - "symbol": "neop" - }, - { - "id": "neo-pepe", - "name": "NEO PEPE", - "symbol": "nepe" - }, - { - "id": "neopin", - "name": "Neopin", - "symbol": "npt" - }, - { - "id": "neorbit", - "name": "SAFEONE CHAIN", - "symbol": "safo" - }, - { - "id": "neos-credits", - "name": "Neos Credits", - "symbol": "ncr" - }, - { - "id": "neo-tokyo", - "name": "Neo Tokyo", - "symbol": "bytes" - }, - { - "id": "neoxa", - "name": "Neoxa", - "symbol": "neox" - }, - { - "id": "neptune-mutual", - "name": "Neptune Mutual", - "symbol": "npm" - }, - { - "id": "nerdbot", - "name": "NerdBot", - "symbol": "nerd" - }, - { - "id": "nero", - "name": "Nero", - "symbol": "npt" - }, - { - "id": "nero-token", - "name": "Nero Token", - "symbol": "nero" - }, - { - "id": "nerva", - "name": "Nerva", - "symbol": "xnv" - }, - { - "id": "nerve-finance", - "name": "Nerve Finance", - "symbol": "nrv" - }, - { - "id": "nerveflux", - "name": "NerveFlux", - "symbol": "nerve" - }, - { - "id": "nervenetwork", - "name": "NerveNetwork", - "symbol": "nvt" - }, - { - "id": "nervos-network", - "name": "Nervos Network", - "symbol": "ckb" - }, - { - "id": "ness-lab", - "name": "Ness Lab", - "symbol": "ness" - }, - { - "id": "nest", - "name": "Nest Protocol", - "symbol": "nest" - }, - { - "id": "nest-arcade", - "name": "Nest Arcade", - "symbol": "nesta" - }, - { - "id": "nestegg-coin", - "name": "NestEgg Coin", - "symbol": "egg" - }, - { - "id": "nestree", - "name": "Nestree", - "symbol": "egg" - }, - { - "id": "neta", - "name": "NETA", - "symbol": "neta" - }, - { - "id": "netflix-tokenized-stock-defichain", - "name": "Netflix Tokenized Stock Defichain", - "symbol": "dnflx" - }, - { - "id": "nether", - "name": "Nether", - "symbol": "ntr" - }, - { - "id": "netherfi", - "name": "NetherFi", - "symbol": "nfi" - }, - { - "id": "netmind-token", - "name": "NetMind Token", - "symbol": "nmt" - }, - { - "id": "neton", - "name": "Neton", - "symbol": "nto" - }, - { - "id": "netsis", - "name": "Netsis", - "symbol": "net" - }, - { - "id": "netswap", - "name": "Netswap", - "symbol": "nett" - }, - { - "id": "nettensor", - "name": "Nettensor", - "symbol": "nao" - }, - { - "id": "netvrk", - "name": "Netvrk", - "symbol": "netvr" - }, - { - "id": "network-capital-token", - "name": "Network Capital Token", - "symbol": "netc" - }, - { - "id": "network-spirituality", - "name": "Network Spirituality", - "symbol": "net" - }, - { - "id": "netzero", - "name": "NETZERO", - "symbol": "nzero" - }, - { - "id": "neurahub", - "name": "Neurahub", - "symbol": "neura" - }, - { - "id": "neurai", - "name": "Neurai", - "symbol": "xna" - }, - { - "id": "neuralai", - "name": "NEURALAI", - "symbol": "neural" - }, - { - "id": "neural-ai", - "name": "Neural AI", - "symbol": "neuralai" - }, - { - "id": "neuralbot", - "name": "NeuralBot", - "symbol": "$neural" - }, - { - "id": "neuralbyte", - "name": "NeuralByte", - "symbol": "nbt" - }, - { - "id": "neural-radiance-field", - "name": "Neural Radiance Field", - "symbol": "nerf" - }, - { - "id": "neural-tensor-dynamics", - "name": "Neural Tensor Dynamics", - "symbol": "ntd" - }, - { - "id": "neurashi", - "name": "Neurashi", - "symbol": "nei" - }, - { - "id": "neuroni-ai", - "name": "Neuroni AI", - "symbol": "neuroni" - }, - { - "id": "neuropulse-ai", - "name": "NeuroPulse AI", - "symbol": "npai" - }, - { - "id": "neurowebai", - "name": "NeuroWebAI", - "symbol": "neuro" - }, - { - "id": "neutaro", - "name": "Neutaro", - "symbol": "ntmpi" - }, - { - "id": "neutra-finance", - "name": "Neutra Finance", - "symbol": "neu" - }, - { - "id": "neutrino", - "name": "Neutrino Index Token", - "symbol": "xtn" - }, - { - "id": "neutrinos", - "name": "Neutrinos", - "symbol": "neutr" - }, - { - "id": "neutrino-system-base-token", - "name": "Neutrino System Base", - "symbol": "nsbt" - }, - { - "id": "neutron-3", - "name": "Neutron", - "symbol": "ntrn" - }, - { - "id": "neutron-4", - "name": "Neutron (ARC-20)", - "symbol": "neutron20" - }, - { - "id": "neutroswap", - "name": "Neutroswap", - "symbol": "neutro" - }, - { - "id": "neuy", - "name": "NEUY", - "symbol": "neuy" - }, - { - "id": "nevacoin", - "name": "NevaCoin", - "symbol": "neva" - }, - { - "id": "never-back-down", - "name": "Never Back Down", - "symbol": "nbd" - }, - { - "id": "neversol", - "name": "neversol", - "symbol": "never" - }, - { - "id": "newb-farm", - "name": "NewB.Farm", - "symbol": "newb" - }, - { - "id": "new-bitshares", - "name": "New BitShares", - "symbol": "nbs" - }, - { - "id": "newm", - "name": "NEWM", - "symbol": "newm" - }, - { - "id": "new-order", - "name": "New Order", - "symbol": "newo" - }, - { - "id": "newpepe", - "name": "NEWPEPE", - "symbol": "pepe" - }, - { - "id": "newscrypto-coin", - "name": "Newscrypto Coin", - "symbol": "nwc" - }, - { - "id": "newsly", - "name": "Newsly", - "symbol": "news" - }, - { - "id": "newt", - "name": "Newt", - "symbol": "newt" - }, - { - "id": "newthrone", - "name": "NewThrone", - "symbol": "thro" - }, - { - "id": "newton", - "name": "Newton", - "symbol": "ntn" - }, - { - "id": "newton-project", - "name": "Newton Project", - "symbol": "new" - }, - { - "id": "newtowngaming", - "name": "NEWTOWNGAMING", - "symbol": "ntg" - }, - { - "id": "newu-ordinals", - "name": "NEWU (Ordinals)", - "symbol": "newu" - }, - { - "id": "new-world-order", - "name": "New World Order", - "symbol": "state" - }, - { - "id": "new-year-token", - "name": "New Year", - "symbol": "nyt" - }, - { - "id": "newyorkcoin", - "name": "NewYorkCoin", - "symbol": "nyc" - }, - { - "id": "newyork-exchange", - "name": "NewYork Exchange", - "symbol": "nye" - }, - { - "id": "nexacoin", - "name": "Nexa", - "symbol": "nexa" - }, - { - "id": "nexai", - "name": "NexAI", - "symbol": "nex" - }, - { - "id": "nexalt", - "name": "Nexalt", - "symbol": "xlt" - }, - { - "id": "nexbox", - "name": "NEXBOX", - "symbol": "nexbox" - }, - { - "id": "nexdax", - "name": "NexDAX", - "symbol": "nt" - }, - { - "id": "nexellia", - "name": "NEXELLIA", - "symbol": "nxl" - }, - { - "id": "nexo", - "name": "NEXO", - "symbol": "nexo" - }, - { - "id": "nextdao", - "name": "NextDAO", - "symbol": "nax" - }, - { - "id": "next-earth", - "name": "Next Earth", - "symbol": "nxtt" - }, - { - "id": "nextype-finance", - "name": "NEXTYPE Finance", - "symbol": "nt" - }, - { - "id": "nexum", - "name": "Nexum", - "symbol": "nexm" - }, - { - "id": "nexus", - "name": "Nexus", - "symbol": "nxs" - }, - { - "id": "nexus-2", - "name": "NEXUS", - "symbol": "nex" - }, - { - "id": "nexusai", - "name": "NexusAI", - "symbol": "nexusai" - }, - { - "id": "nexus-asa", - "name": "Nexus ASA", - "symbol": "gp" - }, - { - "id": "nexus-chain", - "name": "Nexus Chain", - "symbol": "wnexus" - }, - { - "id": "nexus-dubai", - "name": "Nexus Dubai", - "symbol": "nxd" - }, - { - "id": "nexusmind", - "name": "NexusMind", - "symbol": "nmd" - }, - { - "id": "nexuspad", - "name": "Nexuspad", - "symbol": "nexus" - }, - { - "id": "nezuko", - "name": "Nezuko", - "symbol": "nezuko" - }, - { - "id": "nfprompt-token", - "name": "NFPrompt", - "symbol": "nfp" - }, - { - "id": "nft-art-finance", - "name": "NFT Art Finance", - "symbol": "nftart" - }, - { - "id": "nftb", - "name": "NFTb", - "symbol": "nftb" - }, - { - "id": "nftblackmarket", - "name": "NFTBlackmarket", - "symbol": "nbm" - }, - { - "id": "nftbomb", - "name": "NFTBomb", - "symbol": "nbp" - }, - { - "id": "nftbooks", - "name": "NFTBooks", - "symbol": "nftbs" - }, - { - "id": "nft-champions", - "name": "NFT Champions", - "symbol": "champ" - }, - { - "id": "nftcloud", - "name": "NFTCloud", - "symbol": "cloud" - }, - { - "id": "nft-combining", - "name": "NFT Combining", - "symbol": "nftc" - }, - { - "id": "nftdao", - "name": "NFTDAO", - "symbol": "nao" - }, - { - "id": "nftdeli", - "name": "NFTDeli", - "symbol": "deli" - }, - { - "id": "nfteyez", - "name": "NftEyez", - "symbol": "eye" - }, - { - "id": "nftfi", - "name": "NFTFI", - "symbol": "nftfi" - }, - { - "id": "nftfn", - "name": "NFTFN", - "symbol": "nftfn" - }, - { - "id": "nftfundart", - "name": "NFTFundArt", - "symbol": "nfa" - }, - { - "id": "nftify", - "name": "NFTify", - "symbol": "n1" - }, - { - "id": "nftlaunch", - "name": "NFTLaunch", - "symbol": "nftl" - }, - { - "id": "nft-maker", - "name": "NMKR", - "symbol": "$nmkr" - }, - { - "id": "nftmall", - "name": "NFTmall", - "symbol": "gem" - }, - { - "id": "nftmart-token", - "name": "NFTMart", - "symbol": "nmt" - }, - { - "id": "nft-protocol", - "name": "NFT Protocol", - "symbol": "nft" - }, - { - "id": "nftpunk-finance", - "name": "NFTPunk.Finance", - "symbol": "nftpunk" - }, - { - "id": "nftrade", - "name": "NFTrade", - "symbol": "nftd" - }, - { - "id": "nftreasure", - "name": "NFTREASURE", - "symbol": "tresr" - }, - { - "id": "nft-soccer-games", - "name": "NFT Soccer Games", - "symbol": "nfsg" - }, - { - "id": "nft-stars", - "name": "NFT Stars", - "symbol": "nfts" - }, - { - "id": "nftstyle", - "name": "NFTStyle", - "symbol": "nftstyle" - }, - { - "id": "nft-track-protocol", - "name": "NFT Track Protocol", - "symbol": "ntp" - }, - { - "id": "nft-workx", - "name": "NFT Workx", - "symbol": "wrkx" - }, - { - "id": "nft-worlds", - "name": "NFT Worlds", - "symbol": "wrld" - }, - { - "id": "nftx", - "name": "NFTX", - "symbol": "nftx" - }, - { - "id": "nfty-token", - "name": "NFTY", - "symbol": "nfty" - }, - { - "id": "ngatiger", - "name": "NGATiger", - "symbol": "nga" - }, - { - "id": "ngt", - "name": "GoSleep NGT", - "symbol": "ngt" - }, - { - "id": "nibiru", - "name": "Nibiru", - "symbol": "nibi" - }, - { - "id": "niccagewaluigielmo42069inu", - "name": "NicCageWaluigiElmo42069Inu", - "symbol": "shib" - }, - { - "id": "niftify", - "name": "Niftify", - "symbol": "nift" - }, - { - "id": "nifty-league", - "name": "Nifty League", - "symbol": "nftl" - }, - { - "id": "nifty-token", - "name": "NFTY DeFi Protocol", - "symbol": "nfty" - }, - { - "id": "night-crows", - "name": "CROW", - "symbol": "crow" - }, - { - "id": "nightingale-token", - "name": "Nightingale Token", - "symbol": "ngit" - }, - { - "id": "nightverse-game", - "name": "NightVerse Game", - "symbol": "nvg" - }, - { - "id": "nihao", - "name": "Nihao", - "symbol": "nihao" - }, - { - "id": "niifi", - "name": "NiiFi", - "symbol": "niifi" - }, - { - "id": "niko-2", - "name": "Niko", - "symbol": "nko" - }, - { - "id": "nikssa", - "name": "Nikssa", - "symbol": "nks" - }, - { - "id": "nile", - "name": "Nile", - "symbol": "nile" - }, - { - "id": "nimbus-platform-gnimb", - "name": "Nimbus Platform GNIMB", - "symbol": "gnimb" - }, - { - "id": "nimbus-utility", - "name": "Nimbus Utility", - "symbol": "nimb" - }, - { - "id": "nimiq-2", - "name": "Nimiq", - "symbol": "nim" - }, - { - "id": "ninapumps", - "name": "NinaPumps", - "symbol": "nina" - }, - { - "id": "ninja404", - "name": "Ninja404", - "symbol": "ninja" - }, - { - "id": "ninjapepe", - "name": "NinjaPepe", - "symbol": "ninjapepe" - }, - { - "id": "ninja-protocol", - "name": "Ninja Protocol", - "symbol": "ninja" - }, - { - "id": "ninjaroll", - "name": "NinjaRoll", - "symbol": "roll" - }, - { - "id": "ninja-squad", - "name": "Ninja Squad", - "symbol": "nst" - }, - { - "id": "ninja-turtles", - "name": "NINJA TURTLES", - "symbol": "$ninja" - }, - { - "id": "ninja-warriors", - "name": "Ninja Warriors", - "symbol": "nwt" - }, - { - "id": "niob", - "name": "NIOB", - "symbol": "niob" - }, - { - "id": "niobio-cash", - "name": "Niobio", - "symbol": "nbr" - }, - { - "id": "nioctib", - "name": "nioctiB", - "symbol": "nioctib" - }, - { - "id": "nirvana-chain", - "name": "Nirvana Chain", - "symbol": "nac" - }, - { - "id": "nirvana-meta-mnu-chain", - "name": "Nirvana Meta MNU Chain", - "symbol": "mnu" - }, - { - "id": "nirvana-prana", - "name": "Nirvana prANA", - "symbol": "prana" - }, - { - "id": "nitrobots", - "name": "NitroBots", - "symbol": "nitro" - }, - { - "id": "nitro-cartel", - "name": "Arbitrove Governance Token", - "symbol": "trove" - }, - { - "id": "nitroex", - "name": "NitroEX", - "symbol": "ntx" - }, - { - "id": "nitroken", - "name": "Nitroken", - "symbol": "nito" - }, - { - "id": "nitro-league", - "name": "Nitro League", - "symbol": "nitro" - }, - { - "id": "nitro-network", - "name": "Nitro Network", - "symbol": "ncash" - }, - { - "id": "nitroshiba", - "name": "NitroShiba", - "symbol": "nishib" - }, - { - "id": "nix", - "name": "NIX", - "symbol": "nix" - }, - { - "id": "nix-bridge-token", - "name": "Voice", - "symbol": "voice" - }, - { - "id": "niza-global", - "name": "Niza Global", - "symbol": "niza" - }, - { - "id": "nkcl-classic", - "name": "NKCL Classic", - "symbol": "nkclc" - }, - { - "id": "nkn", - "name": "NKN", - "symbol": "nkn" - }, - { - "id": "nkyc-token", - "name": "NKYC Token", - "symbol": "nkyc" - }, - { - "id": "noahswap", - "name": "NoahSwap", - "symbol": "noah" - }, - { - "id": "noa-play", - "name": "NOA PLAY", - "symbol": "noa" - }, - { - "id": "nobby-game", - "name": "Nobby Game", - "symbol": "sox" - }, - { - "id": "nobiko-coin", - "name": "Nobiko Coin", - "symbol": "long" - }, - { - "id": "nobility", - "name": "Nobility", - "symbol": "nbl" - }, - { - "id": "node420", - "name": "Node420", - "symbol": "node" - }, - { - "id": "nodeai", - "name": "NodeAI", - "symbol": "gpu" - }, - { - "id": "nodebet", - "name": "Nodebet", - "symbol": "nbet" - }, - { - "id": "no-decimal", - "name": "No Decimal", - "symbol": "scarce" - }, - { - "id": "nodehub", - "name": "NodeHUB", - "symbol": "nhub" - }, - { - "id": "nodes-reward-coin", - "name": "Nodes Reward Coin", - "symbol": "nrc" - }, - { - "id": "nodestats", - "name": "Nodestats", - "symbol": "ns" - }, - { - "id": "nodesynapse", - "name": "NodeSynapse", - "symbol": "ns" - }, - { - "id": "nodetrade", - "name": "Nodetrade", - "symbol": "mnx" - }, - { - "id": "nodewaves", - "name": "Nodewaves", - "symbol": "nws" - }, - { - "id": "nodifiai", - "name": "NodifiAI", - "symbol": "nodifi" - }, - { - "id": "nodle-network", - "name": "Nodle Network", - "symbol": "nodl" - }, - { - "id": "nogas", - "name": "NoGas", - "symbol": "ngs" - }, - { - "id": "noia-network", - "name": "Syntropy", - "symbol": "noia" - }, - { - "id": "noike", - "name": "Noike", - "symbol": "woosh" - }, - { - "id": "noir-phygital", - "name": "Noir Phygital", - "symbol": "noir" - }, - { - "id": "nois", - "name": "Nois", - "symbol": "nois" - }, - { - "id": "noisegpt", - "name": "enqAI", - "symbol": "enqai" - }, - { - "id": "nojeet", - "name": "NOJEET", - "symbol": "nojeet" - }, - { - "id": "noka-solana-a", - "name": "Noka Solana A", - "symbol": "noka" - }, - { - "id": "nola", - "name": "Nola", - "symbol": "nola" - }, - { - "id": "nole-inu", - "name": "Nole Inu", - "symbol": "n0le" - }, - { - "id": "nolimitcoin", - "name": "NoLimitCoin", - "symbol": "nlc" - }, - { - "id": "nolus", - "name": "Nolus", - "symbol": "nls" - }, - { - "id": "nomad-bridged-usdc-evmos", - "name": "Nomad Bridged USDC (Evmos)", - "symbol": "usdc" - }, - { - "id": "nomad-bridged-usdc-moonbeam", - "name": "Nomad Bridged USDC (Moonbeam)", - "symbol": "usdc" - }, - { - "id": "nomad-exiles", - "name": "Nomad Exiles", - "symbol": "pride" - }, - { - "id": "nomads", - "name": "NOMADS", - "symbol": "nomads" - }, - { - "id": "nominex", - "name": "Nominex", - "symbol": "nmx" - }, - { - "id": "none-trading", - "name": "None Trading", - "symbol": "none" - }, - { - "id": "non-fungible-fungi", - "name": "Non-Fungible Fungi", - "symbol": "spores" - }, - { - "id": "non-playable-coin", - "name": "Non-Playable Coin", - "symbol": "npc" - }, - { - "id": "no-one", - "name": "No One", - "symbol": "noone" - }, - { - "id": "noot", - "name": "NOOT", - "symbol": "noot" - }, - { - "id": "noot-ordinals", - "name": "NOOT (Ordinals)", - "symbol": "noot" - }, - { - "id": "noot-sol", - "name": "Noot Sol", - "symbol": "noot" - }, - { - "id": "nop-app", - "name": "Nop App", - "symbol": "nop" - }, - { - "id": "nordek", - "name": "Nordek", - "symbol": "nrk" - }, - { - "id": "nord-finance", - "name": "Nord Finance", - "symbol": "nord" - }, - { - "id": "nordic-ai", - "name": "Nordic Ai", - "symbol": "nrdc" - }, - { - "id": "norigo", - "name": "NoriGO!", - "symbol": "go!" - }, - { - "id": "norma-in-metaland", - "name": "GRAM Token", - "symbol": "gram" - }, - { - "id": "normie-2", - "name": "NORMIE", - "symbol": "normie" - }, - { - "id": "normilio", - "name": "Normilio", - "symbol": "normilio" - }, - { - "id": "nort", - "name": "norT", - "symbol": "xrt" - }, - { - "id": "nosana", - "name": "Nosana", - "symbol": "nos" - }, - { - "id": "nose-bud", - "name": "Nose Bud", - "symbol": "nosebud" - }, - { - "id": "noso", - "name": "Noso", - "symbol": "noso" - }, - { - "id": "nostalgia", - "name": "NOSTALGIA", - "symbol": "nos" - }, - { - "id": "nostra-uno", - "name": "UNO", - "symbol": "uno" - }, - { - "id": "notcoin", - "name": "Notcoin", - "symbol": "not" - }, - { - "id": "notdogecoin", - "name": "Notdogecoin", - "symbol": "notdoge" - }, - { - "id": "note", - "name": "Note", - "symbol": "note" - }, - { - "id": "not-financial-advice", - "name": "Not Financial Advice", - "symbol": "nfai" - }, - { - "id": "nothing-2", - "name": "NOTHING", - "symbol": "nothing" - }, - { - "id": "nothing-token", - "name": "Nothing Token", - "symbol": "thing" - }, - { - "id": "notional-finance", - "name": "Notional Finance", - "symbol": "note" - }, - { - "id": "nova-2", - "name": "Nova", - "symbol": "nova" - }, - { - "id": "novacoin", - "name": "Novacoin", - "symbol": "nvc" - }, - { - "id": "nova-dao", - "name": "Nova DAO", - "symbol": "nova" - }, - { - "id": "novadex", - "name": "NovaDEX", - "symbol": "nvx" - }, - { - "id": "nova-finance", - "name": "Nova Finance", - "symbol": "nova" - }, - { - "id": "novara-calcio-fan-token", - "name": "Novara Calcio Fan Token", - "symbol": "nov" - }, - { - "id": "novatti-australian-digital-dollar", - "name": "Novatti Australian Digital Dollar", - "symbol": "audd" - }, - { - "id": "novawchi", - "name": "NOVAWCHI", - "symbol": "vachi" - }, - { - "id": "novax", - "name": "NovaX", - "symbol": "novax" - }, - { - "id": "novem-gold", - "name": "Novem Gold", - "symbol": "nnn" - }, - { - "id": "novem-pro", - "name": "Novem Pro", - "symbol": "nvm" - }, - { - "id": "novo-9b9480a5-9545-49c3-a999-94ec2902cedb", - "name": "Novo", - "symbol": "novo" - }, - { - "id": "npick-block", - "name": "NPick Block", - "symbol": "npick" - }, - { - "id": "nshare", - "name": "NSHARE", - "symbol": "nshare" - }, - { - "id": "nsights", - "name": "nSights", - "symbol": "nsi" - }, - { - "id": "nsurance", - "name": "nsurance", - "symbol": "n" - }, - { - "id": "nsure-network", - "name": "Nsure Network", - "symbol": "nsure" - }, - { - "id": "nuance", - "name": "Nuance", - "symbol": "nua" - }, - { - "id": "nucleon-space", - "name": "Nucleon", - "symbol": "nut" - }, - { - "id": "nucleon-xcfx", - "name": "Nucleon xCFX", - "symbol": "xcfx" - }, - { - "id": "nucleus-vision", - "name": "Nucleus Vision", - "symbol": "ncash" - }, - { - "id": "nuco-cloud", - "name": "nuco.cloud", - "symbol": "ncdt" - }, - { - "id": "nucypher", - "name": "NuCypher", - "symbol": "nu" - }, - { - "id": "nugencoin", - "name": "Nugencoin", - "symbol": "nugen" - }, - { - "id": "nuk-em-loans", - "name": "Nuk'em Loans", - "symbol": "nukem" - }, - { - "id": "nuklai", - "name": "Nuklai", - "symbol": "nai" - }, - { - "id": "null-social-finance", - "name": "Null Social Finance", - "symbol": "nsf" - }, - { - "id": "nuls", - "name": "NULS", - "symbol": "nuls" - }, - { - "id": "nulswap", - "name": "Nulswap", - "symbol": "nswap" - }, - { - "id": "numa", - "name": "Numa", - "symbol": "numa" - }, - { - "id": "num-ars", - "name": "Num ARS", - "symbol": "nars" - }, - { - "id": "number-1-token", - "name": "Number 1", - "symbol": "nr1" - }, - { - "id": "numbers-protocol", - "name": "Numbers Protocol", - "symbol": "num" - }, - { - "id": "numeraire", - "name": "Numeraire", - "symbol": "nmr" - }, - { - "id": "numi-shards", - "name": "Numi Shards", - "symbol": "numi" - }, - { - "id": "numisme2", - "name": "Numisme2", - "symbol": "nume2" - }, - { - "id": "nuna", - "name": "Nuna", - "symbol": "nuna" - }, - { - "id": "nunet", - "name": "NuNet", - "symbol": "ntx" - }, - { - "id": "nunu-spirits", - "name": "Nunu Spirits", - "symbol": "nnt" - }, - { - "id": "nuon", - "name": "Nuon", - "symbol": "nuon" - }, - { - "id": "nurifootball", - "name": "NuriFootBall", - "symbol": "nrfb" - }, - { - "id": "nuritopia", - "name": "Nuritopia", - "symbol": "nblu" - }, - { - "id": "nusa-finance", - "name": "NUSA", - "symbol": "nusa" - }, - { - "id": "nusd", - "name": "sUSD", - "symbol": "susd" - }, - { - "id": "nuson-chain", - "name": "Nuson Chain", - "symbol": "nsc" - }, - { - "id": "nutgain", - "name": "NUTGAIN", - "symbol": "nutgv2" - }, - { - "id": "nuts", - "name": "Nuts", - "symbol": "nuts" - }, - { - "id": "nuts-2", - "name": "Nuts", - "symbol": "nuts" - }, - { - "id": "nvidia-tokenized-stock-defichain", - "name": "Nvidia Tokenized Stock Defichain", - "symbol": "dnvda" - }, - { - "id": "nvirworld", - "name": "NvirWorld", - "symbol": "nvir" - }, - { - "id": "nx7", - "name": "NX7", - "symbol": "nx7" - }, - { - "id": "nxd-next", - "name": "NXD Next", - "symbol": "nxdt" - }, - { - "id": "nxm", - "name": "Nexus Mutual", - "symbol": "nxm" - }, - { - "id": "nxt", - "name": "NXT", - "symbol": "nxt" - }, - { - "id": "nxtchain", - "name": "NXTChain", - "symbol": "nxt" - }, - { - "id": "nxusd", - "name": "NXUSD", - "symbol": "nxusd" - }, - { - "id": "nyandoge-international", - "name": "NyanDOGE International", - "symbol": "nyandoge" - }, - { - "id": "nyan-meme-coin", - "name": "Nyan Meme Coin", - "symbol": "nyan" - }, - { - "id": "nyantereum", - "name": "Nyantereum International", - "symbol": "nyante" - }, - { - "id": "ny-blockchain", - "name": "NY Blockchain", - "symbol": "nybc" - }, - { - "id": "nym", - "name": "Nym", - "symbol": "nym" - }, - { - "id": "nyro", - "name": "Nyro", - "symbol": "nyro" - }, - { - "id": "nyxia-ai", - "name": "Nyxia AI", - "symbol": "nyxc" - }, - { - "id": "nyzo", - "name": "Nyzo", - "symbol": "nyzo" - }, - { - "id": "o3-swap", - "name": "O3 Swap", - "symbol": "o3" - }, - { - "id": "oak-network", - "name": "OAK Network", - "symbol": "oak" - }, - { - "id": "oasis-3", - "name": "Oasis", - "symbol": "oasis" - }, - { - "id": "oasis-metaverse", - "name": "Oasis Metaverse", - "symbol": "oasis" - }, - { - "id": "oasis-network", - "name": "Oasis Network", - "symbol": "rose" - }, - { - "id": "oasys", - "name": "Oasys", - "symbol": "oas" - }, - { - "id": "oath", - "name": "OATH", - "symbol": "oath" - }, - { - "id": "obama6900", - "name": "Obama6900", - "symbol": "obx" - }, - { - "id": "obi-real-estate", - "name": "OBI Real Estate", - "symbol": "obicoin" - }, - { - "id": "obortech", - "name": "Obortech", - "symbol": "obot" - }, - { - "id": "obrok", - "name": "OBRok", - "symbol": "obrok" - }, - { - "id": "obscuro", - "name": "Ten", - "symbol": "ten" - }, - { - "id": "observer-coin", - "name": "Observer", - "symbol": "obsr" - }, - { - "id": "obsidian-coin", - "name": "Obsidian", - "symbol": "obn" - }, - { - "id": "obsidium", - "name": "Obsidium", - "symbol": "obs" - }, - { - "id": "obs-world", - "name": "OBS World", - "symbol": "obsw" - }, - { - "id": "obtoken", - "name": "OB", - "symbol": "obt" - }, - { - "id": "ocavu-network", - "name": "Ocavu Network", - "symbol": "ocavu" - }, - { - "id": "occamfi", - "name": "OccamFi", - "symbol": "occ" - }, - { - "id": "occamx", - "name": "OccamX", - "symbol": "ocx" - }, - { - "id": "oceanex", - "name": "OceanEX", - "symbol": "oce" - }, - { - "id": "oceanfi", - "name": "OceanFi", - "symbol": "ocf" - }, - { - "id": "oceanland", - "name": "OceanLand", - "symbol": "oland" - }, - { - "id": "ocean-protocol", - "name": "Ocean Protocol", - "symbol": "ocean" - }, - { - "id": "och", - "name": "Orchai", - "symbol": "och" - }, - { - "id": "ocicat-token", - "name": "OciCat Token", - "symbol": "ocicat" - }, - { - "id": "ociswap", - "name": "Ociswap", - "symbol": "oci" - }, - { - "id": "octaplex-network", - "name": "Octaplex Network", - "symbol": "plx" - }, - { - "id": "octaspace", - "name": "OctaSpace", - "symbol": "octa" - }, - { - "id": "octavia", - "name": "Octavia", - "symbol": "via" - }, - { - "id": "octavus-prime", - "name": "Octavus Prime", - "symbol": "octavus" - }, - { - "id": "octofi", - "name": "OctoFi", - "symbol": "octo" - }, - { - "id": "octo-gaming", - "name": "Octokn", - "symbol": "otk" - }, - { - "id": "octopus-network", - "name": "Octopus Network", - "symbol": "oct" - }, - { - "id": "octopus-protocol", - "name": "Octopus Protocol", - "symbol": "ops" - }, - { - "id": "octopuswallet", - "name": "OctopusWallet", - "symbol": "ocw" - }, - { - "id": "octorand", - "name": "Octorand", - "symbol": "octo" - }, - { - "id": "octus-bridge", - "name": "Octus Bridge", - "symbol": "bridge" - }, - { - "id": "ocvcoin", - "name": "Ocvcoin", - "symbol": "ocv" - }, - { - "id": "oddz", - "name": "Oddz", - "symbol": "oddz" - }, - { - "id": "odem", - "name": "ODEM", - "symbol": "ode" - }, - { - "id": "odin-erc404m", - "name": "ODIN ERC404M", - "symbol": "odin" - }, - { - "id": "odin-protocol", - "name": "Odin Protocol", - "symbol": "odin" - }, - { - "id": "odung", - "name": "oDung", - "symbol": "derp" - }, - { - "id": "oduwa-coin", - "name": "Oduwa Coin", - "symbol": "owc" - }, - { - "id": "odyssey", - "name": "Odyssey", - "symbol": "ocn" - }, - { - "id": "odysseywallet", - "name": "OdysseyWallet", - "symbol": "odys" - }, - { - "id": "oec-btc", - "name": "OEC BTC", - "symbol": "btck" - }, - { - "id": "oec-token", - "name": "OKT Chain", - "symbol": "okt" - }, - { - "id": "ofcourse-i-still-love-you", - "name": "Of Course I Still Love You", - "symbol": "ocisly" - }, - { - "id": "ofero", - "name": "Ofero", - "symbol": "ofe" - }, - { - "id": "official-arbitrum-bridged-usdc-arbitrum-nova", - "name": "Arbitrum Bridged USDC (Arbitrum Nova)", - "symbol": "usdc" - }, - { - "id": "offshift", - "name": "Offshift", - "symbol": "xft" - }, - { - "id": "og404", - "name": "OG404", - "symbol": "og404" - }, - { - "id": "og-fan-token", - "name": "OG Fan Token", - "symbol": "og" - }, - { - "id": "oggy-inu", - "name": "Oggy Inu", - "symbol": "oggy" - }, - { - "id": "oggy-inu-2", - "name": "Oggy Inu [ETH]", - "symbol": "oggy" - }, - { - "id": "og-sminem", - "name": "OG SMINEM", - "symbol": "ogsm" - }, - { - "id": "ogzclub", - "name": "OGzClub", - "symbol": "ogz" - }, - { - "id": "oh-finance", - "name": "Oh! Finance", - "symbol": "oh" - }, - { - "id": "ohms", - "name": "OHMS", - "symbol": "ohms" - }, - { - "id": "oh-no", - "name": "Oh no", - "symbol": "ohno" - }, - { - "id": "oho-blockchain", - "name": "OHO Blockchain", - "symbol": "oho" - }, - { - "id": "oikos", - "name": "Oikos", - "symbol": "oks" - }, - { - "id": "oiler", - "name": "Oiler", - "symbol": "oil" - }, - { - "id": "oil-token-162dc739-3b37-4da2-88a7-0d5b8e03ab14", - "name": "Oil Token", - "symbol": "oil" - }, - { - "id": "oin-finance", - "name": "OIN Finance", - "symbol": "oin" - }, - { - "id": "ojamu", - "name": "Ojamu", - "symbol": "oja" - }, - { - "id": "okage-inu", - "name": "Okage Inu", - "symbol": "okage" - }, - { - "id": "okami-lana", - "name": "Okami Lana", - "symbol": "okana" - }, - { - "id": "okb", - "name": "OKB", - "symbol": "okb" - }, - { - "id": "okcash", - "name": "Okcash", - "symbol": "ok" - }, - { - "id": "okeycoin", - "name": "OKEYCOIN", - "symbol": "okey" - }, - { - "id": "okidoki-social", - "name": "Okidoki Social", - "symbol": "doki" - }, - { - "id": "okiku", - "name": "Okiku", - "symbol": "okiku" - }, - { - "id": "okratech-token", - "name": "Okratech", - "symbol": "ort" - }, - { - "id": "okuru", - "name": "Okuru", - "symbol": "xot" - }, - { - "id": "okx-beth", - "name": "OKX BETH", - "symbol": "beth" - }, - { - "id": "old-bitcoin", - "name": "Old Bitcoin", - "symbol": "bc" - }, - { - "id": "olecoin", - "name": "OleCoin", - "symbol": "ole" - }, - { - "id": "olen-mosk", - "name": "Olen Mosk", - "symbol": "olen" - }, - { - "id": "olive", - "name": "OLIVE", - "symbol": "olv" - }, - { - "id": "olivecash", - "name": "Olive Cash", - "symbol": "olive" - }, - { - "id": "oloid", - "name": "OLOID", - "symbol": "oloid" - }, - { - "id": "olympus", - "name": "Olympus", - "symbol": "ohm" - }, - { - "id": "olympus-2", - "name": "OLYMPUS", - "symbol": "olai" - }, - { - "id": "olympus-v1", - "name": "Olympus v1", - "symbol": "ohm" - }, - { - "id": "olyverse", - "name": "Olyverse", - "symbol": "oly" - }, - { - "id": "omamori", - "name": "OMAMORI", - "symbol": "omm" - }, - { - "id": "omax-token", - "name": "Omax", - "symbol": "omax" - }, - { - "id": "ombre", - "name": "Ombre", - "symbol": "omb" - }, - { - "id": "omchain", - "name": "Omchain", - "symbol": "omc" - }, - { - "id": "omega-cloud", - "name": "Omega Cloud", - "symbol": "omega" - }, - { - "id": "omega-network", - "name": "OmegaNetwork", - "symbol": "omn" - }, - { - "id": "omeletteswap", - "name": "OmeletteSwap", - "symbol": "omlt" - }, - { - "id": "omisego", - "name": "OMG Network", - "symbol": "omg" - }, - { - "id": "ommniverse", - "name": "Ommniverse", - "symbol": "ommi" - }, - { - "id": "omni", - "name": "Omni", - "symbol": "omni" - }, - { - "id": "omni404", - "name": "OMNI404", - "symbol": "o404" - }, - { - "id": "omniaverse", - "name": "OmniaVerse", - "symbol": "omnia" - }, - { - "id": "omnibotx", - "name": "OmniBotX", - "symbol": "omnix" - }, - { - "id": "omnicat", - "name": "OmniCat", - "symbol": "omni" - }, - { - "id": "omni-consumer-protocol", - "name": "Omni Consumer Protocol", - "symbol": "ocp" - }, - { - "id": "omniflix-network", - "name": "OmniFlix Network", - "symbol": "flix" - }, - { - "id": "omni-foundation", - "name": "Omni Foundation", - "symbol": "omn" - }, - { - "id": "omnikingdoms-gold", - "name": "OmniKingdoms Gold", - "symbol": "omkg" - }, - { - "id": "omni-network", - "name": "Omni Network", - "symbol": "omni" - }, - { - "id": "omnisea", - "name": "Omnisea", - "symbol": "osea" - }, - { - "id": "omo-exchange", - "name": "OMO Exchange", - "symbol": "omo" - }, - { - "id": "omotenashicoin", - "name": "OmotenashiCoin", - "symbol": "mtns" - }, - { - "id": "onbuff", - "name": "ONBUFF", - "symbol": "onit" - }, - { - "id": "onchain", - "name": "/onchain", - "symbol": "onchain" - }, - { - "id": "onchain-ai", - "name": "Onchain AI", - "symbol": "ocai" - }, - { - "id": "on-chain-dynamics", - "name": "On-Chain Dynamics", - "symbol": "ocd" - }, - { - "id": "onchain-pepe-404", - "name": "OnChain Pepe 404", - "symbol": "ocp404" - }, - { - "id": "onchain-trade", - "name": "Onchain Trade", - "symbol": "ot" - }, - { - "id": "onchain-trade-protocol", - "name": "Onchain Trade Protocol", - "symbol": "ot" - }, - { - "id": "ondo-finance", - "name": "Ondo", - "symbol": "ondo" - }, - { - "id": "ondo-us-dollar-yield", - "name": "Ondo US Dollar Yield", - "symbol": "usdy" - }, - { - "id": "one", - "name": "One", - "symbol": "one" - }, - { - "id": "one-basis-cash", - "name": "One Basis Cash", - "symbol": "obs" - }, - { - "id": "one-cash", - "name": "One Cash", - "symbol": "onc" - }, - { - "id": "onedex", - "name": "OneFinity", - "symbol": "one" - }, - { - "id": "onedex-rone", - "name": "OneDex rONE", - "symbol": "rone-bb2e" - }, - { - "id": "one-hundred-million-inu", - "name": "One Hundred Million Inu", - "symbol": "ohmi" - }, - { - "id": "oneichi", - "name": "oneICHI", - "symbol": "oneichi" - }, - { - "id": "one-ledger", - "name": "OneLedger", - "symbol": "olt" - }, - { - "id": "onerare", - "name": "OneRare", - "symbol": "orare" - }, - { - "id": "onering", - "name": "OneRing", - "symbol": "ring" - }, - { - "id": "one-share", - "name": "One Share", - "symbol": "ons" - }, - { - "id": "onespace", - "name": "Onespace", - "symbol": "1sp" - }, - { - "id": "onestop", - "name": "Onestop", - "symbol": "ost" - }, - { - "id": "onetokenburn", - "name": "onetokenburn", - "symbol": "one" - }, - { - "id": "one-world-coin", - "name": "One World Coin", - "symbol": "owo" - }, - { - "id": "onez", - "name": "ONEZ", - "symbol": "onez" - }, - { - "id": "ong", - "name": "Ontology Gas", - "symbol": "ong" - }, - { - "id": "onigiri-kitty", - "name": "Onigiri Kitty", - "symbol": "oky" - }, - { - "id": "oni-token", - "name": "ONINO", - "symbol": "oni" - }, - { - "id": "only1", - "name": "Only1", - "symbol": "like" - }, - { - "id": "onlycockscrypto", - "name": "OnlyCocksCrypto", - "symbol": "cox" - }, - { - "id": "only-possible-on-ethereum", - "name": "Only Possible On Ethereum", - "symbol": "opoe" - }, - { - "id": "only-possible-on-solana", - "name": "Only Possible On Solana", - "symbol": "opos" - }, - { - "id": "onmax", - "name": "Onmax (OLD)", - "symbol": "omp" - }, - { - "id": "onmax-2", - "name": "Onmax", - "symbol": "omp" - }, - { - "id": "onno-vault", - "name": "Onno Vault", - "symbol": "onno" - }, - { - "id": "onomy-protocol", - "name": "Onomy Protocol", - "symbol": "nom" - }, - { - "id": "onooks", - "name": "Onooks", - "symbol": "ooks" - }, - { - "id": "onpulse", - "name": "OnPulse", - "symbol": "opls" - }, - { - "id": "onston", - "name": "Onston", - "symbol": "onston" - }, - { - "id": "ontology", - "name": "Ontology", - "symbol": "ont" - }, - { - "id": "onus", - "name": "ONUS", - "symbol": "onus" - }, - { - "id": "onx-finance", - "name": "OnX Finance", - "symbol": "onx" - }, - { - "id": "oobit", - "name": "Oobit", - "symbol": "obt" - }, - { - "id": "oof", - "name": "OOF", - "symbol": "oof" - }, - { - "id": "oof-2", - "name": "oof", - "symbol": "oof" - }, - { - "id": "oofp", - "name": "OOFP", - "symbol": "oofp" - }, - { - "id": "oogi", - "name": "OOGI", - "symbol": "oogi" - }, - { - "id": "oogix", - "name": "OOGIX", - "symbol": "oogix" - }, - { - "id": "ookeenga", - "name": "Ookeenga", - "symbol": "okg" - }, - { - "id": "ooki", - "name": "Ooki", - "symbol": "ooki" - }, - { - "id": "oolong", - "name": "OoLong", - "symbol": "\u30a6\u30fc\u30ed\u30f3" - }, - { - "id": "oolongswap", - "name": "OolongSwap", - "symbol": "olo" - }, - { - "id": "oort", - "name": "OORT", - "symbol": "oort" - }, - { - "id": "oort-digital", - "name": "Oort Digital", - "symbol": "oort" - }, - { - "id": "opacity", - "name": "Opacity", - "symbol": "opct" - }, - { - "id": "opal-2", - "name": "Opal", - "symbol": "gem" - }, - { - "id": "opcat", - "name": "OPCAT", - "symbol": "$opcat" - }, - { - "id": "op-chads", - "name": "OP Chads", - "symbol": "opc" - }, - { - "id": "opclouds", - "name": "OpClouds", - "symbol": "opc" - }, - { - "id": "openai-erc", - "name": "OpenAI ERC", - "symbol": "openai erc" - }, - { - "id": "openalexa-protocol", - "name": "OpenAlexa Protocol", - "symbol": "oap" - }, - { - "id": "openanx", - "name": "OAX", - "symbol": "oax" - }, - { - "id": "openbetai", - "name": "OpenbetAI", - "symbol": "openbet" - }, - { - "id": "openblox", - "name": "OpenBlox", - "symbol": "obx" - }, - { - "id": "openchat", - "name": "OpenChat", - "symbol": "chat" - }, - { - "id": "opendao", - "name": "OpenDAO", - "symbol": "sos" - }, - { - "id": "open-dollar-governance", - "name": "Open Dollar Governance", - "symbol": "odg" - }, - { - "id": "openeden-tbill", - "name": "OpenEden TBILL", - "symbol": "tbill" - }, - { - "id": "open-exchange-token", - "name": "Open Exchange Token", - "symbol": "ox old" - }, - { - "id": "openex-network-token", - "name": "OpenEX Network Token", - "symbol": "oex" - }, - { - "id": "openfabric", - "name": "Openfabric AI", - "symbol": "ofn" - }, - { - "id": "open-games-builders", - "name": "Open Games Builders", - "symbol": "ogb" - }, - { - "id": "open-governance-token", - "name": "OPEN Governance", - "symbol": "open" - }, - { - "id": "open-gpu", - "name": "OPEN GPU", - "symbol": "ogpu" - }, - { - "id": "openleverage", - "name": "OpenLeverage", - "symbol": "ole" - }, - { - "id": "openlive-nft", - "name": "OMarket", - "symbol": "opv" - }, - { - "id": "open-mind-network", - "name": "Open Mind Network", - "symbol": "opmnd" - }, - { - "id": "openocean", - "name": "OpenOcean", - "symbol": "ooe" - }, - { - "id": "open-platform", - "name": "Open Platform", - "symbol": "open" - }, - { - "id": "openpool", - "name": "OpenPool", - "symbol": "opl" - }, - { - "id": "opensky-finance", - "name": "OpenSky Finance", - "symbol": "osky" - }, - { - "id": "open-source-network", - "name": "Open Source Network", - "symbol": "opn" - }, - { - "id": "openswap-token", - "name": "OpenSwap.One", - "symbol": "openx" - }, - { - "id": "open-ticketing-ecosystem", - "name": "OPEN Ticketing Ecosystem", - "symbol": "opn" - }, - { - "id": "openworldnft", - "name": "OPENWORLDNFT", - "symbol": "owner" - }, - { - "id": "openxswap", - "name": "OpenXSwap", - "symbol": "openx" - }, - { - "id": "openxswap-gov-token", - "name": "OpenXSwap Gov. Token", - "symbol": "xopenx" - }, - { - "id": "operation-phoenix", - "name": "Operation Phoenix", - "symbol": "$ophx" - }, - { - "id": "operon-origins", - "name": "Operon Origins", - "symbol": "oro" - }, - { - "id": "opes-wrapped-pe", - "name": "OpesAI", - "symbol": "wpe" - }, - { - "id": "ophir-dao", - "name": "Ophir DAO", - "symbol": "ophir" - }, - { - "id": "opipets", - "name": "OpiPets", - "symbol": "opip" - }, - { - "id": "opium", - "name": "Opium", - "symbol": "opium" - }, - { - "id": "opmoon", - "name": "OpMoon", - "symbol": "opmoon" - }, - { - "id": "oppa", - "name": "OPPA", - "symbol": "oppa" - }, - { - "id": "opportunity", - "name": "OPYx", - "symbol": "opy" - }, - { - "id": "opsec", - "name": "OpSec", - "symbol": "opsec" - }, - { - "id": "optical-bitcoin", - "name": "Optical Bitcoin", - "symbol": "obtc" - }, - { - "id": "opticash", - "name": "Opticash", - "symbol": "opch" - }, - { - "id": "optim", - "name": "OPTIM", - "symbol": "optim" - }, - { - "id": "optimism", - "name": "Optimism", - "symbol": "op" - }, - { - "id": "optimus", - "name": "Optimus", - "symbol": "optcm" - }, - { - "id": "optimus-ai", - "name": "Optimus AI", - "symbol": "opti" - }, - { - "id": "optimus-al-bsc", - "name": "Optimus Al (BSC)", - "symbol": "optimus al" - }, - { - "id": "optimuselonai", - "name": "OptimusElonAI", - "symbol": "optimuselo" - }, - { - "id": "optimus-inu", - "name": "Optimus Inu", - "symbol": "opinu" - }, - { - "id": "optimus-x", - "name": "Optimus X", - "symbol": "opx" - }, - { - "id": "optionflow-finance", - "name": "OptionFlow Finance", - "symbol": "opt" - }, - { - "id": "option-panda-platform", - "name": "Option Panda Platform", - "symbol": "opa" - }, - { - "id": "option-room", - "name": "OptionRoom", - "symbol": "room" - }, - { - "id": "opulous", - "name": "Opulous", - "symbol": "opul" - }, - { - "id": "opx-finance", - "name": "OPX Finance", - "symbol": "opx" - }, - { - "id": "opxsliz", - "name": "opxSliz", - "symbol": "opxvesliz" - }, - { - "id": "opyn-squeeth", - "name": "Opyn Squeeth", - "symbol": "osqth" - }, - { - "id": "oracle-2", - "name": "ORACLE", - "symbol": "oracle" - }, - { - "id": "oracle-ai", - "name": "Oracle AI", - "symbol": "oracle" - }, - { - "id": "oracle-bot", - "name": "Oracle.Bot", - "symbol": "oracle" - }, - { - "id": "oraclechain", - "name": "OracleChain", - "symbol": "oct" - }, - { - "id": "oracle-layer2", - "name": "Oracle Layer2", - "symbol": "oracle" - }, - { - "id": "oracle-meta-technologies", - "name": "Oracle Meta Technologies", - "symbol": "omt" - }, - { - "id": "oracleswap", - "name": "OracleSwap", - "symbol": "oracle" - }, - { - "id": "oracle-tools", - "name": "Oracle Tools", - "symbol": "ot" - }, - { - "id": "oraichain-token", - "name": "Oraichain", - "symbol": "orai" - }, - { - "id": "oraidex", - "name": "OraiDEX", - "symbol": "oraix" - }, - { - "id": "orang", - "name": "Orang", - "symbol": "orang" - }, - { - "id": "orange", - "name": "Orange", - "symbol": "ornj" - }, - { - "id": "orange-bot", - "name": "Orange BOT", - "symbol": "orbot" - }, - { - "id": "orangedx", - "name": "OrangeDX", - "symbol": "o4dx" - }, - { - "id": "orao-network", - "name": "ORAO Network", - "symbol": "orao" - }, - { - "id": "orbeon-protocol", - "name": "Orbeon Protocol", - "symbol": "orbn" - }, - { - "id": "orbit-bridge-klaytn-belt", - "name": "Orbit Bridge Klaytn BELT", - "symbol": "obelt" - }, - { - "id": "orbit-bridge-klaytn-binance-coin", - "name": "Orbit Bridge Klaytn Binance Coin", - "symbol": "obnb" - }, - { - "id": "orbit-bridge-klaytn-ethereum", - "name": "Orbit Bridge Klaytn Ethereum", - "symbol": "oeth" - }, - { - "id": "orbit-bridge-klaytn-handy", - "name": "Orbit Bridge Klaytn Handy", - "symbol": "ohandy" - }, - { - "id": "orbit-bridge-klaytn-matic", - "name": "Orbit Bridge Klaytn MATIC", - "symbol": "omatic" - }, - { - "id": "orbit-bridge-klaytn-orbit-chain", - "name": "Orbit Bridge Klaytn Orbit Chain", - "symbol": "oorc" - }, - { - "id": "orbit-bridge-klaytn-ripple", - "name": "Orbit Bridge Klaytn Ripple", - "symbol": "oxrp" - }, - { - "id": "orbit-bridge-klaytn-usdc", - "name": "Bridged USD Coin (Orbit Bridge)", - "symbol": "ousdc" - }, - { - "id": "orbit-bridge-klaytn-usd-tether", - "name": "Bridged Tether (Orbit Bridge)", - "symbol": "ousdt" - }, - { - "id": "orbit-bridge-klaytn-wrapped-btc", - "name": "Orbit Bridge Klaytn Wrapped BTC", - "symbol": "owbtc" - }, - { - "id": "orbit-chain", - "name": "Orbit Chain", - "symbol": "orc" - }, - { - "id": "orbitpad", - "name": "Orbitpad", - "symbol": "opad" - }, - { - "id": "orbit-protocol", - "name": "Orbit Protocol", - "symbol": "orbit" - }, - { - "id": "orbitt-pro", - "name": "Orbitt Pro", - "symbol": "orbt" - }, - { - "id": "orbler", - "name": "Orbler", - "symbol": "orbr" - }, - { - "id": "orbofi-ai", - "name": "Orbofi AI", - "symbol": "obi" - }, - { - "id": "orbs", - "name": "Orbs", - "symbol": "orbs" - }, - { - "id": "orb-wizz-council", - "name": "ORB WIZZ COUNCIL", - "symbol": "orb" - }, - { - "id": "orby-network-usc-stablecoin", - "name": "Orby Network USC Stablecoin", - "symbol": "usc" - }, - { - "id": "orca", - "name": "Orca", - "symbol": "orca" - }, - { - "id": "orca-avai", - "name": "Orca AVAI", - "symbol": "avai" - }, - { - "id": "orca-inu", - "name": "ORCA INU", - "symbol": "orcainu" - }, - { - "id": "orcfax", - "name": "Orcfax", - "symbol": "fact" - }, - { - "id": "orchai-protocol-staked-compound-atom", - "name": "Orchai Protocol Staked Compound ATOM", - "symbol": "scatom" - }, - { - "id": "orchid-protocol", - "name": "Orchid Protocol", - "symbol": "oxt" - }, - { - "id": "orclands-metaverse", - "name": "Orclands Metaverse", - "symbol": "orc" - }, - { - "id": "ordbridge", - "name": "Wrapped OrdBridge", - "symbol": "wbrge" - }, - { - "id": "orders-exchange", - "name": "Orders.Exchange", - "symbol": "rdex" - }, - { - "id": "ordg", - "name": "ORDG", - "symbol": "brc20" - }, - { - "id": "ordibank", - "name": "Ordibank", - "symbol": "orbk" - }, - { - "id": "ordible", - "name": "Ordible", - "symbol": "orb" - }, - { - "id": "ordibot", - "name": "OrdiBot", - "symbol": "ordibot" - }, - { - "id": "ordify", - "name": "Ordify", - "symbol": "orfy" - }, - { - "id": "ordigen", - "name": "OrdiGen", - "symbol": "odgn" - }, - { - "id": "ordi-launch", - "name": "Ordi Launch", - "symbol": "orla" - }, - { - "id": "ordinal-bitcoin", - "name": "ORDINAL BITCOIN", - "symbol": "obtc" - }, - { - "id": "ordinal-bridge", - "name": "Ordinal Bridge", - "symbol": "ordibridge" - }, - { - "id": "ordinal-btc", - "name": "Ordinal BTC", - "symbol": "obtc" - }, - { - "id": "ordinal-doge", - "name": "Ordinal Doge", - "symbol": "odoge" - }, - { - "id": "ordinal-hodl", - "name": "ORDINAL HODL MEME", - "symbol": "hodl" - }, - { - "id": "ordinals", - "name": "ORDI", - "symbol": "ordi" - }, - { - "id": "ordinalsfi", - "name": "OrdinalsFi", - "symbol": "ordifi" - }, - { - "id": "ordinals-inscription-bot", - "name": "Ordinals Inscription Bot", - "symbol": "oib" - }, - { - "id": "ordinals-world", - "name": "Ordinals World", - "symbol": "ord" - }, - { - "id": "ordinal-tools", - "name": "ORDINAL TOOLS", - "symbol": "ort" - }, - { - "id": "ordinex", - "name": "ordinex", - "symbol": "ord" - }, - { - "id": "ordiswap-token", - "name": "Ordiswap", - "symbol": "ords" - }, - { - "id": "ordizk", - "name": "OrdiZK", - "symbol": "ozk" - }, - { - "id": "ordmint", - "name": "Ordmint", - "symbol": "ormm" - }, - { - "id": "ore", - "name": "Ore", - "symbol": "ore" - }, - { - "id": "orenium-protocol", - "name": "Orenium Protocol", - "symbol": "ore" - }, - { - "id": "oreofi", - "name": "OreoFi", - "symbol": "oreo" - }, - { - "id": "oreoswap", - "name": "OreoSwap", - "symbol": "oreo" - }, - { - "id": "oreswap", - "name": "OreSwap", - "symbol": "ost" - }, - { - "id": "ore-token", - "name": "ORE", - "symbol": "ore" - }, - { - "id": "oreto-network", - "name": "Oreto Network", - "symbol": "ort" - }, - { - "id": "origen-defi", - "name": "Origen DEFI", - "symbol": "origen" - }, - { - "id": "origin-dollar", - "name": "Origin Dollar", - "symbol": "ousd" - }, - { - "id": "origin-dollar-governance", - "name": "Origin DeFi Governance", - "symbol": "ogv" - }, - { - "id": "origin-ether", - "name": "Origin Ether", - "symbol": "oeth" - }, - { - "id": "origin-lgns", - "name": "Origin LGNS", - "symbol": "lgns" - }, - { - "id": "origin-protocol", - "name": "Origin Protocol", - "symbol": "ogn" - }, - { - "id": "origintrail", - "name": "OriginTrail", - "symbol": "trac" - }, - { - "id": "origintrail-parachain", - "name": "OriginTrail Parachain", - "symbol": "otp" - }, - { - "id": "origyn-foundation", - "name": "ORIGYN Foundation", - "symbol": "ogy" - }, - { - "id": "orion-money", - "name": "Orion Money", - "symbol": "orion" - }, - { - "id": "orion-protocol", - "name": "Orion", - "symbol": "orn" - }, - { - "id": "oris", - "name": "ORIS", - "symbol": "oris" - }, - { - "id": "orkan", - "name": "Orkan", - "symbol": "ork" - }, - { - "id": "ormeus-cash", - "name": "Ormeus Cash", - "symbol": "omc" - }, - { - "id": "ormeuscoin", - "name": "Ormeus Coin", - "symbol": "orme" - }, - { - "id": "ormeus-ecosystem", - "name": "Ormeus Ecosystem", - "symbol": "eco" - }, - { - "id": "ormit", - "name": "ORMIT", - "symbol": "ormit" - }, - { - "id": "oro", - "name": "ORO", - "symbol": "oro" - }, - { - "id": "orym", - "name": "Orym", - "symbol": "orym" - }, - { - "id": "osaka-protocol", - "name": "Osaka Protocol", - "symbol": "osak" - }, - { - "id": "oscarswap", - "name": "Oscarswap", - "symbol": "oscar" - }, - { - "id": "osean", - "name": "Osean", - "symbol": "osean" - }, - { - "id": "oshi", - "name": "OSHI", - "symbol": "oshi" - }, - { - "id": "osis", - "name": "OSIS", - "symbol": "osis" - }, - { - "id": "osk", - "name": "OSK", - "symbol": "osk" - }, - { - "id": "osmosis", - "name": "Osmosis", - "symbol": "osmo" - }, - { - "id": "ospy", - "name": "OSPY", - "symbol": "ospy" - }, - { - "id": "osschain", - "name": "OSSChain", - "symbol": "oss" - }, - { - "id": "otacon-ai", - "name": "Otacon AI", - "symbol": "otacon" - }, - { - "id": "otflow", - "name": "OTFLOW", - "symbol": "otf" - }, - { - "id": "otocash", - "name": "OTOCASH", - "symbol": "oto" - }, - { - "id": "otsea", - "name": "OTSea", - "symbol": "otsea" - }, - { - "id": "otterhome", - "name": "OtterHome", - "symbol": "home" - }, - { - "id": "ottochain", - "name": "Ottochain", - "symbol": "otto" - }, - { - "id": "otton", - "name": "Otton", - "symbol": "otn" - }, - { - "id": "otx-exchange", - "name": "OTX EXCHANGE", - "symbol": "otx" - }, - { - "id": "ousg", - "name": "OUSG", - "symbol": "ousg" - }, - { - "id": "outdefine", - "name": "Outdefine", - "symbol": "outdefine" - }, - { - "id": "outer-ring", - "name": "Blink Galaxy", - "symbol": "gq" - }, - { - "id": "outter-finance", - "name": "Outter Finance [OLD]", - "symbol": "out" - }, - { - "id": "outter-finance-2", - "name": "Outter Finance", - "symbol": "out" - }, - { - "id": "oval3", - "name": "OVAL3", - "symbol": "ovl3" - }, - { - "id": "overlay-protocol", - "name": "Overlay Protocol", - "symbol": "ov" - }, - { - "id": "overnight-dai", - "name": "Overnight.fi DAI+", - "symbol": "dai+" - }, - { - "id": "overnight-finance", - "name": "Overnight Finance", - "symbol": "ovn" - }, - { - "id": "overprotocol", - "name": "OverProtocol", - "symbol": "over" - }, - { - "id": "ovols-floor-index", - "name": "Ovols Floor Index", - "symbol": "$ovol" - }, - { - "id": "ovo-nft-platform", - "name": "OVO", - "symbol": "ovo" - }, - { - "id": "ovr", - "name": "Ovr", - "symbol": "ovr" - }, - { - "id": "owloper", - "name": "Owloper Owl", - "symbol": "owl" - }, - { - "id": "own-token", - "name": "OWN Token", - "symbol": "own" - }, - { - "id": "oxbitcoin", - "name": "0xBitcoin", - "symbol": "0xbtc" - }, - { - "id": "oxbt", - "name": "OXBT", - "symbol": "oxbt" - }, - { - "id": "oxbull-tech-2", - "name": "Oxbull Tech", - "symbol": "oxb" - }, - { - "id": "ox-fun", - "name": "OX Coin", - "symbol": "ox" - }, - { - "id": "oxygen", - "name": "Oxygen", - "symbol": "oxy" - }, - { - "id": "oxymetatoken", - "name": "OxyMetaToken", - "symbol": "omt" - }, - { - "id": "oxyo2", - "name": "OxyO2", - "symbol": "krpza" - }, - { - "id": "ozonechain", - "name": "Ozonechain", - "symbol": "ozone" - }, - { - "id": "ozone-chain", - "name": "Ozone Chain", - "symbol": "ozo" - }, - { - "id": "ozone-metaverse", - "name": "Ozone Metaverse", - "symbol": "$ozone" - }, - { - "id": "p2p-solutions-foundation", - "name": "P2P solutions foundation", - "symbol": "p2ps" - }, - { - "id": "p3pe-hacker", - "name": "P3PE HACKER", - "symbol": "p3pe" - }, - { - "id": "paal-ai", - "name": "PAAL AI", - "symbol": "paal" - }, - { - "id": "pablo-defi", - "name": "Pablo DeFi", - "symbol": "pablo" - }, - { - "id": "paccoin", - "name": "PAC Protocol", - "symbol": "pac" - }, - { - "id": "pace-bot", - "name": "Pace Bot", - "symbol": "pace" - }, - { - "id": "pacific", - "name": "Pacific", - "symbol": "paf" - }, - { - "id": "pack", - "name": "Pack", - "symbol": "pack" - }, - { - "id": "packageportal", - "name": "PackagePortal", - "symbol": "port" - }, - { - "id": "packetchain", - "name": "Packetchain", - "symbol": "ptcl" - }, - { - "id": "pacman", - "name": "PAC Project", - "symbol": "pac" - }, - { - "id": "pacman-native-token", - "name": "Pacman Native Token", - "symbol": "pac" - }, - { - "id": "pacmoon", - "name": "PacMoon", - "symbol": "pac" - }, - { - "id": "pacoca", - "name": "Pacoca", - "symbol": "pacoca" - }, - { - "id": "padawan", - "name": "PADAWAN", - "symbol": "padawan" - }, - { - "id": "padre", - "name": "Padre", - "symbol": "padre" - }, - { - "id": "page", - "name": "Page", - "symbol": "page" - }, - { - "id": "paideia", - "name": "Paideia", - "symbol": "pai" - }, - { - "id": "paid-network", - "name": "PAID Network", - "symbol": "paid" - }, - { - "id": "paint", - "name": "MurAll", - "symbol": "paint" - }, - { - "id": "paint-swap", - "name": "Paint Swap", - "symbol": "brush" - }, - { - "id": "paisapad", - "name": "PaisaPad", - "symbol": "ppd" - }, - { - "id": "pajamas-cat", - "name": "Pajamas Cat", - "symbol": "pajamas" - }, - { - "id": "paje-etdev-company", - "name": "BOLLY.DEV", - "symbol": "bolly" - }, - { - "id": "pakcoin", - "name": "Pakcoin", - "symbol": "pak" - }, - { - "id": "pal", - "name": "PAL", - "symbol": "pal" - }, - { - "id": "paladeum", - "name": "Paladeum", - "symbol": "plb" - }, - { - "id": "paladin", - "name": "Paladin", - "symbol": "pal" - }, - { - "id": "paladinai", - "name": "PaladinAI", - "symbol": "palai" - }, - { - "id": "palantir-tokenized-stock-defichain", - "name": "Palantir Tokenized Stock Defichain", - "symbol": "dpltr" - }, - { - "id": "palette", - "name": "Palette", - "symbol": "plt" - }, - { - "id": "palette-2", - "name": "Palette", - "symbol": "plt" - }, - { - "id": "palgold", - "name": "PalGold", - "symbol": "palg" - }, - { - "id": "palm-ai", - "name": "PaLM AI", - "symbol": "palm" - }, - { - "id": "palmeiras-fan-token", - "name": "Palmeiras Fan Token", - "symbol": "verdao" - }, - { - "id": "palmpay", - "name": "PalmPay", - "symbol": "palm" - }, - { - "id": "palmswap", - "name": "PalmSwap", - "symbol": "palm" - }, - { - "id": "pancake-bunny", - "name": "Pancake Bunny", - "symbol": "bunny" - }, - { - "id": "pancake-games", - "name": "Pancake Games", - "symbol": "gcake" - }, - { - "id": "pancake-hunny", - "name": "Hunny Finance", - "symbol": "hunny" - }, - { - "id": "pancakeswap-token", - "name": "PancakeSwap", - "symbol": "cake" - }, - { - "id": "panda", - "name": "Panda", - "symbol": "ptkn" - }, - { - "id": "pandacoin", - "name": "Pandacoin", - "symbol": "pnd" - }, - { - "id": "panda-coin", - "name": "Panda Coin", - "symbol": "panda" - }, - { - "id": "pandacoin-inu", - "name": "Pandacoin Inu", - "symbol": "panda" - }, - { - "id": "pandadao", - "name": "PandaDAO", - "symbol": "panda" - }, - { - "id": "pandao", - "name": "PanDAO", - "symbol": "$panda" - }, - { - "id": "panda-swap", - "name": "Panda Swap", - "symbol": "panda" - }, - { - "id": "pandemic-diamond", - "name": "Pandemic Diamond", - "symbol": "pmd" - }, - { - "id": "pando", - "name": "Pando", - "symbol": "pando" - }, - { - "id": "pandora", - "name": "Pandora", - "symbol": "pandora" - }, - { - "id": "pandora-cash", - "name": "Pandora Cash", - "symbol": "pcash" - }, - { - "id": "pandora-protocol", - "name": "Pandora Finance", - "symbol": "pndr" - }, - { - "id": "pando-token", - "name": "PandoProject", - "symbol": "ptx" - }, - { - "id": "pangea-governance-token", - "name": "PANGEA GOVERNANCE TOKEN", - "symbol": "stone" - }, - { - "id": "pangolin", - "name": "Pangolin", - "symbol": "png" - }, - { - "id": "pangolin-flare", - "name": "Pangolin Flare", - "symbol": "pfl" - }, - { - "id": "pangolin-hedera", - "name": "Pangolin Hedera", - "symbol": "pbar" - }, - { - "id": "pangolin-songbird", - "name": "Pangolin Songbird", - "symbol": "psb" - }, - { - "id": "panicswap", - "name": "PanicSwap", - "symbol": "panic" - }, - { - "id": "panjea", - "name": "Panjea", - "symbol": "panj" - }, - { - "id": "pankuku", - "name": "panKUKU", - "symbol": "kuku" - }, - { - "id": "panorama-swap-token", - "name": "Panorama Swap Token", - "symbol": "panx" - }, - { - "id": "panoverse", - "name": "PanoVerse", - "symbol": "pano" - }, - { - "id": "panther", - "name": "Panther Protocol", - "symbol": "zkp" - }, - { - "id": "panties", - "name": "PANTIES", - "symbol": "panties" - }, - { - "id": "pantos", - "name": "Pantos", - "symbol": "pan" - }, - { - "id": "papa", - "name": "Papa", - "symbol": "papa" - }, - { - "id": "papa2049", - "name": "papa2049", - "symbol": "papa2049" - }, - { - "id": "papa-bear-2", - "name": "PAPA BEAR", - "symbol": "papa" - }, - { - "id": "papa-doge", - "name": "Papa Doge", - "symbol": "papadoge" - }, - { - "id": "papa-on-sol", - "name": "PAPA on SOL", - "symbol": "papa" - }, - { - "id": "paper-fantom", - "name": "Paper", - "symbol": "paper" - }, - { - "id": "paper-plane", - "name": "Paper Plane", - "symbol": "plane" - }, - { - "id": "papocoin", - "name": "PapoCoin", - "symbol": "papo" - }, - { - "id": "papyrus-swap", - "name": "Papyrus Swap", - "symbol": "papyrus" - }, - { - "id": "parachute", - "name": "Parachute", - "symbol": "par" - }, - { - "id": "paradise-defi", - "name": "Paradise Defi", - "symbol": "pdf" - }, - { - "id": "paradisefi", - "name": "ParadiseFi", - "symbol": "eden" - }, - { - "id": "paradox-2", - "name": "Paradox", - "symbol": "pdx" - }, - { - "id": "paradox-metaverse", - "name": "Paradox Metaverse", - "symbol": "paradox" - }, - { - "id": "paragen", - "name": "Paragen", - "symbol": "rgen" - }, - { - "id": "paragon-network", - "name": "Paragon Network", - "symbol": "para" - }, - { - "id": "paragonsdao", - "name": "ParagonsDAO", - "symbol": "pdt" - }, - { - "id": "paralink-network", - "name": "Paralink Network", - "symbol": "para" - }, - { - "id": "parallax", - "name": "Parallax", - "symbol": "plx" - }, - { - "id": "parallelchain", - "name": "ParallelChain", - "symbol": "xpll" - }, - { - "id": "pararium", - "name": "Pararium", - "symbol": "paz" - }, - { - "id": "paras", - "name": "Paras", - "symbol": "paras" - }, - { - "id": "parasol-finance", - "name": "Parasol Finance", - "symbol": "psol" - }, - { - "id": "paraswap", - "name": "ParaSwap", - "symbol": "psp" - }, - { - "id": "paratoken-2", - "name": "Para", - "symbol": "para" - }, - { - "id": "paraverse", - "name": "Paraverse", - "symbol": "para" - }, - { - "id": "parex", - "name": "Parex", - "symbol": "prx" - }, - { - "id": "paribu-net", - "name": "Paribu Net", - "symbol": "prb" - }, - { - "id": "paribus", - "name": "Paribus", - "symbol": "pbx" - }, - { - "id": "parifi", - "name": "Parifi", - "symbol": "prf" - }, - { - "id": "parifi-usdc", - "name": "Parifi USDC", - "symbol": "pfusdc" - }, - { - "id": "parifi-weth", - "name": "Parifi WETH", - "symbol": "pfweth" - }, - { - "id": "paris-saint-germain-fan-token", - "name": "Paris Saint-Germain Fan Token", - "symbol": "psg" - }, - { - "id": "parma-calcio-1913-fan-token", - "name": "Parma Calcio 1913 Fan Token", - "symbol": "parma" - }, - { - "id": "parrotly", - "name": "Parrotly", - "symbol": "pbirb" - }, - { - "id": "parrot-protocol", - "name": "Parrot Protocol", - "symbol": "prt" - }, - { - "id": "parrot-usd", - "name": "Parrot USD", - "symbol": "pai" - }, - { - "id": "parsiq", - "name": "PARSIQ", - "symbol": "prq" - }, - { - "id": "par-stablecoin", - "name": "Parallel", - "symbol": "par" - }, - { - "id": "particl", - "name": "Particl", - "symbol": "part" - }, - { - "id": "particle-2", - "name": "Particle", - "symbol": "prtcle" - }, - { - "id": "particles-money", - "name": "Particles Money", - "symbol": "particle" - }, - { - "id": "particles-money-xeth", - "name": "Particles Money xETH", - "symbol": "xeth" - }, - { - "id": "partisia-blockchain", - "name": "Partisia Blockchain", - "symbol": "mpc" - }, - { - "id": "party", - "name": "PARTY", - "symbol": "party" - }, - { - "id": "party-2", - "name": "Party", - "symbol": "party" - }, - { - "id": "partyhat-meme", - "name": "partyhat (Meme)", - "symbol": "phat" - }, - { - "id": "pascalcoin", - "name": "Pascal", - "symbol": "pasc" - }, - { - "id": "passage", - "name": "Passage", - "symbol": "pasg" - }, - { - "id": "passivesphere", - "name": "PassiveSphere", - "symbol": "ppx" - }, - { - "id": "pastel", - "name": "Pastel", - "symbol": "psl" - }, - { - "id": "pat", - "name": "Pat", - "symbol": "pat" - }, - { - "id": "patex", - "name": "Patex", - "symbol": "patex" - }, - { - "id": "patientory", - "name": "Patientory", - "symbol": "ptoy" - }, - { - "id": "patriot-pay", - "name": "Patriot Pay", - "symbol": "ppy" - }, - { - "id": "paul-token", - "name": "PAUL", - "symbol": "paul" - }, - { - "id": "pavia", - "name": "Pavia", - "symbol": "pavia" - }, - { - "id": "paw-2", - "name": "PAW", - "symbol": "paw" - }, - { - "id": "paw-a-gotchi", - "name": "Paw-a-Gotchi", - "symbol": "pag" - }, - { - "id": "pawstars", - "name": "PawStars", - "symbol": "paws" - }, - { - "id": "pawswap", - "name": "PAWSWAP", - "symbol": "paw" - }, - { - "id": "pawthereum", - "name": "Pawthereum", - "symbol": "pawth" - }, - { - "id": "pawtocol", - "name": "Pawtocol", - "symbol": "upi" - }, - { - "id": "paw-v2", - "name": "Paw V2", - "symbol": "paw" - }, - { - "id": "pawzone", - "name": "PAWZONE", - "symbol": "paw" - }, - { - "id": "paxb", - "name": "PAXB", - "symbol": "paxb" - }, - { - "id": "pax-gold", - "name": "PAX Gold", - "symbol": "paxg" - }, - { - "id": "paxos-standard", - "name": "Pax Dollar", - "symbol": "usdp" - }, - { - "id": "pax-unitas", - "name": "Pax Unitas", - "symbol": "paxu" - }, - { - "id": "payaccept", - "name": "PayAccept", - "symbol": "payt" - }, - { - "id": "payb", - "name": "PayB", - "symbol": "payb" - }, - { - "id": "paybandcoin", - "name": "PaybandCoin", - "symbol": "pybc" - }, - { - "id": "paybit", - "name": "PayBit", - "symbol": "paybit" - }, - { - "id": "paybolt", - "name": "PayBolt", - "symbol": "pay" - }, - { - "id": "pay-coin", - "name": "Paycoin", - "symbol": "pci" - }, - { - "id": "payday", - "name": "Payday", - "symbol": "payday" - }, - { - "id": "pay-it-now", - "name": "Pay It Now", - "symbol": "pin" - }, - { - "id": "payments", - "name": "\ud835\udd4f Payments", - "symbol": "xpay" - }, - { - "id": "payment-swap-utility-board", - "name": "Payment Swap Utility Board", - "symbol": "psub" - }, - { - "id": "paynet-coin", - "name": "PAYNET", - "symbol": "payn" - }, - { - "id": "paypal-usd", - "name": "PayPal USD", - "symbol": "pyusd" - }, - { - "id": "paypaw", - "name": "PayPaw", - "symbol": "paw" - }, - { - "id": "paypolitan-token", - "name": "Paypolitan", - "symbol": "epan" - }, - { - "id": "payrue", - "name": "PayRue", - "symbol": "propel" - }, - { - "id": "paysenger-ego", - "name": "Paysenger EGO", - "symbol": "ego" - }, - { - "id": "payslink-token", - "name": "Payslink Token", - "symbol": "pays" - }, - { - "id": "payvertise", - "name": "Payvertise", - "symbol": "pvt" - }, - { - "id": "paywong", - "name": "Paywong", - "symbol": "pwg" - }, - { - "id": "payx", - "name": "PayX", - "symbol": "payx" - }, - { - "id": "payzcoin", - "name": "Payzcoin", - "symbol": "pay" - }, - { - "id": "pbm", - "name": "PBM Coin", - "symbol": "pbmc" - }, - { - "id": "pbtc35a", - "name": "pBTC35A", - "symbol": "pbtc35a" - }, - { - "id": "pchain", - "name": "Plian", - "symbol": "pi" - }, - { - "id": "pdbc-defichain", - "name": "PDBC Defichain", - "symbol": "dpdbc" - }, - { - "id": "pdx-coin", - "name": "PDX Coin", - "symbol": "pdx" - }, - { - "id": "peace-coin", - "name": "PEACE COIN", - "symbol": "pce" - }, - { - "id": "peach-2", - "name": "Peach", - "symbol": "pch" - }, - { - "id": "peachfolio", - "name": "Peachfolio", - "symbol": "pchf" - }, - { - "id": "peach-inu-bsc", - "name": "Peach Inu (BSC)", - "symbol": "peach" - }, - { - "id": "peachy", - "name": "PEACHY", - "symbol": "peachy" - }, - { - "id": "peanut", - "name": "Peanut", - "symbol": "nux" - }, - { - "id": "peapods-finance", - "name": "Peapods Finance", - "symbol": "peas" - }, - { - "id": "pearl", - "name": "Pearl", - "symbol": "pearl" - }, - { - "id": "pearl-finance", - "name": "Pearl Finance", - "symbol": "pearl" - }, - { - "id": "pear-swap", - "name": "Pear Swap", - "symbol": "pear" - }, - { - "id": "peepo", - "name": "Peepo", - "symbol": "peepo" - }, - { - "id": "peepo-sol", - "name": "Peepo (SOL)", - "symbol": "$peep" - }, - { - "id": "peercoin", - "name": "Peercoin", - "symbol": "ppc" - }, - { - "id": "peer-to-peer", - "name": "Peer-to-Peer", - "symbol": "p2p" - }, - { - "id": "pegasus-dex", - "name": "Pegasus DEX", - "symbol": "peg" - }, - { - "id": "pegasys", - "name": "Pegasys (Syscoin NEVM)", - "symbol": "psys" - }, - { - "id": "pegasys-rollux", - "name": "Pegasys (Rollux)", - "symbol": "psys" - }, - { - "id": "pegaxy-stone", - "name": "Pegaxy", - "symbol": "pgx" - }, - { - "id": "pegazus-finance", - "name": "Pegazus Finance", - "symbol": "peg" - }, - { - "id": "peg-eusd", - "name": "peg-eUSD", - "symbol": "peusd" - }, - { - "id": "pego-network-2", - "name": "PEGO Network", - "symbol": "pg" - }, - { - "id": "peipei", - "name": "PEIPEI", - "symbol": "peipei" - }, - { - "id": "pelfort", - "name": "PELFORT", - "symbol": "pelf" - }, - { - "id": "pembrock", - "name": "Pembrock", - "symbol": "pem" - }, - { - "id": "pendle", - "name": "Pendle", - "symbol": "pendle" - }, - { - "id": "pendulum-chain", - "name": "Pendulum", - "symbol": "pen" - }, - { - "id": "peng", - "name": "Peng", - "symbol": "peng" - }, - { - "id": "penguin404", - "name": "Penguin404", - "symbol": "penguin" - }, - { - "id": "penguin-finance", - "name": "Penguin Finance", - "symbol": "pefi" - }, - { - "id": "penguin-karts", - "name": "Penguin Karts", - "symbol": "pgk" - }, - { - "id": "penguinwak", - "name": "PenguinWak", - "symbol": "wak" - }, - { - "id": "pengyos", - "name": "PengyOS", - "symbol": "pos" - }, - { - "id": "penpad-token", - "name": "Penpad Token", - "symbol": "pdd" - }, - { - "id": "penpie", - "name": "Penpie", - "symbol": "pnp" - }, - { - "id": "penrose-finance", - "name": "Penrose Finance", - "symbol": "pen" - }, - { - "id": "peony-coin", - "name": "Peony Coin", - "symbol": "pny" - }, - { - "id": "pepa-erc", - "name": "Pepa ERC", - "symbol": "pepa" - }, - { - "id": "pepa-inu", - "name": "Pepa Inu", - "symbol": "pepa" - }, - { - "id": "pepcat", - "name": "pepcat", - "symbol": "pepcat" - }, - { - "id": "pepe", - "name": "Pepe", - "symbol": "pepe" - }, - { - "id": "pepe-2", - "name": "The Original Pepe", - "symbol": "pepe" - }, - { - "id": "pepe-2-0", - "name": "Pepe 2.0", - "symbol": "pepe2.0" - }, - { - "id": "pepe-ai", - "name": "Pepe AI", - "symbol": "pepeai" - }, - { - "id": "pepe-ai-token", - "name": "Pepe AI Token", - "symbol": "pepeai" - }, - { - "id": "pepebeast", - "name": "PEPEBEAST", - "symbol": "pepebeast" - }, - { - "id": "pepeblue", - "name": "Pepeblue", - "symbol": "pepeblue" - }, - { - "id": "pepebnbs", - "name": "PEPEBNBS", - "symbol": "pepebnbs" - }, - { - "id": "pepebrc", - "name": "PEPE (Ordinals)", - "symbol": "pepe" - }, - { - "id": "pepe-but-blue", - "name": "Pepe But Blue", - "symbol": "pbb" - }, - { - "id": "pepecash-bsc", - "name": "PEPECASH BSC", - "symbol": "pepecash" - }, - { - "id": "pepe-ceo", - "name": "Pepe CEO", - "symbol": "peo" - }, - { - "id": "pepe-ceo-bsc", - "name": "Pepe CEO BSC", - "symbol": "pepe ceo" - }, - { - "id": "pepe-ceo-inu", - "name": "PEPE CEO INU", - "symbol": "pepe" - }, - { - "id": "pepechain", - "name": "Pepechain", - "symbol": "pc" - }, - { - "id": "pepe-chain", - "name": "PEPE Chain", - "symbol": "pepechain" - }, - { - "id": "pepe-chain-2", - "name": "Pepe Chain", - "symbol": "pc" - }, - { - "id": "pepecoin-2", - "name": "PepeCoin", - "symbol": "pepecoin" - }, - { - "id": "pepecoin-network", - "name": "Pepecoin Network", - "symbol": "pepenet" - }, - { - "id": "pepecoin-on-sol", - "name": "PEPECOIN on SOL", - "symbol": "pepe" - }, - { - "id": "pepecoin-on-solana", - "name": "PepeCoin on Solana", - "symbol": "pepe" - }, - { - "id": "pepe-dao", - "name": "PEPE DAO", - "symbol": "peped" - }, - { - "id": "pepe-dash-ai", - "name": "Pepe Dash AI", - "symbol": "pepedashai" - }, - { - "id": "pepedex", - "name": "Pepedex", - "symbol": "ppdex" - }, - { - "id": "pepe-doge", - "name": "Pepe Doge", - "symbol": "pepedoge" - }, - { - "id": "pepe-doginals", - "name": "PEPE (DRC-20)", - "symbol": "pepe" - }, - { - "id": "pepe-floki", - "name": "PEPE FLOKI", - "symbol": "pepef" - }, - { - "id": "pepefork", - "name": "PepeFork", - "symbol": "pork" - }, - { - "id": "pepefork-inu", - "name": "PepeFork INU", - "symbol": "porkinu" - }, - { - "id": "pepe-girl", - "name": "Pepe Girl", - "symbol": "pepeg" - }, - { - "id": "pepegoat", - "name": "PepeGOAT", - "symbol": "pepegoat" - }, - { - "id": "pepegold-6ea5105a-8bbe-45bc-bd1c-dc9b01a19be7", - "name": "PEPEGOLD", - "symbol": "pepe" - }, - { - "id": "pepeinu", - "name": "Pepeinu", - "symbol": "pepeinu" - }, - { - "id": "pepe-inu", - "name": "Pepe Inu", - "symbol": "pepinu" - }, - { - "id": "pepe-inverted", - "name": "Pepe Inverted", - "symbol": "\u01dd\u0501\u01dd\u0501" - }, - { - "id": "pepe-king-prawn", - "name": "Pepe King Prawn", - "symbol": "pepe" - }, - { - "id": "pepe-le-pew-coin", - "name": "Pepe Le Pew Coin", - "symbol": "$plpc" - }, - { - "id": "pepelon", - "name": "Pepelon", - "symbol": "pepelon" - }, - { - "id": "pepelon-token", - "name": "PepElon", - "symbol": "pelo" - }, - { - "id": "pepe-mining-company", - "name": "Pepe Mining Company", - "symbol": "ppmc" - }, - { - "id": "pepemon-pepeballs", - "name": "Pepemon Pepeballs", - "symbol": "ppblz" - }, - { - "id": "pepe-of-wallstreet", - "name": "Pepe Of Wallstreet", - "symbol": "pow" - }, - { - "id": "pepe-og", - "name": "Pepe OG", - "symbol": "pog" - }, - { - "id": "pepe-on-base", - "name": "Pepe on Base", - "symbol": "pepe" - }, - { - "id": "pepe-on-solana", - "name": "Pepe on Solana", - "symbol": "pepe" - }, - { - "id": "pepe-original-version", - "name": "Pepe Original Version", - "symbol": "pov" - }, - { - "id": "pepepad", - "name": "PepePAD", - "symbol": "pepe" - }, - { - "id": "pe-pe-pokemoon", - "name": "PE PE POKEMOON", - "symbol": "pemon" - }, - { - "id": "pepepow", - "name": "PEPEPOW", - "symbol": "pepew" - }, - { - "id": "pepe-predator", - "name": "Pepe Predator", - "symbol": "snake" - }, - { - "id": "pepe-prophet", - "name": "Pepe Prophet", - "symbol": "kek" - }, - { - "id": "peper", - "name": "PEPER", - "symbol": "peper" - }, - { - "id": "pepera", - "name": "Pepera", - "symbol": "pepera" - }, - { - "id": "pepesol", - "name": "PepeSol", - "symbol": "pepe" - }, - { - "id": "pepe-solana", - "name": "Pepe (Solana)", - "symbol": "pepe" - }, - { - "id": "pepe-sora-ai", - "name": "Pepe Sora AI", - "symbol": "pepesora" - }, - { - "id": "pepe-the-frog", - "name": "Pepe the Frog", - "symbol": "pepebnb" - }, - { - "id": "pepe-the-pepe", - "name": "Pepe the pepe", - "symbol": "pepee" - }, - { - "id": "pepe-token", - "name": "Pepe Token", - "symbol": "pepe" - }, - { - "id": "pepeusdt", - "name": "PepeUSDT", - "symbol": "ppusdt" - }, - { - "id": "pepe-uwu", - "name": "PEPE UWU", - "symbol": "cute" - }, - { - "id": "pepewifhat", - "name": "pepewifhat", - "symbol": "pif" - }, - { - "id": "pepe-wif-hat", - "name": "Pepe Wif Hat", - "symbol": "pif" - }, - { - "id": "pepewifhat-2", - "name": "pepewifhat", - "symbol": "pwh" - }, - { - "id": "pepewifhat-3", - "name": "Pepewifhat", - "symbol": "pepewifhat" - }, - { - "id": "pepex", - "name": "PEPEX", - "symbol": "pepex" - }, - { - "id": "pepexl", - "name": "PepeXL", - "symbol": "pepexl" - }, - { - "id": "pepi", - "name": "PEPI", - "symbol": "pepi" - }, - { - "id": "pepinu", - "name": "Pepinu", - "symbol": "pepinu" - }, - { - "id": "pepito", - "name": "Pepito", - "symbol": "pepi" - }, - { - "id": "peppa", - "name": "PEPPA", - "symbol": "peppa" - }, - { - "id": "pepurai", - "name": "PEPURAI", - "symbol": "pepurai" - }, - { - "id": "pepy-coin", - "name": "Pepy coin", - "symbol": "pepy" - }, - { - "id": "pera-finance", - "name": "Pera Finance", - "symbol": "pera" - }, - { - "id": "perezoso", - "name": "Perezoso", - "symbol": "przs" - }, - { - "id": "peri-finance", - "name": "PERI Finance", - "symbol": "peri" - }, - { - "id": "perion", - "name": "Perion", - "symbol": "perc" - }, - { - "id": "perlin", - "name": "PERL.eco", - "symbol": "perl" - }, - { - "id": "permission-coin", - "name": "Permission Coin", - "symbol": "ask" - }, - { - "id": "perpetual-protocol", - "name": "Perpetual Protocol", - "symbol": "perp" - }, - { - "id": "perpetual-wallet", - "name": "Perpetual Wallet", - "symbol": "pwt" - }, - { - "id": "perpetuum-coin", - "name": "Perpetuum Coin", - "symbol": "prp" - }, - { - "id": "per-project", - "name": "PER Project", - "symbol": "per" - }, - { - "id": "perpy-finance", - "name": "Perpy Finance", - "symbol": "pry" - }, - { - "id": "perro-dinero", - "name": "PERRO DINERO", - "symbol": "jotchua" - }, - { - "id": "perry-the-bnb", - "name": "Perry The BNB", - "symbol": "perry" - }, - { - "id": "perseid-finance", - "name": "Perseid Finance", - "symbol": "ped" - }, - { - "id": "persib-fan-token", - "name": "Persib Fan Token", - "symbol": "persib" - }, - { - "id": "persistence", - "name": "Persistence One", - "symbol": "xprt" - }, - { - "id": "peruvian-national-football-team-fan-token", - "name": "Peruvian National Football Team Fan Token", - "symbol": "fpft" - }, - { - "id": "pesabase", - "name": "Pesabase", - "symbol": "pesa" - }, - { - "id": "petals", - "name": "Petals", - "symbol": "pts" - }, - { - "id": "petcoin-2", - "name": "Petcoin", - "symbol": "pet" - }, - { - "id": "pete", - "name": "PETE", - "symbol": "pete" - }, - { - "id": "peth", - "name": "pETH", - "symbol": "peth" - }, - { - "id": "petroleum-oil", - "name": "Petroleum OIL", - "symbol": "oil" - }, - { - "id": "petshop-io", - "name": "Petshop.io", - "symbol": "ptshp" - }, - { - "id": "petthedog-erc404", - "name": "Pet the Dog", - "symbol": "dogpet" - }, - { - "id": "pftm", - "name": "pFTM", - "symbol": "pftm" - }, - { - "id": "pgala", - "name": "pGALA", - "symbol": "pgala" - }, - { - "id": "pha", - "name": "Phala", - "symbol": "pha" - }, - { - "id": "phaeton", - "name": "Phaeton", - "symbol": "phae" - }, - { - "id": "phala-moonbeam", - "name": "Phala (Moonbeam)", - "symbol": "$xcpha" - }, - { - "id": "phame", - "name": "PHAME", - "symbol": "phame" - }, - { - "id": "phantasma", - "name": "Phantasma", - "symbol": "soul" - }, - { - "id": "phantom-of-the-kill-alternative-imitation-oshi", - "name": "OSHI3", - "symbol": "oshi" - }, - { - "id": "phantom-protocol", - "name": "Phantom Protocol", - "symbol": "phm" - }, - { - "id": "pharaoh", - "name": "Pharaoh", - "symbol": "phar" - }, - { - "id": "pharos", - "name": "Pharos", - "symbol": "pharos" - }, - { - "id": "phase-dollar", - "name": "Phase Dollar", - "symbol": "cash" - }, - { - "id": "phauntem", - "name": "Phauntem", - "symbol": "phauntem" - }, - { - "id": "phemex", - "name": "Phemex Token", - "symbol": "pt" - }, - { - "id": "phenix-finance-2", - "name": "Phenix Finance (Cronos)", - "symbol": "phnx" - }, - { - "id": "phiat-protocol", - "name": "Phiat Protocol", - "symbol": "phiat" - }, - { - "id": "phili-inu", - "name": "Phili Inu", - "symbol": "phil" - }, - { - "id": "phobos-token", - "name": "Phobos Token", - "symbol": "pbos" - }, - { - "id": "phoenix", - "name": "Phoenix Blockchain", - "symbol": "phx" - }, - { - "id": "phoenix-chain", - "name": "Phoenix Chain", - "symbol": "phx" - }, - { - "id": "phoenixcoin", - "name": "Phoenixcoin", - "symbol": "pxc" - }, - { - "id": "phoenixdao", - "name": "PhoenixDAO", - "symbol": "phnx" - }, - { - "id": "phoenix-dragon", - "name": "Phoenix Dragon", - "symbol": "pdragon" - }, - { - "id": "phoenix-global", - "name": "Phoenix", - "symbol": "phb" - }, - { - "id": "phoenix-token", - "name": "Phoenix Finance", - "symbol": "phx" - }, - { - "id": "phoneix-ai", - "name": "Phoenix AI", - "symbol": "pxai" - }, - { - "id": "phoneum", - "name": "Phoneum", - "symbol": "pht" - }, - { - "id": "phonon-dao", - "name": "Phonon DAO", - "symbol": "phonon" - }, - { - "id": "phore", - "name": "Phore", - "symbol": "phr" - }, - { - "id": "photochromic", - "name": "PhotoChromic", - "symbol": "phcr" - }, - { - "id": "photonswap", - "name": "PhotonSwap", - "symbol": "photon" - }, - { - "id": "phpcoin", - "name": "PHPCoin", - "symbol": "php" - }, - { - "id": "phteven", - "name": "Phteven", - "symbol": "phteve" - }, - { - "id": "phunk-vault-nftx", - "name": "PHUNK Vault (NFTX)", - "symbol": "phunk" - }, - { - "id": "phuture", - "name": "Phuture", - "symbol": "phtr" - }, - { - "id": "phux-governance-token", - "name": "PHUX Governance Token", - "symbol": "phux" - }, - { - "id": "physics", - "name": "Physics", - "symbol": "physics" - }, - { - "id": "physis", - "name": "Physis", - "symbol": "phy" - }, - { - "id": "pias", - "name": "PIAS", - "symbol": "pias" - }, - { - "id": "pibble", - "name": "Pibble", - "symbol": "pib" - }, - { - "id": "picasso", - "name": "Picasso", - "symbol": "pica" - }, - { - "id": "piccolo-inu", - "name": "Piccolo Inu", - "symbol": "pinu" - }, - { - "id": "pickle", - "name": "PICKLE", - "symbol": "pickle" - }, - { - "id": "pickle-finance", - "name": "Pickle Finance", - "symbol": "pickle" - }, - { - "id": "pick-or-rick", - "name": "Pick Or Rick", - "symbol": "rick" - }, - { - "id": "pier-protocol", - "name": "Pier Protocol", - "symbol": "pier" - }, - { - "id": "pigcatsol", - "name": "PigCat", - "symbol": "pc" - }, - { - "id": "pigcoin-2", - "name": "Pigcoin", - "symbol": "pig" - }, - { - "id": "pigeoncoin", - "name": "Pigeoncoin", - "symbol": "pgn" - }, - { - "id": "pigeon-in-yellow-boots", - "name": "Pigeon In Yellow Boots", - "symbol": "pigeon" - }, - { - "id": "pigeon-park", - "name": "Pigeon Park", - "symbol": "pgenz" - }, - { - "id": "pig-finance", - "name": "Pig Finance", - "symbol": "pig" - }, - { - "id": "piggy-bank-2", - "name": "Piggy Bank", - "symbol": "piggy" - }, - { - "id": "pig-inu", - "name": "Pig Inu", - "symbol": "piginu" - }, - { - "id": "pikaboss", - "name": "Pikaboss", - "symbol": "pika" - }, - { - "id": "pikachu", - "name": "Pika", - "symbol": "pika" - }, - { - "id": "pikamoon", - "name": "Pikamoon", - "symbol": "pika" - }, - { - "id": "pika-protocol", - "name": "Pika Protocol", - "symbol": "pika" - }, - { - "id": "pikaster", - "name": "Metaland Shares", - "symbol": "mls" - }, - { - "id": "pillar", - "name": "Pillar", - "symbol": "plr" - }, - { - "id": "pilot", - "name": "Pilot", - "symbol": "ptd" - }, - { - "id": "pilotcoin", - "name": "PILOTCOIN", - "symbol": "ptc" - }, - { - "id": "pine", - "name": "Pine", - "symbol": "pine" - }, - { - "id": "pineapple-owl", - "name": "Pineapple Owl", - "symbol": "pineowl" - }, - { - "id": "pi-network-iou", - "name": "Pi Network", - "symbol": "pi" - }, - { - "id": "pingu", - "name": "PINGU", - "symbol": "noot noot" - }, - { - "id": "pingu-exchange", - "name": "Pingu Exchange", - "symbol": "pingu" - }, - { - "id": "pinjam-kava", - "name": "Pinjam.Kava", - "symbol": "pinkav" - }, - { - "id": "pinkmoon", - "name": "PinkMoon", - "symbol": "pinkm" - }, - { - "id": "pinksale", - "name": "PinkSale", - "symbol": "pinksale" - }, - { - "id": "pinky-the-snail", - "name": "Pinky The Snail", - "symbol": "snail" - }, - { - "id": "pintswap", - "name": "PintSwap", - "symbol": "pint" - }, - { - "id": "pintu-token", - "name": "Pintu", - "symbol": "ptu" - }, - { - "id": "pion", - "name": "Pion", - "symbol": "pion" - }, - { - "id": "pip", - "name": "PIP", - "symbol": "pip" - }, - { - "id": "pip-2", - "name": "PIP", - "symbol": "pip" - }, - { - "id": "pipi-the-cat", - "name": "pipi the cat", - "symbol": "pipi" - }, - { - "id": "pi-protocol", - "name": "Pi Protocol", - "symbol": "pip" - }, - { - "id": "piratecash", - "name": "PirateCash", - "symbol": "pirate" - }, - { - "id": "pirate-chain", - "name": "Pirate Chain", - "symbol": "arrr" - }, - { - "id": "piratecoin", - "name": "PirateCoin", - "symbol": "piratecoin\u2620" - }, - { - "id": "pirate-dice", - "name": "Pirate Dice", - "symbol": "booty" - }, - { - "id": "piratera", - "name": "Piratera", - "symbol": "pira" - }, - { - "id": "pirate-x-pirate", - "name": "Pirate x Pirate", - "symbol": "pxp" - }, - { - "id": "pirb", - "name": "PIRB", - "symbol": "pirb" - }, - { - "id": "pirichain", - "name": "Pirichain", - "symbol": "piri" - }, - { - "id": "pisscoin", - "name": "Pisscoin", - "symbol": "piss" - }, - { - "id": "pitbull", - "name": "Pitbull", - "symbol": "pit" - }, - { - "id": "pitch-fxs", - "name": "Pitch FXS", - "symbol": "pitchfxs" - }, - { - "id": "piteas", - "name": "Piteas", - "symbol": "pts" - }, - { - "id": "piuai", - "name": "PiuAi", - "symbol": "pai" - }, - { - "id": "pivn", - "name": "PIVN", - "symbol": "pivn" - }, - { - "id": "pivx", - "name": "PIVX", - "symbol": "pivx" - }, - { - "id": "pixel-2", - "name": "Pixel", - "symbol": "$pixe" - }, - { - "id": "pixel-battle", - "name": "Pixel Battle", - "symbol": "pwc" - }, - { - "id": "pixelisland", - "name": "Pixelisland", - "symbol": "pixl" - }, - { - "id": "pixelpotus", - "name": "PixelPotus", - "symbol": "pxl" - }, - { - "id": "pixels", - "name": "Pixels", - "symbol": "pixel" - }, - { - "id": "pixelverse", - "name": "PixelVerse", - "symbol": "pixel" - }, - { - "id": "pixer-eternity", - "name": "Pixer Eternity", - "symbol": "pxt" - }, - { - "id": "pixie", - "name": "Pixie", - "symbol": "pix" - }, - { - "id": "pixiu-finance", - "name": "Pixiu Finance", - "symbol": "pixiu" - }, - { - "id": "pizabrc", - "name": "PIZA (Ordinals)", - "symbol": "piza" - }, - { - "id": "pizon", - "name": "Pizon", - "symbol": "pzt" - }, - { - "id": "pizza-game", - "name": "Pizza Game", - "symbol": "pizza" - }, - { - "id": "pizza-gram", - "name": "Pizza Gram", - "symbol": "pizza" - }, - { - "id": "pkey", - "name": "Pkey", - "symbol": "pkey" - }, - { - "id": "pkt", - "name": "PKT", - "symbol": "pkt" - }, - { - "id": "place-war", - "name": "PlaceWar Governance", - "symbol": "place" - }, - { - "id": "plan-blui", - "name": "Plan Blui", - "symbol": "pblui" - }, - { - "id": "planetcats", - "name": "PlanetCats", - "symbol": "catcoin" - }, - { - "id": "planet-finance", - "name": "Planet Finance", - "symbol": "aqua" - }, - { - "id": "planet-hares", - "name": "Planet Hares", - "symbol": "hac" - }, - { - "id": "planet-mojo", - "name": "Planet Mojo", - "symbol": "mojo" - }, - { - "id": "planet-sandbox", - "name": "Planet Sandbox", - "symbol": "psb" - }, - { - "id": "planet-token", - "name": "Planet Token", - "symbol": "planet" - }, - { - "id": "planetwatch", - "name": "PlanetWatch", - "symbol": "planets" - }, - { - "id": "plankton", - "name": "Plankton", - "symbol": "plnk" - }, - { - "id": "planktos", - "name": "Planktos", - "symbol": "plank" - }, - { - "id": "planq", - "name": "Planq", - "symbol": "plq" - }, - { - "id": "plant-vs-undead-token", - "name": "Plant vs Undead", - "symbol": "pvu" - }, - { - "id": "plasma-finance", - "name": "Plasma Finance", - "symbol": "ppay" - }, - { - "id": "plastichero", - "name": "PlasticHero", - "symbol": "pth" - }, - { - "id": "plastiks", - "name": "Plastiks", - "symbol": "plastik" - }, - { - "id": "plata-network", - "name": "Plata Network", - "symbol": "plata" - }, - { - "id": "platform-of-meme-coins", - "name": "Platform of meme coins", - "symbol": "payu" - }, - { - "id": "platincoin", - "name": "PlatinCoin", - "symbol": "plc" - }, - { - "id": "platinx", - "name": "PlatinX", - "symbol": "ptx" - }, - { - "id": "platon-network", - "name": "PlatON Network", - "symbol": "lat" - }, - { - "id": "platypus-finance", - "name": "Platypus Finance", - "symbol": "ptp" - }, - { - "id": "platypus-usd", - "name": "Platypus USD", - "symbol": "usp" - }, - { - "id": "playa3ull-games-2", - "name": "PLAYA3ULL GAMES", - "symbol": "3ull" - }, - { - "id": "playbux", - "name": "Playbux", - "symbol": "pbux" - }, - { - "id": "playcent", - "name": "Playcent", - "symbol": "pcnt" - }, - { - "id": "playchip", - "name": "PlayChip", - "symbol": "pla" - }, - { - "id": "playdapp", - "name": "PlayDapp", - "symbol": "pda" - }, - { - "id": "player-2", - "name": "Player 2", - "symbol": "deo" - }, - { - "id": "playermon", - "name": "Playermon", - "symbol": "pym" - }, - { - "id": "playfi", - "name": "PlayFi", - "symbol": "playfi" - }, - { - "id": "playgame", - "name": "PlayGame", - "symbol": "pxg" - }, - { - "id": "playground-waves-floor-index", - "name": "Playground Waves Floor Index", - "symbol": "waves" - }, - { - "id": "play-kingdom", - "name": "Play Kingdom", - "symbol": "pkt" - }, - { - "id": "playnity", - "name": "PlayNity", - "symbol": "ply" - }, - { - "id": "playpad", - "name": "PlayPad", - "symbol": "ppad" - }, - { - "id": "play-to-create", - "name": "Play To Create", - "symbol": "drn" - }, - { - "id": "playzap", - "name": "PlayZap", - "symbol": "pzp" - }, - { - "id": "plaza-dao", - "name": "Plaza DAO", - "symbol": "plaz" - }, - { - "id": "plc-ultima", - "name": "PLC Ultima", - "symbol": "plcu" - }, - { - "id": "plc-ultima-classic", - "name": "PLC Ultima Classic", - "symbol": "plcuc" - }, - { - "id": "plearn", - "name": "PLEARN", - "symbol": "pln" - }, - { - "id": "pleasure-coin", - "name": "Pleasure Coin", - "symbol": "nsfw" - }, - { - "id": "pleb", - "name": "Pleb", - "symbol": "pleb" - }, - { - "id": "plebbit", - "name": "Plebbit", - "symbol": "pleb" - }, - { - "id": "pleb-token", - "name": "PLEB Token", - "symbol": "pleb" - }, - { - "id": "plebz", - "name": "Plebz", - "symbol": "pleb" - }, - { - "id": "plenty-dao", - "name": "Plenty DeFi", - "symbol": "plenty" - }, - { - "id": "plenty-ply", - "name": "Plenty PLY", - "symbol": "ply" - }, - { - "id": "plex", - "name": "PLEX", - "symbol": "plex" - }, - { - "id": "plexus-app", - "name": "PLEXUS", - "symbol": "plx" - }, - { - "id": "plgnet", - "name": "PL^Gnet", - "symbol": "plug" - }, - { - "id": "plink-cat", - "name": "Plink Cat", - "symbol": "plink" - }, - { - "id": "plotx", - "name": "PlotX", - "symbol": "plot" - }, - { - "id": "plsjones", - "name": "plsJONES", - "symbol": "plsjones" - }, - { - "id": "plug-chain", - "name": "Plug Chain", - "symbol": "pc" - }, - { - "id": "plugin", - "name": "Plugin", - "symbol": "pli" - }, - { - "id": "plug-power-ai", - "name": "Plug Power AI", - "symbol": "ppai" - }, - { - "id": "plumpy-dragons", - "name": "PLUMPY DRAGONS", - "symbol": "loong" - }, - { - "id": "plums", - "name": "PLUMS", - "symbol": "plums" - }, - { - "id": "pluton", - "name": "Pluton", - "symbol": "plu" - }, - { - "id": "plutonian-dao", - "name": "Plutonian DAO", - "symbol": "pld" - }, - { - "id": "plutus-arb", - "name": "Plutus ARB", - "symbol": "plsarb" - }, - { - "id": "plutusdao", - "name": "PlutusDAO", - "symbol": "pls" - }, - { - "id": "plutus-dpx", - "name": "Plutus DPX", - "symbol": "plsdpx" - }, - { - "id": "plutus-rdnt", - "name": "Plutus RDNT", - "symbol": "plsrdnt" - }, - { - "id": "plvglp", - "name": "plvGLP", - "symbol": "plvglp" - }, - { - "id": "plxyer", - "name": "Plxyer", - "symbol": "plxy" - }, - { - "id": "plz-come-back-to-eth", - "name": "PLZ COME BACK TO ETH", - "symbol": "plz" - }, - { - "id": "pmg-coin", - "name": "PMG Coin", - "symbol": "pmg" - }, - { - "id": "pmxx", - "name": "People\u2019s Money PMXX", - "symbol": "pmxx" - }, - { - "id": "pnear", - "name": "pNEAR", - "symbol": "pnear" - }, - { - "id": "pnetwork", - "name": "pNetwork", - "symbol": "pnt" - }, - { - "id": "pnpcoin", - "name": "PNPCoin", - "symbol": "pnpc" - }, - { - "id": "pnut", - "name": "Pnut", - "symbol": "pnut" - }, - { - "id": "poc-blockchain", - "name": "POC Blockchain", - "symbol": "poc" - }, - { - "id": "pocketcoin", - "name": "Pocketcoin", - "symbol": "pkoin" - }, - { - "id": "pocket-network", - "name": "Pocket Network", - "symbol": "pokt" - }, - { - "id": "pocket-watcher-bot", - "name": "Pocket Watcher Bot", - "symbol": "pocket" - }, - { - "id": "pocoland", - "name": "Pocoland", - "symbol": "poco" - }, - { - "id": "podfast", - "name": "PodFast", - "symbol": "$fast" - }, - { - "id": "pod-finance", - "name": "Pod Finance", - "symbol": "pod" - }, - { - "id": "poet", - "name": "Po.et", - "symbol": "poe" - }, - { - "id": "pogai", - "name": "POGAI", - "symbol": "pogai" - }, - { - "id": "poglana", - "name": "Poglana", - "symbol": "pog" - }, - { - "id": "pointpay", - "name": "PointPay", - "symbol": "pxp" - }, - { - "id": "points", - "name": "Points", - "symbol": "points" - }, - { - "id": "points-on-solana", - "name": "Points on Solana", - "symbol": "points" - }, - { - "id": "poison-finance", - "name": "Poison Finance", - "symbol": "poi$on" - }, - { - "id": "pokedx", - "name": "PokeDX", - "symbol": "pdx" - }, - { - "id": "pokegrok", - "name": "PokeGROK", - "symbol": "pokegrok" - }, - { - "id": "poken", - "name": "Poken", - "symbol": "pkn" - }, - { - "id": "pokeplay-token", - "name": "PokePlay Token", - "symbol": "ppc" - }, - { - "id": "poker-chads", - "name": "Poker Chads", - "symbol": "pkc" - }, - { - "id": "pokerfi", - "name": "PokerFi", - "symbol": "pokerfi" - }, - { - "id": "poko", - "name": "POKO", - "symbol": "poko" - }, - { - "id": "polar", - "name": "POLAR", - "symbol": "polar" - }, - { - "id": "polar-bear-2026", - "name": "Polar Bear 2026", - "symbol": "\u043e\u0439\u043e\u0439\u043e\u0439\u043e\u0439\u043e\u0439" - }, - { - "id": "polaris-share", - "name": "Polaris Share", - "symbol": "pola" - }, - { - "id": "polar-shares", - "name": "Polar Shares", - "symbol": "spolar" - }, - { - "id": "polar-sync", - "name": "Polar Sync", - "symbol": "polar" - }, - { - "id": "polar-token", - "name": "Polaris Finance Polar", - "symbol": "polar" - }, - { - "id": "poldo", - "name": "Poldo", - "symbol": "poldo" - }, - { - "id": "polimec", - "name": "Polimec", - "symbol": "plmc" - }, - { - "id": "polinate", - "name": "Polinate", - "symbol": "poli" - }, - { - "id": "polis", - "name": "Polis", - "symbol": "polis" - }, - { - "id": "polkabridge", - "name": "PolkaBridge", - "symbol": "pbr" - }, - { - "id": "polka-city", - "name": "Polkacity", - "symbol": "polc" - }, - { - "id": "polkadex", - "name": "Polkadex", - "symbol": "pdex" - }, - { - "id": "polkadot", - "name": "Polkadot", - "symbol": "dot" - }, - { - "id": "polkafoundry", - "name": "Red Kite", - "symbol": "pkf" - }, - { - "id": "polkagold", - "name": "Polkagold", - "symbol": "pgold" - }, - { - "id": "polkamarkets", - "name": "Polkamarkets", - "symbol": "polk" - }, - { - "id": "polkapet-world", - "name": "PolkaPet World", - "symbol": "pets" - }, - { - "id": "polkaplay", - "name": "NftyPlay", - "symbol": "polo" - }, - { - "id": "polkarare", - "name": "Polkarare", - "symbol": "prare" - }, - { - "id": "polkastarter", - "name": "Polkastarter", - "symbol": "pols" - }, - { - "id": "polkaswap", - "name": "Polkaswap", - "symbol": "pswap" - }, - { - "id": "polkawar", - "name": "PolkaWar", - "symbol": "pwar" - }, - { - "id": "polker", - "name": "Polker", - "symbol": "pkr" - }, - { - "id": "pollen", - "name": "Pollen", - "symbol": "pln" - }, - { - "id": "pollux-coin", - "name": "Pollux Coin", - "symbol": "pox" - }, - { - "id": "polly", - "name": "Polly Finance", - "symbol": "polly" - }, - { - "id": "polly-defi-nest", - "name": "Polly DeFi Nest", - "symbol": "ndefi" - }, - { - "id": "polter-finance", - "name": "Polter.finance", - "symbol": "polter" - }, - { - "id": "polycat-finance", - "name": "Polycat Finance", - "symbol": "fish" - }, - { - "id": "polychain-monsters", - "name": "Polychain Monsters", - "symbol": "pmon" - }, - { - "id": "polycub", - "name": "PolyCub", - "symbol": "polycub" - }, - { - "id": "polydoge", - "name": "PolyDoge", - "symbol": "polydoge" - }, - { - "id": "polygame", - "name": "Polygame", - "symbol": "pgem" - }, - { - "id": "polygamma", - "name": "PolyGamma Finance", - "symbol": "gamma" - }, - { - "id": "polygen", - "name": "Polygen", - "symbol": "pgen" - }, - { - "id": "polygod", - "name": "PolyGod", - "symbol": "gull" - }, - { - "id": "polygold", - "name": "PolyGold", - "symbol": "polygold" - }, - { - "id": "polygon-bridged-busd-polygon", - "name": "Polygon Bridged BUSD (Polygon)", - "symbol": "busd" - }, - { - "id": "polygon-bridged-usdt-polygon", - "name": "Polygon Bridged USDT (Polygon)", - "symbol": "usdt" - }, - { - "id": "polygon-ecosystem-token", - "name": "Polygon Ecosystem Token", - "symbol": "pol" - }, - { - "id": "polygonfarm-finance", - "name": "PolygonFarm Finance", - "symbol": "spade" - }, - { - "id": "polygon-hbd", - "name": "Polygon HBD", - "symbol": "phbd" - }, - { - "id": "polygon-hermez-bridged-usdc-polygon-zkevm", - "name": "Polygon Hermez Bridged USDC (Polygon zkEVM)", - "symbol": "usdc" - }, - { - "id": "polygon-hermez-bridged-usdt-polygon-zkevm", - "name": "Polygon Hermez Bridged USDT (Polygon zkEVM)", - "symbol": "usdt" - }, - { - "id": "polygon-star", - "name": "Polygon Star", - "symbol": "pos" - }, - { - "id": "polyhedra-network", - "name": "Polyhedra Network", - "symbol": "zk" - }, - { - "id": "polylastic", - "name": "Polylastic", - "symbol": "polx" - }, - { - "id": "polylauncher", - "name": "Polylauncher", - "symbol": "angel" - }, - { - "id": "polymath", - "name": "Polymath", - "symbol": "poly" - }, - { - "id": "polymesh", - "name": "Polymesh", - "symbol": "polyx" - }, - { - "id": "polypad", - "name": "PolyPad", - "symbol": "polypad" - }, - { - "id": "poly-peg-mdex", - "name": "Poly-Peg Mdex", - "symbol": "hmdx" - }, - { - "id": "polypup", - "name": "PolyPup", - "symbol": "pup" - }, - { - "id": "polyshark-finance", - "name": "PolyShark Finance", - "symbol": "shark" - }, - { - "id": "polyshield", - "name": "PolyShield", - "symbol": "shi3ld" - }, - { - "id": "polysport-finance", - "name": "Polysport Finance", - "symbol": "pls" - }, - { - "id": "polyswarm", - "name": "PolySwarm", - "symbol": "nct" - }, - { - "id": "polytrade", - "name": "Polytrade", - "symbol": "trade" - }, - { - "id": "polywhale", - "name": "Polywhale", - "symbol": "krill" - }, - { - "id": "polywolf", - "name": "Polywolf", - "symbol": "moon" - }, - { - "id": "polyyeld-token", - "name": "PolyYeld", - "symbol": "yeld" - }, - { - "id": "polyyield-token", - "name": "PolyYield", - "symbol": "yield" - }, - { - "id": "polyzap", - "name": "PolyZap", - "symbol": "pzap" - }, - { - "id": "pomerium-community-meme-t", - "name": "Pomerium Community Meme Token", - "symbol": "pme" - }, - { - "id": "pomerium-ecosystem", - "name": "Pomerium Ecosystem Token", - "symbol": "pmg" - }, - { - "id": "pom-governance", - "name": "POM Governance", - "symbol": "pomg" - }, - { - "id": "poncho", - "name": "Poncho", - "symbol": "poncho" - }, - { - "id": "pond-coin", - "name": "PondCoin", - "symbol": "pndc" - }, - { - "id": "pong-heroes", - "name": "Pong Heroes", - "symbol": "pong" - }, - { - "id": "ponk", - "name": "Ponk", - "symbol": "ponk" - }, - { - "id": "ponke", - "name": "PONKE", - "symbol": "ponke" - }, - { - "id": "ponke-bnb", - "name": "Ponke BNB", - "symbol": "ponke bnb" - }, - { - "id": "ponkefork", - "name": "PonkeFork", - "symbol": "porke" - }, - { - "id": "pontoon", - "name": "Pontoon", - "symbol": "toon" - }, - { - "id": "ponyhawk", - "name": "PONYHAWK", - "symbol": "skate" - }, - { - "id": "ponzy", - "name": "Ponzy", - "symbol": "ponzy" - }, - { - "id": "pooch", - "name": "Pooch", - "symbol": "pooch" - }, - { - "id": "poocoin", - "name": "PooCoin", - "symbol": "poocoin" - }, - { - "id": "poodle", - "name": "Poodl", - "symbol": "poodl" - }, - { - "id": "poodl-exchange-token", - "name": "Poodl Exchange Token", - "symbol": "pet" - }, - { - "id": "poo-doge", - "name": "Poo Doge", - "symbol": "poo doge" - }, - { - "id": "poofcash", - "name": "PoofCash", - "symbol": "poof" - }, - { - "id": "pooh", - "name": "POOH", - "symbol": "pooh" - }, - { - "id": "poollotto-finance", - "name": "Poollotto.finance", - "symbol": "plt" - }, - { - "id": "pool-partyyy", - "name": "Pool Partyyy", - "symbol": "party" - }, - { - "id": "poolshark", - "name": "Poolshark", - "symbol": "fin" - }, - { - "id": "pooltogether", - "name": "PoolTogether", - "symbol": "pool" - }, - { - "id": "pooltogether-prize-usdc", - "name": "PoolTogether Prize USD Coin", - "symbol": "pusdc.e" - }, - { - "id": "pooltogether-prize-weth-aave", - "name": "PoolTogether Prize WETH - Aave", - "symbol": "pweth" - }, - { - "id": "poolz-finance", - "name": "Poolz Finance [OLD]", - "symbol": "poolz" - }, - { - "id": "poolz-finance-2", - "name": "Poolz Finance", - "symbol": "poolx" - }, - { - "id": "poopcoin-poop", - "name": "Poopcoin", - "symbol": "poop" - }, - { - "id": "poopsicle", - "name": "Poopsicle", - "symbol": "poop" - }, - { - "id": "poorpleb", - "name": "PoorPleb", - "symbol": "pp" - }, - { - "id": "popcat", - "name": "Popcat", - "symbol": "popcat" - }, - { - "id": "pop-chest-token", - "name": "POP Network", - "symbol": "pop" - }, - { - "id": "popcoin", - "name": "Popcoin", - "symbol": "pop" - }, - { - "id": "popcorn", - "name": "Popcorn", - "symbol": "pop" - }, - { - "id": "popdog", - "name": "POPDOG", - "symbol": "popdog" - }, - { - "id": "popecoin", - "name": "PopeCoin", - "symbol": "pope" - }, - { - "id": "popkon", - "name": "POPKON", - "symbol": "popk" - }, - { - "id": "popo-pepe-s-dog", - "name": "Popo, Pepe's Dog", - "symbol": "$popo" - }, - { - "id": "pop-token", - "name": "Pop Token", - "symbol": "ppt" - }, - { - "id": "populous", - "name": "Populous", - "symbol": "ppt" - }, - { - "id": "pora-ai", - "name": "PORA AI", - "symbol": "pora" - }, - { - "id": "pork", - "name": "Pork", - "symbol": "pork" - }, - { - "id": "pornrocket", - "name": "PornRocket", - "symbol": "pornrocket" - }, - { - "id": "port3-network", - "name": "Port3 Network", - "symbol": "port3" - }, - { - "id": "port-ai", - "name": "Port AI", - "symbol": "poai" - }, - { - "id": "portal-2", - "name": "Portal", - "symbol": "portal" - }, - { - "id": "port-finance", - "name": "Port Finance", - "symbol": "port" - }, - { - "id": "portion", - "name": "Portion", - "symbol": "prt" - }, - { - "id": "portugal-national-team-fan-token", - "name": "Portugal National Team Fan Token", - "symbol": "por" - }, - { - "id": "portuma", - "name": "Portuma", - "symbol": "por" - }, - { - "id": "porygon", - "name": "Porygon", - "symbol": "pory" - }, - { - "id": "pos-32", - "name": "PoS-32", - "symbol": "pos32" - }, - { - "id": "poseidollar", - "name": "Poseidollar", - "symbol": "pdo" - }, - { - "id": "poseidollar-shares", - "name": "Poseidollar Shares", - "symbol": "psh" - }, - { - "id": "poseidon-2", - "name": "Poseidon", - "symbol": "psdn" - }, - { - "id": "poseidon-finance", - "name": "Poseidon Finance", - "symbol": "psdn" - }, - { - "id": "poseidon-ocean", - "name": "Poseidon OCEAN", - "symbol": "psdnocean" - }, - { - "id": "position-token", - "name": "Position", - "symbol": "posi" - }, - { - "id": "possum", - "name": "Possum", - "symbol": "psm" - }, - { - "id": "posthuman", - "name": "POSTHUMAN", - "symbol": "phmn" - }, - { - "id": "post-tech", - "name": "Post.Tech", - "symbol": "post" - }, - { - "id": "pot", - "name": "POT", - "symbol": "pot" - }, - { - "id": "potato", - "name": "Potato", - "symbol": "potato" - }, - { - "id": "potato-2", - "name": "POTATO", - "symbol": "tato" - }, - { - "id": "potato-3", - "name": "Potato", - "symbol": "potato" - }, - { - "id": "potcoin", - "name": "Potcoin", - "symbol": "pot" - }, - { - "id": "potfolio", - "name": "Potfolio", - "symbol": "ptf" - }, - { - "id": "potion-404", - "name": "Potion 404", - "symbol": "p404" - }, - { - "id": "potion-exchange", - "name": "Potion Exchange", - "symbol": "ptn" - }, - { - "id": "potter-predator", - "name": "Potter Predator", - "symbol": "voldemort" - }, - { - "id": "pou", - "name": "Pou", - "symbol": "pou" - }, - { - "id": "poundtoken", - "name": "poundtoken", - "symbol": "gbpt" - }, - { - "id": "powblocks", - "name": "PowBlocks", - "symbol": "xpb" - }, - { - "id": "power", - "name": "MaxxChain", - "symbol": "pwr" - }, - { - "id": "powercity-earn-protocol", - "name": "POWERCITY Earn Protocol", - "symbol": "earn" - }, - { - "id": "powercity-pxdc", - "name": "PXDC", - "symbol": "pxdc" - }, - { - "id": "powercity-watt", - "name": "POWERCITY WATT", - "symbol": "watt" - }, - { - "id": "powercoin", - "name": "PWR Coin", - "symbol": "pwr" - }, - { - "id": "powerful", - "name": "Powerful", - "symbol": "pwfl" - }, - { - "id": "power-ledger", - "name": "Powerledger", - "symbol": "powr" - }, - { - "id": "power-nodes", - "name": "Power Nodes", - "symbol": "power" - }, - { - "id": "power-of-deep-ocean", - "name": "Power Of Deep Ocean", - "symbol": "podo" - }, - { - "id": "power-token", - "name": "Power Token", - "symbol": "pwr" - }, - { - "id": "powertrade-fuel", - "name": "PowerTrade Fuel", - "symbol": "ptf" - }, - { - "id": "powswap", - "name": "Powswap", - "symbol": "pow" - }, - { - "id": "ppizza", - "name": "PPizza", - "symbol": "ppizza" - }, - { - "id": "pqx", - "name": "PQX", - "symbol": "pqx" - }, - { - "id": "pracht-pay", - "name": "Pracht Pay", - "symbol": "prachtpay" - }, - { - "id": "prcy-coin", - "name": "PRivaCY Coin", - "symbol": "prcy" - }, - { - "id": "pre", - "name": "Pre", - "symbol": "pre" - }, - { - "id": "precipitate-ai", - "name": "Precipitate.ai", - "symbol": "rain" - }, - { - "id": "predictcoin", - "name": "Predictcoin", - "symbol": "pred" - }, - { - "id": "prema", - "name": "PREMA", - "symbol": "prmx" - }, - { - "id": "preme-token", - "name": "PREME Token", - "symbol": "preme" - }, - { - "id": "premia", - "name": "Premia", - "symbol": "premia" - }, - { - "id": "preon-finance-star", - "name": "Preon Finance STAR", - "symbol": "star" - }, - { - "id": "preon-star", - "name": "Star", - "symbol": "star" - }, - { - "id": "pre-retogeum", - "name": "Pre-Retogeum", - "symbol": "prtg" - }, - { - "id": "presearch", - "name": "Presearch", - "symbol": "pre" - }, - { - "id": "president-ron-desantis", - "name": "President Ron DeSantis", - "symbol": "ron" - }, - { - "id": "pricetools", - "name": "Pricetools", - "symbol": "ptools" - }, - { - "id": "primal-b3099cd0-995a-4311-80d5-9c133153b38e", - "name": "PRIMAL", - "symbol": "primal" - }, - { - "id": "primas", - "name": "Primas", - "symbol": "pst" - }, - { - "id": "primate", - "name": "Primate", - "symbol": "primate" - }, - { - "id": "prime", - "name": "Prime", - "symbol": "d2d" - }, - { - "id": "primecoin", - "name": "Primecoin", - "symbol": "xpm" - }, - { - "id": "prime-numbers", - "name": "Prime Numbers Ecosystem", - "symbol": "prnt" - }, - { - "id": "prime-staked-eth", - "name": "Prime Staked ETH", - "symbol": "primeeth" - }, - { - "id": "primex-finance", - "name": "Primex Finance", - "symbol": "pmx" - }, - { - "id": "print-cash", - "name": "Print Cash", - "symbol": "$cash" - }, - { - "id": "print-mining", - "name": "Print Mining", - "symbol": "print" - }, - { - "id": "print-protocol", - "name": "Print Protocol", - "symbol": "print" - }, - { - "id": "print-the-pepe", - "name": "Print The Pepe", - "symbol": "$pp" - }, - { - "id": "prism", - "name": "Prism", - "symbol": "prism" - }, - { - "id": "prism-2", - "name": "Prism", - "symbol": "prism" - }, - { - "id": "prisma-governance-token", - "name": "Prisma Governance Token", - "symbol": "prisma" - }, - { - "id": "prisma-mkusd", - "name": "Prisma mkUSD", - "symbol": "mkusd" - }, - { - "id": "privacoin", - "name": "PrivaCoin", - "symbol": "prvc" - }, - { - "id": "privago-ai", - "name": "Privago AI", - "symbol": "pvgo" - }, - { - "id": "privapp-network", - "name": "Privapp Network", - "symbol": "bpriva" - }, - { - "id": "privateum", - "name": "Privateum Global", - "symbol": "pri" - }, - { - "id": "private-wrapped-ix", - "name": "Private Wrapped IX", - "symbol": "pix" - }, - { - "id": "private-wrapped-wrose", - "name": "Private Wrapped wROSE", - "symbol": "pwrose" - }, - { - "id": "privcy", - "name": "PRiVCY", - "symbol": "priv" - }, - { - "id": "prizm", - "name": "Prizm", - "symbol": "pzm" - }, - { - "id": "prm-token", - "name": "PRM Token", - "symbol": "prm" - }, - { - "id": "prnt", - "name": "PRNT", - "symbol": "prnt" - }, - { - "id": "probinex", - "name": "Probinex", - "symbol": "pbx" - }, - { - "id": "probit-exchange", - "name": "Probit", - "symbol": "prob" - }, - { - "id": "procyon-coon-coin", - "name": "Procyon Coon Coin", - "symbol": "prco" - }, - { - "id": "prodigy-bot", - "name": "Prodigy Bot", - "symbol": "pro" - }, - { - "id": "produce-ai", - "name": "Produce AI", - "symbol": "prai" - }, - { - "id": "professional-fighters-league-fan-token", - "name": "Professional Fighters League Fan Token", - "symbol": "pfl" - }, - { - "id": "profit-blue", - "name": "Profit Blue", - "symbol": "blue" - }, - { - "id": "project-dojo", - "name": "Project Dojo", - "symbol": "dojo" - }, - { - "id": "project-galaxy", - "name": "Galxe", - "symbol": "gal" - }, - { - "id": "project-oasis", - "name": "ProjectOasis", - "symbol": "oasis" - }, - { - "id": "project-quantum", - "name": "Project Quantum", - "symbol": "qbit" - }, - { - "id": "project-with", - "name": "Project WITH", - "symbol": "wiken" - }, - { - "id": "projectx", - "name": "Xillion", - "symbol": "xil" - }, - { - "id": "projectx-d78dc2ae-9c8a-45ed-bd6a-22291d9d0812", - "name": "ProjectX", - "symbol": "prox" - }, - { - "id": "project-xeno", - "name": "PROJECT XENO", - "symbol": "gxe" - }, - { - "id": "project-zed-zed", - "name": "ZED", - "symbol": "zed" - }, - { - "id": "prometeus", - "name": "Prom", - "symbol": "prom" - }, - { - "id": "prometheum-prodigy", - "name": "Prometheum Prodigy", - "symbol": "pmpy" - }, - { - "id": "prometheus-token", - "name": "Peak Finance Prometheus", - "symbol": "pro" - }, - { - "id": "promptide", - "name": "PromptIDE", - "symbol": "promptide" - }, - { - "id": "proof-of-anon", - "name": "Proof of Anon", - "symbol": "prf" - }, - { - "id": "proof-of-gorila", - "name": "Proof Of Gorila", - "symbol": "pog" - }, - { - "id": "proof-of-liquidity", - "name": "Proof Of Liquidity", - "symbol": "pol" - }, - { - "id": "proof-of-pepe", - "name": "Proof Of Pepe", - "symbol": "pop" - }, - { - "id": "proof-platform", - "name": "PROOF Platform", - "symbol": "proof" - }, - { - "id": "propbase", - "name": "Propbase", - "symbol": "props" - }, - { - "id": "propchain", - "name": "Propchain", - "symbol": "propc" - }, - { - "id": "propel-token", - "name": "Propel", - "symbol": "pel" - }, - { - "id": "property-blockchain-trade", - "name": "PROPERTY BLOCKCHAIN TRADE", - "symbol": "pbt" - }, - { - "id": "prophet", - "name": "Prophet", - "symbol": "pro" - }, - { - "id": "prophet-2", - "name": "Prophet", - "symbol": "prophet" - }, - { - "id": "props", - "name": "Props", - "symbol": "props" - }, - { - "id": "propy", - "name": "Propy", - "symbol": "pro" - }, - { - "id": "prosper", - "name": "Prosper", - "symbol": "pros" - }, - { - "id": "prospera-tax-credit", - "name": "Prospera Tax Credit", - "symbol": "ptc" - }, - { - "id": "prostarter-token", - "name": "ProStarter", - "symbol": "prot" - }, - { - "id": "protectorate-protocol", - "name": "Protectorate Protocol", - "symbol": "prtc" - }, - { - "id": "proteo-defi", - "name": "Proteo DeFi", - "symbol": "proteo" - }, - { - "id": "protocon", - "name": "Protocon", - "symbol": "pen" - }, - { - "id": "protofi", - "name": "Protofi", - "symbol": "proto" - }, - { - "id": "proto-gyro-dollar", - "name": "Proto Gyro Dollar", - "symbol": "p-gyd" - }, - { - "id": "proton", - "name": "XPR Network", - "symbol": "xpr" - }, - { - "id": "proton-coin", - "name": "Proton Coin", - "symbol": "pro" - }, - { - "id": "proton-loan", - "name": "Loan Protocol", - "symbol": "loan" - }, - { - "id": "proton-project", - "name": "Proton Project", - "symbol": "prtn" - }, - { - "id": "proton-protocol", - "name": "Proton Protocol", - "symbol": "proton" - }, - { - "id": "provenance-blockchain", - "name": "Provenance Blockchain", - "symbol": "hash" - }, - { - "id": "proxima", - "name": "Proxima", - "symbol": "prox" - }, - { - "id": "proximax", - "name": "Sirius Chain", - "symbol": "xpx" - }, - { - "id": "proxy", - "name": "Proxy", - "symbol": "prxy" - }, - { - "id": "psi-gate", - "name": "PSI Gate", - "symbol": "psi/acc" - }, - { - "id": "pstake-finance", - "name": "pSTAKE Finance", - "symbol": "pstake" - }, - { - "id": "pstake-staked-bnb", - "name": "pSTAKE Staked BNB", - "symbol": "stkbnb" - }, - { - "id": "pstake-staked-dydx", - "name": "pSTAKE Staked DYDX", - "symbol": "stkdydx" - }, - { - "id": "pstake-staked-osmo", - "name": "pSTAKE Staked OSMO", - "symbol": "stkosmo" - }, - { - "id": "pstake-staked-stars", - "name": "pSTAKE Staked STARS", - "symbol": "stkstars" - }, - { - "id": "psyche", - "name": "Psyche", - "symbol": "usd1" - }, - { - "id": "psyop", - "name": "PSYOP", - "symbol": "psyop" - }, - { - "id": "psyoptions", - "name": "PsyFi", - "symbol": "psy" - }, - { - "id": "pterosaur-finance", - "name": "Pterosaur Finance", - "symbol": "pter" - }, - { - "id": "ptokens-btc", - "name": "pTokens BTC [OLD]", - "symbol": "pbtc" - }, - { - "id": "ptokens-btc-2", - "name": "pTokens BTC", - "symbol": "pbtc" - }, - { - "id": "ptokens-ore", - "name": "ORE Network", - "symbol": "ore" - }, - { - "id": "pube-finance", - "name": "Pube Finance", - "symbol": "pube" - }, - { - "id": "pubgame-coin", - "name": "PubGame Coin", - "symbol": "pgc" - }, - { - "id": "publc", - "name": "PUBLC", - "symbol": "publx" - }, - { - "id": "public-meme-token", - "name": "Public Meme Token", - "symbol": "pmt" - }, - { - "id": "public-mint", - "name": "Public Mint", - "symbol": "mint" - }, - { - "id": "public-violet-fybo", - "name": "Public Violet Fybo", - "symbol": "pvfybo" - }, - { - "id": "publish", - "name": "PUBLISH", - "symbol": "news" - }, - { - "id": "pudgy-cat", - "name": "Pudgy Cat", - "symbol": "$pudgy" - }, - { - "id": "pufeth", - "name": "pufETH", - "symbol": "pufeth" - }, - { - "id": "puff", - "name": "PUFF", - "symbol": "puff" - }, - { - "id": "puffin-global", - "name": "Puffin Global", - "symbol": "puffin" - }, - { - "id": "puff-the-dragon", - "name": "Puff The Dragon", - "symbol": "puff" - }, - { - "id": "pug-ai", - "name": "PUG AI", - "symbol": "pugai" - }, - { - "id": "puggleverse", - "name": "PuggleVerse", - "symbol": "puggle" - }, - { - "id": "pullix", - "name": "Pullix", - "symbol": "plx" - }, - { - "id": "pulsara", - "name": "Pulsara", - "symbol": "sara" - }, - { - "id": "pulsar-coin", - "name": "Pulsar Coin", - "symbol": "plsr" - }, - { - "id": "pulseai", - "name": "PulseAI", - "symbol": "pulse" - }, - { - "id": "pulse-ai", - "name": "Pulse AI", - "symbol": "pulse" - }, - { - "id": "pulsebitcoin", - "name": "PulseBitcoin", - "symbol": "plsb" - }, - { - "id": "pulsebitcoin-pulsechain", - "name": "PulseBitcoin (PulseChain)", - "symbol": "plsb" - }, - { - "id": "pulsechain", - "name": "PulseChain", - "symbol": "pls" - }, - { - "id": "pulsechain-flow", - "name": "Pulsechain FLOW", - "symbol": "flow" - }, - { - "id": "pulsecrypt", - "name": "PulseCrypt", - "symbol": "plscx" - }, - { - "id": "pulsedoge", - "name": "PulseDoge", - "symbol": "pulsedoge" - }, - { - "id": "pulsefolio", - "name": "PulseFolio", - "symbol": "pulse" - }, - { - "id": "pulse-inu", - "name": "Pulse Inu", - "symbol": "pinu" - }, - { - "id": "pulse-inu-2", - "name": "Pulse Inu", - "symbol": "pinu" - }, - { - "id": "pulselaunch", - "name": "PulseLaunch", - "symbol": "launch" - }, - { - "id": "pulseln", - "name": "PulseLN", - "symbol": "pln" - }, - { - "id": "pulsepad", - "name": "PulsePad", - "symbol": "plspad" - }, - { - "id": "pulsepot", - "name": "PulsePot", - "symbol": "plsp" - }, - { - "id": "pulsereflections", - "name": "PulseReflections", - "symbol": "prs" - }, - { - "id": "pulse-token", - "name": "PulseMarkets", - "symbol": "pulse" - }, - { - "id": "pulsetrailerpark", - "name": "PulseTrailerPark", - "symbol": "ptp" - }, - { - "id": "pulsex", - "name": "PulseX", - "symbol": "plsx" - }, - { - "id": "pulsex-incentive-token", - "name": "PulseX Incentive Token", - "symbol": "inc" - }, - { - "id": "puma", - "name": "Puma", - "symbol": "puma" - }, - { - "id": "pumapay", - "name": "PumaPay", - "symbol": "pma" - }, - { - "id": "puml-better-health", - "name": "PUML Better Health", - "symbol": "puml" - }, - { - "id": "pumlx", - "name": "PUMLx", - "symbol": "pumlx" - }, - { - "id": "pump", - "name": "Pump", - "symbol": "pump" - }, - { - "id": "pump-it-up", - "name": "Pump It Up", - "symbol": "pumpit" - }, - { - "id": "pumpkin", - "name": "Pumpkin", - "symbol": "pump" - }, - { - "id": "pumpkin-2", - "name": "Pumpkin", - "symbol": "pumpkin" - }, - { - "id": "pumpkin-monster-token", - "name": "Pumpkin Monster Token", - "symbol": "pum" - }, - { - "id": "pumpopoly", - "name": "Pumpopoly", - "symbol": "pumpopoly" - }, - { - "id": "pumpr", - "name": "Pumpr", - "symbol": "pumpr" - }, - { - "id": "punchy-token", - "name": "Punchy Token", - "symbol": "punch" - }, - { - "id": "pundi-x", - "name": "Pundi X [OLD]", - "symbol": "npxs" - }, - { - "id": "pundi-x-2", - "name": "Pundi X", - "symbol": "pundix" - }, - { - "id": "pundi-x-purse", - "name": "Pundi X PURSE", - "symbol": "purse" - }, - { - "id": "punk-2", - "name": "PunkCity", - "symbol": "punk" - }, - { - "id": "punkai", - "name": "PunkAI", - "symbol": "punkai" - }, - { - "id": "punkko", - "name": "Punkko", - "symbol": "pun" - }, - { - "id": "punk-sat", - "name": "Punk Sat", - "symbol": "psat" - }, - { - "id": "punks-comic-pow", - "name": "POW", - "symbol": "pow" - }, - { - "id": "punkswap", - "name": "PunkSwap", - "symbol": "punk" - }, - { - "id": "punk-vault-nftx", - "name": "Punk Vault (NFTX)", - "symbol": "punk" - }, - { - "id": "punk-x", - "name": "Punk X", - "symbol": "punk" - }, - { - "id": "pup-doge", - "name": "Pup Doge", - "symbol": "pupdoge" - }, - { - "id": "puppets-arts-2", - "name": "Puppets Coin", - "symbol": "puppets" - }, - { - "id": "pups-ordinals", - "name": "PUPS (Ordinals)", - "symbol": "pups" - }, - { - "id": "purchasa", - "name": "Purchasa", - "symbol": "pca" - }, - { - "id": "purefi", - "name": "PureFi", - "symbol": "ufi" - }, - { - "id": "puriever", - "name": "Puriever", - "symbol": "pure" - }, - { - "id": "purple-ai", - "name": "Purple AI", - "symbol": "pai" - }, - { - "id": "purpose", - "name": "Purpose", - "symbol": "prps" - }, - { - "id": "pusd", - "name": "PUSD_Polyquity", - "symbol": "pusd" - }, - { - "id": "pushd", - "name": "PUSHD", - "symbol": "pushd" - }, - { - "id": "pussy-financial", - "name": "Pussy Financial", - "symbol": "pussy" - }, - { - "id": "pusuke-inu", - "name": "Pusuke Inu", - "symbol": "pusuke" - }, - { - "id": "putincoin", - "name": "PUTinCoin", - "symbol": "put" - }, - { - "id": "puzzle-swap", - "name": "Puzzle Swap", - "symbol": "puzzle" - }, - { - "id": "pvc-meta", - "name": "PVC META", - "symbol": "pvc" - }, - { - "id": "pvp", - "name": "PVP", - "symbol": "pvp" - }, - { - "id": "pwrcash", - "name": "PWRCASH", - "symbol": "pwrc" - }, - { - "id": "pylons-bedrock", - "name": "Pylons Bedrock", - "symbol": "rock" - }, - { - "id": "pymedao", - "name": "PymeDAO", - "symbol": "pyme" - }, - { - "id": "pyrin", - "name": "Pyrin", - "symbol": "pyi" - }, - { - "id": "pyro-2", - "name": "Pyro", - "symbol": "pyro" - }, - { - "id": "pyrrho-defi", - "name": "Pyrrho", - "symbol": "pyo" - }, - { - "id": "pyth-network", - "name": "Pyth Network", - "symbol": "pyth" - }, - { - "id": "qanplatform", - "name": "QANplatform", - "symbol": "qanx" - }, - { - "id": "qash", - "name": "QASH", - "symbol": "qash" - }, - { - "id": "qatargrow", - "name": "QatarGrow", - "symbol": "qatargrow" - }, - { - "id": "qatom", - "name": "qATOM", - "symbol": "qatom" - }, - { - "id": "qawalla", - "name": "Qawalla", - "symbol": "qwla" - }, - { - "id": "qbao", - "name": "Qbao", - "symbol": "qbt" - }, - { - "id": "qcash", - "name": "Qcash", - "symbol": "qc" - }, - { - "id": "qchain-qdt", - "name": "QChain QDT", - "symbol": "qdt" - }, - { - "id": "qi-dao", - "name": "Qi Dao", - "symbol": "qi" - }, - { - "id": "qie", - "name": "QI Blockchain", - "symbol": "qie" - }, - { - "id": "qiswap", - "name": "QiSwap", - "symbol": "qi" - }, - { - "id": "qitchain-network", - "name": "Qitcoin", - "symbol": "qtc" - }, - { - "id": "qitmeer-network", - "name": "Qitmeer Network", - "symbol": "meer" - }, - { - "id": "qiusd", - "name": "QiUSD", - "symbol": "qiusd" - }, - { - "id": "qjuno", - "name": "qJUNO", - "symbol": "qjuno" - }, - { - "id": "qlindo", - "name": "QLINDO", - "symbol": "qlindo" - }, - { - "id": "qlink", - "name": "Kepple [OLD]", - "symbol": "qlc" - }, - { - "id": "qmall", - "name": "Qmall", - "symbol": "qmall" - }, - { - "id": "qmcoin", - "name": "QMCoin", - "symbol": "qmc" - }, - { - "id": "qna3-ai", - "name": "QnA3.AI", - "symbol": "gpt" - }, - { - "id": "qoodo", - "name": "Qoodo", - "symbol": "qdo" - }, - { - "id": "qopro", - "name": "QORPO WORLD", - "symbol": "qorpo" - }, - { - "id": "qosmo", - "name": "qOSMO", - "symbol": "qosmo" - }, - { - "id": "qowatt", - "name": "QoWatt", - "symbol": "qwt" - }, - { - "id": "qqq-tokenized-stock-defichain", - "name": "Invesco QQQ Trust Defichain", - "symbol": "dqqq" - }, - { - "id": "qredit", - "name": "Qredit", - "symbol": "xqr" - }, - { - "id": "qredo", - "name": "Open Custody Protocol", - "symbol": "open" - }, - { - "id": "qregen", - "name": "qREGEN", - "symbol": "qregen" - }, - { - "id": "qrkita-token", - "name": "Qrkita", - "symbol": "qrt" - }, - { - "id": "qro", - "name": "Querio", - "symbol": "qro" - }, - { - "id": "qrolli", - "name": "Qrolli", - "symbol": "qr" - }, - { - "id": "qsomm", - "name": "qSOMM", - "symbol": "qsomm" - }, - { - "id": "qstar", - "name": "QSTAR", - "symbol": "q*" - }, - { - "id": "qstar-2", - "name": "qSTAR", - "symbol": "qstar" - }, - { - "id": "qtoken", - "name": "Qtoken", - "symbol": "qto" - }, - { - "id": "qtum", - "name": "Qtum", - "symbol": "qtum" - }, - { - "id": "quack", - "name": "QUACK", - "symbol": "quack" - }, - { - "id": "quacks", - "name": "QUACKS", - "symbol": "quacks" - }, - { - "id": "quack-token", - "name": "Quack Token", - "symbol": "quack" - }, - { - "id": "quadency", - "name": "Quadency Token", - "symbol": "quad" - }, - { - "id": "quadrant-protocol", - "name": "Quadrant Protocol", - "symbol": "equad" - }, - { - "id": "quant-ai", - "name": "Quant AI", - "symbol": "qai" - }, - { - "id": "quantfury", - "name": "Quantfury", - "symbol": "qtf" - }, - { - "id": "quantic-protocol", - "name": "Quantic Protocol", - "symbol": "quantic" - }, - { - "id": "quantixai", - "name": "QuantixAI", - "symbol": "qai" - }, - { - "id": "quantland", - "name": "Quantland", - "symbol": "qlt" - }, - { - "id": "quant-network", - "name": "Quant", - "symbol": "qnt" - }, - { - "id": "quantoz-eurd", - "name": "Quantoz EURD", - "symbol": "eurd" - }, - { - "id": "quantum-chaos", - "name": "Quantum Chaos", - "symbol": "chaos" - }, - { - "id": "quantum-hub", - "name": "QUANTUM HUB", - "symbol": "quantum" - }, - { - "id": "quantum-resistant-ledger", - "name": "Quantum Resistant Ledger", - "symbol": "qrl" - }, - { - "id": "quantum-tech", - "name": "Quantum Tech", - "symbol": "qua" - }, - { - "id": "quantum-x", - "name": "Quantum X", - "symbol": "qtx" - }, - { - "id": "quark", - "name": "Quark", - "symbol": "qrk" - }, - { - "id": "quark-chain", - "name": "QuarkChain", - "symbol": "qkc" - }, - { - "id": "quark-protocol-staked-kuji", - "name": "Quark Protocol Staked KUJI", - "symbol": "qckuji" - }, - { - "id": "quark-protocol-staked-mnta", - "name": "Quark Protocol Staked MNTA", - "symbol": "qcmnta" - }, - { - "id": "quartz", - "name": "Quartz", - "symbol": "qtz" - }, - { - "id": "quasacoin", - "name": "Quasacoin", - "symbol": "qua" - }, - { - "id": "quasar-2", - "name": "Quasar", - "symbol": "qsr" - }, - { - "id": "qubic-finance", - "name": "Qubic Finance", - "symbol": "qubic" - }, - { - "id": "qubic-network", - "name": "Qubic", - "symbol": "qubic" - }, - { - "id": "qubit", - "name": "Qubit", - "symbol": "qbt" - }, - { - "id": "quebecoin", - "name": "Quebecoin", - "symbol": "qbc" - }, - { - "id": "queenbee-2", - "name": "QueenBee", - "symbol": "qube" - }, - { - "id": "quick", - "name": "Quickswap [OLD]", - "symbol": "quick" - }, - { - "id": "quick-intel", - "name": "Quick Intel", - "symbol": "qkntl" - }, - { - "id": "quicksilver", - "name": "Quicksilver", - "symbol": "qck" - }, - { - "id": "quickswap", - "name": "Quickswap", - "symbol": "quick" - }, - { - "id": "quidax", - "name": "Quidax", - "symbol": "qdx" - }, - { - "id": "quidd", - "name": "Quidd", - "symbol": "quidd" - }, - { - "id": "quincoin", - "name": "QUINCOIN", - "symbol": "qin" - }, - { - "id": "quint", - "name": "Quint", - "symbol": "quint" - }, - { - "id": "quipuswap-governance-token", - "name": "QuipuSwap Governance", - "symbol": "quipu" - }, - { - "id": "quiverx", - "name": "QuiverX", - "symbol": "qrx" - }, - { - "id": "quiztok", - "name": "Quiztok", - "symbol": "qtcon" - }, - { - "id": "quorium", - "name": "Quorium", - "symbol": "qgold" - }, - { - "id": "qwoyn", - "name": "Qwoyn", - "symbol": "qwoyn" - }, - { - "id": "r", - "name": "R", - "symbol": "r" - }, - { - "id": "r34p", - "name": "R34P", - "symbol": "r34p" - }, - { - "id": "r4re", - "name": "R4RE", - "symbol": "r4re" - }, - { - "id": "rabbitcoin-exchange", - "name": "RabbitCoin Exchange", - "symbol": "rabbit" - }, - { - "id": "rabbit-finance", - "name": "Rabbit Finance", - "symbol": "rabbit" - }, - { - "id": "rabbit-games", - "name": "Rabbit Games", - "symbol": "rait" - }, - { - "id": "rabbit-inu", - "name": "Rabbit Inu", - "symbol": "rbit" - }, - { - "id": "rabbitking", - "name": "RabbitKing", - "symbol": "rb" - }, - { - "id": "rabbitswap", - "name": "RabbitSwap", - "symbol": "rabbit" - }, - { - "id": "rabbit-wallet", - "name": "Rabbit Wallet", - "symbol": "rab" - }, - { - "id": "rabbitx", - "name": "RabbitX", - "symbol": "rbx" - }, - { - "id": "rabi", - "name": "Rabi", - "symbol": "rabi" - }, - { - "id": "rabity-finance", - "name": "Rabity Finance", - "symbol": "rbf" - }, - { - "id": "racefi", - "name": "RaceFi", - "symbol": "racefi" - }, - { - "id": "race-kingdom", - "name": "Race Kingdom", - "symbol": "atoz" - }, - { - "id": "racex", - "name": "RaceX", - "symbol": "racex" - }, - { - "id": "racing-club-fan-token", - "name": "Racing Club Fan Token", - "symbol": "racing" - }, - { - "id": "racket", - "name": "Racket", - "symbol": "$rkt" - }, - { - "id": "racoon", - "name": "Racoon", - "symbol": "rac" - }, - { - "id": "rad", - "name": "RAD", - "symbol": "rad" - }, - { - "id": "rada-foundation", - "name": "RADA Foundation", - "symbol": "rada" - }, - { - "id": "radar", - "name": "Radar", - "symbol": "radar" - }, - { - "id": "radial-finance", - "name": "Radial Finance", - "symbol": "rdl" - }, - { - "id": "radiant", - "name": "Radiant", - "symbol": "rxd" - }, - { - "id": "radiant-capital", - "name": "Radiant Capital", - "symbol": "rdnt" - }, - { - "id": "radicle", - "name": "Radworks", - "symbol": "rad" - }, - { - "id": "radio-caca", - "name": "Radio Caca", - "symbol": "raca" - }, - { - "id": "radioshack", - "name": "RadioShack", - "symbol": "radio" - }, - { - "id": "radium", - "name": "Validity", - "symbol": "val" - }, - { - "id": "radix", - "name": "Radix", - "symbol": "xrd" - }, - { - "id": "radpie", - "name": "Radpie", - "symbol": "rdp" - }, - { - "id": "rae-token", - "name": "Receive Access Ecosystem", - "symbol": "rae" - }, - { - "id": "raft", - "name": "Raft", - "symbol": "raft" - }, - { - "id": "rage-fan", - "name": "Rage.Fan", - "symbol": "rage" - }, - { - "id": "rage-on-wheels", - "name": "Rage On Wheels", - "symbol": "row" - }, - { - "id": "ragingelonmarscoin", - "name": "RagingElonMarsCoin", - "symbol": "dogecoin" - }, - { - "id": "rai", - "name": "Rai Reflex Index", - "symbol": "rai" - }, - { - "id": "raiden-network", - "name": "Raiden Network", - "symbol": "rdn" - }, - { - "id": "raider-aurum", - "name": "Raider Aurum", - "symbol": "aurum" - }, - { - "id": "raidsharksbot", - "name": "RaidSharksBot", - "symbol": "sharx" - }, - { - "id": "raid-token", - "name": "Raid", - "symbol": "raid" - }, - { - "id": "rai-finance", - "name": "RAI Finance", - "symbol": "sofi" - }, - { - "id": "railgun", - "name": "Railgun", - "symbol": "rail" - }, - { - "id": "rainbow-bridged-usdc-aurora", - "name": "Rainbow Bridged USDC (Aurora)", - "symbol": "usdc" - }, - { - "id": "rainbow-bridged-usdt-aurora", - "name": "Rainbow Bridged USDT (Aurora)", - "symbol": "usdt.e" - }, - { - "id": "rainbowtoken", - "name": "RainbowToken", - "symbol": "rainbowtoken" - }, - { - "id": "rainbow-token", - "name": "HaloDAO", - "symbol": "rnbw" - }, - { - "id": "rainbow-token-2", - "name": "Rainbow Token", - "symbol": "rbw" - }, - { - "id": "rain-coin", - "name": "Rain Coin", - "symbol": "rain" - }, - { - "id": "rainicorn", - "name": "Raini", - "symbol": "$raini" - }, - { - "id": "raini-studios-token", - "name": "Raini Studios Token", - "symbol": "rst" - }, - { - "id": "rainmaker-games", - "name": "Rainmaker Games", - "symbol": "rain" - }, - { - "id": "rai-yvault", - "name": "RAI yVault", - "symbol": "yvrai" - }, - { - "id": "rake-com", - "name": "Rake.com", - "symbol": "rake" - }, - { - "id": "rake-finance", - "name": "Rake Finance", - "symbol": "rak" - }, - { - "id": "rake-in", - "name": "Rake.in", - "symbol": "rake" - }, - { - "id": "rally-2", - "name": "Rally", - "symbol": "rly" - }, - { - "id": "rally-solana", - "name": "Rally (Solana)", - "symbol": "srly" - }, - { - "id": "rambox", - "name": "Rambox", - "symbol": "ram" - }, - { - "id": "ramestta", - "name": "Ramestta", - "symbol": "rama" - }, - { - "id": "ramifi", - "name": "Ramifi Protocol", - "symbol": "ram" - }, - { - "id": "ramp", - "name": "RAMP [OLD]", - "symbol": "ramp" - }, - { - "id": "ramses-exchange", - "name": "Ramses Exchange", - "symbol": "ram" - }, - { - "id": "rand", - "name": "Rand", - "symbol": "rnd" - }, - { - "id": "random", - "name": "Random", - "symbol": "rndm" - }, - { - "id": "rangers-fan-token", - "name": "Rangers Fan Token", - "symbol": "rft" - }, - { - "id": "rangers-protocol-gas", - "name": "Rangers Protocol Gas", - "symbol": "rpg" - }, - { - "id": "rankerdao", - "name": "RankerDao", - "symbol": "ranker" - }, - { - "id": "raphael", - "name": "Raphael", - "symbol": "raphael" - }, - { - "id": "rapids", - "name": "Rapids", - "symbol": "rpd" - }, - { - "id": "raptor", - "name": "Raptor", - "symbol": "bible" - }, - { - "id": "raptoreum", - "name": "Raptoreum", - "symbol": "rtm" - }, - { - "id": "raptor-finance-2", - "name": "Raptor Finance", - "symbol": "rptr" - }, - { - "id": "rare-ball-shares", - "name": "Rare Ball Potion", - "symbol": "rbp" - }, - { - "id": "rare-fnd", - "name": "Rare FND", - "symbol": "fnd" - }, - { - "id": "rarible", - "name": "RARI", - "symbol": "rari" - }, - { - "id": "rari-governance-token", - "name": "Rari Governance", - "symbol": "rgt" - }, - { - "id": "rasper-ai", - "name": "Rasper.ai", - "symbol": "rasp" - }, - { - "id": "ratcoin", - "name": "RatCoin", - "symbol": "rat" - }, - { - "id": "rate", - "name": "Rate", - "symbol": "rate" - }, - { - "id": "ratecoin", - "name": "Ratecoin", - "symbol": "xra" - }, - { - "id": "ratio", - "name": "RATIO", - "symbol": "ratio" - }, - { - "id": "ratio-finance", - "name": "Ratio Protocol", - "symbol": "ratio" - }, - { - "id": "rats", - "name": "Rats", - "symbol": "rats" - }, - { - "id": "ratsbase", - "name": "RatsBase", - "symbol": "rats" - }, - { - "id": "ratsdao", - "name": "ratsDAO", - "symbol": "rat" - }, - { - "id": "ravelin-finance", - "name": "Ravelin Finance", - "symbol": "rav" - }, - { - "id": "ravencoin", - "name": "Ravencoin", - "symbol": "rvn" - }, - { - "id": "ravencoin-classic", - "name": "Ravencoin Classic", - "symbol": "rvc" - }, - { - "id": "rave-nft", - "name": "RAVE NFT", - "symbol": "rave" - }, - { - "id": "raven-protocol", - "name": "Raven Protocol", - "symbol": "raven" - }, - { - "id": "rawblock", - "name": "RawBlock", - "symbol": "rwb" - }, - { - "id": "raw-chicken-experiment", - "name": "Raw Chicken Experiment", - "symbol": "rce" - }, - { - "id": "raydium", - "name": "Raydium", - "symbol": "ray" - }, - { - "id": "rayn", - "name": "RAYN", - "symbol": "aktio" - }, - { - "id": "ray-network", - "name": "Ray Network", - "symbol": "xray" - }, - { - "id": "rays", - "name": "RAYS", - "symbol": "rays" - }, - { - "id": "raze-network", - "name": "Raze Network", - "symbol": "raze" - }, - { - "id": "razor-network", - "name": "Razor Network", - "symbol": "razor" - }, - { - "id": "rb-finance", - "name": "RB Finance", - "symbol": "rb" - }, - { - "id": "rb-share", - "name": "RB Share", - "symbol": "rbx" - }, - { - "id": "rbx-token", - "name": "RBX", - "symbol": "rbx" - }, - { - "id": "rc-celta-de-vigo-fan-token", - "name": "RC Celta de Vigo Fan Token", - "symbol": "cft" - }, - { - "id": "rcd-espanyol-fan-token", - "name": "RCD Espanyol Fan Token", - "symbol": "enft" - }, - { - "id": "r-dee-protocol", - "name": "R-DEE Protocol", - "symbol": "rdgx" - }, - { - "id": "reach", - "name": "Reach", - "symbol": "$reach" - }, - { - "id": "reaction", - "name": "Reaction", - "symbol": "rtc" - }, - { - "id": "reactorfusion", - "name": "ReactorFusion", - "symbol": "rf" - }, - { - "id": "readfi", - "name": "ReadFi", - "symbol": "rdf" - }, - { - "id": "reaktor", - "name": "Reaktor", - "symbol": "rkr" - }, - { - "id": "realaliensenjoyingliquidity", - "name": "RealAliensEnjoyingLiquidity", - "symbol": "$rael" - }, - { - "id": "real-big-coin", - "name": "Real BIG Coin", - "symbol": "rbc" - }, - { - "id": "realfevr", - "name": "RealFevr", - "symbol": "fevr" - }, - { - "id": "realfinance-network", - "name": "Realfinance Network", - "symbol": "refi" - }, - { - "id": "realio-network", - "name": "Realio", - "symbol": "rio" - }, - { - "id": "realis-network", - "name": "Realis Network", - "symbol": "lis" - }, - { - "id": "reality-metaverse", - "name": "Reality Metaverse", - "symbol": "rmv" - }, - { - "id": "reality-vr", - "name": "Reality VR", - "symbol": "rvr" - }, - { - "id": "reallink", - "name": "RealLink", - "symbol": "real" - }, - { - "id": "realm", - "name": "Realm", - "symbol": "realm" - }, - { - "id": "realmoneyworld", - "name": "RealMoneyWorld", - "symbol": "rmw" - }, - { - "id": "real-realm", - "name": "Real Realm", - "symbol": "real" - }, - { - "id": "real-smurf-cat", - "name": "Real Smurf Cat", - "symbol": "smurfcat" - }, - { - "id": "real-smurf-cat-2", - "name": "Real Smurf Cat-\u0448\u0430\u0439\u043b\u0443\u0448\u0430\u0439", - "symbol": "smurf" - }, - { - "id": "real-smurf-cat-bsc", - "name": "Real Smurf Cat BSC", - "symbol": "\u0448\u0430\u0439\u043b\u0443\u0448\u0430\u0439" - }, - { - "id": "real-sociedad-fan-token", - "name": "Real Sociedad Fan Token", - "symbol": "rso" - }, - { - "id": "real-strawberry-elephant", - "name": "Real Strawberry Elephant", - "symbol": "\u0635\u0628\u0627\u062d \u0627\u0644\u0641\u0631\u0648" - }, - { - "id": "real-tok", - "name": "REAL-TOK", - "symbol": "rlto" - }, - { - "id": "real-usd", - "name": "Real USD", - "symbol": "usdr" - }, - { - "id": "realvirm", - "name": "Realvirm", - "symbol": "rvm" - }, - { - "id": "real-world-abs", - "name": "Real World Abs", - "symbol": "rwa" - }, - { - "id": "real-world-assets", - "name": "Real World Assets", - "symbol": "rwa" - }, - { - "id": "realworldx", - "name": "RealWorldX", - "symbol": "rwx" - }, - { - "id": "realy-metaverse", - "name": "Realy Metaverse", - "symbol": "real" - }, - { - "id": "reapchain", - "name": "ReapChain", - "symbol": "reap" - }, - { - "id": "reaper-token", - "name": "Reaper", - "symbol": "reaper" - }, - { - "id": "rebase-base", - "name": "Rebase", - "symbol": "rebase" - }, - { - "id": "rebasechain", - "name": "ReBaseChain", - "symbol": "base" - }, - { - "id": "rebase-gg-irl", - "name": "Rebase GG IRL", - "symbol": "$irl" - }, - { - "id": "rebasing-tbt", - "name": "Rebasing TBT", - "symbol": "tbt" - }, - { - "id": "rebel-bots", - "name": "Rebel Bots", - "symbol": "rbls" - }, - { - "id": "rebel-bots-oil", - "name": "Rebel Bots Oil", - "symbol": "xoil" - }, - { - "id": "rebirth-protocol", - "name": "Rebirth Protocol", - "symbol": "rbh" - }, - { - "id": "reboot", - "name": "Reboot", - "symbol": "gg" - }, - { - "id": "reboot-world", - "name": "Reboot World", - "symbol": "rbt" - }, - { - "id": "rebus", - "name": "Rebus", - "symbol": "rebus" - }, - { - "id": "recast1", - "name": "Recast1", - "symbol": "r1" - }, - { - "id": "recharge", - "name": "Recharge", - "symbol": "rcg" - }, - { - "id": "recoverydao", - "name": "RecoveryDAO", - "symbol": "rec" - }, - { - "id": "recovery-right-token", - "name": "Recovery Right", - "symbol": "rrt" - }, - { - "id": "rectangle-finance", - "name": "Rectangle Finance", - "symbol": "rtg" - }, - { - "id": "rectime", - "name": "RecTime", - "symbol": "rtime" - }, - { - "id": "recycle-impact-world-association", - "name": "Recycle Impact World Association", - "symbol": "riwa" - }, - { - "id": "recycle-x", - "name": "Recycle-X", - "symbol": "rcx" - }, - { - "id": "red", - "name": "Red", - "symbol": "red" - }, - { - "id": "redacted", - "name": "Redacted", - "symbol": "btrfly" - }, - { - "id": "redancoin", - "name": "REDANCOIN", - "symbol": "redan" - }, - { - "id": "redbelly-network-token", - "name": "Redbelly Network Token", - "symbol": "rbnt" - }, - { - "id": "reddcoin", - "name": "Reddcoin", - "symbol": "rdd" - }, - { - "id": "reddit", - "name": "Reddit", - "symbol": "reddit" - }, - { - "id": "redemption-finance", - "name": "Redemption Finance", - "symbol": "rdmp" - }, - { - "id": "redemption-token", - "name": "Redemption Token", - "symbol": "rdtn" - }, - { - "id": "red-falcon", - "name": "Red Falcon", - "symbol": "rfn" - }, - { - "id": "redfeg", - "name": "RedFeg", - "symbol": "redfeg" - }, - { - "id": "redfireants", - "name": "redFireAnts", - "symbol": "rants" - }, - { - "id": "red-floki-ceo", - "name": "Red Floki CEO", - "symbol": "redflokiceo" - }, - { - "id": "redfox-labs-2", - "name": "RFOX", - "symbol": "rfox" - }, - { - "id": "red-hat-games", - "name": "Red Hat Games", - "symbol": "agame" - }, - { - "id": "redneckmountaindew", - "name": "RedneckMountainDew", - "symbol": "rmd" - }, - { - "id": "red-pepe", - "name": "Red Pepe", - "symbol": "redpepe" - }, - { - "id": "red-pepe-2", - "name": "Red Pepe", - "symbol": "rpepe" - }, - { - "id": "red-pill-2", - "name": "Red Pill", - "symbol": "rpill" - }, - { - "id": "red-ponzi-gud", - "name": "Red Ponzi Gud", - "symbol": "rpg" - }, - { - "id": "red-pulse", - "name": "Phoenix Global [OLD]", - "symbol": "phb" - }, - { - "id": "red-team", - "name": "Red Team", - "symbol": "red" - }, - { - "id": "red-the-mal", - "name": "Red The Mal", - "symbol": "red" - }, - { - "id": "red-token", - "name": "RED TOKEN", - "symbol": "red" - }, - { - "id": "reef", - "name": "Reef", - "symbol": "reef" - }, - { - "id": "reelfi", - "name": "ReelFi", - "symbol": "reelfi" - }, - { - "id": "reel-token", - "name": "Reel Token", - "symbol": "reelt" - }, - { - "id": "reental", - "name": "Reental", - "symbol": "rnt" - }, - { - "id": "refereum", - "name": "Refereum", - "symbol": "rfr" - }, - { - "id": "ref-finance", - "name": "Ref Finance", - "symbol": "ref" - }, - { - "id": "refinable", - "name": "Refinable", - "symbol": "fine" - }, - { - "id": "reflect-audit", - "name": "Reflect Audit", - "symbol": "ref" - }, - { - "id": "reflect-finance", - "name": "reflect.finance", - "symbol": "rfi" - }, - { - "id": "reflecto", - "name": "Reflecto", - "symbol": "rto" - }, - { - "id": "reflex", - "name": "Reflex", - "symbol": "rfx" - }, - { - "id": "reflexer-ungovernance-token", - "name": "Reflexer Ungovernance", - "symbol": "flx" - }, - { - "id": "refluid", - "name": "Refluid", - "symbol": "rld" - }, - { - "id": "refund", - "name": "Refund", - "symbol": "rfd" - }, - { - "id": "regen", - "name": "Regen", - "symbol": "regen" - }, - { - "id": "regent-coin", - "name": "Regent Coin", - "symbol": "regent" - }, - { - "id": "regularpresale", - "name": "RegularPresale", - "symbol": "regu" - }, - { - "id": "reign-of-terror", - "name": "Reign of Terror", - "symbol": "reign" - }, - { - "id": "rei-network", - "name": "REI Network", - "symbol": "rei" - }, - { - "id": "rejuve-ai", - "name": "Rejuve.AI", - "symbol": "rjv" - }, - { - "id": "rekt-04bbe51a-e290-450a-afb5-b2b43b80b20e", - "name": "REKT", - "symbol": "rekt" - }, - { - "id": "rektcoin", - "name": "$REKT", - "symbol": "rekt" - }, - { - "id": "rektskulls", - "name": "RektSkulls", - "symbol": "rekt" - }, - { - "id": "relation-native-token", - "name": "Relation Native Token", - "symbol": "rel" - }, - { - "id": "relay-token", - "name": "Relay Chain", - "symbol": "relay" - }, - { - "id": "releap", - "name": "Releap", - "symbol": "reap" - }, - { - "id": "relictumpro-genesis-token", - "name": "RelictumPro Genesis Token", - "symbol": "gtn" - }, - { - "id": "remme", - "name": "Remme", - "symbol": "rem" - }, - { - "id": "rena-finance", - "name": "RENA Finance", - "symbol": "rena" - }, - { - "id": "renbtc", - "name": "renBTC", - "symbol": "renbtc" - }, - { - "id": "rencom-network", - "name": "Rencom Network", - "symbol": "rnt" - }, - { - "id": "render-token", - "name": "Render", - "symbol": "rndr" - }, - { - "id": "renec", - "name": "RENEC", - "symbol": "renec" - }, - { - "id": "renegade", - "name": "Renegade", - "symbol": "rngd" - }, - { - "id": "renewable-energy", - "name": "Renewable Energy", - "symbol": "ret" - }, - { - "id": "renq-finance", - "name": "Renq Finance", - "symbol": "renq" - }, - { - "id": "rentai", - "name": "RentAI", - "symbol": "rent" - }, - { - "id": "rentberry", - "name": "Rentberry", - "symbol": "berry" - }, - { - "id": "rentible", - "name": "Rentible", - "symbol": "rnb" - }, - { - "id": "renzo-restaked-eth", - "name": "Renzo Restaked ETH", - "symbol": "ezeth" - }, - { - "id": "reon", - "name": "Reon", - "symbol": "reon" - }, - { - "id": "reptilianzuckerbidenbartcoin", - "name": "ReptilianZuckerBidenBartcoin", - "symbol": "bart" - }, - { - "id": "republic-credits", - "name": "Republic Credits", - "symbol": "rpc" - }, - { - "id": "republic-note", - "name": "Republic Note", - "symbol": "note" - }, - { - "id": "republic-protocol", - "name": "Ren", - "symbol": "ren" - }, - { - "id": "republik", - "name": "RepubliK", - "symbol": "rpk" - }, - { - "id": "request-network", - "name": "Request", - "symbol": "req" - }, - { - "id": "researchcoin", - "name": "ResearchCoin", - "symbol": "rsc" - }, - { - "id": "reserve-2", - "name": "Reserve", - "symbol": "rsrv" - }, - { - "id": "reserveblock", - "name": "ReserveBlock", - "symbol": "rbx" - }, - { - "id": "reserve-rights-token", - "name": "Reserve Rights", - "symbol": "rsr" - }, - { - "id": "rese-social", - "name": "Rese Social", - "symbol": "rese" - }, - { - "id": "reset", - "name": "MetaReset", - "symbol": "reset" - }, - { - "id": "resistance-dog", - "name": "Resistance Dog", - "symbol": "redo" - }, - { - "id": "resistance-duck", - "name": "Resistance Duck", - "symbol": "redu" - }, - { - "id": "resistance-girl", - "name": "Resistance Girl", - "symbol": "regi" - }, - { - "id": "resistor-ai", - "name": "Resistor AI", - "symbol": "tor" - }, - { - "id": "resource-protocol", - "name": "ReSource Protocol", - "symbol": "source" - }, - { - "id": "restaked-swell-eth", - "name": "Restaked Swell ETH", - "symbol": "rsweth" - }, - { - "id": "restake-finance", - "name": "Restake Finance", - "symbol": "rstk" - }, - { - "id": "retardio", - "name": "RETARDIO", - "symbol": "retardio" - }, - { - "id": "reth", - "name": "StaFi Staked ETH", - "symbol": "reth" - }, - { - "id": "reth2", - "name": "rETH2", - "symbol": "reth2" - }, - { - "id": "retherswap", - "name": "Retherswap", - "symbol": "rether" - }, - { - "id": "retik-finance", - "name": "Retik Finance", - "symbol": "retik" - }, - { - "id": "retire-on-sol", - "name": "Retire on Sol", - "symbol": "$retire" - }, - { - "id": "retrocraft", - "name": "RetroCraft", - "symbol": "retro" - }, - { - "id": "retro-finance", - "name": "Retro Finance", - "symbol": "retro" - }, - { - "id": "retro-finance-oretro", - "name": "Retro Finance oRETRO", - "symbol": "oretro" - }, - { - "id": "reunit-wallet", - "name": "Reunit Wallet", - "symbol": "reuni" - }, - { - "id": "rev3al", - "name": "REV3AL", - "symbol": "rev3l" - }, - { - "id": "revain", - "name": "Revain", - "symbol": "rev" - }, - { - "id": "revenant", - "name": "Revenant", - "symbol": "gamefi" - }, - { - "id": "revenue-coin", - "name": "Revenue Coin", - "symbol": "rvc" - }, - { - "id": "revepe", - "name": "REVEPE", - "symbol": "rev" - }, - { - "id": "reversal", - "name": "Reversal", - "symbol": "rvsl" - }, - { - "id": "revest-finance", - "name": "Revest Finance", - "symbol": "rvst" - }, - { - "id": "revhub", - "name": "Revhub", - "symbol": "revhub" - }, - { - "id": "revival-2", - "name": "REVIVAL", - "symbol": "revival" - }, - { - "id": "reviveeth", - "name": "ReviveEth", - "symbol": "revive" - }, - { - "id": "revoai", - "name": "revoAI", - "symbol": "revoai" - }, - { - "id": "revoland", - "name": "Revoland", - "symbol": "revo" - }, - { - "id": "revolotto", - "name": "Revolotto", - "symbol": "rvl" - }, - { - "id": "revolt-2-earn", - "name": "Revolt 2 Earn", - "symbol": "rvlt" - }, - { - "id": "revolutiongames", - "name": "RevolutionGames", - "symbol": "rvlng" - }, - { - "id": "revolve-games", - "name": "Revolve Games", - "symbol": "rpg" - }, - { - "id": "revomon-2", - "name": "Revomon", - "symbol": "revo" - }, - { - "id": "revswap", - "name": "Revswap", - "symbol": "rvs" - }, - { - "id": "revuto", - "name": "Revuto", - "symbol": "revu" - }, - { - "id": "revv", - "name": "REVV", - "symbol": "revv" - }, - { - "id": "reward-protocol", - "name": "Reward Protocol", - "symbol": "rewd" - }, - { - "id": "rex-2", - "name": "Rex", - "symbol": "rex" - }, - { - "id": "rex-token", - "name": "Rex", - "symbol": "xrx" - }, - { - "id": "rexx-coin", - "name": "Rexx Coin", - "symbol": "rexx" - }, - { - "id": "rezolut", - "name": "Rezolut", - "symbol": "zolt" - }, - { - "id": "rfk-coin", - "name": "RFK Coin", - "symbol": "rfkc" - }, - { - "id": "r-games", - "name": "R Games", - "symbol": "rgame" - }, - { - "id": "rhinofi", - "name": "Rhino.fi", - "symbol": "dvf" - }, - { - "id": "rho", - "name": "RHO", - "symbol": "rho" - }, - { - "id": "rho-token", - "name": "Rho", - "symbol": "rho" - }, - { - "id": "rhythm", - "name": "Rhythm", - "symbol": "rhythm" - }, - { - "id": "ribbit-2", - "name": "RIBBIT", - "symbol": "rbt" - }, - { - "id": "ribbit-meme", - "name": "Ribbit Meme", - "symbol": "ribbit" - }, - { - "id": "ribbon-finance", - "name": "Ribbon Finance", - "symbol": "rbn" - }, - { - "id": "ribus", - "name": "Ribus", - "symbol": "rib" - }, - { - "id": "riceswap", - "name": "RiceSwap", - "symbol": "rice" - }, - { - "id": "rich", - "name": "Rich", - "symbol": "rch" - }, - { - "id": "richai", - "name": "RichAI", - "symbol": "richai" - }, - { - "id": "richard", - "name": "Richard", - "symbol": "richard" - }, - { - "id": "richcity", - "name": "RichCity", - "symbol": "rich" - }, - { - "id": "richquack", - "name": "Rich Quack", - "symbol": "quack" - }, - { - "id": "rich-rabbit", - "name": "Rich Rabbit", - "symbol": "rabbit" - }, - { - "id": "ride_finance", - "name": "Rides Finance", - "symbol": "rides" - }, - { - "id": "ridotto", - "name": "Ridotto", - "symbol": "rdt" - }, - { - "id": "riecoin", - "name": "Riecoin", - "symbol": "ric" - }, - { - "id": "rifi-united", - "name": "RIFI United", - "symbol": "ru" - }, - { - "id": "rif-token", - "name": "RSK Infrastructure Framework", - "symbol": "rif" - }, - { - "id": "rigel-protocol", - "name": "Rigel Protocol", - "symbol": "rgp" - }, - { - "id": "riggers", - "name": "Riggers", - "symbol": "rig" - }, - { - "id": "rigoblock", - "name": "RigoBlock", - "symbol": "grg" - }, - { - "id": "rikeza", - "name": "RIKEZA", - "symbol": "rik" - }, - { - "id": "rikkei-finance", - "name": "Rikkei Finance", - "symbol": "rifi" - }, - { - "id": "riku", - "name": "RIKU", - "symbol": "riku" - }, - { - "id": "rilcoin", - "name": "Rilcoin", - "symbol": "ril" - }, - { - "id": "rillafi", - "name": "RillaFi", - "symbol": "rilla" - }, - { - "id": "rimaunangis", - "name": "RIMAUNANGIS", - "symbol": "rxt" - }, - { - "id": "ring-ai", - "name": "Ring AI", - "symbol": "ring" - }, - { - "id": "rinia-inu", - "name": "Rinia Inu", - "symbol": "rinia" - }, - { - "id": "rio-defi", - "name": "RioDeFi", - "symbol": "rfuel" - }, - { - "id": "riot-racers", - "name": "Riot Racers", - "symbol": "riot" - }, - { - "id": "ripae", - "name": "Ripae", - "symbol": "pae" - }, - { - "id": "ripio-credit-network", - "name": "Ripio Credit Network", - "symbol": "rcn" - }, - { - "id": "ripple", - "name": "XRP", - "symbol": "xrp" - }, - { - "id": "risecoin", - "name": "Risecoin", - "symbol": "rsc" - }, - { - "id": "rise-of-the-warbots-mmac", - "name": "Rise of the Warbots MMAC", - "symbol": "mmac" - }, - { - "id": "risitas", - "name": "Risitas (OLD)", - "symbol": "risita" - }, - { - "id": "risitas-2", - "name": "Risitas", - "symbol": "risita" - }, - { - "id": "risitas-coin", - "name": "Risitas Coin", - "symbol": "risita" - }, - { - "id": "ritestream", - "name": "ritestream", - "symbol": "rite" - }, - { - "id": "rito", - "name": "Rito", - "symbol": "rito" - }, - { - "id": "riverboat", - "name": "RiverBoat", - "symbol": "rib" - }, - { - "id": "riverex-welle", - "name": "Welle", - "symbol": "welle" - }, - { - "id": "rivusdao", - "name": "RivusDAO", - "symbol": "rivus" - }, - { - "id": "rizo", - "name": "Rizo", - "symbol": "rizo" - }, - { - "id": "rizon", - "name": "RIZON", - "symbol": "atolo" - }, - { - "id": "rizz", - "name": "RIZZ", - "symbol": "rizz" - }, - { - "id": "rizz-coin", - "name": "RIZZ Coin", - "symbol": "rizz" - }, - { - "id": "rmrk", - "name": "RMRK", - "symbol": "rmrk" - }, - { - "id": "roach-rally", - "name": "Roach Rally", - "symbol": "roach" - }, - { - "id": "roaland-core", - "name": "ROACORE", - "symbol": "roa" - }, - { - "id": "roaring-kitty", - "name": "Roaring Kitty", - "symbol": "roar" - }, - { - "id": "roaring-kitty-sol", - "name": "Roaring Kitty (Sol)", - "symbol": "stonks" - }, - { - "id": "roasthimjim", - "name": "Jim", - "symbol": "jim" - }, - { - "id": "robin-hood", - "name": "Robin Hood", - "symbol": "hood" - }, - { - "id": "robinos", - "name": "Robinos [OLD]", - "symbol": "rbn" - }, - { - "id": "robinos-2", - "name": "Robinos", - "symbol": "rbn" - }, - { - "id": "robodoge-coin", - "name": "RoboDoge Coin", - "symbol": "robodoge" - }, - { - "id": "robofi-token", - "name": "RoboFi", - "symbol": "vics" - }, - { - "id": "robo-inu-finance", - "name": "Robo Inu Finance", - "symbol": "rbif" - }, - { - "id": "robonomics-network", - "name": "Robonomics Network", - "symbol": "xrt" - }, - { - "id": "robotrade", - "name": "Robotrade", - "symbol": "robo" - }, - { - "id": "robust-token", - "name": "Robust", - "symbol": "rbt" - }, - { - "id": "rocifi", - "name": "RociFi", - "symbol": "roci" - }, - { - "id": "rock", - "name": "ROCK", - "symbol": "rock" - }, - { - "id": "rock-2", - "name": "Rock", - "symbol": "rock" - }, - { - "id": "rock-dao", - "name": "ROCK DAO", - "symbol": "rock" - }, - { - "id": "rocketcoin-2", - "name": "RocketCoin", - "symbol": "rocket" - }, - { - "id": "rocket-pool", - "name": "Rocket Pool", - "symbol": "rpl" - }, - { - "id": "rocket-pool-eth", - "name": "Rocket Pool ETH", - "symbol": "reth" - }, - { - "id": "rocket-raccoon", - "name": "Rocket Raccoon", - "symbol": "roc" - }, - { - "id": "rocketswap", - "name": "RocketSwap", - "symbol": "rckt" - }, - { - "id": "rocketverse", - "name": "RocketVerse [OLD]", - "symbol": "rkv" - }, - { - "id": "rocketverse-2", - "name": "RocketVerse", - "symbol": "rkv" - }, - { - "id": "rocketx", - "name": "RocketX Exchange", - "symbol": "rvf" - }, - { - "id": "rocki", - "name": "Rocki", - "symbol": "rocki" - }, - { - "id": "rockocoin", - "name": "RockoCoin", - "symbol": "rocko" - }, - { - "id": "rockstar", - "name": "Rockstar", - "symbol": "rr" - }, - { - "id": "rockswap", - "name": "Rockswap", - "symbol": "rock" - }, - { - "id": "rocky", - "name": "Rocky", - "symbol": "rocky" - }, - { - "id": "rocky-the-dog", - "name": "Rocky the dog", - "symbol": "rocky" - }, - { - "id": "roco-finance", - "name": "Roco Finance", - "symbol": "roco" - }, - { - "id": "rod-ai", - "name": "ROD.AI", - "symbol": "rodai" - }, - { - "id": "rodeo-finance", - "name": "Rodeo Finance", - "symbol": "rdo" - }, - { - "id": "rogin-ai", - "name": "ROGin AI", - "symbol": "rog" - }, - { - "id": "rogue-mav", - "name": "Rogue MAV", - "symbol": "rmav" - }, - { - "id": "roguex", - "name": "Roguex", - "symbol": "rox" - }, - { - "id": "roko-network", - "name": "Roko Network", - "symbol": "roko" - }, - { - "id": "rollbit-coin", - "name": "Rollbit Coin", - "symbol": "rlb" - }, - { - "id": "rollium", - "name": "MarbleVerse", - "symbol": "rlm" - }, - { - "id": "rome", - "name": "Rome", - "symbol": "rome" - }, - { - "id": "roncoin", - "name": "Roncoin", - "symbol": "ron" - }, - { - "id": "rond", - "name": "ROND", - "symbol": "rond" - }, - { - "id": "rong", - "name": "Rong", - "symbol": "rong" - }, - { - "id": "ronin", - "name": "Ronin", - "symbol": "ron" - }, - { - "id": "ronweasleytrumptoadn64inu", - "name": "RonWeasleyTrumpToadN64Inu", - "symbol": "bnb" - }, - { - "id": "roobee", - "name": "Roobee", - "symbol": "roobee" - }, - { - "id": "rook", - "name": "Rook", - "symbol": "rook" - }, - { - "id": "roost", - "name": "Roost", - "symbol": "roost" - }, - { - "id": "root-protocol", - "name": "Root Protocol", - "symbol": "isme" - }, - { - "id": "rootstock", - "name": "Rootstock RSK", - "symbol": "rbtc" - }, - { - "id": "rope-token", - "name": "Rope Token", - "symbol": "rope" - }, - { - "id": "ror-universe", - "name": "ROR Universe", - "symbol": "ror" - }, - { - "id": "rose", - "name": "Rose", - "symbol": "rose" - }, - { - "id": "rose-finance", - "name": "Rose Finance", - "symbol": "rose" - }, - { - "id": "rosen-bridge", - "name": "Rosen Bridge", - "symbol": "rsn" - }, - { - "id": "roseon", - "name": "Roseon", - "symbol": "rosx" - }, - { - "id": "rosnet", - "name": "Rosnet", - "symbol": "rosnet" - }, - { - "id": "rosy", - "name": "Rosy", - "symbol": "rosy" - }, - { - "id": "rotharium", - "name": "Rotharium", - "symbol": "rth" - }, - { - "id": "round-x", - "name": "Round X", - "symbol": "rndx" - }, - { - "id": "roup", - "name": "Roup (Ordinals)", - "symbol": "roup" - }, - { - "id": "roush-fenway-racing-fan-token", - "name": "Roush Fenway Racing Fan Token", - "symbol": "roush" - }, - { - "id": "route", - "name": "Router Protocol", - "symbol": "route" - }, - { - "id": "rovi-protocol", - "name": "ROVI Protocol", - "symbol": "rovi" - }, - { - "id": "rowan-coin", - "name": "Rowan Coin", - "symbol": "rwn" - }, - { - "id": "royal", - "name": "ROYAL", - "symbol": "royal" - }, - { - "id": "royale", - "name": "Royale", - "symbol": "roya" - }, - { - "id": "royal-shiba", - "name": "Royal Shiba", - "symbol": "royalshiba" - }, - { - "id": "royal-smart-future-token", - "name": "ROYAL SMART FUTURE TOKEN", - "symbol": "rsft" - }, - { - "id": "rpg-maker-ai", - "name": "RPG Maker Ai", - "symbol": "rpgmai" - }, - { - "id": "rps-league", - "name": "Rps League", - "symbol": "rps" - }, - { - "id": "rss3", - "name": "RSS3", - "symbol": "rss3" - }, - { - "id": "rubber-ducky", - "name": "Rubber Ducky", - "symbol": "rubber" - }, - { - "id": "rubic", - "name": "Rubic", - "symbol": "rbc" - }, - { - "id": "rubidium", - "name": "Rubidium", - "symbol": "rbd" - }, - { - "id": "rubix", - "name": "Rubix", - "symbol": "rbt" - }, - { - "id": "ruby", - "name": "RUBY", - "symbol": "ruby" - }, - { - "id": "ruby-currency", - "name": "Ruby Currency", - "symbol": "rbc" - }, - { - "id": "ruby-play-network", - "name": "Ruby Play Network", - "symbol": "ruby" - }, - { - "id": "rubypulse", - "name": "RubyPulse", - "symbol": "ruby" - }, - { - "id": "ruff", - "name": "Ruff", - "symbol": "ruff" - }, - { - "id": "rugame", - "name": "RUGAME", - "symbol": "rug" - }, - { - "id": "rug-rugged-art", - "name": "Rug", - "symbol": "rug" - }, - { - "id": "rugzombie", - "name": "RugZombie", - "symbol": "zmbe" - }, - { - "id": "rule-token", - "name": "Rule Token", - "symbol": "rule" - }, - { - "id": "rumi-finance", - "name": "Rumi Finance", - "symbol": "rumi" - }, - { - "id": "run", - "name": "Run", - "symbol": "run" - }, - { - "id": "runblox", - "name": "RunBlox", - "symbol": "rux" - }, - { - "id": "runblox-arbitrum", - "name": "RunBlox (Arbitrum)", - "symbol": "rux" - }, - { - "id": "runesbridge", - "name": "RunesBridge", - "symbol": "rb" - }, - { - "id": "runic-chain", - "name": "Runic Chain", - "symbol": "runic" - }, - { - "id": "runode", - "name": "RUNodE", - "symbol": "rudes" - }, - { - "id": "runy", - "name": "Runy", - "symbol": "runy" - }, - { - "id": "rupee", - "name": "Rupee", - "symbol": "rup" - }, - { - "id": "rupiah-token", - "name": "Rupiah Token", - "symbol": "idrt" - }, - { - "id": "rusd", - "name": "rUSD", - "symbol": "rusd" - }, - { - "id": "rush-2", - "name": "RUSH", - "symbol": "rush" - }, - { - "id": "rushcmc", - "name": "RUSHCMC", - "symbol": "rushcmc" - }, - { - "id": "rushcoin", - "name": "RushCoin", - "symbol": "rush" - }, - { - "id": "rusty-robot-country-club", - "name": "Rusty Robot Country Club", - "symbol": "rust" - }, - { - "id": "rutheneum", - "name": "Rutheneum", - "symbol": "rth" - }, - { - "id": "ruufcoin", - "name": "RuufCoin", - "symbol": "ruuf" - }, - { - "id": "rxcgames", - "name": "RXCGames", - "symbol": "rxcg" - }, - { - "id": "ryi-unity", - "name": "RYI Unity", - "symbol": "ryiu" - }, - { - "id": "ryo", - "name": "Ryo Currency", - "symbol": "ryo" - }, - { - "id": "ryoma", - "name": "Ryoma", - "symbol": "ryoma" - }, - { - "id": "ryoshi-research", - "name": "Ryoshi Research", - "symbol": "ryoshi" - }, - { - "id": "ryoshi-s", - "name": "Ryoshi's", - "symbol": "ryoshi" - }, - { - "id": "ryoshis-vision", - "name": "Ryoshis Vision", - "symbol": "ryoshi" - }, - { - "id": "ryoshi-token", - "name": "Ryoshi", - "symbol": "ryoshi" - }, - { - "id": "ryoshi-with-knife", - "name": "ryoshi with knife", - "symbol": "ryoshi" - }, - { - "id": "s4fe", - "name": "S4FE", - "symbol": "s4f" - }, - { - "id": "saba-finance", - "name": "Saba Finance", - "symbol": "saba" - }, - { - "id": "sabai-ecovers", - "name": "Sabai Ecoverse", - "symbol": "sabai" - }, - { - "id": "sabaka-inu", - "name": "Sabaka Inu", - "symbol": "sabaka inu" - }, - { - "id": "saber", - "name": "Saber", - "symbol": "sbr" - }, - { - "id": "saber-2", - "name": "Saber", - "symbol": "saber" - }, - { - "id": "sable", - "name": "Sable", - "symbol": "sable" - }, - { - "id": "sable-coin", - "name": "Sable Coin", - "symbol": "usds" - }, - { - "id": "sacabam", - "name": "Sacabam", - "symbol": "scb" - }, - { - "id": "sacabambaspis", - "name": "Sacabambaspis", - "symbol": "saca" - }, - { - "id": "sad-hamster", - "name": "SAD HAMSTER", - "symbol": "hammy" - }, - { - "id": "safcoin", - "name": "SafCoin", - "symbol": "saf" - }, - { - "id": "safe-anwang", - "name": "SAFE(AnWang)", - "symbol": "safe" - }, - { - "id": "safeblast", - "name": "SafeBlast", - "symbol": "blast" - }, - { - "id": "safebonk", - "name": "SafeBonk", - "symbol": "sbonk" - }, - { - "id": "safecapital", - "name": "SafeCapital", - "symbol": "scap" - }, - { - "id": "safeclassic", - "name": "SafeClassic", - "symbol": "safeclassic" - }, - { - "id": "safe-coin-2", - "name": "SafeCoin", - "symbol": "safe" - }, - { - "id": "safe-deal", - "name": "SafeDeal", - "symbol": "sfd" - }, - { - "id": "safegem", - "name": "Safegem", - "symbol": "gems" - }, - { - "id": "safegrok", - "name": "SafeGrok", - "symbol": "safegrok" - }, - { - "id": "safe-haven", - "name": "Safe Haven", - "symbol": "sha" - }, - { - "id": "safeinsure", - "name": "SafeInsure", - "symbol": "sins" - }, - { - "id": "safelaunch", - "name": "SafeLaunch", - "symbol": "sfex" - }, - { - "id": "safemars", - "name": "Safemars", - "symbol": "safemars" - }, - { - "id": "safemars-2", - "name": "SAFEMARS", - "symbol": "safemars" - }, - { - "id": "safemars-protocol", - "name": "Safemars Protocol", - "symbol": "smars" - }, - { - "id": "safememe", - "name": "SafeMeme", - "symbol": "sme" - }, - { - "id": "safeminecoin", - "name": "SafeMineCoin", - "symbol": "smcn" - }, - { - "id": "safemoo", - "name": "SafeMoo", - "symbol": "safemoo" - }, - { - "id": "safemoon-1996", - "name": "Safemoon 1996", - "symbol": "sm96" - }, - { - "id": "safemoon-2", - "name": "SafeMoon", - "symbol": "sfm" - }, - { - "id": "safemoon-inu", - "name": "SafeMoon Inu", - "symbol": "smi" - }, - { - "id": "safemoon-zilla", - "name": "Safemoon Zilla", - "symbol": "sfz" - }, - { - "id": "safemuun", - "name": "Safemuun", - "symbol": "safemuun" - }, - { - "id": "safe-nebula", - "name": "Safe Nebula", - "symbol": "snb" - }, - { - "id": "safepal", - "name": "SafePal", - "symbol": "sfp" - }, - { - "id": "safereum", - "name": "SAFEREUM", - "symbol": "safereum" - }, - { - "id": "safe-seafood-coin", - "name": "Safe SeaFood Coin", - "symbol": "ssf" - }, - { - "id": "safestake", - "name": "SafeStake", - "symbol": "dvt" - }, - { - "id": "safeswap-token", - "name": "Safeswap SSGTX", - "symbol": "ssgtx" - }, - { - "id": "safe-token", - "name": "Safe", - "symbol": "safe" - }, - { - "id": "safetrees", - "name": "Safetrees", - "symbol": "trees" - }, - { - "id": "safeward-ai", - "name": "SafeWard AI", - "symbol": "swi" - }, - { - "id": "saffron-finance", - "name": "saffron.finance", - "symbol": "sfi" - }, - { - "id": "safle", - "name": "Safle", - "symbol": "safle" - }, - { - "id": "safu-crypto-cz", - "name": "FREECZ", - "symbol": "freecz" - }, - { - "id": "safudex", - "name": "SafuDex", - "symbol": "sfd" - }, - { - "id": "safu-protocol", - "name": "SAFU Protocol", - "symbol": "safu" - }, - { - "id": "safuu", - "name": "SAFUU", - "symbol": "safuu" - }, - { - "id": "saga-2", - "name": "Saga", - "symbol": "saga" - }, - { - "id": "sagas-of-destiny", - "name": "Sagas Of Destiny", - "symbol": "sage" - }, - { - "id": "sai", - "name": "Sai", - "symbol": "sai" - }, - { - "id": "saiko-the-revival", - "name": "Saiko - The Revival", - "symbol": "saiko" - }, - { - "id": "sail-2", - "name": "Clipper SAIL", - "symbol": "sail" - }, - { - "id": "sailwars", - "name": "Sailwars", - "symbol": "swt" - }, - { - "id": "saintbot", - "name": "Saintbot", - "symbol": "saint" - }, - { - "id": "saitachain-coin-2", - "name": "SaitaChain Coin", - "symbol": "stc" - }, - { - "id": "saitama-inu", - "name": "Saitama", - "symbol": "saitama" - }, - { - "id": "saitama-soltama", - "name": "Saitama (SOLTAMA)", - "symbol": "soltama" - }, - { - "id": "saitarealty", - "name": "SaitaRealty", - "symbol": "srlty" - }, - { - "id": "saito", - "name": "Saito", - "symbol": "saito" - }, - { - "id": "saiyan-pepe", - "name": "Saiyan PEPE", - "symbol": "spepe" - }, - { - "id": "sakai-vault", - "name": "Sakai Vault", - "symbol": "sakai" - }, - { - "id": "sake-token", - "name": "SakeSwap", - "symbol": "sake" - }, - { - "id": "sakura", - "name": "Sakura", - "symbol": "sku" - }, - { - "id": "sakura-united-platform", - "name": "SAKURA UNITED PLATFORM", - "symbol": "sup" - }, - { - "id": "salad", - "name": "Salad", - "symbol": "sald" - }, - { - "id": "salamander", - "name": "SALAMANDER", - "symbol": "sally" - }, - { - "id": "sallar", - "name": "Sallar", - "symbol": "all" - }, - { - "id": "salmon", - "name": "Salmon", - "symbol": "slm" - }, - { - "id": "salsa-liquid-multiversx", - "name": "SALSA Liquid MultiversX", - "symbol": "legld" - }, - { - "id": "salt", - "name": "SALT", - "symbol": "salt" - }, - { - "id": "salvor", - "name": "Salvor", - "symbol": "art" - }, - { - "id": "sam-bankmeme-fried", - "name": "Sam Bankmeme Fried", - "symbol": "sbf" - }, - { - "id": "samo-wif-hat", - "name": "samo wif hat", - "symbol": "samowif" - }, - { - "id": "samoyedcoin", - "name": "Samoyedcoin", - "symbol": "samo" - }, - { - "id": "samsunspor-fan-token", - "name": "Samsunspor Fan Token", - "symbol": "sam" - }, - { - "id": "samurai-bot", - "name": "Samurai Bot", - "symbol": "sambo" - }, - { - "id": "sanctum", - "name": "Sanctum", - "symbol": "sanctum" - }, - { - "id": "sanctum-coin", - "name": "Sanctum Coin", - "symbol": "sancta" - }, - { - "id": "sandclock", - "name": "Sandclock", - "symbol": "quartz" - }, - { - "id": "san-diego-coin", - "name": "San Diego Coin", - "symbol": "sand" - }, - { - "id": "sandwich-cat", - "name": "Sandwich Cat", - "symbol": "saca" - }, - { - "id": "sangkara", - "name": "Sangkara", - "symbol": "misa" - }, - { - "id": "sanin-inu", - "name": "Sanin Inu", - "symbol": "sani" - }, - { - "id": "sanji-inu", - "name": "Sanji Inu", - "symbol": "sanji" - }, - { - "id": "sanshu", - "name": "SANSHU!", - "symbol": "sanshu!" - }, - { - "id": "sanshu-inu", - "name": "Sanshu Inu (OLD)", - "symbol": "sanshu" - }, - { - "id": "santa-coin-2", - "name": "Santa Coin", - "symbol": "santa" - }, - { - "id": "santa-grok", - "name": "Santa Grok", - "symbol": "santagrok" - }, - { - "id": "santa-inu", - "name": "Santa Inu", - "symbol": "saninu" - }, - { - "id": "santiment-network-token", - "name": "Santiment Network", - "symbol": "san" - }, - { - "id": "santos-fc-fan-token", - "name": "Santos FC Fan Token", - "symbol": "santos" - }, - { - "id": "sao-paulo-fc-fan-token", - "name": "Sao Paulo FC Fan Token", - "symbol": "spfc" - }, - { - "id": "sapphire", - "name": "Sapphire", - "symbol": "sapp" - }, - { - "id": "sappy-seals-pixl", - "name": "PIXL", - "symbol": "pixl" - }, - { - "id": "saracens-fan-token", - "name": "Saracens Fan Token", - "symbol": "sarries" - }, - { - "id": "sarcophagus", - "name": "Sarcophagus", - "symbol": "sarco" - }, - { - "id": "sardis-network", - "name": "Sardis Network", - "symbol": "srds" - }, - { - "id": "saros-finance", - "name": "Saros", - "symbol": "saros" - }, - { - "id": "sashimi", - "name": "Sashimi", - "symbol": "sashimi" - }, - { - "id": "satellite-doge-1", - "name": "Satellite Doge-1", - "symbol": "doge-1" - }, - { - "id": "satellite-doge-1-mission", - "name": "Satellite Doge-1 Mission", - "symbol": "doge-1" - }, - { - "id": "sathosi-airlines-token", - "name": "Satoshi Airlines Token", - "symbol": "sat" - }, - { - "id": "satin-exchange", - "name": "Satin Exchange", - "symbol": "satin" - }, - { - "id": "satnode", - "name": "SatNode", - "symbol": "snd" - }, - { - "id": "sato", - "name": "SATO", - "symbol": "sato" - }, - { - "id": "sator", - "name": "Sator", - "symbol": "sao" - }, - { - "id": "satoshe-network", - "name": "Satoshe Network", - "symbol": "soshe" - }, - { - "id": "satoshi-finance", - "name": "Satoshi Finance", - "symbol": "sato" - }, - { - "id": "satoshi-finance-btusd", - "name": "Satoshi Finance btUSD", - "symbol": "btusd" - }, - { - "id": "satoshi-island", - "name": "Satoshi Island", - "symbol": "stc" - }, - { - "id": "satoshi-panda", - "name": "Satoshi Panda", - "symbol": "sap" - }, - { - "id": "satoshis-vision", - "name": "Satoshis Vision", - "symbol": "sats" - }, - { - "id": "satoshiswap-2", - "name": "SatoshiSwap", - "symbol": "swap" - }, - { - "id": "satoshisync", - "name": "SatoshiSync", - "symbol": "ssnc" - }, - { - "id": "satoshivm", - "name": "SatoshiVM", - "symbol": "savm" - }, - { - "id": "satoxcoin", - "name": "Satoxcoin", - "symbol": "satox" - }, - { - "id": "satozhi", - "name": "Satozhi", - "symbol": "satoz" - }, - { - "id": "satsbridge", - "name": "SatsBridge", - "symbol": "sabr" - }, - { - "id": "satscan-ordinals", - "name": "SATSCAN (Ordinals)", - "symbol": "scan" - }, - { - "id": "sats-hunters", - "name": "Sats Hunters", - "symbol": "shnt" - }, - { - "id": "sats-ordinals", - "name": "SATS (Ordinals)", - "symbol": "sats" - }, - { - "id": "satt", - "name": "SaTT", - "symbol": "satt" - }, - { - "id": "saturna", - "name": "Saturna", - "symbol": "sat" - }, - { - "id": "sauce", - "name": "SAUCE", - "symbol": "sauce" - }, - { - "id": "sauce-inu", - "name": "Sauce Inu", - "symbol": "sauceinu" - }, - { - "id": "saucerswap", - "name": "SaucerSwap", - "symbol": "sauce" - }, - { - "id": "saudi-bonk", - "name": "Saudi Bonk", - "symbol": "saudibonk" - }, - { - "id": "saudi-pepe", - "name": "SAUDI PEPE", - "symbol": "saudipepe" - }, - { - "id": "sausagers-meat", - "name": "Meat", - "symbol": "meat" - }, - { - "id": "savage", - "name": "SAVAGE", - "symbol": "savg" - }, - { - "id": "savanna", - "name": "Savanna", - "symbol": "svn" - }, - { - "id": "savant-ai", - "name": "Savant AI", - "symbol": "savantai" - }, - { - "id": "save-baby-doge", - "name": "Save Baby Doge", - "symbol": "babydoge" - }, - { - "id": "savedroid", - "name": "Savedroid", - "symbol": "svd" - }, - { - "id": "save-elon-coin", - "name": "Save Elon Coin", - "symbol": "sec" - }, - { - "id": "savings-dai", - "name": "Savings Dai", - "symbol": "sdai" - }, - { - "id": "savings-xdai", - "name": "Savings xDAI", - "symbol": "sdai" - }, - { - "id": "savvy-defi", - "name": "Savvy", - "symbol": "svy" - }, - { - "id": "savvy-eth", - "name": "Savvy ETH", - "symbol": "sveth" - }, - { - "id": "saxumdao", - "name": "SaxumDAO", - "symbol": "sxm" - }, - { - "id": "sayve-protocol", - "name": "SAYVE Protocol", - "symbol": "sayve" - }, - { - "id": "sbtc", - "name": "sBTC", - "symbol": "sbtc" - }, - { - "id": "sbu-honey", - "name": "SBU Honey", - "symbol": "bhny" - }, - { - "id": "scaleswap-token", - "name": "Scaleswap", - "symbol": "sca" - }, - { - "id": "scaleton", - "name": "Scaleton", - "symbol": "scale" - }, - { - "id": "scalia-infrastructure", - "name": "Scalia Infrastructure", - "symbol": "scale" - }, - { - "id": "scallop", - "name": "Scallop", - "symbol": "sclp" - }, - { - "id": "scallop-2", - "name": "Scallop", - "symbol": "sca" - }, - { - "id": "scamfari", - "name": "ScamFari", - "symbol": "scm" - }, - { - "id": "scanai", - "name": "ScanAI", - "symbol": "scan" - }, - { - "id": "scapesmania", - "name": "ScapesMania", - "symbol": "$mania" - }, - { - "id": "scarab-finance", - "name": "Scarab Finance", - "symbol": "scarab" - }, - { - "id": "scarab-tools", - "name": "Scarab Tools", - "symbol": "dung" - }, - { - "id": "scarcity", - "name": "Scarcity", - "symbol": "scx" - }, - { - "id": "scarecrow", - "name": "ScareCrow", - "symbol": "scare" - }, - { - "id": "scat", - "name": "Scat", - "symbol": "cat" - }, - { - "id": "s-c-corinthians-fan-token", - "name": "S.C. Corinthians Fan Token", - "symbol": "sccp" - }, - { - "id": "scholarship-coin", - "name": "Scholarship Coin", - "symbol": "scho" - }, - { - "id": "schrodi", - "name": "Schrodi", - "symbol": "schrodi" - }, - { - "id": "schrodinger", - "name": "Schrodinger", - "symbol": "meow" - }, - { - "id": "schrodinger-2", - "name": "Schrodinger", - "symbol": "sgr" - }, - { - "id": "schwiftai", - "name": "SchwiftAI", - "symbol": "swai" - }, - { - "id": "scientia", - "name": "Scientia", - "symbol": "scie" - }, - { - "id": "scientix", - "name": "Scientix", - "symbol": "scix" - }, - { - "id": "sc-internacional-fan-token", - "name": "SC Internacional Fan Token", - "symbol": "saci" - }, - { - "id": "scom-coin", - "name": "Scom Coin", - "symbol": "scom" - }, - { - "id": "scopecoin", - "name": "ScopeCoin", - "symbol": "xscp" - }, - { - "id": "scope-sniper", - "name": "Scope Sniper", - "symbol": "scope" - }, - { - "id": "scopexai", - "name": "ScopexAI", - "symbol": "scopex" - }, - { - "id": "scopuly-token", - "name": "Scopuly", - "symbol": "scop" - }, - { - "id": "scorai", - "name": "Staking Compound ORAI", - "symbol": "scorai" - }, - { - "id": "scottyai", - "name": "ScottyTheAi", - "symbol": "scotty" - }, - { - "id": "scotty-beam", - "name": "Scotty Beam", - "symbol": "scotty" - }, - { - "id": "scrap", - "name": "Scrap", - "symbol": "scrap" - }, - { - "id": "scratch-2", - "name": "SCRATCH", - "symbol": "scratch" - }, - { - "id": "scratch-meme-coin", - "name": "Scratch Meme Coin", - "symbol": "scrats" - }, - { - "id": "scream", - "name": "Scream", - "symbol": "scream" - }, - { - "id": "script-network", - "name": "Script Network", - "symbol": "scpt" - }, - { - "id": "script-network-spay", - "name": "Script Network SPAY", - "symbol": "spay" - }, - { - "id": "scriv", - "name": "SCRIV", - "symbol": "scriv" - }, - { - "id": "scroll-doge", - "name": "Scroll Doge", - "symbol": "zkdoge" - }, - { - "id": "scrollswap-finance", - "name": "Scrollswap Finance", - "symbol": "sf" - }, - { - "id": "scrolly-the-map", - "name": "Scrolly the map", - "symbol": "scrolly" - }, - { - "id": "scrooge", - "name": "Scrooge (OLD)", - "symbol": "scrooge" - }, - { - "id": "scry-info", - "name": "Scry.info", - "symbol": "ddd" - }, - { - "id": "sdoge", - "name": "SDOGE", - "symbol": "sdoge" - }, - { - "id": "sdola", - "name": "sDOLA", - "symbol": "sdola" - }, - { - "id": "sdrive-app", - "name": "SCOIN", - "symbol": "scoin" - }, - { - "id": "sealink-network", - "name": "Sealink Network", - "symbol": "slk" - }, - { - "id": "sealwifhat", - "name": "sealwifhat", - "symbol": "si" - }, - { - "id": "seamans-token", - "name": "Seamans Token", - "symbol": "seat" - }, - { - "id": "seamless-protocol", - "name": "Seamless Protocol", - "symbol": "seam" - }, - { - "id": "seamlessswap-token", - "name": "SeamlessSwap", - "symbol": "seamless" - }, - { - "id": "seapad", - "name": "SeaPad", - "symbol": "spt" - }, - { - "id": "search", - "name": "Search", - "symbol": "0xsearch" - }, - { - "id": "seatlabnft", - "name": "SeatlabNFT", - "symbol": "seat" - }, - { - "id": "seba", - "name": "Seba", - "symbol": "seba" - }, - { - "id": "sechain", - "name": "SeChain", - "symbol": "snn" - }, - { - "id": "secret", - "name": "Secret", - "symbol": "scrt" - }, - { - "id": "secret-erc20", - "name": "Secret (ERC20)", - "symbol": "wscrt" - }, - { - "id": "secret-skellies-society", - "name": "Secret Skellies Society", - "symbol": "$crypt" - }, - { - "id": "secret-society", - "name": "Secret Society", - "symbol": "ss" - }, - { - "id": "secretum", - "name": "Secretum", - "symbol": "ser" - }, - { - "id": "sect-bot", - "name": "SECT BOT", - "symbol": "sect" - }, - { - "id": "sector", - "name": "Sector", - "symbol": "sect" - }, - { - "id": "secure-cash", - "name": "Secure Cash", - "symbol": "scsx" - }, - { - "id": "securechain-ai", - "name": "SecureChain AI", - "symbol": "scai" - }, - { - "id": "secured-moonrat-token", - "name": "Secured MoonRat", - "symbol": "smrat" - }, - { - "id": "secured-on-blockchain", - "name": "Secured On Blockchain (OLD)", - "symbol": "sob" - }, - { - "id": "secured-on-blockchain-2", - "name": "Secured On Blockchain", - "symbol": "sob" - }, - { - "id": "seda-2", - "name": "SEDA", - "symbol": "seda" - }, - { - "id": "sedra-coin", - "name": "Sedra Coin", - "symbol": "sdr" - }, - { - "id": "seed-2", - "name": "SEED", - "symbol": "seed" - }, - { - "id": "seeded-network", - "name": "Seeded Network", - "symbol": "seeded" - }, - { - "id": "seedify-fund", - "name": "Seedify.fund", - "symbol": "sfund" - }, - { - "id": "seedlaunch", - "name": "SeedLaunch", - "symbol": "slt" - }, - { - "id": "seed-photo", - "name": "Seed.Photo", - "symbol": "seed" - }, - { - "id": "seeds", - "name": "Seeds", - "symbol": "seeds" - }, - { - "id": "seedx", - "name": "SEEDx", - "symbol": "seedx" - }, - { - "id": "seek-tiger", - "name": "Seek Tiger", - "symbol": "sti" - }, - { - "id": "segment", - "name": "Segment", - "symbol": "sef" - }, - { - "id": "seidow", - "name": "Seidow", - "symbol": "seidow" - }, - { - "id": "seifmoon", - "name": "Seifmoon", - "symbol": "$seif" - }, - { - "id": "seiga", - "name": "Seiga", - "symbol": "seiga" - }, - { - "id": "seigniorage-shares", - "name": "Seigniorage Shares", - "symbol": "share" - }, - { - "id": "seilormoon", - "name": "Seilormoon", - "symbol": "seilor" - }, - { - "id": "seilu-bridge", - "name": "Seilu Bridge", - "symbol": "seilu" - }, - { - "id": "seimen", - "name": "SEIMEN", - "symbol": "seimen" - }, - { - "id": "seimoyed", - "name": "Seimoyed", - "symbol": "seimoyed" - }, - { - "id": "sei-network", - "name": "Sei", - "symbol": "sei" - }, - { - "id": "seipex-credits", - "name": "Seipex Credits", - "symbol": "spex" - }, - { - "id": "seiren-games-network", - "name": "Seiren Games Network", - "symbol": "serg" - }, - { - "id": "seiwhale", - "name": "SeiWhale", - "symbol": "sei" - }, - { - "id": "seiyan", - "name": "SEIYAN", - "symbol": "seiyan" - }, - { - "id": "sekai-dao", - "name": "Sekai DAO", - "symbol": "sekai" - }, - { - "id": "sekai-glory", - "name": "Sekai Glory", - "symbol": "glory" - }, - { - "id": "sekuritance", - "name": "Sekuritance", - "symbol": "skrt" - }, - { - "id": "selfbar", - "name": "Selfbar", - "symbol": "sbar" - }, - { - "id": "selfcrypto", - "name": "SELFCrypto", - "symbol": "self" - }, - { - "id": "selfkey", - "name": "SelfKey", - "symbol": "key" - }, - { - "id": "selfkey-2", - "name": "SelfKey", - "symbol": "self" - }, - { - "id": "self-operating-ai", - "name": "Self Operating AI", - "symbol": "soai" - }, - { - "id": "self-token", - "name": "Self Token", - "symbol": "self" - }, - { - "id": "selo", - "name": "Selo", - "symbol": "selo" - }, - { - "id": "sempsunai2-0", - "name": "SempsunAi2.0", - "symbol": "smai2.0" - }, - { - "id": "senate", - "name": "SENATE", - "symbol": "senate" - }, - { - "id": "sendcrypto", - "name": "SendCrypto", - "symbol": "sendc" - }, - { - "id": "sendex-ai", - "name": "Sendex AI", - "symbol": "sendex" - }, - { - "id": "send-finance", - "name": "Send Finance", - "symbol": "send" - }, - { - "id": "sendit", - "name": "Sendit", - "symbol": "sendit" - }, - { - "id": "sendpicks", - "name": "Sendpicks", - "symbol": "send" - }, - { - "id": "send-token", - "name": "/send", - "symbol": "send" - }, - { - "id": "seneca", - "name": "Seneca", - "symbol": "sen" - }, - { - "id": "seneca-usd", - "name": "Seneca USD", - "symbol": "senusd" - }, - { - "id": "sensay", - "name": "Sensay", - "symbol": "snsy" - }, - { - "id": "sense4fit", - "name": "Sense4FIT", - "symbol": "sfit" - }, - { - "id": "sensei-dog", - "name": "Sensei Dog", - "symbol": "sensei" - }, - { - "id": "sensi", - "name": "Sensi", - "symbol": "sensi" - }, - { - "id": "sensitrust", - "name": "Sensitrust", - "symbol": "sets" - }, - { - "id": "senso", - "name": "SENSO", - "symbol": "senso" - }, - { - "id": "senspark", - "name": "Senspark", - "symbol": "sen" - }, - { - "id": "sentimentai", - "name": "SentimentAI", - "symbol": "sent" - }, - { - "id": "sentiment-token", - "name": "Sentiment", - "symbol": "sent" - }, - { - "id": "sentinel", - "name": "Sentinel", - "symbol": "dvpn" - }, - { - "id": "sentinel-ai", - "name": "Sentinel AI", - "symbol": "senai" - }, - { - "id": "sentinel-bot-ai", - "name": "Sentinel Bot Ai", - "symbol": "snt" - }, - { - "id": "sentinel-chain", - "name": "Sentinel Chain", - "symbol": "senc" - }, - { - "id": "sentinel-group", - "name": "Sentinel [OLD]", - "symbol": "dvpn" - }, - { - "id": "sentinel-protocol", - "name": "Sentinel Protocol", - "symbol": "upp" - }, - { - "id": "sentre", - "name": "Sentre", - "symbol": "sntr" - }, - { - "id": "seor-network", - "name": "SEOR Network", - "symbol": "seor" - }, - { - "id": "serbian-dancing-lady", - "name": "SERBIAN DANCING LADY", - "symbol": "\u0441\u0435\u0440\u0431\u0441\u043a\u0430\u044f\u043b\u0435" - }, - { - "id": "serenity-shield", - "name": "Serenity Shield", - "symbol": "sersh" - }, - { - "id": "serum", - "name": "Serum", - "symbol": "srm" - }, - { - "id": "serum-ser", - "name": "Serum SER", - "symbol": "ser" - }, - { - "id": "sesterce", - "name": "Sesterce", - "symbol": "ses" - }, - { - "id": "seth", - "name": "sETH", - "symbol": "seth" - }, - { - "id": "seth2", - "name": "sETH2", - "symbol": "seth2" - }, - { - "id": "settled-ethxy-token", - "name": "Settled EthXY Token", - "symbol": "sexy" - }, - { - "id": "seur", - "name": "sEUR", - "symbol": "seur" - }, - { - "id": "sevilla-fan-token", - "name": "Sevilla Fan Token", - "symbol": "sevilla" - }, - { - "id": "sexone", - "name": "Sexone", - "symbol": "sex" - }, - { - "id": "s-finance", - "name": "S.Finance", - "symbol": "sfg" - }, - { - "id": "shack", - "name": "Shack", - "symbol": "shack" - }, - { - "id": "shackleford", - "name": "Shackleford", - "symbol": "shack" - }, - { - "id": "shade-cash", - "name": "Shade Cash", - "symbol": "shade" - }, - { - "id": "shade-protocol", - "name": "Shade Protocol", - "symbol": "shd" - }, - { - "id": "shadow", - "name": "SHADOW", - "symbol": "shdw" - }, - { - "id": "shadowcats", - "name": "Shadowcats", - "symbol": "shadowcats" - }, - { - "id": "shadowfi-2", - "name": "ShadowFi", - "symbol": "sdf" - }, - { - "id": "shadowladys-dn404", - "name": "Shadowladys DN404", - "symbol": "$shadow" - }, - { - "id": "shadow-node", - "name": "Shadow Node", - "symbol": "svpn" - }, - { - "id": "shadowswap-token", - "name": "ShadowSwap Token", - "symbol": "shdw" - }, - { - "id": "shadowtokens-bridged-usdc-elastos", - "name": "ShadowTokens Bridged USDC (Elastos)", - "symbol": "usdc" - }, - { - "id": "shadow-wizard-money-gang", - "name": "Shadow Wizard Money Gang", - "symbol": "gang" - }, - { - "id": "shambala", - "name": "Shambala", - "symbol": "bala" - }, - { - "id": "shanghai-inu", - "name": "Shanghai Inu", - "symbol": "shang" - }, - { - "id": "shanum", - "name": "Shanum", - "symbol": "shan" - }, - { - "id": "shapeshift-fox-token", - "name": "ShapeShift FOX", - "symbol": "fox" - }, - { - "id": "sharbi", - "name": "Sharbi", - "symbol": "$sharbi" - }, - { - "id": "shardeum", - "name": "Shardeum", - "symbol": "shm" - }, - { - "id": "shard-of-notcoin-nft-bond", - "name": "Shard of Notcoin NFT bond", - "symbol": "wnot" - }, - { - "id": "shards", - "name": "Shards", - "symbol": "shards" - }, - { - "id": "shardus", - "name": "Shardus", - "symbol": "ult" - }, - { - "id": "sharedstake-governance-token", - "name": "SharedStake Governance v2", - "symbol": "sgtv2" - }, - { - "id": "share-friend", - "name": "Share.Friend", - "symbol": "sfriend" - }, - { - "id": "sharering", - "name": "Share", - "symbol": "shr" - }, - { - "id": "shares-finance", - "name": "shares.finance", - "symbol": "shares" - }, - { - "id": "sharetheshaka", - "name": "Shaka", - "symbol": "$shaka" - }, - { - "id": "shark", - "name": "Shark", - "symbol": "shark" - }, - { - "id": "shark-2", - "name": "Shark", - "symbol": "shark" - }, - { - "id": "sharkbee", - "name": "SharkBee", - "symbol": "sbee" - }, - { - "id": "shark-cat", - "name": "Shark Cat", - "symbol": "sc" - }, - { - "id": "shark-protocol", - "name": "Shark Protocol", - "symbol": "shark" - }, - { - "id": "sharky-fi", - "name": "Sharky.fi", - "symbol": "shark" - }, - { - "id": "sharky-swap", - "name": "Sharky Swap", - "symbol": "sharky" - }, - { - "id": "sharp-portfolio-index", - "name": "Sharp Portfolio Index", - "symbol": "spi" - }, - { - "id": "sheboshis", - "name": "SHEBOSHIS", - "symbol": "sheb" - }, - { - "id": "sheesh-2", - "name": "Sheesh", - "symbol": "shs" - }, - { - "id": "sheesha-finance", - "name": "Sheesha Finance (BEP20)", - "symbol": "sheesha" - }, - { - "id": "sheesha-finance-erc20", - "name": "Sheesha Finance (ERC20)", - "symbol": "sheesha" - }, - { - "id": "sheesha-finance-polygon", - "name": "Sheesha Finance Polygon", - "symbol": "msheesha" - }, - { - "id": "sheeshin-on-solana", - "name": "SheeshSPL", - "symbol": "sheesh" - }, - { - "id": "shell", - "name": "SHELL", - "symbol": "ss20" - }, - { - "id": "shell-protocol-token", - "name": "Shell Protocol Token", - "symbol": "shell" - }, - { - "id": "shelterz", - "name": "SHELTERZ", - "symbol": "terz" - }, - { - "id": "shen", - "name": "Shen", - "symbol": "shen" - }, - { - "id": "shepe", - "name": "SHEPE", - "symbol": "$shepe" - }, - { - "id": "shepherd-inu-2", - "name": "Shepherd Inu", - "symbol": "sinu" - }, - { - "id": "sherlock-defi", - "name": "Sherlock Defi", - "symbol": "slock" - }, - { - "id": "shezmu", - "name": "Shezmu", - "symbol": "shezmu" - }, - { - "id": "shib2", - "name": "SHIB2", - "symbol": "shib2" - }, - { - "id": "shib2-0", - "name": "Shib2.0", - "symbol": "shib2.0" - }, - { - "id": "shiba", - "name": "Shiba", - "symbol": "shiba" - }, - { - "id": "shibaai", - "name": "SHIBAAI", - "symbol": "shibaai" - }, - { - "id": "shiba-bsc", - "name": "SHIBA BSC", - "symbol": "shibsc" - }, - { - "id": "shiba-cartel", - "name": "Shiba Cartel", - "symbol": "pesos" - }, - { - "id": "shiba-ceo", - "name": "Shiba CEO", - "symbol": "shibceo" - }, - { - "id": "shiba-classic", - "name": "Shiba Classic", - "symbol": "shibc" - }, - { - "id": "shibacorgi", - "name": "ShibaCorgi", - "symbol": "shico" - }, - { - "id": "shibadoge", - "name": "ShibaDoge", - "symbol": "shibdoge" - }, - { - "id": "shiba-doge-burn", - "name": "BURN", - "symbol": "burn" - }, - { - "id": "shiba-floki", - "name": "Shiba Floki Inu", - "symbol": "floki" - }, - { - "id": "shibafomi", - "name": "Shibafomi", - "symbol": "shifo" - }, - { - "id": "shibai-labs", - "name": "ShibAI Labs", - "symbol": "slab" - }, - { - "id": "shiba-inu", - "name": "Shiba Inu", - "symbol": "shib" - }, - { - "id": "shiba-inu-classic-2", - "name": "Shiba Inu Classic", - "symbol": "shibc" - }, - { - "id": "shiba-inu-empire", - "name": "Shiba Inu Empire", - "symbol": "shibemp" - }, - { - "id": "shiba-inu-mother", - "name": "Shiba Inu Mother", - "symbol": "shibm" - }, - { - "id": "shiba-inu-wormhole", - "name": "Shiba Inu (Wormhole)", - "symbol": "shib" - }, - { - "id": "shibaken-finance", - "name": "Shibaken Finance", - "symbol": "shibaken" - }, - { - "id": "shibaments", - "name": "Shibaments", - "symbol": "sbmt" - }, - { - "id": "shibana", - "name": "Shibana", - "symbol": "bana" - }, - { - "id": "shibanft", - "name": "ShibaNFT", - "symbol": "shibanft" - }, - { - "id": "shiba-nodes", - "name": "Shiba Nodes", - "symbol": "shino" - }, - { - "id": "shibapoconk", - "name": "ShibaPoconk", - "symbol": "conk" - }, - { - "id": "shiba-predator", - "name": "Shiba Predator", - "symbol": "qom" - }, - { - "id": "shiba-punkz", - "name": "Shiba Punkz", - "symbol": "spunk" - }, - { - "id": "shibaqua", - "name": "Shibaqua", - "symbol": "shib" - }, - { - "id": "shibarium-dao", - "name": "Shibarium DAO", - "symbol": "shibdao" - }, - { - "id": "shibarium-name-service", - "name": "Shibarium Name Service", - "symbol": "sns" - }, - { - "id": "shibarium-perpetuals", - "name": "Shibarium Perpetuals", - "symbol": "serp" - }, - { - "id": "shibarium-wrapped-bone", - "name": "Shibarium Wrapped BONE", - "symbol": "wbone" - }, - { - "id": "shiba-saga", - "name": "Shiba Saga", - "symbol": "shia" - }, - { - "id": "shibasso", - "name": "Shibasso", - "symbol": "shibasso" - }, - { - "id": "shibavax", - "name": "Shibavax", - "symbol": "shibx" - }, - { - "id": "shibaverse", - "name": "Shibaverse", - "symbol": "verse" - }, - { - "id": "shiba-v-pepe", - "name": "Shiba V Pepe", - "symbol": "shepe" - }, - { - "id": "shibawifhat", - "name": "shibawifhat", - "symbol": "$wif" - }, - { - "id": "shibaw-inu", - "name": "ShibaW Inu", - "symbol": "shibaw" - }, - { - "id": "shibceo", - "name": "ShibCEO", - "symbol": "shibceo" - }, - { - "id": "shibelon", - "name": "ShibElon", - "symbol": "shibelon" - }, - { - "id": "shibfalcon", - "name": "ShibFalcon", - "symbol": "shflcn" - }, - { - "id": "shibgf", - "name": "SHIBGF", - "symbol": "shibgf" - }, - { - "id": "shibking", - "name": "ShibKing", - "symbol": "shibking" - }, - { - "id": "shibnaut", - "name": "Shibnaut", - "symbol": "shibn" - }, - { - "id": "shibonk", - "name": "ShibonkBSC", - "symbol": "shibo" - }, - { - "id": "shibonk-311f81df-a4ea-4f31-9e61-df0af8211bd7", - "name": "SHIBONK", - "symbol": "sbonk" - }, - { - "id": "shiboo", - "name": "Shiboo", - "symbol": "shiboo" - }, - { - "id": "shib-original-vision", - "name": "Shib Original Vision", - "symbol": "sov" - }, - { - "id": "shiboshi", - "name": "Shiboshi", - "symbol": "shiboshi" - }, - { - "id": "shibot", - "name": "Shibot", - "symbol": "shibot" - }, - { - "id": "shibwifhatcoin", - "name": "Shibwifhatcoin", - "symbol": "shib" - }, - { - "id": "shid", - "name": "SHID", - "symbol": "shid" - }, - { - "id": "shiden", - "name": "Shiden Network", - "symbol": "sdn" - }, - { - "id": "shido", - "name": "Shido [OLD]", - "symbol": "shido" - }, - { - "id": "shido-2", - "name": "Shido", - "symbol": "shido" - }, - { - "id": "shield-bsc-token", - "name": "Shield BSC Token", - "symbol": "shdb" - }, - { - "id": "shield-network", - "name": "Shield Network", - "symbol": "shieldnet" - }, - { - "id": "shield-protocol-2", - "name": "Shield Protocol", - "symbol": "shield" - }, - { - "id": "shieldtokencoin", - "name": "ShieldTokenCoin", - "symbol": "0stc" - }, - { - "id": "shih-tzu", - "name": "Shih Tzu", - "symbol": "shih" - }, - { - "id": "shikoku", - "name": "Shikoku", - "symbol": "shik" - }, - { - "id": "shikoku-inu", - "name": "Shikoku Inu", - "symbol": "shiko" - }, - { - "id": "shila-inu", - "name": "Shila Inu", - "symbol": "shil" - }, - { - "id": "shilld", - "name": "SHILLD", - "symbol": "shilld" - }, - { - "id": "shill-guard-token", - "name": "Shill Guard Token", - "symbol": "sgt" - }, - { - "id": "shill-token", - "name": "SHILL Token", - "symbol": "shill" - }, - { - "id": "shilly-bar", - "name": "Shilly Bar", - "symbol": "shbar" - }, - { - "id": "shimmer", - "name": "Shimmer", - "symbol": "smr" - }, - { - "id": "shimmerbridge-bridged-usdt-shimmerevm", - "name": "ShimmerBridge Bridged USDT (ShimmerEVM)", - "symbol": "usdt" - }, - { - "id": "shimmersea-lum", - "name": "ShimmerSea Lum", - "symbol": "lum" - }, - { - "id": "shina-inu", - "name": "Shina Inu", - "symbol": "shi" - }, - { - "id": "shine-chain", - "name": "Shine Chain", - "symbol": "sc20" - }, - { - "id": "shinji-inu", - "name": "Shinji Inu", - "symbol": "shinji" - }, - { - "id": "shinjiru-inu", - "name": "Shinjiru Inu", - "symbol": "shinji" - }, - { - "id": "shinobi-2", - "name": "Shinobi", - "symbol": "ninja" - }, - { - "id": "shira-cat", - "name": "Shira Cat", - "symbol": "catshira" - }, - { - "id": "shiro-the-frogdog", - "name": "Shiro the FrogDog", - "symbol": "frogdog" - }, - { - "id": "shirtum", - "name": "Shirtum", - "symbol": "shi" - }, - { - "id": "shiryo-inu", - "name": "Shiryo", - "symbol": "shiryo-inu" - }, - { - "id": "shita-kiri-suzume", - "name": "Shita-kiri Suzume", - "symbol": "suzume" - }, - { - "id": "shitzu", - "name": "Shitzu", - "symbol": "shitzu" - }, - { - "id": "shiva-inu", - "name": "Shiva Inu", - "symbol": "shiv" - }, - { - "id": "shockwaves", - "name": "Shockwaves", - "symbol": "neuros" - }, - { - "id": "shoe404", - "name": "Shoe404", - "symbol": "shoe" - }, - { - "id": "shoebill-coin", - "name": "Shoebill Coin", - "symbol": "shbl" - }, - { - "id": "shoefy", - "name": "ShoeFy", - "symbol": "shoe" - }, - { - "id": "shoki", - "name": "Shoki", - "symbol": "shoki" - }, - { - "id": "shontoken", - "name": "Shon", - "symbol": "shon" - }, - { - "id": "shoot-2", - "name": "SHOOT", - "symbol": "shoot" - }, - { - "id": "shopnext-loyalty-token", - "name": "ShopNext Loyalty Token", - "symbol": "next" - }, - { - "id": "shopnext-reward-token", - "name": "ShopNEXT Reward Token", - "symbol": "ste" - }, - { - "id": "shoppingfriend-ai", - "name": "ShoppingFriend.AI", - "symbol": "aibuddy" - }, - { - "id": "shopping-io-token", - "name": "Shopping.io", - "symbol": "shop" - }, - { - "id": "short-term-t-bill-token", - "name": "Short-term T-Bill Token", - "symbol": "stbt" - }, - { - "id": "shping", - "name": "Shping", - "symbol": "shping" - }, - { - "id": "shrapnel-2", - "name": "Shrapnel", - "symbol": "shrap" - }, - { - "id": "shredn", - "name": "ShredN", - "symbol": "shred" - }, - { - "id": "shredn-dog", - "name": "Shredn Dog", - "symbol": "shredn" - }, - { - "id": "shree", - "name": "SHREE", - "symbol": "shr" - }, - { - "id": "shrimp", - "name": "Shrimp", - "symbol": "shrimp" - }, - { - "id": "shroom", - "name": "Shroom", - "symbol": "shroom" - }, - { - "id": "shroom-finance", - "name": "Niftyx Protocol", - "symbol": "shroom" - }, - { - "id": "shuffle-2", - "name": "Shuffle", - "symbol": "shfl" - }, - { - "id": "shuffle-by-hupayx", - "name": "SHUFFLE by HUPAYX", - "symbol": "sfl" - }, - { - "id": "shui", - "name": "SHUI", - "symbol": "shui" - }, - { - "id": "shui-cfx", - "name": "SHUI CFX", - "symbol": "scfx" - }, - { - "id": "shuts-wave", - "name": "shuts Wave", - "symbol": "swave" - }, - { - "id": "shutter", - "name": "Shutter", - "symbol": "shu" - }, - { - "id": "shyft-network-2", - "name": "Shyft Network", - "symbol": "shft" - }, - { - "id": "siacoin", - "name": "Siacoin", - "symbol": "sc" - }, - { - "id": "siamese", - "name": "Siamese", - "symbol": "siam" - }, - { - "id": "siaprime-coin", - "name": "ScPrime", - "symbol": "scp" - }, - { - "id": "side-eye-cat", - "name": "Side Eye Cat", - "symbol": "sec" - }, - { - "id": "sideshift-token", - "name": "SideShift", - "symbol": "xai" - }, - { - "id": "sidus", - "name": "Sidus", - "symbol": "sidus" - }, - { - "id": "sienna", - "name": "Sienna", - "symbol": "sienna" - }, - { - "id": "sienna-erc20", - "name": "Sienna [ERC-20]", - "symbol": "wsienna" - }, - { - "id": "sifchain", - "name": "Sifchain", - "symbol": "erowan" - }, - { - "id": "sifu-vision-2", - "name": "Sifu Vision", - "symbol": "sifu" - }, - { - "id": "sign", - "name": "Sign Token", - "symbol": "sign" - }, - { - "id": "signai", - "name": "SignAI", - "symbol": "sai" - }, - { - "id": "signata", - "name": "Signata", - "symbol": "sata" - }, - { - "id": "signed", - "name": "Signed", - "symbol": "sign" - }, - { - "id": "signet", - "name": "Signet", - "symbol": "sig" - }, - { - "id": "signum", - "name": "Signum", - "symbol": "signa" - }, - { - "id": "silent-notary", - "name": "Silent Notary", - "symbol": "ubsn" - }, - { - "id": "silk", - "name": "Spider Tanks", - "symbol": "silk" - }, - { - "id": "silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2", - "name": "Silk", - "symbol": "silk" - }, - { - "id": "sillybird", - "name": "Sillybird", - "symbol": "sib" - }, - { - "id": "silly-bonk", - "name": "Silly Bonk", - "symbol": "sillybonk" - }, - { - "id": "sillycat", - "name": "Sillycat", - "symbol": "sillycat" - }, - { - "id": "silly-dragon", - "name": "Silly Dragon", - "symbol": "silly" - }, - { - "id": "silly-goose", - "name": "Silly Goose", - "symbol": "goo" - }, - { - "id": "sillynubcat", - "name": "Sillynubcat", - "symbol": "nub" - }, - { - "id": "silo-finance", - "name": "Silo Finance", - "symbol": "silo" - }, - { - "id": "silva-token", - "name": "Silva", - "symbol": "silva" - }, - { - "id": "silver", - "name": "SILVER", - "symbol": "silver" - }, - { - "id": "silverstonks", - "name": "Silver Stonks", - "symbol": "sstx" - }, - { - "id": "silver-tokenized-stock-defichain", - "name": "iShares Silver Trust Defichain", - "symbol": "dslv" - }, - { - "id": "simba-coin", - "name": "Simba Coin", - "symbol": "simba" - }, - { - "id": "simbcoin-swap", - "name": "SimbCoin Swap", - "symbol": "smbswap" - }, - { - "id": "simong-coin", - "name": "SIMONG COIN", - "symbol": "smc" - }, - { - "id": "simple-asymmetry-eth", - "name": "Simple Asymmetry ETH", - "symbol": "safeth" - }, - { - "id": "simplehub", - "name": "SimpleHub", - "symbol": "shub" - }, - { - "id": "simple-masternode-coin", - "name": "Simple Masternode Coin", - "symbol": "smnc" - }, - { - "id": "simple-token", - "name": "OST", - "symbol": "ost" - }, - { - "id": "simpli-finance", - "name": "Simpli Finance", - "symbol": "simpli" - }, - { - "id": "simpson6900", - "name": "Simpson6900", - "symbol": "simpson690" - }, - { - "id": "simracer-coin", - "name": "Simracer Coin", - "symbol": "src" - }, - { - "id": "sin", - "name": "sinDAO", - "symbol": "sin" - }, - { - "id": "sin-city", - "name": "Sinverse", - "symbol": "sin" - }, - { - "id": "sincronix", - "name": "SincroniX", - "symbol": "snx" - }, - { - "id": "sindi", - "name": "SINDI", - "symbol": "sindi" - }, - { - "id": "single-finance", - "name": "Single Finance", - "symbol": "single" - }, - { - "id": "sing-token", - "name": "Sing", - "symbol": "sing" - }, - { - "id": "sing-token-ftm", - "name": "Sing FTM", - "symbol": "sing" - }, - { - "id": "singulardtv", - "name": "SingularDTV", - "symbol": "sngls" - }, - { - "id": "singularity", - "name": "Singularity", - "symbol": "sgly" - }, - { - "id": "singularitydao", - "name": "SingularityDAO", - "symbol": "sdao" - }, - { - "id": "singularitynet", - "name": "SingularityNET", - "symbol": "agix" - }, - { - "id": "sino", - "name": "Cantosino.com", - "symbol": "sino" - }, - { - "id": "sint-truidense-voetbalvereniging-fan-token", - "name": "Sint-Truidense Voetbalvereniging Fan Token", - "symbol": "stv" - }, - { - "id": "sipher", - "name": "SIPHER", - "symbol": "sipher" - }, - { - "id": "siphon-life-spell", - "name": "Siphon Life Spell", - "symbol": "sls" - }, - { - "id": "sir", - "name": "Sir", - "symbol": "sir" - }, - { - "id": "siren", - "name": "Siren", - "symbol": "si" - }, - { - "id": "sirin-labs-token", - "name": "Sirin Labs", - "symbol": "srn" - }, - { - "id": "sirius-finance", - "name": "Sirius Finance", - "symbol": "srs" - }, - { - "id": "siriusnet", - "name": "Siriusnet", - "symbol": "sint" - }, - { - "id": "sispop", - "name": "SISPOP", - "symbol": "sispop" - }, - { - "id": "six-network", - "name": "SIX Network", - "symbol": "six" - }, - { - "id": "six-sigma", - "name": "Six Sigma", - "symbol": "sge" - }, - { - "id": "size", - "name": "SIZE", - "symbol": "size" - }, - { - "id": "size-2", - "name": "SIZE", - "symbol": "size" - }, - { - "id": "sj741-emeralds", - "name": "SJ741 Emeralds", - "symbol": "emerald" - }, - { - "id": "skale", - "name": "SKALE", - "symbol": "skl" - }, - { - "id": "skeb", - "name": "Skeb", - "symbol": "skeb" - }, - { - "id": "skey-network", - "name": "Skey Network", - "symbol": "skey" - }, - { - "id": "skibidi-toilet", - "name": "Skibidi Toilet", - "symbol": "toilet" - }, - { - "id": "sklay", - "name": "sKLAY", - "symbol": "sklay" - }, - { - "id": "skol", - "name": "Skol", - "symbol": "$skol" - }, - { - "id": "skolana", - "name": "SKOLANA", - "symbol": "skol" - }, - { - "id": "skrimples", - "name": "Skrimples", - "symbol": "skrimp" - }, - { - "id": "skrumble-network", - "name": "Skrumble Network", - "symbol": "skm" - }, - { - "id": "skullswap-exchange", - "name": "SkullSwap Exchange", - "symbol": "skull" - }, - { - "id": "skycoin", - "name": "Skycoin", - "symbol": "sky" - }, - { - "id": "skydogenet", - "name": "skydogenet", - "symbol": "skydoge" - }, - { - "id": "skydrome", - "name": "Skydrome", - "symbol": "sky" - }, - { - "id": "sky-hause", - "name": "Sky Hause", - "symbol": "skyh" - }, - { - "id": "skypath", - "name": "Skypath", - "symbol": "sky" - }, - { - "id": "skyplay", - "name": "SKYPlay", - "symbol": "skp" - }, - { - "id": "skyrim-finance", - "name": "Skyrim Finance", - "symbol": "skyrim" - }, - { - "id": "slam-token", - "name": "Slam", - "symbol": "slam" - }, - { - "id": "slap-face", - "name": "Slap Face", - "symbol": "slafac" - }, - { - "id": "sl-benfica-fan-token", - "name": "SL Benfica Fan Token", - "symbol": "benfica" - }, - { - "id": "sleepless-ai", - "name": "Sleepless AI", - "symbol": "ai" - }, - { - "id": "slerf", - "name": "Slerf", - "symbol": "slerf" - }, - { - "id": "slerf-cat", - "name": "Slerf Cat", - "symbol": "slerfcat" - }, - { - "id": "slex", - "name": "Slex", - "symbol": "slex" - }, - { - "id": "slimcoin", - "name": "Slimcoin", - "symbol": "slm" - }, - { - "id": "slingshot", - "name": "Slingshot", - "symbol": "sling" - }, - { - "id": "slm-games", - "name": "SLM.Games", - "symbol": "slm" - }, - { - "id": "slnv2", - "name": "SLNV2", - "symbol": "slnv2" - }, - { - "id": "slp", - "name": "SLP", - "symbol": "slp" - }, - { - "id": "small-doge", - "name": "Small Doge", - "symbol": "sdog" - }, - { - "id": "smardex", - "name": "SmarDex", - "symbol": "sdex" - }, - { - "id": "smart-aliens", - "name": "Smart Aliens", - "symbol": "sas" - }, - { - "id": "smartaudit-ai", - "name": "SmartAudit AI", - "symbol": "audit" - }, - { - "id": "smart-blockchain", - "name": "SMART BLOCKCHAIN", - "symbol": "smart" - }, - { - "id": "smart-block-chain-city", - "name": "Smart Block Chain City", - "symbol": "sbcc" - }, - { - "id": "smartcash", - "name": "SmartCash", - "symbol": "smart" - }, - { - "id": "smart-coin-smrtr", - "name": "SmarterCoin", - "symbol": "smrtr" - }, - { - "id": "smartcredit-token", - "name": "SmartCredit", - "symbol": "smartcredit" - }, - { - "id": "smart-game-finance", - "name": "Smart Game Finance", - "symbol": "smart" - }, - { - "id": "smartlands", - "name": "Definder Network", - "symbol": "dnt" - }, - { - "id": "smart-layer-network", - "name": "Smart Layer Network", - "symbol": "sln" - }, - { - "id": "smartlink", - "name": "Smartlink", - "symbol": "smak" - }, - { - "id": "smart-marketing-token", - "name": "Smart Marketing", - "symbol": "smt" - }, - { - "id": "smartmesh", - "name": "SmartMesh", - "symbol": "smt" - }, - { - "id": "smart-mfg", - "name": "Smart MFG", - "symbol": "mfg" - }, - { - "id": "smartmoney", - "name": "SmartMoney", - "symbol": "smrt" - }, - { - "id": "smartnft", - "name": "SmartNFT", - "symbol": "smartnft" - }, - { - "id": "smartofgiving", - "name": "smARTOFGIVING", - "symbol": "aog" - }, - { - "id": "smartpad-2", - "name": "SmartPad", - "symbol": "pad" - }, - { - "id": "smart-reward-token", - "name": "Smart Reward Token", - "symbol": "srt" - }, - { - "id": "smartsettoken", - "name": "SmartsetToken", - "symbol": "sst" - }, - { - "id": "smartshare", - "name": "Smartshare", - "symbol": "ssp" - }, - { - "id": "smart-trade-bot", - "name": "Smart Trade-BOT", - "symbol": "smart-bot" - }, - { - "id": "smart-valor", - "name": "Smart Valor", - "symbol": "valor" - }, - { - "id": "smart-wallet-token", - "name": "Smart Wallet", - "symbol": "swt" - }, - { - "id": "smartworld-global", - "name": "SmartWorld Global Token", - "symbol": "swgt" - }, - { - "id": "smart-world-union", - "name": "Smart World Union", - "symbol": "swu" - }, - { - "id": "smarty-pay", - "name": "Smarty Pay", - "symbol": "spy" - }, - { - "id": "smash-cash", - "name": "Smash Cash", - "symbol": "smash" - }, - { - "id": "smell", - "name": "Smell", - "symbol": "sml" - }, - { - "id": "smileai", - "name": "SmileAI", - "symbol": "smile" - }, - { - "id": "smilestack", - "name": "SmileStack", - "symbol": "sst" - }, - { - "id": "smiley-coin", - "name": "Smiley Coin", - "symbol": "smiley" - }, - { - "id": "smog", - "name": "Smog", - "symbol": "smog" - }, - { - "id": "smoked-token-burn", - "name": "Smoked Token Burn", - "symbol": "burn" - }, - { - "id": "smolano", - "name": "SmoLanO", - "symbol": "slo" - }, - { - "id": "smolcoin", - "name": "Smolcoin", - "symbol": "smol" - }, - { - "id": "smolecoin", - "name": "smolecoin", - "symbol": "smole" - }, - { - "id": "smol-su", - "name": "Smol Su", - "symbol": "su" - }, - { - "id": "smooth-love-potion", - "name": "Smooth Love Potion", - "symbol": "slp" - }, - { - "id": "smoothy", - "name": "Smoothy", - "symbol": "smty" - }, - { - "id": "smorf", - "name": "smorf", - "symbol": "smorf" - }, - { - "id": "smp-finance", - "name": "SMP Finance", - "symbol": "smpf" - }, - { - "id": "smudge-cat", - "name": "Smudge Cat", - "symbol": "smudcat" - }, - { - "id": "smudge-lord", - "name": "Smudge Lord", - "symbol": "smudge" - }, - { - "id": "smurfsinu", - "name": "SmurfsINU", - "symbol": "smurf" - }, - { - "id": "snailbrook", - "name": "SnailBrook", - "symbol": "snail" - }, - { - "id": "snailmoon", - "name": "SnailMoon", - "symbol": "snm" - }, - { - "id": "snail-trail", - "name": "Snail Trail", - "symbol": "slime" - }, - { - "id": "snake-city", - "name": "Snake City", - "symbol": "snct" - }, - { - "id": "snakes-game", - "name": "Snakes Game", - "symbol": "snakes" - }, - { - "id": "snapcat", - "name": "Snapcat", - "symbol": "snapcat" - }, - { - "id": "snap-kero", - "name": "SNAP", - "symbol": "$nap" - }, - { - "id": "snaps", - "name": "Snaps", - "symbol": "snps" - }, - { - "id": "snark-launch", - "name": "Snark Launch", - "symbol": "$snrk" - }, - { - "id": "sneel", - "name": "SNEEL", - "symbol": "sneel" - }, - { - "id": "snek", - "name": "Snek", - "symbol": "snek" - }, - { - "id": "snepe", - "name": "SNEPE", - "symbol": "snepe" - }, - { - "id": "snetwork", - "name": "Snetwork", - "symbol": "snet" - }, - { - "id": "snfts-seedify-nft-space", - "name": "Seedify NFT Space", - "symbol": "snfts" - }, - { - "id": "snibbu", - "name": "Snibbu", - "symbol": "snibbu" - }, - { - "id": "snipe-finance", - "name": "Snipe Finance", - "symbol": "snipe" - }, - { - "id": "snkrz-fit", - "name": "Fit", - "symbol": "fit" - }, - { - "id": "snook", - "name": "Snook", - "symbol": "snk" - }, - { - "id": "snoopybabe", - "name": "SNOOPYBABE", - "symbol": "sbabe" - }, - { - "id": "snowball-2", - "name": "Snowball", - "symbol": "snox" - }, - { - "id": "snowball-token", - "name": "Snowball", - "symbol": "snob" - }, - { - "id": "snowbank", - "name": "Snowbank", - "symbol": "sb" - }, - { - "id": "snow-bot", - "name": "Snow Bot", - "symbol": "sbot" - }, - { - "id": "snowcrash-token", - "name": "SnowCrash", - "symbol": "nora" - }, - { - "id": "snow-inu", - "name": "Snow Inu", - "symbol": "snow" - }, - { - "id": "snow-leopard-irbis", - "name": "Snow Leopard - IRBIS", - "symbol": "irbis" - }, - { - "id": "snowman", - "name": "Snowman", - "symbol": "snow" - }, - { - "id": "snowswap", - "name": "Snowswap", - "symbol": "snow" - }, - { - "id": "snowtomb", - "name": "Snowtomb", - "symbol": "stomb" - }, - { - "id": "snowtomb-lot", - "name": "Snowtomb LOT", - "symbol": "slot" - }, - { - "id": "snx-yvault", - "name": "SNX yVault", - "symbol": "yvsnx" - }, - { - "id": "soakmont", - "name": "Soakmont", - "symbol": "skmt" - }, - { - "id": "soarchain", - "name": "Soarchain", - "symbol": "motus" - }, - { - "id": "sobit-bridge", - "name": "SoBit Bridge", - "symbol": "sobb" - }, - { - "id": "soccer-crypto", - "name": "Soccer Crypto", - "symbol": "sot" - }, - { - "id": "socean-staked-sol", - "name": "Infinity", - "symbol": "inf" - }, - { - "id": "social-ai", - "name": "Social AI", - "symbol": "socialai" - }, - { - "id": "social-capitalism-2", - "name": "Social Capitalism", - "symbol": "socap" - }, - { - "id": "social-good-project", - "name": "SocialGood", - "symbol": "sg" - }, - { - "id": "social-send", - "name": "Social Send", - "symbol": "send" - }, - { - "id": "socialswap-token", - "name": "Social Swap", - "symbol": "sst" - }, - { - "id": "societe-generale-forge-eurcv", - "name": "Societe Generale-FORGE EURCV", - "symbol": "eurcv" - }, - { - "id": "sociocat", - "name": "SocioCat", - "symbol": "$cat" - }, - { - "id": "socol", - "name": "SO-COL", - "symbol": "simp" - }, - { - "id": "socomfy", - "name": "SOCOMFY", - "symbol": "comfy" - }, - { - "id": "socrates", - "name": "Socrates", - "symbol": "soc" - }, - { - "id": "sodi-protocol", - "name": "Sodi Protocol", - "symbol": "sodi" - }, - { - "id": "soft-coq-inu", - "name": "SOFT COQ INU", - "symbol": "softco" - }, - { - "id": "soft-dao", - "name": "Soft DAO", - "symbol": "soft" - }, - { - "id": "soge-2", - "name": "SOGE", - "symbol": "soge" - }, - { - "id": "sohotrn", - "name": "SOHOTRN", - "symbol": "sohot" - }, - { - "id": "soil", - "name": "Soil", - "symbol": "soil" - }, - { - "id": "sojak", - "name": "Sojak", - "symbol": "sojak" - }, - { - "id": "sojudao", - "name": "SOJUDAO", - "symbol": "soju" - }, - { - "id": "sokuswap", - "name": "SokuSwap", - "symbol": "soku" - }, - { - "id": "solabrador-2", - "name": "Solabrador", - "symbol": "sober" - }, - { - "id": "solala", - "name": "Solala", - "symbol": "solala" - }, - { - "id": "solalgo", - "name": "Solalgo", - "symbol": "slgo" - }, - { - "id": "solama", - "name": "Solama", - "symbol": "solama" - }, - { - "id": "solamander", - "name": "Solamander", - "symbol": "soly" - }, - { - "id": "solamb", - "name": "Solamb", - "symbol": "solamb" - }, - { - "id": "solana", - "name": "Solana", - "symbol": "sol" - }, - { - "id": "solanaape", - "name": "SolanaApe", - "symbol": "sape" - }, - { - "id": "solana-arcade", - "name": "Solana Arcade", - "symbol": "solcade" - }, - { - "id": "solana-beach", - "name": "Solana Beach", - "symbol": "solana" - }, - { - "id": "solanaconda", - "name": "Solanaconda", - "symbol": "sonda" - }, - { - "id": "solanacorn", - "name": "Solanacorn", - "symbol": "corn" - }, - { - "id": "solana-ecosystem-index", - "name": "Solana Ecosystem Index", - "symbol": "soli" - }, - { - "id": "solana-gun", - "name": "Solana Gun", - "symbol": "solgun" - }, - { - "id": "solanahub-staked-sol", - "name": "SolanaHub staked SOL", - "symbol": "hubsol" - }, - { - "id": "solana-inu", - "name": "Solana Inu", - "symbol": "inu" - }, - { - "id": "solana-meme-token", - "name": "SOLANA MEME TOKEN", - "symbol": "sol10" - }, - { - "id": "solana-nut", - "name": "Solana Nut", - "symbol": "solnut" - }, - { - "id": "solanapepe", - "name": "SolanaPepe", - "symbol": "spepe" - }, - { - "id": "solanaprime", - "name": "SolanaPrime", - "symbol": "prime" - }, - { - "id": "solana-shib", - "name": "Solana Shib\u00a0", - "symbol": "sshib" - }, - { - "id": "solana-street-bets", - "name": "Solana Street Bets", - "symbol": "ssb" - }, - { - "id": "solana-wars", - "name": "Solana Wars", - "symbol": "solwars" - }, - { - "id": "solanium", - "name": "Solanium", - "symbol": "slim" - }, - { - "id": "solape-token", - "name": "SOLAPE", - "symbol": "solape" - }, - { - "id": "solar", - "name": "Solar", - "symbol": "solar" - }, - { - "id": "solarbeam", - "name": "Solarbeam", - "symbol": "solar" - }, - { - "id": "solar-bear", - "name": "Solar Bear", - "symbol": "solbear" - }, - { - "id": "solarcoin", - "name": "Solarcoin", - "symbol": "slr" - }, - { - "id": "solar-dex", - "name": "Solar Dex", - "symbol": "solar" - }, - { - "id": "solar-energy", - "name": "Solar Energy", - "symbol": "seg" - }, - { - "id": "solareum-2", - "name": "Solareum", - "symbol": "solar" - }, - { - "id": "solareum-3", - "name": "SOLAREUM", - "symbol": "solareum" - }, - { - "id": "solareum-d260e488-50a0-4048-ace4-1b82f9822903", - "name": "Solareum", - "symbol": "srm" - }, - { - "id": "solareum-wallet", - "name": "Solareum Wallet", - "symbol": "xsb" - }, - { - "id": "solarflare", - "name": "Solarflare", - "symbol": "flare" - }, - { - "id": "solar-full-cycle", - "name": "Solar Full Cycle", - "symbol": "sfc" - }, - { - "id": "solar-swap", - "name": "Solar Swap", - "symbol": "solar" - }, - { - "id": "sola-token", - "name": "SOLA", - "symbol": "sola" - }, - { - "id": "solav", - "name": "SOLAV", - "symbol": "solav" - }, - { - "id": "solawave", - "name": "Solawave", - "symbol": "solawave" - }, - { - "id": "sola-x", - "name": "SOLA-X", - "symbol": "sax" - }, - { - "id": "sol-baby-doge", - "name": "SOL Baby Doge", - "symbol": "sbabydoge" - }, - { - "id": "solbank", - "name": "Solbank", - "symbol": "sb" - }, - { - "id": "solberg", - "name": "Solberg", - "symbol": "slb" - }, - { - "id": "solblaze", - "name": "Blaze", - "symbol": "blze" - }, - { - "id": "solbook", - "name": "SolBook", - "symbol": "book" - }, - { - "id": "solbot", - "name": "SOLBOT", - "symbol": "solb" - }, - { - "id": "solbroe", - "name": "SolBroe", - "symbol": "solbroe" - }, - { - "id": "solbull", - "name": "Solbull", - "symbol": "solbull" - }, - { - "id": "solcard", - "name": "SolCard", - "symbol": "solc" - }, - { - "id": "solcasino-token", - "name": "Solcasino Token", - "symbol": "scs" - }, - { - "id": "solchat", - "name": "Solchat", - "symbol": "chat" - }, - { - "id": "solchicks-shards", - "name": "SolChicks Shards", - "symbol": "shards" - }, - { - "id": "solchicks-token", - "name": "SolChicks", - "symbol": "chicks" - }, - { - "id": "solcial", - "name": "Solcial", - "symbol": "slcl" - }, - { - "id": "solcloud", - "name": "SolCloud", - "symbol": "cloud" - }, - { - "id": "solclout", - "name": "SolClout", - "symbol": "sct" - }, - { - "id": "soldex", - "name": "Soldex", - "symbol": "solx" - }, - { - "id": "soldocs", - "name": "SolDocs", - "symbol": "docs" - }, - { - "id": "soldoge", - "name": "SolDoge", - "symbol": "sdoge" - }, - { - "id": "soldragon", - "name": "SolDragon", - "symbol": "dragon" - }, - { - "id": "solend", - "name": "Solend", - "symbol": "slnd" - }, - { - "id": "soletheon", - "name": "Soletheon", - "symbol": "solen" - }, - { - "id": "solex-finance", - "name": "Solex Finance", - "symbol": "slx" - }, - { - "id": "solfarm", - "name": "Tulip Protocol", - "symbol": "tulip" - }, - { - "id": "solfarm-2", - "name": "SolFarm", - "symbol": "sfarm" - }, - { - "id": "solfiles", - "name": "Solfiles", - "symbol": "files" - }, - { - "id": "solfriends", - "name": "SolFriends", - "symbol": "friends" - }, - { - "id": "solge", - "name": "Solge", - "symbol": "solge" - }, - { - "id": "solgoat", - "name": "SolGoat", - "symbol": "solgoat" - }, - { - "id": "solgram", - "name": "SOLGRAM", - "symbol": "gram" - }, - { - "id": "solgraph", - "name": "SolGraph", - "symbol": "graph" - }, - { - "id": "solice", - "name": "Solice", - "symbol": "slc" - }, - { - "id": "solidefi", - "name": "SoliDefi", - "symbol": "solfi" - }, - { - "id": "solidex", - "name": "Solidex", - "symbol": "sex" - }, - { - "id": "solidlizard", - "name": "SolidLizard", - "symbol": "sliz" - }, - { - "id": "solidlizard-synthetic-usd", - "name": "SolidLizard synthetic USD", - "symbol": "slzusdc" - }, - { - "id": "solidlydex", - "name": "Solidly", - "symbol": "solid" - }, - { - "id": "solido-finance", - "name": "Solido Finance", - "symbol": "sido" - }, - { - "id": "solidus-aitech", - "name": "Solidus Ai Tech", - "symbol": "aitech" - }, - { - "id": "sol-killer", - "name": "Sol Killer", - "symbol": "damn" - }, - { - "id": "sollabs", - "name": "SOLLABS", - "symbol": "$sollabs" - }, - { - "id": "solmail", - "name": "SolMail", - "symbol": "mail" - }, - { - "id": "solmash", - "name": "SolMash", - "symbol": "mash" - }, - { - "id": "solmedia", - "name": "Solmedia", - "symbol": "media" - }, - { - "id": "solmoon-2", - "name": "SolMoon", - "symbol": "smoon" - }, - { - "id": "solmoon-bsc", - "name": "Solmoon BSC", - "symbol": "smoon" - }, - { - "id": "solnado-cash", - "name": "Solnado Cash", - "symbol": "cash" - }, - { - "id": "solnyfans", - "name": "SolnyFans", - "symbol": "solnyfans" - }, - { - "id": "solo-coin", - "name": "Sologenic", - "symbol": "solo" - }, - { - "id": "solomon-defina", - "name": "Solomon (Defina)", - "symbol": "solo" - }, - { - "id": "solong-the-dragon", - "name": "SOLONG The Dragon", - "symbol": "solong" - }, - { - "id": "solordi", - "name": "Solordi", - "symbol": "solo" - }, - { - "id": "solpaca", - "name": "Solpaca", - "symbol": "solpac" - }, - { - "id": "solpad-finance", - "name": "Solpad Finance", - "symbol": "solpad" - }, - { - "id": "solpaka", - "name": "Solpaka", - "symbol": "solpaka" - }, - { - "id": "solpay-finance", - "name": "SolPay Finance", - "symbol": "solpay" - }, - { - "id": "solpets", - "name": "SolPets", - "symbol": "pets" - }, - { - "id": "solphin", - "name": "Solphin", - "symbol": "solphin" - }, - { - "id": "solpod", - "name": "SolPod", - "symbol": "solpod" - }, - { - "id": "solragon", - "name": "SolRagon", - "symbol": "srgn" - }, - { - "id": "solrazr", - "name": "RazrFi", - "symbol": "solr" - }, - { - "id": "solrise-finance", - "name": "Solrise Finance", - "symbol": "slrs" - }, - { - "id": "sols", - "name": "sols", - "symbol": "sols" - }, - { - "id": "solsnap", - "name": "SolSnap", - "symbol": "snap" - }, - { - "id": "sols-ordinals", - "name": "SOLS (Ordinals)", - "symbol": "sols" - }, - { - "id": "solspend", - "name": "SolSpend", - "symbol": "spend" - }, - { - "id": "solster", - "name": "Solster", - "symbol": "str" - }, - { - "id": "solstorm", - "name": "SOLSTORM", - "symbol": "storm" - }, - { - "id": "solstream", - "name": "Solstream", - "symbol": "stream" - }, - { - "id": "soltato-fries", - "name": "Soltato FRIES", - "symbol": "fries" - }, - { - "id": "soltradingbot", - "name": "SolTradingBot", - "symbol": "stbot" - }, - { - "id": "solum", - "name": "Solum", - "symbol": "solum" - }, - { - "id": "solv-btc", - "name": "Solv BTC", - "symbol": "solvbtc" - }, - { - "id": "solve-care", - "name": "SOLVE", - "symbol": "solve" - }, - { - "id": "solvegas", - "name": "SolVegas", - "symbol": "solvegas" - }, - { - "id": "solv-protocol-stusd", - "name": "Solv Protocol stUSD", - "symbol": "stusd" - }, - { - "id": "sol-wormhole", - "name": "SOL (Wormhole)", - "symbol": "sol" - }, - { - "id": "sol-x", - "name": "Sol X", - "symbol": "solx" - }, - { - "id": "solxdex", - "name": "SolXdex", - "symbol": "solx" - }, - { - "id": "solx-gaming-guild", - "name": "SolX Gaming Guild", - "symbol": "sgg" - }, - { - "id": "solyard-finance", - "name": "Solyard Finance", - "symbol": "yard" - }, - { - "id": "solzilla", - "name": "Solzilla", - "symbol": "solzilla" - }, - { - "id": "sombra-network", - "name": "Sombra", - "symbol": "smbr" - }, - { - "id": "somee-social", - "name": "SoMee.Social", - "symbol": "somee" - }, - { - "id": "somesing", - "name": "SOMESING Exchange", - "symbol": "ssx" - }, - { - "id": "sommelier", - "name": "Sommelier", - "symbol": "somm" - }, - { - "id": "somnium-space-cubes", - "name": "Somnium Space CUBEs", - "symbol": "cube" - }, - { - "id": "sonarwatch", - "name": "SonarWatch", - "symbol": "sonar" - }, - { - "id": "sonata-network", - "name": "Sonata Network", - "symbol": "sona" - }, - { - "id": "songbird", - "name": "Songbird", - "symbol": "sgb" - }, - { - "id": "songbird-finance", - "name": "Songbird Finance", - "symbol": "sfin" - }, - { - "id": "sonic-2", - "name": "Sonic", - "symbol": "sonic" - }, - { - "id": "sonic-goat", - "name": "Sonic Goat", - "symbol": "sgoat" - }, - { - "id": "sonic-hotdog", - "name": "Sonic", - "symbol": "hotdog" - }, - { - "id": "sonic-inu", - "name": "Sonic Inu", - "symbol": "sonic" - }, - { - "id": "sonicpad", - "name": "Sonicpad", - "symbol": "snc" - }, - { - "id": "sonic-sniper-bot", - "name": "Sonic Sniper BOT", - "symbol": "sonic" - }, - { - "id": "sonic-suite", - "name": "Sonic Suite", - "symbol": "sonic" - }, - { - "id": "sonik", - "name": "SONIK", - "symbol": "sonik" - }, - { - "id": "sonm", - "name": "SONM", - "symbol": "snm" - }, - { - "id": "sonne-finance", - "name": "Sonne Finance", - "symbol": "sonne" - }, - { - "id": "sonocoin", - "name": "SonoCoin", - "symbol": "sono" - }, - { - "id": "son-of-brett", - "name": "Son of Brett", - "symbol": "bratt" - }, - { - "id": "son-of-pepe", - "name": "Son Of Pepe", - "symbol": "sop" - }, - { - "id": "sonorus", - "name": "Sonorus", - "symbol": "sns" - }, - { - "id": "soonswap", - "name": "SoonVerse", - "symbol": "soon" - }, - { - "id": "sopay", - "name": "SoPay", - "symbol": "sop" - }, - { - "id": "sopermen", - "name": "Sopermen", - "symbol": "soopy" - }, - { - "id": "sophiaverse", - "name": "SophiaVerse", - "symbol": "soph" - }, - { - "id": "sora", - "name": "Sora", - "symbol": "xor" - }, - { - "id": "sora-ai", - "name": "Sora AI", - "symbol": "sora" - }, - { - "id": "sorabtc-ordinals", - "name": "SoraBTC (Ordinals)", - "symbol": "sorabtc" - }, - { - "id": "sora-ceo", - "name": "SORA CEO", - "symbol": "soraceo" - }, - { - "id": "sorachancoin", - "name": "SorachanCoin", - "symbol": "sora" - }, - { - "id": "sora-doge", - "name": "Sora Doge", - "symbol": "soradoge" - }, - { - "id": "sora-solana", - "name": "Sora Solana", - "symbol": "sora" - }, - { - "id": "sora-synthetic-brl", - "name": "SORA Synthetic BRL", - "symbol": "xstbrl" - }, - { - "id": "sora-synthetic-btc", - "name": "SORA Synthetic BTC", - "symbol": "xstbtc" - }, - { - "id": "sora-synthetic-chf", - "name": "SORA Synthetic CHF", - "symbol": "xstchf" - }, - { - "id": "sora-synthetic-cny", - "name": "SORA Synthetic CNY", - "symbol": "xstcny" - }, - { - "id": "sora-synthetic-eur", - "name": "SORA Synthetic EUR", - "symbol": "xsteur" - }, - { - "id": "sora-synthetic-gbp", - "name": "SORA Synthetic GBP", - "symbol": "xstgbp" - }, - { - "id": "sora-synthetic-jpy", - "name": "SORA Synthetic JPY", - "symbol": "xstjpy" - }, - { - "id": "sora-synthetic-ltc", - "name": "SORA Synthetic LTC", - "symbol": "xstltc" - }, - { - "id": "sora-synthetic-rub", - "name": "SORA Synthetic RUB", - "symbol": "xstrub" - }, - { - "id": "sora-synthetics", - "name": "SORA Synthetics", - "symbol": "xst" - }, - { - "id": "sora-synthetic-usd", - "name": "SORA Synthetic USD", - "symbol": "xstusd" - }, - { - "id": "sora-synthetic-xag", - "name": "SORA Synthetic XAG", - "symbol": "xstxag" - }, - { - "id": "sora-validator-token", - "name": "Sora Validator", - "symbol": "val" - }, - { - "id": "sorcery-finance", - "name": "Sorcery Finance", - "symbol": "sor" - }, - { - "id": "soroosh-smart-ecosystem", - "name": "Soroosh Smart Ecosystem", - "symbol": "sse" - }, - { - "id": "soros", - "name": "Soros", - "symbol": "sor" - }, - { - "id": "soulboundid", - "name": "SoulboundID", - "symbol": "soulb" - }, - { - "id": "soul-dog-city-bones", - "name": "Soul Dogs City Bones", - "symbol": "bones" - }, - { - "id": "soulocoin", - "name": "SouloCoin", - "symbol": "soulo" - }, - { - "id": "soulsaver", - "name": "Soulsaver", - "symbol": "soul" - }, - { - "id": "soul-scanner", - "name": "Soul Scanner", - "symbol": "soul" - }, - { - "id": "soul-society", - "name": "Soul Society", - "symbol": "hon" - }, - { - "id": "soul-swap", - "name": "Soul Swap", - "symbol": "soul" - }, - { - "id": "souni-token", - "name": "Souni", - "symbol": "son" - }, - { - "id": "soup-finance", - "name": "Soup Finance", - "symbol": "soup" - }, - { - "id": "source", - "name": "Source", - "symbol": "source" - }, - { - "id": "sourceless", - "name": "Sourceless", - "symbol": "str" - }, - { - "id": "source-protocol", - "name": "Source Protocol", - "symbol": "srcx" - }, - { - "id": "sovi-token", - "name": "Sovi", - "symbol": "sovi" - }, - { - "id": "sovryn", - "name": "Sovryn", - "symbol": "sov" - }, - { - "id": "sovryn-dollar", - "name": "Sovryn Dollar", - "symbol": "dllr" - }, - { - "id": "sowa-ai", - "name": "Sowa AI", - "symbol": "sowa" - }, - { - "id": "soyjak", - "name": "Soyjak", - "symbol": "soy" - }, - { - "id": "soylanamanletcaptainz", - "name": "SoylanaManletCaptainZ", - "symbol": "ansem" - }, - { - "id": "spaceai-finance", - "name": "SpaceAI Finance", - "symbol": "spai" - }, - { - "id": "spaceape", - "name": "SpaceApe", - "symbol": "spaceape" - }, - { - "id": "spacebar", - "name": "Spacebar", - "symbol": "air" - }, - { - "id": "spacecatch", - "name": "SpaceCatch", - "symbol": "catch" - }, - { - "id": "spacechain-erc-20", - "name": "SpaceChain (ERC-20)", - "symbol": "spc" - }, - { - "id": "spacedawgs", - "name": "SpaceDawgs", - "symbol": "dawgs" - }, - { - "id": "spacedoge", - "name": "SpaceDoge", - "symbol": "sdoge" - }, - { - "id": "spacefalcon", - "name": "SpaceFalcon", - "symbol": "fcon" - }, - { - "id": "spacefi", - "name": "SpaceFi (Evmos)", - "symbol": "space" - }, - { - "id": "spacefi-zksync", - "name": "SpaceFi", - "symbol": "space" - }, - { - "id": "spacegoat-token", - "name": "SpaceGoat", - "symbol": "sgt" - }, - { - "id": "spacegrime", - "name": "SpaceGrime", - "symbol": "grimex" - }, - { - "id": "space-guild-diamond-token", - "name": "Space Guild Diamond Token", - "symbol": "dnt" - }, - { - "id": "space-id", - "name": "SPACE ID", - "symbol": "id" - }, - { - "id": "space-iz", - "name": "SPACE-iZ", - "symbol": "spiz" - }, - { - "id": "spacelens", - "name": "Spacelens", - "symbol": "space" - }, - { - "id": "spacemesh", - "name": "Spacemesh", - "symbol": "$smh" - }, - { - "id": "spacemine", - "name": "SpaceMine", - "symbol": "mine" - }, - { - "id": "space-misfits", - "name": "Space Misfits", - "symbol": "smcw" - }, - { - "id": "spacen", - "name": "SpaceN", - "symbol": "sn" - }, - { - "id": "spacepi-token", - "name": "SpacePi Token", - "symbol": "spacepi" - }, - { - "id": "space-rebase-xusd", - "name": "Space Rebase XUSD", - "symbol": "xusd" - }, - { - "id": "spaceshipx-ssx", - "name": "SpaceShipX SSX", - "symbol": "ssx" - }, - { - "id": "space-soldier", - "name": "Space Soldier", - "symbol": "soldier" - }, - { - "id": "spaceswap-milk2", - "name": "Spaceswap MILK2", - "symbol": "milk2" - }, - { - "id": "spaceswap-shake", - "name": "Spaceswap SHAKE", - "symbol": "shake" - }, - { - "id": "space-token-bsc", - "name": "Space Token", - "symbol": "space" - }, - { - "id": "spacevikings", - "name": "SpaceVikings", - "symbol": "svt" - }, - { - "id": "space-xmitter", - "name": "Space Xmitter", - "symbol": "sx" - }, - { - "id": "spacexpanse", - "name": "SpaceXpanse", - "symbol": "rod" - }, - { - "id": "spacey-2025", - "name": "SpaceY 2025", - "symbol": "spay" - }, - { - "id": "spain-national-fan-token", - "name": "Spain National Football Team Fan Token", - "symbol": "snft" - }, - { - "id": "sparko", - "name": "Sparko", - "symbol": "sparko" - }, - { - "id": "sparkpoint", - "name": "SparkPoint", - "symbol": "srk" - }, - { - "id": "sparkpoint-fuel", - "name": "SparkPoint Fuel", - "symbol": "sfuel" - }, - { - "id": "sparks", - "name": "SparksPay", - "symbol": "spk" - }, - { - "id": "sparkswap", - "name": "Sparkswap", - "symbol": "spark" - }, - { - "id": "spartacus", - "name": "Spartacus", - "symbol": "spa" - }, - { - "id": "spartadex", - "name": "SpartaDEX", - "symbol": "sparta" - }, - { - "id": "spartan-protocol-token", - "name": "Spartan Protocol", - "symbol": "sparta" - }, - { - "id": "spatial-computing", - "name": "Spatial Computing", - "symbol": "cmpt" - }, - { - "id": "spdr-s-p-500-etf-trust-defichain", - "name": "SPDR S&P 500 ETF Trust Defichain", - "symbol": "dspy" - }, - { - "id": "speciex", - "name": "Speciex", - "symbol": "spex" - }, - { - "id": "spectra-cash", - "name": "Spectra Cash", - "symbol": "scl" - }, - { - "id": "spectra-chain", - "name": "Spectra Chain", - "symbol": "spct" - }, - { - "id": "spectral", - "name": "Spectral", - "symbol": "spec" - }, - { - "id": "spectre-ai", - "name": "Spectre AI", - "symbol": "spectre" - }, - { - "id": "spectrecoin", - "name": "Alias", - "symbol": "alias" - }, - { - "id": "spectresecuritycoin", - "name": "SpectreSecurityCoin", - "symbol": "xspc" - }, - { - "id": "spectrum-finance", - "name": "Spectrum Finance", - "symbol": "spf" - }, - { - "id": "spectrum-marketplace", - "name": "Spectrum Marketplace", - "symbol": "spec" - }, - { - "id": "speculate-dao", - "name": "Speculate DAO", - "symbol": "spec" - }, - { - "id": "speed-mining-service", - "name": "Speed Mining Service", - "symbol": "sms" - }, - { - "id": "speed-star-joc", - "name": "Speed Star JOC", - "symbol": "joc" - }, - { - "id": "speed-star-speed", - "name": "Speed Star SPEED", - "symbol": "speed" - }, - { - "id": "speed-star-star", - "name": "Speed Star STAR", - "symbol": "star" - }, - { - "id": "speero", - "name": "Speero", - "symbol": "speero" - }, - { - "id": "spellfire", - "name": "Spellfire", - "symbol": "spellfire" - }, - { - "id": "spell-token", - "name": "Spell", - "symbol": "spell" - }, - { - "id": "sperax", - "name": "Sperax", - "symbol": "spa" - }, - { - "id": "sperax-usd", - "name": "Sperax USD", - "symbol": "usds" - }, - { - "id": "sphere-finance", - "name": "Sphere Finance", - "symbol": "sphere" - }, - { - "id": "spheresxs", - "name": "SphereSXS", - "symbol": "sxs" - }, - { - "id": "spherium", - "name": "Spherium", - "symbol": "sphri" - }, - { - "id": "spheroid-universe", - "name": "Spheroid Universe", - "symbol": "sph" - }, - { - "id": "sphynx-labs-bae5b42e-5e37-4607-8691-b56d3a5f344c", - "name": "Sphynx Labs", - "symbol": "sphynx" - }, - { - "id": "spice-trade", - "name": "Spice Trade", - "symbol": "spice" - }, - { - "id": "spiceusd", - "name": "SpiceUSD", - "symbol": "usds" - }, - { - "id": "spider", - "name": "Spider", - "symbol": "spider" - }, - { - "id": "spiderdao", - "name": "SpiderDAO", - "symbol": "spdr" - }, - { - "id": "spider-spirit", - "name": "Spider Spirit", - "symbol": "spider" - }, - { - "id": "spiderswap", - "name": "SpiderSwap", - "symbol": "spdr" - }, - { - "id": "spillways", - "name": "Spillways", - "symbol": "spillways" - }, - { - "id": "spinada-cash", - "name": "Spinada Cash", - "symbol": "spin" - }, - { - "id": "spinaq", - "name": "Spinaq", - "symbol": "spinaq" - }, - { - "id": "spin-fi", - "name": "Spin Fi", - "symbol": "$spin" - }, - { - "id": "spintop", - "name": "Spintop", - "symbol": "spin" - }, - { - "id": "spiraldao-coil", - "name": "SpiralDAO Coil", - "symbol": "coil" - }, - { - "id": "spiral-dao-staked-coil", - "name": "Spiral", - "symbol": "spr" - }, - { - "id": "spiritswap", - "name": "SpiritSwap", - "symbol": "spirit" - }, - { - "id": "splinterlands", - "name": "Splintershards", - "symbol": "sps" - }, - { - "id": "splyt", - "name": "SHOPX", - "symbol": "shopx" - }, - { - "id": "spodermen", - "name": "Spodermen", - "symbol": "spoody" - }, - { - "id": "sponge-2", - "name": "Sponge", - "symbol": "$sponge" - }, - { - "id": "sponge-f08b2fe4-9d9c-47c3-b5a0-84c2ac3bbbff", - "name": "Sponge (OLD)", - "symbol": "$sponge" - }, - { - "id": "spoofify", - "name": "Spoofify", - "symbol": "spoof" - }, - { - "id": "spookyshiba-2", - "name": "SpookyShiba", - "symbol": "spky" - }, - { - "id": "spookyswap", - "name": "Spookyswap", - "symbol": "boo" - }, - { - "id": "spooky-the-phantom", - "name": "Spooky The Phantom", - "symbol": "spooky" - }, - { - "id": "spookyz", - "name": "SpookyZ", - "symbol": "spz" - }, - { - "id": "spool-dao-token", - "name": "Spool", - "symbol": "spool" - }, - { - "id": "spoony", - "name": "Spoony", - "symbol": "spoon" - }, - { - "id": "spore", - "name": "Spore", - "symbol": "spore" - }, - { - "id": "spores-network", - "name": "Spores Network", - "symbol": "spo" - }, - { - "id": "sporkdao", - "name": "SporkDAO", - "symbol": "spork" - }, - { - "id": "sport", - "name": "SPORT", - "symbol": "sport" - }, - { - "id": "sportium", - "name": "Sportium", - "symbol": "sprt" - }, - { - "id": "sports-artificial", - "name": "Sports Artificial", - "symbol": "sports-ai" - }, - { - "id": "sports-bet", - "name": "Sports Bet", - "symbol": "sbet" - }, - { - "id": "sportsicon", - "name": "SportsIcon", - "symbol": "$icons" - }, - { - "id": "sportzchain", - "name": "Sportzchain", - "symbol": "spn" - }, - { - "id": "spot", - "name": "Spot", - "symbol": "spot" - }, - { - "id": "spotted-turtle", - "name": "Spotted Turtle", - "symbol": "st" - }, - { - "id": "spowars", - "name": "SPOWARS", - "symbol": "sow" - }, - { - "id": "spread-wisdom", - "name": "Spread Wisdom", - "symbol": "swim" - }, - { - "id": "spring", - "name": "Spring Token", - "symbol": "spring" - }, - { - "id": "sprink", - "name": "Sprink", - "symbol": "sprink" - }, - { - "id": "sprint-2", - "name": "Sprint", - "symbol": "swp" - }, - { - "id": "sprint-coin", - "name": "Sprint Coin", - "symbol": "sprx" - }, - { - "id": "spritzmoon-crypto", - "name": "SpritzMoon Crypto Token", - "symbol": "spritzmoon" - }, - { - "id": "spume", - "name": "Spume", - "symbol": "spume" - }, - { - "id": "spurdex", - "name": "SpurDex", - "symbol": "spdx" - }, - { - "id": "spurdo", - "name": "Spurdo", - "symbol": "spurdo" - }, - { - "id": "spurdo-sparde", - "name": "Spurdo Sp\u00e4rde", - "symbol": "spurdo" - }, - { - "id": "spx6900", - "name": "SPX6900", - "symbol": "spx" - }, - { - "id": "spyro", - "name": "SPYRO", - "symbol": "spyro" - }, - { - "id": "spyrolana", - "name": "Spyrolana", - "symbol": "spyro" - }, - { - "id": "sqgl-vault-nftx", - "name": "SQGL Vault (NFTX)", - "symbol": "sqgl" - }, - { - "id": "sqrcat", - "name": "SQRCAT", - "symbol": "sqrcat" - }, - { - "id": "sqts-ordinals", - "name": "SQTS (Ordinals)", - "symbol": "sqts" - }, - { - "id": "squad", - "name": "Superpower Squad", - "symbol": "squad" - }, - { - "id": "squadfund", - "name": "SquadFund", - "symbol": "sqf" - }, - { - "id": "squadswap", - "name": "SquadSwap", - "symbol": "squad" - }, - { - "id": "squid-game", - "name": "Squid Game", - "symbol": "squid" - }, - { - "id": "squid-game-2", - "name": "Squid Game", - "symbol": "squid" - }, - { - "id": "squid-game-2-0", - "name": "Squid Game 2.0", - "symbol": "squid2" - }, - { - "id": "squidgrow", - "name": "SquidGrow", - "symbol": "squidgrow" - }, - { - "id": "srune", - "name": "sRUNE", - "symbol": "srune" - }, - { - "id": "ssv-network", - "name": "SSV Network", - "symbol": "ssv" - }, - { - "id": "stabilize", - "name": "Stabilize", - "symbol": "stbz" - }, - { - "id": "stable-asset", - "name": "STABLE ASSET", - "symbol": "sta" - }, - { - "id": "stablecoin", - "name": "Stablecoin", - "symbol": "stable" - }, - { - "id": "stablecomp", - "name": "Stablecomp", - "symbol": "scomp" - }, - { - "id": "stabledoc-token", - "name": "Stabledoc", - "symbol": "sdt" - }, - { - "id": "stableusd", - "name": "USDS Classic", - "symbol": "usds" - }, - { - "id": "stable-usdlr", - "name": "Stable USDLR", - "symbol": "usdlr" - }, - { - "id": "stabl-fi", - "name": "Stabl.fi CASH", - "symbol": "cash" - }, - { - "id": "stably-cusd", - "name": "CUSD", - "symbol": "cusd" - }, - { - "id": "stack", - "name": "Stack", - "symbol": "stack" - }, - { - "id": "stacker-ai", - "name": "STACKER AI", - "symbol": "$stack" - }, - { - "id": "stackos", - "name": "StackOS", - "symbol": "sfx" - }, - { - "id": "stacks", - "name": "STACKS", - "symbol": "stacks" - }, - { - "id": "stackswap", - "name": "Stackswap", - "symbol": "stsw" - }, - { - "id": "stacktical", - "name": "DSLA Protocol", - "symbol": "dsla" - }, - { - "id": "stade-francais-paris-fan-token", - "name": "Stade Fran\u00e7ais Paris Fan Token", - "symbol": "sfp" - }, - { - "id": "stader", - "name": "Stader", - "symbol": "sd" - }, - { - "id": "stader-bnbx", - "name": "Stader BNBx", - "symbol": "bnbx" - }, - { - "id": "stader-ethx", - "name": "Stader ETHx", - "symbol": "ethx" - }, - { - "id": "stader-maticx", - "name": "Stader MaticX", - "symbol": "maticx" - }, - { - "id": "stader-nearx", - "name": "Stader NearX", - "symbol": "nearx" - }, - { - "id": "stader-sftmx", - "name": "BeethovenX sFTMX", - "symbol": "sftmx" - }, - { - "id": "stafi", - "name": "Stafi", - "symbol": "fis" - }, - { - "id": "stafi-staked-atom", - "name": "StaFi Staked ATOM", - "symbol": "ratom" - }, - { - "id": "stafi-staked-bnb", - "name": "StaFi Staked BNB", - "symbol": "rbnb" - }, - { - "id": "stafi-staked-matic", - "name": "StaFi Staked MATIC", - "symbol": "rmatic" - }, - { - "id": "stafi-staked-sol", - "name": "StaFi Staked SOL", - "symbol": "rsol" - }, - { - "id": "stafi-staked-swth", - "name": "StaFi Staked SWTH", - "symbol": "rswth" - }, - { - "id": "staika", - "name": "Staika", - "symbol": "stik" - }, - { - "id": "stakebooster-token", - "name": "StakeBooster Token", - "symbol": "sbt" - }, - { - "id": "stakeborg-dao", - "name": "Construct", - "symbol": "standard" - }, - { - "id": "stakecube", - "name": "Stakecube", - "symbol": "scc" - }, - { - "id": "staked-aave-balancer-pool-token", - "name": "Staked Aave Balancer Pool Token", - "symbol": "stkabpt" - }, - { - "id": "staked-ageur", - "name": "Angle Staked EURA", - "symbol": "steur" - }, - { - "id": "stake-dao", - "name": "Stake DAO", - "symbol": "sdt" - }, - { - "id": "stake-dao-crv", - "name": "Stake DAO CRV", - "symbol": "sdcrv" - }, - { - "id": "staked-aurora", - "name": "Staked Aurora", - "symbol": "staur" - }, - { - "id": "staked-bifi", - "name": "Staked BIFI", - "symbol": "moobifi" - }, - { - "id": "staked-core", - "name": "Staked CORE", - "symbol": "score" - }, - { - "id": "staked-ether", - "name": "Lido Staked Ether", - "symbol": "steth" - }, - { - "id": "staked-ethos-reserve-note", - "name": "Staked Ethos Reserve Note", - "symbol": "stern" - }, - { - "id": "staked-frax", - "name": "Staked FRAX", - "symbol": "sfrax" - }, - { - "id": "staked-frax-ether", - "name": "Staked Frax Ether", - "symbol": "sfrxeth" - }, - { - "id": "staked-fx", - "name": "Staked FX", - "symbol": "stfx" - }, - { - "id": "staked-hope", - "name": "Staked HOPE", - "symbol": "sthope" - }, - { - "id": "staked-kcs", - "name": "Staked KCS", - "symbol": "skcs" - }, - { - "id": "staked-metis-token", - "name": "Staked Metis Token", - "symbol": "artmetis" - }, - { - "id": "staked-near", - "name": "Staked NEAR", - "symbol": "stnear" - }, - { - "id": "staked-strk", - "name": "Nostra Staked STRK", - "symbol": "nststrk" - }, - { - "id": "staked-tarot", - "name": "Staked TAROT", - "symbol": "xtarot" - }, - { - "id": "staked-thala-apt", - "name": "Staked Thala APT", - "symbol": "sthapt" - }, - { - "id": "staked-tlos", - "name": "Staked TLOS", - "symbol": "stlos" - }, - { - "id": "staked-trx", - "name": "Staked TRX", - "symbol": "strx" - }, - { - "id": "staked-usdt", - "name": "Staked USDT", - "symbol": "stusdt" - }, - { - "id": "staked-vector", - "name": "Staked Vector", - "symbol": "svec" - }, - { - "id": "staked-veth", - "name": "Vector Reserve Staked vETH", - "symbol": "sveth" - }, - { - "id": "staked-vlx", - "name": "Staked VLX", - "symbol": "stvlx" - }, - { - "id": "staked-yearn-crv-vault", - "name": "Staked Yearn CRV Vault", - "symbol": "st-ycrv" - }, - { - "id": "staked-yearn-ether", - "name": "Staked Yearn Ether", - "symbol": "st-yeth" - }, - { - "id": "stakehouse-deth", - "name": "Stakehouse dETH", - "symbol": "deth" - }, - { - "id": "stakehouse-keth", - "name": "Stakehouse kETH", - "symbol": "keth" - }, - { - "id": "stake-link", - "name": "stake.link", - "symbol": "sdl" - }, - { - "id": "stake-link-staked-link", - "name": "Staked LINK", - "symbol": "stlink" - }, - { - "id": "stakestone-ether", - "name": "StakeStone ETH", - "symbol": "stone" - }, - { - "id": "stake-together", - "name": "Stake Together", - "symbol": "stpeth" - }, - { - "id": "stakewise", - "name": "StakeWise", - "symbol": "swise" - }, - { - "id": "stakewise-v3-oseth", - "name": "StakeWise Staked ETH", - "symbol": "oseth" - }, - { - "id": "stakify-finance", - "name": "Stakify Finance", - "symbol": "sify" - }, - { - "id": "stamp-2", - "name": "STAMP", - "symbol": "stamp" - }, - { - "id": "stampmap", - "name": "StampMap", - "symbol": "stmap" - }, - { - "id": "standard-protocol", - "name": "Standard Protocol", - "symbol": "stnd" - }, - { - "id": "standard-token", - "name": "The Standard Token", - "symbol": "tst" - }, - { - "id": "stan-token", - "name": "STAN Token", - "symbol": "stan" - }, - { - "id": "star-atlas", - "name": "Star Atlas", - "symbol": "atlas" - }, - { - "id": "star-atlas-dao", - "name": "Star Atlas DAO", - "symbol": "polis" - }, - { - "id": "starbot", - "name": "Starbot", - "symbol": "star" - }, - { - "id": "starbots", - "name": "Starbots", - "symbol": "bot" - }, - { - "id": "starchain", - "name": "StarChain", - "symbol": "stc" - }, - { - "id": "starcoin", - "name": "Starcoin", - "symbol": "stc" - }, - { - "id": "starfish-finance", - "name": "Starfish Finance", - "symbol": "sean" - }, - { - "id": "stargate-bridged-astr-astar-zkevm", - "name": "Stargate Bridged ASTR (Astar zkEVM)", - "symbol": "astr" - }, - { - "id": "stargate-finance", - "name": "Stargate Finance", - "symbol": "stg" - }, - { - "id": "stargaze", - "name": "Stargaze", - "symbol": "stars" - }, - { - "id": "starheroes", - "name": "StarHeroes", - "symbol": "star" - }, - { - "id": "stark-inu", - "name": "Stark Inu", - "symbol": "starkinu" - }, - { - "id": "starkmeta", - "name": "StarkMeta", - "symbol": "smeta" - }, - { - "id": "starknet", - "name": "Starknet", - "symbol": "strk" - }, - { - "id": "stark-owl", - "name": "Stark Owl", - "symbol": "owl" - }, - { - "id": "starkpepe", - "name": "StarkPepe", - "symbol": "spepe" - }, - { - "id": "starkpunks", - "name": "Starkpunks", - "symbol": "punk" - }, - { - "id": "starlaunch", - "name": "StarLaunch", - "symbol": "stars" - }, - { - "id": "starlay-finance", - "name": "Starlay Finance", - "symbol": "lay" - }, - { - "id": "starlink", - "name": "StarLink", - "symbol": "starl" - }, - { - "id": "starlink-program", - "name": "Starlink Program", - "symbol": "slk" - }, - { - "id": "starly", - "name": "Starly", - "symbol": "starly" - }, - { - "id": "starmon-token", - "name": "StarMon", - "symbol": "smon" - }, - { - "id": "starname", - "name": "Starname", - "symbol": "iov" - }, - { - "id": "starpad", - "name": "Starpad", - "symbol": "srp" - }, - { - "id": "star-quacks", - "name": "STAR QUACKS", - "symbol": "quacks" - }, - { - "id": "starry", - "name": "Starry", - "symbol": "starry" - }, - { - "id": "stars", - "name": "Stars", - "symbol": "srx" - }, - { - "id": "starsharks", - "name": "StarSharks", - "symbol": "sss" - }, - { - "id": "starship", - "name": "StarShip", - "symbol": "starship" - }, - { - "id": "starship-2", - "name": "Starship", - "symbol": "starship" - }, - { - "id": "starship-3", - "name": "Starship", - "symbol": "ssp" - }, - { - "id": "starship-4", - "name": "StarShip\ud83d\ude80", - "symbol": "stship" - }, - { - "id": "starship-erc20", - "name": "StarShip ERC20", - "symbol": "sship" - }, - { - "id": "starslax", - "name": "StarSlax", - "symbol": "sslx" - }, - { - "id": "startuperscoin", - "name": "Startupers", - "symbol": "star" - }, - { - "id": "starwallets-token", - "name": "StarWallets Token", - "symbol": "swt" - }, - { - "id": "star-wars-cat", - "name": "Star Wars Cat", - "symbol": "swcat" - }, - { - "id": "starworks-global-ecosystem", - "name": "STARX", - "symbol": "starx" - }, - { - "id": "stash-inu", - "name": "Stash Inu", - "symbol": "stash" - }, - { - "id": "stasis-eurs", - "name": "STASIS EURO", - "symbol": "eurs" - }, - { - "id": "stasis-network", - "name": "Stasis Network", - "symbol": "sts" - }, - { - "id": "stat", - "name": "STAT", - "symbol": "stat" - }, - { - "id": "statera", - "name": "Statera", - "symbol": "sta" - }, - { - "id": "sta-token", - "name": "STA", - "symbol": "sta" - }, - { - "id": "stats", - "name": "STATS", - "symbol": "stats" - }, - { - "id": "status", - "name": "Status", - "symbol": "snt" - }, - { - "id": "stay", - "name": "STAY", - "symbol": "stay" - }, - { - "id": "staysafu", - "name": "StaySAFU", - "symbol": "safu" - }, - { - "id": "steak", - "name": "Steak", - "symbol": "steak" - }, - { - "id": "steakd", - "name": "Steakd", - "symbol": "sdx" - }, - { - "id": "steakhut-finance", - "name": "SteakHut Finance", - "symbol": "steak" - }, - { - "id": "stealthcoin", - "name": "Stealth", - "symbol": "xst" - }, - { - "id": "stealth-deals", - "name": "Stealth Deals", - "symbol": "deal" - }, - { - "id": "steamboat-willie", - "name": "Steamboat Willie", - "symbol": "mickey" - }, - { - "id": "steam-exchange", - "name": "Steam Exchange", - "symbol": "steamx" - }, - { - "id": "steem", - "name": "Steem", - "symbol": "steem" - }, - { - "id": "steem-dollars", - "name": "Steem Dollars", - "symbol": "sbd" - }, - { - "id": "stella-2", - "name": "Stella", - "symbol": "stl" - }, - { - "id": "stella-fantasy-token", - "name": "Stella Fantasy Token", - "symbol": "sfty" - }, - { - "id": "stellar", - "name": "Stellar", - "symbol": "xlm" - }, - { - "id": "stellaryai", - "name": "StellaryAI", - "symbol": "stelai" - }, - { - "id": "stellaswap", - "name": "StellaSwap", - "symbol": "stella" - }, - { - "id": "stellaswap-staked-dot", - "name": "StellaSwap Staked DOT", - "symbol": "stdot" - }, - { - "id": "stellite", - "name": "Scala", - "symbol": "xla" - }, - { - "id": "stelsi", - "name": "STELSI", - "symbol": "stls" - }, - { - "id": "stem-ai", - "name": "Stem AI", - "symbol": "stem" - }, - { - "id": "stemx", - "name": "STEMX", - "symbol": "stemx" - }, - { - "id": "step", - "name": "Step", - "symbol": "step" - }, - { - "id": "step-app-fitfi", - "name": "Step App", - "symbol": "fitfi" - }, - { - "id": "stepex", - "name": "StepEx", - "symbol": "spex" - }, - { - "id": "step-finance", - "name": "Step Finance", - "symbol": "step" - }, - { - "id": "step-hero", - "name": "Step Hero", - "symbol": "hero" - }, - { - "id": "stepn", - "name": "GMT", - "symbol": "gmt" - }, - { - "id": "stereoai", - "name": "StereoAI", - "symbol": "stai" - }, - { - "id": "sterling-finance", - "name": "Sterling Finance", - "symbol": "str" - }, - { - "id": "stfx", - "name": "STFX", - "symbol": "stfx" - }, - { - "id": "stickbug", - "name": "stickbug", - "symbol": "stickbug" - }, - { - "id": "stilton", - "name": "Stilton", - "symbol": "stilt" - }, - { - "id": "stima", - "name": "STIMA", - "symbol": "stima" - }, - { - "id": "stkatom", - "name": "pSTAKE Staked ATOM", - "symbol": "stkatom" - }, - { - "id": "stkd-scrt", - "name": "Stkd SCRT", - "symbol": "stkd" - }, - { - "id": "stobox-token", - "name": "Stobox", - "symbol": "stbu" - }, - { - "id": "stohn-coin", - "name": "Stohn Coin", - "symbol": "soh" - }, - { - "id": "stoicdao", - "name": "stoicDAO", - "symbol": "zeta" - }, - { - "id": "ston", - "name": "Ston", - "symbol": "ston" - }, - { - "id": "ston-2", - "name": "STON", - "symbol": "ston" - }, - { - "id": "stoned", - "name": "STONED", - "symbol": "stoned" - }, - { - "id": "stonkmememan", - "name": "StonkMemeMan", - "symbol": "stonks" - }, - { - "id": "stonks-2", - "name": "STONKS", - "symbol": "stonks" - }, - { - "id": "stonks-3", - "name": "sTONks", - "symbol": "stonks" - }, - { - "id": "stonksdao", - "name": "STONKSDAO", - "symbol": "stonks" - }, - { - "id": "stopelon", - "name": "StopElon", - "symbol": "stopelon" - }, - { - "id": "storagechain", - "name": "StorageChain", - "symbol": "wstor" - }, - { - "id": "storepay", - "name": "Storepay", - "symbol": "spc" - }, - { - "id": "storex", - "name": "Storex", - "symbol": "strx" - }, - { - "id": "storj", - "name": "Storj", - "symbol": "storj" - }, - { - "id": "storm", - "name": "StormX", - "symbol": "stmx" - }, - { - "id": "storm-token", - "name": "Storm", - "symbol": "storm" - }, - { - "id": "storm-warfare", - "name": "Storm Warfare", - "symbol": "jan" - }, - { - "id": "storx", - "name": "StorX", - "symbol": "srx" - }, - { - "id": "story", - "name": "Story", - "symbol": "story" - }, - { - "id": "stox", - "name": "Stox", - "symbol": "stx" - }, - { - "id": "stp-network", - "name": "STP", - "symbol": "stpt" - }, - { - "id": "straitsx-indonesia-rupiah", - "name": "XIDR", - "symbol": "xidr" - }, - { - "id": "stratis", - "name": "Stratis", - "symbol": "strax" - }, - { - "id": "stratos", - "name": "Stratos", - "symbol": "stos" - }, - { - "id": "stratum-exchange", - "name": "Stratum Exchange", - "symbol": "strat" - }, - { - "id": "strawberry-elephant", - "name": "Strawberry Elephant", - "symbol": "\u0635\u0628\u0627\u062d \u0627\u0644\u0641\u0631" - }, - { - "id": "strch-token", - "name": "STRCH Token", - "symbol": "strch" - }, - { - "id": "streakk-chain", - "name": "Streakk Chain", - "symbol": "stkc" - }, - { - "id": "streamcoin", - "name": "StreamCoin", - "symbol": "strm" - }, - { - "id": "streamr", - "name": "Streamr", - "symbol": "data" - }, - { - "id": "streamr-xdata", - "name": "Streamr XDATA", - "symbol": "xdata" - }, - { - "id": "street-dogs", - "name": "Street Dogs", - "symbol": "streetdogs" - }, - { - "id": "streeth", - "name": "STREETH", - "symbol": "streeth" - }, - { - "id": "street-runner", - "name": "Street Runner", - "symbol": "srg" - }, - { - "id": "strelka-ai", - "name": "Strelka AI", - "symbol": "strelka ai" - }, - { - "id": "stride", - "name": "Stride", - "symbol": "strd" - }, - { - "id": "stride-staked-atom", - "name": "Stride Staked Atom", - "symbol": "statom" - }, - { - "id": "stride-staked-comdex", - "name": "Stride Staked Comdex", - "symbol": "stcmdx" - }, - { - "id": "stride-staked-dydx", - "name": "Stride Staked DYDX", - "symbol": "stdydx" - }, - { - "id": "stride-staked-dym", - "name": "Stride Staked DYM", - "symbol": "stdym" - }, - { - "id": "stride-staked-evmos", - "name": "Stride Staked Evmos", - "symbol": "stevmos" - }, - { - "id": "stride-staked-injective", - "name": "Stride Staked Injective", - "symbol": "stinj" - }, - { - "id": "stride-staked-juno", - "name": "Stride Staked Juno", - "symbol": "stjuno" - }, - { - "id": "stride-staked-luna", - "name": "Stride Staked Luna", - "symbol": "$stluna" - }, - { - "id": "stride-staked-osmo", - "name": "Stride Staked Osmo", - "symbol": "stosmo" - }, - { - "id": "stride-staked-sommelier", - "name": "Stride Staked Sommelier", - "symbol": "stsomm" - }, - { - "id": "stride-staked-stars", - "name": "Stride Staked Stars", - "symbol": "ststars" - }, - { - "id": "stride-staked-tia", - "name": "Stride Staked TIA", - "symbol": "sttia" - }, - { - "id": "stride-staked-umee", - "name": "Stride Staked Umee", - "symbol": "stumee" - }, - { - "id": "strike", - "name": "Strike", - "symbol": "strk" - }, - { - "id": "strikecoin", - "name": "StrikeX", - "symbol": "strx" - }, - { - "id": "strip-finance", - "name": "Strip Finance", - "symbol": "strip" - }, - { - "id": "strips-finance", - "name": "Strips Finance", - "symbol": "strp" - }, - { - "id": "stripto", - "name": "Stripto", - "symbol": "strip" - }, - { - "id": "strix", - "name": "Strix", - "symbol": "strix" - }, - { - "id": "stroke-prevention-genomicdao", - "name": "Stroke-Prevention GenomicDAO", - "symbol": "pcsp" - }, - { - "id": "strong", - "name": "Strong", - "symbol": "strong" - }, - { - "id": "stronger", - "name": "Stronger", - "symbol": "strngr" - }, - { - "id": "stronghands-finance", - "name": "StrongHands Finance", - "symbol": "ishnd" - }, - { - "id": "stronghold-token", - "name": "Stronghold", - "symbol": "shx" - }, - { - "id": "strongnode", - "name": "StrongNode", - "symbol": "sne" - }, - { - "id": "structure-finance", - "name": "Structure Finance", - "symbol": "stf" - }, - { - "id": "stryke", - "name": "Stryke", - "symbol": "syk" - }, - { - "id": "student-coin", - "name": "Student Coin", - "symbol": "stc" - }, - { - "id": "studioai", - "name": "StudioAi", - "symbol": "sai" - }, - { - "id": "study", - "name": "Study", - "symbol": "study" - }, - { - "id": "sturdy", - "name": "Sturdy", - "symbol": "strdy" - }, - { - "id": "style", - "name": "Style", - "symbol": "style" - }, - { - "id": "stzil", - "name": "stZIL", - "symbol": "stzil" - }, - { - "id": "suave", - "name": "Suave", - "symbol": "cce" - }, - { - "id": "subava-token", - "name": "Subava Token", - "symbol": "subava" - }, - { - "id": "subdao", - "name": "SubDAO", - "symbol": "gov" - }, - { - "id": "subi-network", - "name": "Subi Network", - "symbol": "subi" - }, - { - "id": "subquery-network", - "name": "SubQuery Network", - "symbol": "sqt" - }, - { - "id": "subsocial", - "name": "Subsocial", - "symbol": "sub" - }, - { - "id": "substratum", - "name": "Substratum", - "symbol": "sub" - }, - { - "id": "succession", - "name": "Succession", - "symbol": "sccn" - }, - { - "id": "success-kid", - "name": "Success Kid", - "symbol": "skid" - }, - { - "id": "sudoswap", - "name": "sudoswap", - "symbol": "sudo" - }, - { - "id": "sugarbaby", - "name": "Sugarbaby", - "symbol": "sugar" - }, - { - "id": "sugarbounce", - "name": "SugarBounce", - "symbol": "tip" - }, - { - "id": "sugarchain", - "name": "Sugarchain", - "symbol": "sugar" - }, - { - "id": "sugar-kingdom-odyssey", - "name": "Sugar Kingdom Odyssey", - "symbol": "sko" - }, - { - "id": "sugaryield", - "name": "SugarYield", - "symbol": "sugar" - }, - { - "id": "sui", - "name": "Sui", - "symbol": "sui" - }, - { - "id": "suia", - "name": "SUIA", - "symbol": "suia" - }, - { - "id": "suiboxer", - "name": "SUIBoxer", - "symbol": "sbox" - }, - { - "id": "suicune-on-sui", - "name": "Suicune on SUI", - "symbol": "hsui" - }, - { - "id": "suijin", - "name": "Suijin", - "symbol": "sin" - }, - { - "id": "sui-launch-token", - "name": "Sui Launch Token", - "symbol": "slt" - }, - { - "id": "suipad", - "name": "SuiPad", - "symbol": "suip" - }, - { - "id": "suipepe", - "name": "SuiPepe", - "symbol": "spepe" - }, - { - "id": "sui-pepe", - "name": "Sui Pepe", - "symbol": "spepe" - }, - { - "id": "suishiba", - "name": "SuiShiba", - "symbol": "suishib" - }, - { - "id": "suiswap", - "name": "Suiswap", - "symbol": "sswp" - }, - { - "id": "suitable", - "name": "Suitable", - "symbol": "table" - }, - { - "id": "suite", - "name": "Suite", - "symbol": "suite" - }, - { - "id": "suitizen", - "name": "Suitizen", - "symbol": "stz" - }, - { - "id": "suizuki", - "name": "Suizuki", - "symbol": "zuki" - }, - { - "id": "sukhavati-network", - "name": "Sukhavati Network", - "symbol": "skt" - }, - { - "id": "suku", - "name": "SUKU", - "symbol": "suku" - }, - { - "id": "sumcoin", - "name": "Sumcoin", - "symbol": "sum" - }, - { - "id": "sumer-money-subtc", - "name": "Sumer.Money suBTC", - "symbol": "subtc" - }, - { - "id": "sumer-money-sueth", - "name": "Sumer.Money suETH", - "symbol": "sueth" - }, - { - "id": "sumer-money-suusd", - "name": "Sumer.Money suUSD", - "symbol": "suusd" - }, - { - "id": "summer", - "name": "Summer", - "symbol": "summer" - }, - { - "id": "summoners-league", - "name": "Summoners League", - "symbol": "summon" - }, - { - "id": "sumokoin", - "name": "Sumokoin", - "symbol": "sumo" - }, - { - "id": "sunala", - "name": "Sunala", - "symbol": "sun" - }, - { - "id": "suncontract", - "name": "SunContract", - "symbol": "snc" - }, - { - "id": "sundaeswap", - "name": "SundaeSwap", - "symbol": "sundae" - }, - { - "id": "sundae-the-dog", - "name": "Sundae the Dog", - "symbol": "sundae" - }, - { - "id": "sunflower-land", - "name": "Sunflower Land", - "symbol": "sfl" - }, - { - "id": "sunny-aggregator", - "name": "Sunny Aggregator", - "symbol": "sunny" - }, - { - "id": "sunnysideup", - "name": "SunnySideUp", - "symbol": "ssu" - }, - { - "id": "sunrise", - "name": "Sunrise", - "symbol": "sunc" - }, - { - "id": "sun-token", - "name": "Sun Token", - "symbol": "sun" - }, - { - "id": "sun-tzu", - "name": "Sun Tzu", - "symbol": "tzu" - }, - { - "id": "supe-infinity", - "name": "Supe Infinity", - "symbol": "supe" - }, - { - "id": "superalgorithmicmoney", - "name": "SuperAlgorithmicMoney", - "symbol": "sam" - }, - { - "id": "super-athletes-token", - "name": "Super Athletes Token", - "symbol": "sat" - }, - { - "id": "super-best-friends", - "name": "Super Best Friends", - "symbol": "subf" - }, - { - "id": "superbid", - "name": "SuperBid", - "symbol": "superbid" - }, - { - "id": "supercells", - "name": "SuperCells", - "symbol": "sct" - }, - { - "id": "superciety", - "name": "PeerMe SUPER", - "symbol": "super" - }, - { - "id": "super-closed-source", - "name": "Super Closed Source", - "symbol": "closedai" - }, - { - "id": "super-cycle", - "name": "Super Cycle", - "symbol": "rich" - }, - { - "id": "superdapp", - "name": "SuperDapp", - "symbol": "supr" - }, - { - "id": "superfans-tech", - "name": "SuperFans.Tech", - "symbol": "fan" - }, - { - "id": "superfarm", - "name": "SuperVerse", - "symbol": "super" - }, - { - "id": "superfrank", - "name": "SuperFrank", - "symbol": "chfp" - }, - { - "id": "superlauncher-dao", - "name": "Superlauncher", - "symbol": "launch" - }, - { - "id": "supermarioporsche911inu", - "name": "SuperMarioPorsche911Inu", - "symbol": "silkroad" - }, - { - "id": "supermarket", - "name": "SuperMarket", - "symbol": "super" - }, - { - "id": "superrare", - "name": "SuperRare", - "symbol": "rare" - }, - { - "id": "super-rare-ball-shares", - "name": "Super Rare Ball Potion", - "symbol": "srbp" - }, - { - "id": "superrarebears-hype", - "name": "SuperRareBears HYPE", - "symbol": "hype" - }, - { - "id": "superrarebears-rare", - "name": "SuperRareBears RARE", - "symbol": "rare" - }, - { - "id": "super-seiyan", - "name": "Super Seiyan", - "symbol": "superseiyan" - }, - { - "id": "superstake", - "name": "Superstake", - "symbol": "superstake" - }, - { - "id": "superstate-short-duration-us-government-securities-fund-ustb", - "name": "Superstate Short Duration U.S. Government Securities Fund (USTB)", - "symbol": "ustb" - }, - { - "id": "super-sushi-samurai", - "name": "Super Sushi Samurai", - "symbol": "sss" - }, - { - "id": "super-trump", - "name": "Super Trump", - "symbol": "strump" - }, - { - "id": "super-vet", - "name": "Super Vet", - "symbol": "svet" - }, - { - "id": "superwalk", - "name": "SuperWalk", - "symbol": "grnd" - }, - { - "id": "super-zero", - "name": "SERO", - "symbol": "sero" - }, - { - "id": "supra", - "name": "Supra", - "symbol": "supra" - }, - { - "id": "supreme-finance", - "name": "Supreme Finance", - "symbol": "hype" - }, - { - "id": "suprenft", - "name": "SupreNFT", - "symbol": "snft" - }, - { - "id": "sureremit", - "name": "SureRemit", - "symbol": "rmt" - }, - { - "id": "surfboard", - "name": "SURFBOARD", - "symbol": "board" - }, - { - "id": "surfexutilitytoken", - "name": "SurfExUtilityToken", - "symbol": "surf" - }, - { - "id": "surge", - "name": "SURGE", - "symbol": "surge" - }, - { - "id": "surrealverse", - "name": "SurrealVerse", - "symbol": "azee" - }, - { - "id": "surveyor-dao", - "name": "Surveyor DAO", - "symbol": "surv" - }, - { - "id": "susd-yvault", - "name": "sUSD yVault", - "symbol": "yvsusd" - }, - { - "id": "sushi", - "name": "Sushi", - "symbol": "sushi" - }, - { - "id": "sushi-fighter", - "name": "Sushi Fighter", - "symbol": "$sushi" - }, - { - "id": "sushi-yvault", - "name": "SUSHI yVault", - "symbol": "yvsushi" - }, - { - "id": "sustainable-energy-token", - "name": "Sustainable Energy", - "symbol": "set" - }, - { - "id": "suterusu", - "name": "Suterusu", - "symbol": "suter" - }, - { - "id": "suvereno", - "name": "Suvereno", - "symbol": "suv" - }, - { - "id": "suzuverse", - "name": "Suzuverse", - "symbol": "sgt" - }, - { - "id": "swag-coin", - "name": "swag coin", - "symbol": "swag" - }, - { - "id": "swamp-coin", - "name": "Swamp Coin", - "symbol": "swamp" - }, - { - "id": "swap", - "name": "Swap", - "symbol": "xwp" - }, - { - "id": "swapblast-finance-token", - "name": "SwapBlast Finance Token", - "symbol": "sbf" - }, - { - "id": "swapdex", - "name": "SwapDEX", - "symbol": "sdxb" - }, - { - "id": "swapmode", - "name": "SwapMode", - "symbol": "smd" - }, - { - "id": "swapped-finance", - "name": "Swapped Finance", - "symbol": "swpd" - }, - { - "id": "swappi", - "name": "Swappi", - "symbol": "ppi" - }, - { - "id": "swapr", - "name": "Swapr", - "symbol": "swpr" - }, - { - "id": "swaprum", - "name": "Swaprum", - "symbol": "sapr" - }, - { - "id": "swaptracker", - "name": "SwapTracker", - "symbol": "swpt" - }, - { - "id": "swapz-app", - "name": "SWAPZ.app", - "symbol": "swapz" - }, - { - "id": "swarm", - "name": "Swarm Network", - "symbol": "swm" - }, - { - "id": "swarm-bzz", - "name": "Swarm", - "symbol": "bzz" - }, - { - "id": "swarm-markets", - "name": "Swarm Markets", - "symbol": "smt" - }, - { - "id": "swash", - "name": "Swash", - "symbol": "swash" - }, - { - "id": "sway-social", - "name": "Sway Social", - "symbol": "sway" - }, - { - "id": "sweatcoin", - "name": "Sweat Economy", - "symbol": "sweat" - }, - { - "id": "sweep-token", - "name": "Sweep Token", - "symbol": "sweep" - }, - { - "id": "sweet", - "name": "Sweet", - "symbol": "sweet" - }, - { - "id": "sweets", - "name": "SWEETS", - "symbol": "$swts" - }, - { - "id": "swell-network", - "name": "Swell Network", - "symbol": "swell" - }, - { - "id": "sweply", - "name": "Sweply", - "symbol": "swply" - }, - { - "id": "swerve-dao", - "name": "Swerve", - "symbol": "swrv" - }, - { - "id": "swerve-protocol", - "name": "SWERVE Protocol", - "symbol": "swerve" - }, - { - "id": "sweth", - "name": "Swell Ethereum", - "symbol": "sweth" - }, - { - "id": "swftcoin", - "name": "SWFTCOIN", - "symbol": "swftc" - }, - { - "id": "swift", - "name": "Swift", - "symbol": "swift" - }, - { - "id": "swiftbit", - "name": "SwiftBit", - "symbol": "sbc" - }, - { - "id": "swift-bot", - "name": "Swift Bot", - "symbol": "$swift" - }, - { - "id": "swiftcash", - "name": "SwiftCash", - "symbol": "swift" - }, - { - "id": "swiftpad", - "name": "SwiftPad", - "symbol": "swift" - }, - { - "id": "swiftswap", - "name": "SwiftSwap", - "symbol": "sws" - }, - { - "id": "swinca-2", - "name": "Swinca", - "symbol": "swi" - }, - { - "id": "swingby", - "name": "Swingby", - "symbol": "swingby" - }, - { - "id": "swing-xyz", - "name": "Swing.xyz", - "symbol": "$swing" - }, - { - "id": "swipe", - "name": "SXP", - "symbol": "sxp" - }, - { - "id": "swipe-token", - "name": "Swipe Token", - "symbol": "swipe" - }, - { - "id": "swirltoken", - "name": "SwirlToken (OLD)", - "symbol": "swirl" - }, - { - "id": "swissborg", - "name": "SwissBorg", - "symbol": "borg" - }, - { - "id": "swisscheese", - "name": "SwissCheese", - "symbol": "swch" - }, - { - "id": "switcheo", - "name": "Carbon Protocol", - "symbol": "swth" - }, - { - "id": "switch-token", - "name": "Switch Token", - "symbol": "switch" - }, - { - "id": "swop", - "name": "Swop", - "symbol": "swop" - }, - { - "id": "sword", - "name": "SWORD", - "symbol": "sword" - }, - { - "id": "sword-and-magic-world", - "name": "Sword and Magic World", - "symbol": "swo" - }, - { - "id": "sword-bot", - "name": "Sword Bot", - "symbol": "sword" - }, - { - "id": "sword-bsc-token", - "name": "Sword BSC Token", - "symbol": "swdb" - }, - { - "id": "swot-ai", - "name": "Swot AI", - "symbol": "swot" - }, - { - "id": "swtcoin", - "name": "SWTCoin", - "symbol": "swat" - }, - { - "id": "swusd", - "name": "Swerve.fi USD", - "symbol": "swusd" - }, - { - "id": "swych", - "name": "Swych", - "symbol": "swych" - }, - { - "id": "swyp-foundation", - "name": "SWYP Foundation", - "symbol": "swyp" - }, - { - "id": "sx-network", - "name": "SX Network (OLD)", - "symbol": "sx" - }, - { - "id": "sx-network-2", - "name": "SX Network", - "symbol": "sx" - }, - { - "id": "sx-network-bridged-usdc-sx-network", - "name": "SX Network Bridged USDC (SX Network)", - "symbol": "usdc" - }, - { - "id": "sybulls", - "name": "Sybulls", - "symbol": "sybl" - }, - { - "id": "sylo", - "name": "Sylo", - "symbol": "sylo" - }, - { - "id": "symbiosis-finance", - "name": "Symbiosis", - "symbol": "sis" - }, - { - "id": "symbol", - "name": "Symbol", - "symbol": "xym" - }, - { - "id": "symmetry-solana-lsd-fund", - "name": "Symmetry Solana LSD Fund", - "symbol": "ysol" - }, - { - "id": "symverse", - "name": "SymVerse", - "symbol": "sym" - }, - { - "id": "synapse-2", - "name": "Synapse", - "symbol": "syn" - }, - { - "id": "synapse-bridged-usdc-canto", - "name": "Synapse Bridged USDC (Canto)", - "symbol": "usdc" - }, - { - "id": "synapse-bridged-usdc-elastos", - "name": "Synapse Bridged USDC (Elastos)", - "symbol": "usdc" - }, - { - "id": "synapse-bridged-usdc-klaytn", - "name": "Synapse Bridged USDC (Klaytn)", - "symbol": "usdc" - }, - { - "id": "synapse-network-2", - "name": "Synapse Network", - "symbol": "zksnp" - }, - { - "id": "synaptic-ai", - "name": "Synaptic AI", - "symbol": "synapticai" - }, - { - "id": "synatra-staked-sol", - "name": "Synatra Staked SOL", - "symbol": "ysol" - }, - { - "id": "syncdex", - "name": "SyncDex", - "symbol": "sydx" - }, - { - "id": "synchrony", - "name": "Synchrony", - "symbol": "scy" - }, - { - "id": "synclub-staked-bnb", - "name": "Lista Staked BNB", - "symbol": "slisbnb" - }, - { - "id": "sync-network", - "name": "Sync Network", - "symbol": "sync" - }, - { - "id": "syncus", - "name": "Syncus", - "symbol": "sync" - }, - { - "id": "syndicate-2", - "name": "MOBLAND", - "symbol": "synr" - }, - { - "id": "synergy-crystal", - "name": "Synergy Crystal", - "symbol": "crs" - }, - { - "id": "synergy-diamonds", - "name": "Synergy Diamonds", - "symbol": "dia" - }, - { - "id": "synergy-land-token", - "name": "Synergy Land Token", - "symbol": "sng" - }, - { - "id": "synesis-one", - "name": "Synesis One", - "symbol": "sns" - }, - { - "id": "synonym-finance", - "name": "Synonym Finance", - "symbol": "syno" - }, - { - "id": "syntax-ai", - "name": "Syntax AI", - "symbol": "syntx" - }, - { - "id": "synthai", - "name": "SynthAI", - "symbol": "synthai" - }, - { - "id": "synth-ai", - "name": "Synth Ai", - "symbol": "syai" - }, - { - "id": "synthetic-ai", - "name": "Synthetic AI", - "symbol": "sai" - }, - { - "id": "synthetic-usd", - "name": "Synthetic USD", - "symbol": "xusd" - }, - { - "id": "synthetify-token", - "name": "Synthetify", - "symbol": "sny" - }, - { - "id": "synth-ousd", - "name": "Synth oUSD", - "symbol": "ousd" - }, - { - "id": "synthswap", - "name": "Synthswap", - "symbol": "synth" - }, - { - "id": "sypool", - "name": "Sypool", - "symbol": "syp" - }, - { - "id": "syrup-finance", - "name": "Syrup Finance", - "symbol": "srx" - }, - { - "id": "syscoin", - "name": "Syscoin", - "symbol": "sys" - }, - { - "id": "t23", - "name": "T23", - "symbol": "t23" - }, - { - "id": "t2t2", - "name": "T2T2", - "symbol": "t2t2" - }, - { - "id": "t3rn", - "name": "t3rn", - "symbol": "trn" - }, - { - "id": "tabank", - "name": "Tabank", - "symbol": "tab" - }, - { - "id": "tabbypos", - "name": "TabbyPOS", - "symbol": "epos" - }, - { - "id": "tabo", - "name": "TABO", - "symbol": "tabo" - }, - { - "id": "taboo-token", - "name": "Taboo", - "symbol": "taboo" - }, - { - "id": "tabtrader", - "name": "TabTrader", - "symbol": "ttt" - }, - { - "id": "tacocat", - "name": "TACOCAT", - "symbol": "tacocat" - }, - { - "id": "ta-da", - "name": "Ta-da", - "symbol": "tada" - }, - { - "id": "taggr", - "name": "TAGGR", - "symbol": "taggr" - }, - { - "id": "taho", - "name": "Taho", - "symbol": "taho" - }, - { - "id": "tahu", - "name": "TAHU", - "symbol": "tahu" - }, - { - "id": "tai", - "name": "tBridge", - "symbol": "tai" - }, - { - "id": "taikai", - "name": "TAIKAI", - "symbol": "tkai" - }, - { - "id": "taikula-coin", - "name": "Taikula Coin", - "symbol": "taikula" - }, - { - "id": "tail", - "name": "Tail", - "symbol": "tail" - }, - { - "id": "tai-money", - "name": "TAI", - "symbol": "tai" - }, - { - "id": "tajcoin", - "name": "TajCoin", - "symbol": "taj" - }, - { - "id": "takamaka-green-coin", - "name": "Takamaka", - "symbol": "tkg" - }, - { - "id": "takepile", - "name": "Takepile", - "symbol": "take" - }, - { - "id": "taki", - "name": "Taki Games", - "symbol": "taki" - }, - { - "id": "talaxeum", - "name": "Talaxeum", - "symbol": "talax" - }, - { - "id": "talecraft", - "name": "TaleCraft", - "symbol": "craft" - }, - { - "id": "talent-coin", - "name": "Talent Coin", - "symbol": "tlnt" - }, - { - "id": "talentido", - "name": "TalentIDO", - "symbol": "tal" - }, - { - "id": "taler", - "name": "Taler", - "symbol": "tlr" - }, - { - "id": "talis-protocol", - "name": "Talis Protocol", - "symbol": "talis" - }, - { - "id": "talkado", - "name": "Talkado", - "symbol": "talk" - }, - { - "id": "talken", - "name": "Talken", - "symbol": "talk" - }, - { - "id": "talki", - "name": "TALKI", - "symbol": "tal" - }, - { - "id": "tamadoge", - "name": "Tamadoge", - "symbol": "tama" - }, - { - "id": "tama-finance", - "name": "Tama Finance", - "symbol": "tama" - }, - { - "id": "tamagotchi", - "name": "Tamagotchi", - "symbol": "gotchi" - }, - { - "id": "tamkin", - "name": "Tamkin", - "symbol": "tslt" - }, - { - "id": "tangent", - "name": "Tangent", - "symbol": "tang" - }, - { - "id": "tangible", - "name": "Tangible", - "symbol": "tngbl" - }, - { - "id": "tangle-network", - "name": "Tangle Network", - "symbol": "tnt" - }, - { - "id": "tangleswap-void", - "name": "TangleSwap VOID", - "symbol": "void" - }, - { - "id": "tangoswap", - "name": "TangoSwap", - "symbol": "tango" - }, - { - "id": "tangyuan", - "name": "TangYuan", - "symbol": "tangyuan" - }, - { - "id": "tank-battle", - "name": "Tank Battle", - "symbol": "tbl" - }, - { - "id": "tank-gold", - "name": "Tank Gold", - "symbol": "tgold" - }, - { - "id": "tanks", - "name": "Tanks", - "symbol": "tanks" - }, - { - "id": "tanpin", - "name": "TanPin", - "symbol": "tanpin" - }, - { - "id": "tao-accounting-system", - "name": "Tao Accounting System", - "symbol": "tas" - }, - { - "id": "taobank", - "name": "TaoBank", - "symbol": "tbank" - }, - { - "id": "tao-bot", - "name": "tao.bot", - "symbol": "taobot" - }, - { - "id": "tao-ceti", - "name": "Tao Ce\u03c4i", - "symbol": "ceti" - }, - { - "id": "taoharvest", - "name": "TaoHarvest", - "symbol": "tah" - }, - { - "id": "tao-inu", - "name": "TAO INU", - "symbol": "taonu" - }, - { - "id": "tao-meme", - "name": "Tao Meme", - "symbol": "tao" - }, - { - "id": "taopad", - "name": "TaoPad", - "symbol": "tpad" - }, - { - "id": "taoplay", - "name": "TAOPlay", - "symbol": "taop" - }, - { - "id": "taoshi", - "name": "TAOSHI", - "symbol": "taoshi" - }, - { - "id": "taostack", - "name": "TaoStack", - "symbol": "tst" - }, - { - "id": "tao-subnet-sharding", - "name": "TAO Subnet Sharding", - "symbol": "taoshard" - }, - { - "id": "taounity", - "name": "TAOUnity", - "symbol": "utao" - }, - { - "id": "taovm", - "name": "TAOVM", - "symbol": "taovm" - }, - { - "id": "taox", - "name": "TAOx", - "symbol": "taox" - }, - { - "id": "tap", - "name": "Tap", - "symbol": "xtp" - }, - { - "id": "tap-fantasy", - "name": "Tap Fantasy", - "symbol": "tap" - }, - { - "id": "tapp-coin", - "name": "Tapp Coin", - "symbol": "tpx" - }, - { - "id": "taproot", - "name": "Taproot", - "symbol": "taproot" - }, - { - "id": "tarality", - "name": "Tarality", - "symbol": "taral" - }, - { - "id": "tara-token", - "name": "TARA TOKEN", - "symbol": "tara" - }, - { - "id": "taraxa", - "name": "Taraxa", - "symbol": "tara" - }, - { - "id": "tardigrades-finance", - "name": "TRDGtoken", - "symbol": "trdg" - }, - { - "id": "target-protocol", - "name": "Target Protocol", - "symbol": "target" - }, - { - "id": "targetwatch-bot", - "name": "TargetWatch Bot", - "symbol": "twb" - }, - { - "id": "tari-world", - "name": "Tari World", - "symbol": "tari" - }, - { - "id": "tarmex", - "name": "Tarmex [OLD]", - "symbol": "tarm" - }, - { - "id": "tarmex-2", - "name": "Tarmex", - "symbol": "tarm" - }, - { - "id": "tarot", - "name": "Tarot V1", - "symbol": "tarot" - }, - { - "id": "tarot-2", - "name": "Tarot", - "symbol": "tarot" - }, - { - "id": "tashi", - "name": "Tashi", - "symbol": "tashi" - }, - { - "id": "tastenft", - "name": "TasteNFT", - "symbol": "taste" - }, - { - "id": "tate", - "name": "TATE", - "symbol": "tate" - }, - { - "id": "tatsu", - "name": "Tatsu", - "symbol": "tatsu" - }, - { - "id": "taxa-token", - "name": "Taxa Network", - "symbol": "txt" - }, - { - "id": "tax-haven-inu", - "name": "Tax Haven Inu", - "symbol": "taxhaveninu" - }, - { - "id": "taylor-swift-s-cat", - "name": "Taylor Swift's Cat Benji", - "symbol": "benji" - }, - { - "id": "tbcc", - "name": "TBCC", - "symbol": "tbcc" - }, - { - "id": "tbtc", - "name": "tBTC", - "symbol": "tbtc" - }, - { - "id": "tcg-verse", - "name": "TCG Verse", - "symbol": "tcgc" - }, - { - "id": "tdoge", - "name": "\u03c4Doge", - "symbol": "tdoge" - }, - { - "id": "team-heretics-fan-token", - "name": "Team Heretics Fan Token", - "symbol": "th" - }, - { - "id": "team-vitality-fan-token", - "name": "Team Vitality Fan Token", - "symbol": "vit" - }, - { - "id": "tear", - "name": "TEAR", - "symbol": "tear" - }, - { - "id": "tech", - "name": "NumberGoUpTech", - "symbol": "tech" - }, - { - "id": "technology-metal-network-global", - "name": "Technology Metal Network Global", - "symbol": "tmng" - }, - { - "id": "tectonic", - "name": "Tectonic", - "symbol": "tonic" - }, - { - "id": "tectum", - "name": "Tectum", - "symbol": "tet" - }, - { - "id": "teddy-bear", - "name": "TEDDY BEAR", - "symbol": "bear" - }, - { - "id": "teddy-bear-inu", - "name": "Teddy Bear INU", - "symbol": "tbi" - }, - { - "id": "teddy-dollar", - "name": "Teddy Dollar", - "symbol": "tsd" - }, - { - "id": "teddyswap", - "name": "TeddySwap", - "symbol": "tedy" - }, - { - "id": "te-food", - "name": "TE-FOOD", - "symbol": "tone" - }, - { - "id": "tegisto", - "name": "Tegisto", - "symbol": "tgs" - }, - { - "id": "tegro", - "name": "Tegro", - "symbol": "tgr" - }, - { - "id": "tehbag", - "name": "tehBag", - "symbol": "bag" - }, - { - "id": "teh-epik-duck", - "name": "TEH EPIK DUCK", - "symbol": "epik" - }, - { - "id": "teh-fund", - "name": "Teh Fund", - "symbol": "fund" - }, - { - "id": "teh-golden-one", - "name": "Teh Golden One", - "symbol": "gold 1" - }, - { - "id": "teia-dao", - "name": "Teia DAO", - "symbol": "teia" - }, - { - "id": "tektias", - "name": "Tektias", - "symbol": "tektias" - }, - { - "id": "tel3", - "name": "TEL3", - "symbol": "tel3" - }, - { - "id": "telcoin", - "name": "Telcoin", - "symbol": "tel" - }, - { - "id": "telebucks", - "name": "TeleBucks", - "symbol": "teleb" - }, - { - "id": "telecard", - "name": "TeleCard", - "symbol": "tcard" - }, - { - "id": "telefy", - "name": "Telefy", - "symbol": "tele" - }, - { - "id": "telegram-inu", - "name": "Telegram Inu", - "symbol": "tinu" - }, - { - "id": "telenode", - "name": "Telenode", - "symbol": "tnode" - }, - { - "id": "teletreon", - "name": "TeleTreon", - "symbol": "ttn" - }, - { - "id": "tellor", - "name": "Tellor Tributes", - "symbol": "trb" - }, - { - "id": "telos", - "name": "Telos", - "symbol": "tlos" - }, - { - "id": "telos-velocore", - "name": "Telos Velocore", - "symbol": "tvc" - }, - { - "id": "temco", - "name": "TEMCO", - "symbol": "temco" - }, - { - "id": "temdao", - "name": "TemDAO", - "symbol": "tem" - }, - { - "id": "templardao", - "name": "Templar DAO", - "symbol": "tem" - }, - { - "id": "temple", - "name": "TempleDAO", - "symbol": "temple" - }, - { - "id": "temple-key", - "name": "Temple Key", - "symbol": "tkey" - }, - { - "id": "temtem", - "name": "Temtum", - "symbol": "tem" - }, - { - "id": "ten", - "name": "TEN", - "symbol": "tenfi" - }, - { - "id": "ten-best-coins", - "name": "Ten Best Coins", - "symbol": "tbc" - }, - { - "id": "tendies-icp", - "name": "Tendies (ICP)", - "symbol": "tendy" - }, - { - "id": "tenet-1b000f7b-59cb-4e06-89ce-d62b32d362b9", - "name": "TENET", - "symbol": "tenet" - }, - { - "id": "tenset", - "name": "Tenset", - "symbol": "10set" - }, - { - "id": "tenshi", - "name": "Tenshi", - "symbol": "tenshi" - }, - { - "id": "tensor", - "name": "Tensor", - "symbol": "tnsr" - }, - { - "id": "tensorhub", - "name": "TensorHub", - "symbol": "thub" - }, - { - "id": "tensorplex-staked-tao", - "name": "Tensorplex Staked TAO", - "symbol": "sttao" - }, - { - "id": "tensorscan-ai", - "name": "TensorScan AI", - "symbol": "tsa" - }, - { - "id": "tensorspace", - "name": "TensorSpace", - "symbol": "tpu" - }, - { - "id": "tenup", - "name": "Tenup", - "symbol": "tup" - }, - { - "id": "tenx", - "name": "TenX", - "symbol": "pay" - }, - { - "id": "tenx-2", - "name": "TenX", - "symbol": "tenx" - }, - { - "id": "tepe", - "name": "Tepe", - "symbol": "tepe" - }, - { - "id": "tepeport", - "name": "Tepeport", - "symbol": "tp" - }, - { - "id": "teq-network", - "name": "Teq Network", - "symbol": "teq" - }, - { - "id": "terahertz-capital", - "name": "TeraHertz Capital", - "symbol": "thz" - }, - { - "id": "terareum", - "name": "Terareum [OLD]", - "symbol": "tera" - }, - { - "id": "tera-smart-money", - "name": "TERA", - "symbol": "tera" - }, - { - "id": "teratto", - "name": "TERATTO", - "symbol": "trcon" - }, - { - "id": "teritori", - "name": "Teritori", - "symbol": "tori" - }, - { - "id": "term-structure", - "name": "Term Structure", - "symbol": "term" - }, - { - "id": "ternio", - "name": "Ternio", - "symbol": "tern" - }, - { - "id": "terracoin", - "name": "Terracoin", - "symbol": "trc" - }, - { - "id": "terra-luna", - "name": "Terra Luna Classic", - "symbol": "lunc" - }, - { - "id": "terra-luna-2", - "name": "Terra", - "symbol": "luna" - }, - { - "id": "terran-coin", - "name": "Terran Coin", - "symbol": "trr" - }, - { - "id": "terra-poker-token", - "name": "Terra Poker Token", - "symbol": "tpt" - }, - { - "id": "terraport", - "name": "Terraport", - "symbol": "terra" - }, - { - "id": "terrausd", - "name": "TerraClassicUSD", - "symbol": "ustc" - }, - { - "id": "terrausd-wormhole", - "name": "TerraUSD (Wormhole)", - "symbol": "ust" - }, - { - "id": "terrier", - "name": "TERRIER", - "symbol": "bull" - }, - { - "id": "tert", - "name": "Tert", - "symbol": "tert" - }, - { - "id": "teso", - "name": "TeSo", - "symbol": "teso" - }, - { - "id": "test-2", - "name": "Test", - "symbol": "test" - }, - { - "id": "testo", - "name": "TESTO", - "symbol": "testo" - }, - { - "id": "tether", - "name": "Tether", - "symbol": "usdt" - }, - { - "id": "tether-6069e553-7ebb-487e-965e-2896cd21d6ac", - "name": "Bridged Tether (Zilliqa)", - "symbol": "zusdt" - }, - { - "id": "tether-avalanche-bridged-usdt-e", - "name": "Bridged Tether (Avalanche)", - "symbol": "usdte" - }, - { - "id": "tethereum", - "name": "Tethereum", - "symbol": "t99" - }, - { - "id": "tether-eurt", - "name": "Euro Tether", - "symbol": "eurt" - }, - { - "id": "tether-gold", - "name": "Tether Gold", - "symbol": "xaut" - }, - { - "id": "tether-plenty-bridge", - "name": "Bridged Tether (Plenty Bridge)", - "symbol": "usdt.e" - }, - { - "id": "tether-pulsechain", - "name": "Bridged Tether (PulseChain)", - "symbol": "usdt" - }, - { - "id": "tether-rainbow-bridge", - "name": "Bridged Tether (Rainbow Bridge)", - "symbol": "usdt.e" - }, - { - "id": "tether-usd-celer", - "name": "Celer Bridged Tether (Milkomeda)", - "symbol": "ceusdt" - }, - { - "id": "tether-usd-pos-wormhole", - "name": "Bridged Tether (Wormhole POS)", - "symbol": "usdtpo" - }, - { - "id": "tether-usd-wormhole", - "name": "Bridged Tether (Wormhole)", - "symbol": "usdtso" - }, - { - "id": "tether-usd-wormhole-from-ethereum", - "name": "Bridged Tether (Wormhole Ethereum)", - "symbol": "usdtet" - }, - { - "id": "tethys-finance", - "name": "Tethys Finance", - "symbol": "tethys" - }, - { - "id": "tetra", - "name": "TETRA", - "symbol": "tetrap" - }, - { - "id": "tetris-2", - "name": "Tetris", - "symbol": "tetris" - }, - { - "id": "tetu", - "name": "TETU", - "symbol": "tetu" - }, - { - "id": "tetubal", - "name": "tetuBAL", - "symbol": "tetubal" - }, - { - "id": "tetuqi", - "name": "tetuQi", - "symbol": "tetuqi" - }, - { - "id": "texan", - "name": "Texan", - "symbol": "texan" - }, - { - "id": "textopia", - "name": "Textopia", - "symbol": "txt" - }, - { - "id": "tezos", - "name": "Tezos", - "symbol": "xtz" - }, - { - "id": "tezos-domains", - "name": "Tezos Domains", - "symbol": "ted" - }, - { - "id": "tezos-pepe", - "name": "Tezos Pepe", - "symbol": "pepe" - }, - { - "id": "tg20-tgram", - "name": "TG20 TGram", - "symbol": "tgram" - }, - { - "id": "tg-casino", - "name": "TG.Casino", - "symbol": "tgc" - }, - { - "id": "tg-dao", - "name": "TG DAO", - "symbol": "tgdao" - }, - { - "id": "tgold", - "name": "tGOLD", - "symbol": "txau" - }, - { - "id": "tgrade", - "name": "Tgrade", - "symbol": "tgd" - }, - { - "id": "thala", - "name": "Thala", - "symbol": "thl" - }, - { - "id": "thala-apt", - "name": "Thala APT", - "symbol": "thapt" - }, - { - "id": "thales", - "name": "Thales", - "symbol": "thales" - }, - { - "id": "thanks-for-the-invite", - "name": "THANKS FOR THE INVITE", - "symbol": "tfti" - }, - { - "id": "the-4th-pillar", - "name": "FOUR", - "symbol": "four" - }, - { - "id": "the9", - "name": "THE9", - "symbol": "the9" - }, - { - "id": "the-abyss", - "name": "Abyss", - "symbol": "abyss" - }, - { - "id": "theada", - "name": "TheADA", - "symbol": "tada" - }, - { - "id": "the-ape-society", - "name": "The Ape Society", - "symbol": "society" - }, - { - "id": "the-autism-token", - "name": "The Autism Token", - "symbol": "tism" - }, - { - "id": "the-balkan-dwarf", - "name": "The Balkan Dwarf", - "symbol": "$kekec" - }, - { - "id": "the-bet", - "name": "The Bet", - "symbol": "bet" - }, - { - "id": "the-big-five", - "name": "The Big Five", - "symbol": "bft" - }, - { - "id": "the-big-red", - "name": "The Big Red", - "symbol": "$td" - }, - { - "id": "the-blox-project", - "name": "The Blox Project", - "symbol": "blox" - }, - { - "id": "the-blu-arctic-water-comp", - "name": "The Blu Arctic Water Comp", - "symbol": "barc" - }, - { - "id": "theca", - "name": "Theca", - "symbol": "theca" - }, - { - "id": "the-cat-inu", - "name": "The Cat Inu", - "symbol": "thecat" - }, - { - "id": "the-cat-is-blue", - "name": "The Cat Is Blue", - "symbol": "blue" - }, - { - "id": "the-champcoin", - "name": "The ChampCoin", - "symbol": "tcc" - }, - { - "id": "the-citadel", - "name": "The Citadel", - "symbol": "citadel" - }, - { - "id": "the-corgi-of-polkabridge", - "name": "The Corgi of PolkaBridge", - "symbol": "corgib" - }, - { - "id": "the-crypto-prophecies", - "name": "The Crypto Prophecies", - "symbol": "tcp" - }, - { - "id": "the-crypto-you", - "name": "The Crypto You", - "symbol": "milk" - }, - { - "id": "the-dare", - "name": "The Dare", - "symbol": "dare" - }, - { - "id": "the-debt-box", - "name": "The Debt Box", - "symbol": "debt" - }, - { - "id": "the-doge-nft", - "name": "The Doge NFT", - "symbol": "dog" - }, - { - "id": "the-emerald-company", - "name": "The Emerald Company", - "symbol": "emrld" - }, - { - "id": "the-employment-commons-work-token", - "name": "The Employment Commons Work", - "symbol": "work" - }, - { - "id": "the-ennead", - "name": "The Ennead", - "symbol": "neadram" - }, - { - "id": "the-essential-coin", - "name": "The Essential Coin", - "symbol": "esc" - }, - { - "id": "the-everlasting-parachain", - "name": "The Everlasting Parachain", - "symbol": "elp" - }, - { - "id": "theforce-trade", - "name": "TheForce Trade", - "symbol": "foc" - }, - { - "id": "the-gamehub", - "name": "The GameHub", - "symbol": "ghub" - }, - { - "id": "the-goat-cz", - "name": "CZ THE GOAT", - "symbol": "czgoat" - }, - { - "id": "the-grapes-grape-coin", - "name": "Grape Coin", - "symbol": "grape" - }, - { - "id": "the-graph", - "name": "The Graph", - "symbol": "grt" - }, - { - "id": "the-grays-currency", - "name": "The Grays Currency", - "symbol": "ptgc" - }, - { - "id": "the-great-void-token", - "name": "The Great Void Token", - "symbol": "void" - }, - { - "id": "the-husl", - "name": "The HUSL", - "symbol": "husl" - }, - { - "id": "the-infinite-garden", - "name": "The Infinite Garden", - "symbol": "eth" - }, - { - "id": "thejanitor", - "name": "TheJanitor", - "symbol": "eric" - }, - { - "id": "the-joker-coin", - "name": "The Joker Coin", - "symbol": "joker" - }, - { - "id": "the-jupiter-cat", - "name": "The Jupiter Cat", - "symbol": "jupcat" - }, - { - "id": "the-killbox-game", - "name": "The Killbox Game", - "symbol": "kbox" - }, - { - "id": "the-kingdom-coin", - "name": "The Kingdom Coin", - "symbol": "tkc" - }, - { - "id": "the-knowers", - "name": "The Knowers", - "symbol": "know" - }, - { - "id": "the-last-pepe", - "name": "The Last Pepe", - "symbol": "froggo" - }, - { - "id": "the-love-care-coin", - "name": "The Love Care Coin", - "symbol": "tlcc" - }, - { - "id": "the-mars", - "name": "Mars Token", - "symbol": "mrst" - }, - { - "id": "the-monopolist", - "name": "The Monopolist", - "symbol": "mono" - }, - { - "id": "thena", - "name": "Thena", - "symbol": "the" - }, - { - "id": "the-neko", - "name": "The Neko", - "symbol": "neko" - }, - { - "id": "the-nemesis", - "name": "The Nemesis", - "symbol": "nems" - }, - { - "id": "the-next-gem-ai", - "name": "The Next Gem AI", - "symbol": "gemai" - }, - { - "id": "the-node", - "name": "THENODE", - "symbol": "the" - }, - { - "id": "the-og-cheems-inu", - "name": "The OG Cheems Inu", - "symbol": "ogcinu" - }, - { - "id": "the-open-league-meme", - "name": "The Open League MEME", - "symbol": "tol" - }, - { - "id": "the-open-network", - "name": "Toncoin", - "symbol": "ton" - }, - { - "id": "theopetra", - "name": "Theopetra", - "symbol": "theo" - }, - { - "id": "theos", - "name": "Theos", - "symbol": "theos" - }, - { - "id": "the-other-party", - "name": "The Other Party", - "symbol": "pod" - }, - { - "id": "the-people-coin", - "name": "The People\u2019s Coin", - "symbol": "peep$" - }, - { - "id": "the-phoenix", - "name": "The Phoenix", - "symbol": "fire" - }, - { - "id": "the-pond", - "name": "The Pond", - "symbol": "thepond" - }, - { - "id": "the-protocol", - "name": "The Protocol", - "symbol": "the" - }, - { - "id": "the-qwan", - "name": "The QWAN", - "symbol": "qwan" - }, - { - "id": "the-real-world", - "name": "The Real World", - "symbol": "trw" - }, - { - "id": "the-reaper", - "name": "The Reaper", - "symbol": "rpr" - }, - { - "id": "the-reptilian-currency", - "name": "The Reptilian Currency", - "symbol": "trc" - }, - { - "id": "the-resistance-cat", - "name": "The Resistance Cat", - "symbol": "$reca" - }, - { - "id": "the-roman-empire", - "name": "The Roman Empire", - "symbol": "rome" - }, - { - "id": "the-root-network", - "name": "The Root Network", - "symbol": "root" - }, - { - "id": "the-rug-game", - "name": "The Rug Game", - "symbol": "trg" - }, - { - "id": "the-sandbox", - "name": "The Sandbox", - "symbol": "sand" - }, - { - "id": "the-sandbox-wormhole", - "name": "The Sandbox (Wormhole)", - "symbol": "sand" - }, - { - "id": "the-secret-coin", - "name": "The Secret Coin", - "symbol": "tsc" - }, - { - "id": "the-sharks-fan-token", - "name": "The Sharks Fan Token", - "symbol": "sharks" - }, - { - "id": "thesirion", - "name": "Thesirion", - "symbol": "tso" - }, - { - "id": "thesolandao", - "name": "TheSolanDAO", - "symbol": "sdo" - }, - { - "id": "the-standard-euro", - "name": "The Standard EURO", - "symbol": "euros" - }, - { - "id": "thetadrop", - "name": "ThetaDrop", - "symbol": "tdrop" - }, - { - "id": "theta-fuel", - "name": "Theta Fuel", - "symbol": "tfuel" - }, - { - "id": "thetan-arena", - "name": "Thetan World", - "symbol": "thg" - }, - { - "id": "thetanuts-finance", - "name": "Thetanuts Finance", - "symbol": "nuts" - }, - { - "id": "theta-token", - "name": "Theta Network", - "symbol": "theta" - }, - { - "id": "the-theory-of-gravity", - "name": "The Theory of Gravity", - "symbol": "thog" - }, - { - "id": "the-three-kingdoms", - "name": "The Three Kingdoms", - "symbol": "ttk" - }, - { - "id": "the-tokenized-bitcoin", - "name": "The Tokenized Bitcoin", - "symbol": "imbtc" - }, - { - "id": "thetopspotonline", - "name": "TheTopSpotOnline", - "symbol": "spott" - }, - { - "id": "the-unbound", - "name": "Unbound", - "symbol": "un" - }, - { - "id": "the-unfettered-souls", - "name": "The Unfettered Ecosystem", - "symbol": "souls" - }, - { - "id": "the-virtua-kolect", - "name": "Virtua", - "symbol": "tvk" - }, - { - "id": "the-void", - "name": "The Void", - "symbol": "void" - }, - { - "id": "the-winkyverse", - "name": "Winkies", - "symbol": "wnk" - }, - { - "id": "the-word", - "name": "THE WORD", - "symbol": "twd" - }, - { - "id": "the-worked-dev", - "name": "The Worked.Dev", - "symbol": "work" - }, - { - "id": "the-world-state", - "name": "World$tateCoin", - "symbol": "w$c" - }, - { - "id": "the-xenobots-project", - "name": "The Xenobots Project", - "symbol": "xeno" - }, - { - "id": "thing", - "name": "Thing", - "symbol": "thing" - }, - { - "id": "this-is-fine", - "name": "This is Fine", - "symbol": "fine" - }, - { - "id": "this-is-the-one", - "name": "This Is The One", - "symbol": "theone" - }, - { - "id": "tholana", - "name": "Tholana", - "symbol": "thol" - }, - { - "id": "thol-token", - "name": "AngelBlock", - "symbol": "thol" - }, - { - "id": "thor", - "name": "ThorFi", - "symbol": "thor" - }, - { - "id": "thorchain", - "name": "THORChain", - "symbol": "rune" - }, - { - "id": "thoreum-v2", - "name": "Thoreum V3", - "symbol": "thoreum" - }, - { - "id": "thorstarter", - "name": "Thorstarter", - "symbol": "xrune" - }, - { - "id": "thorswap", - "name": "THORSwap", - "symbol": "thor" - }, - { - "id": "thorus", - "name": "Thorus", - "symbol": "tho" - }, - { - "id": "thorwallet", - "name": "THORWallet DEX", - "symbol": "tgt" - }, - { - "id": "thought", - "name": "Thought", - "symbol": "tht" - }, - { - "id": "threefold-token", - "name": "ThreeFold", - "symbol": "tft" - }, - { - "id": "three-hundred-ai", - "name": "Three Hundred AI", - "symbol": "thnd" - }, - { - "id": "threshold-network-token", - "name": "Threshold Network", - "symbol": "t" - }, - { - "id": "threshold-usd", - "name": "Threshold USD", - "symbol": "thusd" - }, - { - "id": "throne", - "name": "Throne", - "symbol": "thn" - }, - { - "id": "thrupenny", - "name": "Thrupenny", - "symbol": "tpy" - }, - { - "id": "thug-life", - "name": "Thug Life", - "symbol": "thug" - }, - { - "id": "thundercore-bridged-busd-thundercore", - "name": "Thundercore Bridged BUSD (Thundercore)", - "symbol": "busd" - }, - { - "id": "thundercore-bridged-usdc-thundercore", - "name": "Thundercore Bridged USDC (Thundercore)", - "symbol": "usdc" - }, - { - "id": "thundercore-bridged-usdt-thundercore", - "name": "Thundercore Bridged USDT (Thundercore)", - "symbol": "usdt" - }, - { - "id": "thunderhead-staked-flip", - "name": "Thunderhead Staked FLIP", - "symbol": "stflip" - }, - { - "id": "thunder-token", - "name": "ThunderCore", - "symbol": "tt" - }, - { - "id": "thx-network", - "name": "THX Network", - "symbol": "thx" - }, - { - "id": "tia", - "name": "TIA", - "symbol": "tia" - }, - { - "id": "tickerstm", - "name": "tickerSTM", - "symbol": "tickstm" - }, - { - "id": "tico", - "name": "Tico", - "symbol": "tico" - }, - { - "id": "tidal-finance", - "name": "Tidal Finance", - "symbol": "tidal" - }, - { - "id": "tidalflats", - "name": "Tidalflats", - "symbol": "tide" - }, - { - "id": "tidefi", - "name": "Tidefi", - "symbol": "tdfy" - }, - { - "id": "tidex-token", - "name": "Tidex", - "symbol": "tdx" - }, - { - "id": "tierion", - "name": "Tierion", - "symbol": "tnt" - }, - { - "id": "tifi-token", - "name": "TiFi", - "symbol": "tifi" - }, - { - "id": "tif-protocol", - "name": "Tif Protocol", - "symbol": "tif" - }, - { - "id": "tiger-king", - "name": "Tiger King Coin", - "symbol": "tking" - }, - { - "id": "tiger-scrub-money-2", - "name": "Tiger Scrub Money", - "symbol": "tiger" - }, - { - "id": "tigra", - "name": "Tigra", - "symbol": "tigra" - }, - { - "id": "tigres-fan-token", - "name": "Tigres Fan Token", - "symbol": "tigres" - }, - { - "id": "tigris", - "name": "Tigris", - "symbol": "tig" - }, - { - "id": "time-alliance-guild-time", - "name": "Time Alliance Guild Time", - "symbol": "time" - }, - { - "id": "timechain-swap-token", - "name": "Timechain Swap", - "symbol": "tcs" - }, - { - "id": "t-i-m-e-dividend", - "name": "T.I.M.E. Dividend", - "symbol": "time" - }, - { - "id": "timeleap-finance", - "name": "Timeleap Finance", - "symbol": "time" - }, - { - "id": "timeless", - "name": "Timeless", - "symbol": "lit" - }, - { - "id": "timeseries-ai", - "name": "Timeseries AI", - "symbol": "timeseries" - }, - { - "id": "timespace", - "name": "\u03c0TimeSpace", - "symbol": "\u03c0ts" - }, - { - "id": "timmi", - "name": "TIMMI", - "symbol": "timmi" - }, - { - "id": "timothy-dexter", - "name": "Timothy Dexter", - "symbol": "lord" - }, - { - "id": "tinfa", - "name": "TINFA", - "symbol": "tinfa" - }, - { - "id": "tinhatcat", - "name": "TinHatCat", - "symbol": "thc" - }, - { - "id": "tinkernet", - "name": "Tinkernet", - "symbol": "tnkr" - }, - { - "id": "tiny-colony", - "name": "Tiny Colony", - "symbol": "tiny" - }, - { - "id": "tiny-era-shard", - "name": "Tiny Era Shard", - "symbol": "tes" - }, - { - "id": "tipcoin", - "name": "Tipcoin", - "symbol": "tip" - }, - { - "id": "tiperian", - "name": "Tiperian", - "symbol": "tip" - }, - { - "id": "tipg", - "name": "TIPG", - "symbol": "tipg" - }, - { - "id": "tipja", - "name": "Tipja", - "symbol": "tipja" - }, - { - "id": "tipsycoin", - "name": "TipsyCoin", - "symbol": "$tipsy" - }, - { - "id": "tiraverse", - "name": "TiraVerse", - "symbol": "tvrs" - }, - { - "id": "titanborn", - "name": "TitanBorn", - "symbol": "titans" - }, - { - "id": "titan-hunters", - "name": "Titan Hunters", - "symbol": "tita" - }, - { - "id": "titanium22", - "name": "Titanium22", - "symbol": "ti" - }, - { - "id": "titanswap", - "name": "TitanSwap", - "symbol": "titan" - }, - { - "id": "titan-trading-token", - "name": "Titan Trading Token", - "symbol": "tes" - }, - { - "id": "titanx", - "name": "TitanX", - "symbol": "titanx" - }, - { - "id": "title-network", - "name": "Bitcoin Clashic", - "symbol": "tnet" - }, - { - "id": "tiusd", - "name": "TiUSD", - "symbol": "tiusd" - }, - { - "id": "tlifecoin", - "name": "TLifeCoin", - "symbol": "tlife" - }, - { - "id": "tlsd-coin", - "name": "TLSD Coin", - "symbol": "tlsd" - }, - { - "id": "t-mac-dao", - "name": "T-mac DAO", - "symbol": "tmg" - }, - { - "id": "tn100x", - "name": "TN100x", - "symbol": "tn100x" - }, - { - "id": "tnc-coin", - "name": "TNC Coin", - "symbol": "tnc" - }, - { - "id": "toad", - "name": "TOAD", - "symbol": "toad" - }, - { - "id": "toadie-meme-coin", - "name": "Toadie Meme Coin", - "symbol": "toad" - }, - { - "id": "toad-killer", - "name": "Toad Killer", - "symbol": "$toad" - }, - { - "id": "toby-toadgod", - "name": "Toby ToadGod", - "symbol": "toby" - }, - { - "id": "tocen", - "name": "Tocen", - "symbol": "toce" - }, - { - "id": "tochi-base", - "name": "Tochi Base", - "symbol": "tochi" - }, - { - "id": "toearnnow", - "name": "ToEarnNow", - "symbol": "now" - }, - { - "id": "toge", - "name": "TOGE", - "symbol": "toge" - }, - { - "id": "toka-2", - "name": "TOKA", - "symbol": "toka" - }, - { - "id": "tokamak-network", - "name": "Tokamak Network", - "symbol": "ton" - }, - { - "id": "tokemak", - "name": "Tokemak", - "symbol": "toke" - }, - { - "id": "tokenbot", - "name": "TokenBot", - "symbol": "tkb" - }, - { - "id": "tokencard", - "name": "Monolith", - "symbol": "tkn" - }, - { - "id": "tokenclub", - "name": "TokenClub", - "symbol": "tct" - }, - { - "id": "token-dforce-usd", - "name": "dForce USD", - "symbol": "usx" - }, - { - "id": "tokenfi", - "name": "TokenFi", - "symbol": "token" - }, - { - "id": "token-in", - "name": "Token IN", - "symbol": "tin" - }, - { - "id": "tokenize-xchange", - "name": "Tokenize Xchange", - "symbol": "tkx" - }, - { - "id": "tokenlon", - "name": "Tokenlon", - "symbol": "lon" - }, - { - "id": "tokenomy", - "name": "Tokenomy", - "symbol": "ten" - }, - { - "id": "tokenplace", - "name": "Tokenplace", - "symbol": "tok" - }, - { - "id": "token-pocket", - "name": "TokenPocket Token", - "symbol": "tpt" - }, - { - "id": "token-sentry-bot", - "name": "Token Sentry Bot", - "symbol": "sentry" - }, - { - "id": "tokensight", - "name": "TokenSight", - "symbol": "tkst" - }, - { - "id": "token-teknoloji-a-s-euro", - "name": "Token Teknoloji A.\u015e. EURO", - "symbol": "eurot" - }, - { - "id": "token-teknoloji-a-s-usd", - "name": "Token Teknoloji A.\u015e. USD", - "symbol": "usdot" - }, - { - "id": "tokenwatch", - "name": "TokenWatch", - "symbol": "tokenwatch" - }, - { - "id": "tokhit", - "name": "TOKHIT", - "symbol": "hitt" - }, - { - "id": "toko", - "name": "Tokoin", - "symbol": "toko" - }, - { - "id": "tokocrypto", - "name": "Tokocrypto", - "symbol": "tko" - }, - { - "id": "tokpie", - "name": "TOKPIE", - "symbol": "tkp" - }, - { - "id": "tokyo", - "name": "Tokyo Coin", - "symbol": "tokc" - }, - { - "id": "tokyo-au", - "name": "Tokyo AU", - "symbol": "tokau" - }, - { - "id": "toly", - "name": "Toly", - "symbol": "toly" - }, - { - "id": "toman-coin", - "name": "Toman Coin", - "symbol": "tmc" - }, - { - "id": "tomb", - "name": "Tomb", - "symbol": "tomb" - }, - { - "id": "tombili-the-fat-cat", - "name": "Tombili the Fat Cat", - "symbol": "fatcat" - }, - { - "id": "tombplus", - "name": "Tomb+", - "symbol": "tomb+" - }, - { - "id": "tombplus-tshare-plus", - "name": "TombPlus TSHARE+", - "symbol": "tshare+" - }, - { - "id": "tomb-shares", - "name": "Tomb Shares", - "symbol": "tshare" - }, - { - "id": "tom-coin", - "name": "Tom Coin", - "symbol": "tmc" - }, - { - "id": "tom-finance", - "name": "TOM Finance", - "symbol": "tom" - }, - { - "id": "tominet", - "name": "tomiNet", - "symbol": "tomi" - }, - { - "id": "tomochain", - "name": "Viction", - "symbol": "vic" - }, - { - "id": "tomoe", - "name": "TomoChain ERC-20", - "symbol": "tomoe" - }, - { - "id": "tomtomcoin", - "name": "TomTomCoin", - "symbol": "toms" - }, - { - "id": "ton-cats-jetton", - "name": "TON Cats Jetton", - "symbol": "cats" - }, - { - "id": "tonex", - "name": "Tonex", - "symbol": "tnx" - }, - { - "id": "ton-fish-memecoin", - "name": "TON FISH MEMECOIN", - "symbol": "fish" - }, - { - "id": "tongtong-coin", - "name": "Tongtong Coin", - "symbol": "ttc" - }, - { - "id": "tongue-cat", - "name": "Tongue Cat", - "symbol": "luis" - }, - { - "id": "ton-inu", - "name": "Ton Inu", - "symbol": "tinu" - }, - { - "id": "tonk-inu", - "name": "Tonk Inu", - "symbol": "tonk" - }, - { - "id": "tonminer", - "name": "TonMiner", - "symbol": "1rus" - }, - { - "id": "tonnel-network", - "name": "TONNEL Network", - "symbol": "tonnel" - }, - { - "id": "ton-raffles", - "name": "TON Raffles", - "symbol": "raff" - }, - { - "id": "ton-ship", - "name": "Ton Ship", - "symbol": "ship" - }, - { - "id": "tonsniper", - "name": "TONSniper", - "symbol": "tons" - }, - { - "id": "tonstakers", - "name": "Tonstakers", - "symbol": "tston" - }, - { - "id": "tonstarter", - "name": "TONStarter", - "symbol": "tos" - }, - { - "id": "tontoken", - "name": "TON Community", - "symbol": "ton" - }, - { - "id": "tonx", - "name": "TonX", - "symbol": "tele" - }, - { - "id": "tony-mcduck", - "name": "Tony McDuck", - "symbol": "tony" - }, - { - "id": "tony-the-duck", - "name": "TONY THE DUCK", - "symbol": "tony" - }, - { - "id": "tooker-kurlson", - "name": "tooker kurlson", - "symbol": "tooker" - }, - { - "id": "tools", - "name": "TOOLS", - "symbol": "tools" - }, - { - "id": "tools-fi", - "name": "Tools-Fi", - "symbol": "tools-fi" - }, - { - "id": "toon-of-meme", - "name": "Toon Of Meme", - "symbol": "tome" - }, - { - "id": "topgoal", - "name": "TopGoal", - "symbol": "goal" - }, - { - "id": "top-jeet", - "name": "Top Jeet", - "symbol": "topj" - }, - { - "id": "topmanager", - "name": "TopManager", - "symbol": "tmt" - }, - { - "id": "top-network", - "name": "TOP Network", - "symbol": "top" - }, - { - "id": "topshelf-finance", - "name": "Topshelf Finance", - "symbol": "liqr" - }, - { - "id": "toptrade", - "name": "TopTrade", - "symbol": "ttt" - }, - { - "id": "tor", - "name": "TOR", - "symbol": "tor" - }, - { - "id": "tora-inu", - "name": "Tora Inu", - "symbol": "tora" - }, - { - "id": "torekko", - "name": "Torekko", - "symbol": "trk" - }, - { - "id": "torg", - "name": "TORG", - "symbol": "torg" - }, - { - "id": "tornado-ai", - "name": "Tornado AI", - "symbol": "tornai" - }, - { - "id": "tornado-cash", - "name": "Tornado Cash", - "symbol": "torn" - }, - { - "id": "toro", - "name": "TORO", - "symbol": "toro" - }, - { - "id": "torque", - "name": "Torque", - "symbol": "torq" - }, - { - "id": "tortol", - "name": "Tortol", - "symbol": "trtl" - }, - { - "id": "tortuga-staked-aptos", - "name": "Tortuga Staked Aptos", - "symbol": "tapt" - }, - { - "id": "torum", - "name": "Torum", - "symbol": "xtm" - }, - { - "id": "tosdis", - "name": "TosDis", - "symbol": "dis" - }, - { - "id": "toshi", - "name": "Toshi", - "symbol": "toshi" - }, - { - "id": "toshipad", - "name": "ToshiPad", - "symbol": "tshx" - }, - { - "id": "toshi-tools", - "name": "Toshi Tools", - "symbol": "toshi" - }, - { - "id": "tosidrop", - "name": "TosiDrop", - "symbol": "ctosi" - }, - { - "id": "to-the-moon-2", - "name": "To The Moon", - "symbol": "ttm" - }, - { - "id": "toto", - "name": "TOTO", - "symbol": "toto" - }, - { - "id": "totocat", - "name": "Totocat", - "symbol": "totocat" - }, - { - "id": "totoro-inu", - "name": "Totoro Inu", - "symbol": "totoro" - }, - { - "id": "tottenham-hotspur-fc-fan-token", - "name": "Tottenham Hotspur FC Fan Token", - "symbol": "spurs" - }, - { - "id": "toucan-protocol-base-carbon-tonne", - "name": "Toucan Protocol: Base Carbon Tonne", - "symbol": "bct" - }, - { - "id": "toucan-protocol-nature-carbon-tonne", - "name": "Toucan Protocol: Nature Carbon Tonne", - "symbol": "nct" - }, - { - "id": "touchfan", - "name": "TouchFan", - "symbol": "tft" - }, - { - "id": "toupee-tech", - "name": "Toup\u00e9e Tech", - "symbol": "wig" - }, - { - "id": "tourism-industry-metavers", - "name": "Tourism Industry Metavers", - "symbol": "tim" - }, - { - "id": "tourismx", - "name": "TourismX", - "symbol": "trmx" - }, - { - "id": "tourist-shiba-inu", - "name": "Tourist Shiba Inu", - "symbol": "tourists" - }, - { - "id": "tower", - "name": "Tower", - "symbol": "tower" - }, - { - "id": "toxicdeer-finance", - "name": "ToxicDeer Finance", - "symbol": "deer" - }, - { - "id": "toxicgarden-finance-seed", - "name": "ToxicGarden.finance SEED", - "symbol": "seed" - }, - { - "id": "tplatinum", - "name": "tPLATINUM", - "symbol": "txpt" - }, - { - "id": "tpro", - "name": "TPRO Network", - "symbol": "tpro" - }, - { - "id": "tr3zor", - "name": "Tr3zor", - "symbol": "tr3" - }, - { - "id": "tr8bit", - "name": "Tr8bit", - "symbol": "trb" - }, - { - "id": "traaitt", - "name": "traaitt", - "symbol": "xte" - }, - { - "id": "trabzonspor-fan-token", - "name": "Trabzonspor Fan Token", - "symbol": "tra" - }, - { - "id": "trac", - "name": "TRAC (Ordinals)", - "symbol": "trac" - }, - { - "id": "trace-ai", - "name": "Trace AI", - "symbol": "tai" - }, - { - "id": "trace-network-labs", - "name": "Trace Network Labs", - "symbol": "trace" - }, - { - "id": "tracer", - "name": "Tracer", - "symbol": "trc" - }, - { - "id": "tracer-dao", - "name": "Tracer DAO", - "symbol": "tcr" - }, - { - "id": "tracker-ai", - "name": "Tracker AI", - "symbol": "track" - }, - { - "id": "trackers-token", - "name": "Trackers Token", - "symbol": "trt" - }, - { - "id": "trackr", - "name": "Trackr", - "symbol": "trackr" - }, - { - "id": "track-the-funds-bot", - "name": "Track The Funds Bot", - "symbol": "ttf" - }, - { - "id": "trade-bionic", - "name": "Trade Bionic", - "symbol": "onic" - }, - { - "id": "trade-genius-ai", - "name": "Trade Genius AI", - "symbol": "aigenius" - }, - { - "id": "trade-leaf", - "name": "Tradeleaf", - "symbol": "tlf" - }, - { - "id": "trademaster-ninja", - "name": "TradeMaster.ninja", - "symbol": "trdm" - }, - { - "id": "traderdao-proof-of-trade", - "name": "TraderDAO Proof Of Trade", - "symbol": "pot" - }, - { - "id": "traders-coin", - "name": "Traders Coin", - "symbol": "trdc" - }, - { - "id": "traders-wallet", - "name": "Traders Wallet", - "symbol": "trw" - }, - { - "id": "traderx", - "name": "TraderX", - "symbol": "$tx" - }, - { - "id": "tradestars", - "name": "TradeStars", - "symbol": "tsx" - }, - { - "id": "trade-tech-ai", - "name": "Trade Tech AI", - "symbol": "ttai" - }, - { - "id": "tradetomato", - "name": "Tradetomato", - "symbol": "ttm" - }, - { - "id": "tradex-ai", - "name": "TradeX AI", - "symbol": "tradex" - }, - { - "id": "tradfi-bro", - "name": "Tradfi Bro", - "symbol": "cfa" - }, - { - "id": "tradix", - "name": "Tradix", - "symbol": "tx" - }, - { - "id": "trailblaze", - "name": "Trailblaze", - "symbol": "blaze" - }, - { - "id": "tranche-finance", - "name": "Tranche Finance", - "symbol": "slice" - }, - { - "id": "tranchess", - "name": "Tranchess", - "symbol": "chess" - }, - { - "id": "tranquil-finance", - "name": "Tranquil Finance", - "symbol": "tranq" - }, - { - "id": "tranquility-city", - "name": "Tranquility City", - "symbol": "lumen" - }, - { - "id": "tranquil-staked-one", - "name": "Tranquil Staked ONE", - "symbol": "stone" - }, - { - "id": "transactra-finance", - "name": "Transactra Finance", - "symbol": "trsct" - }, - { - "id": "transhuman-coin", - "name": "Transhuman Coin", - "symbol": "thc" - }, - { - "id": "trava-finance", - "name": "Trava Finance", - "symbol": "trava" - }, - { - "id": "travelers-token", - "name": "Travelers Token", - "symbol": "trv" - }, - { - "id": "traverse-labs", - "name": "Traverse Labs", - "symbol": "trvs" - }, - { - "id": "trax", - "name": "TRAX", - "symbol": "trax" - }, - { - "id": "traxx", - "name": "Traxx", - "symbol": "traxx" - }, - { - "id": "treasure-labs-loot", - "name": "Treasure Labs LOOT", - "symbol": "loot" - }, - { - "id": "treasuretv", - "name": "TreasureTV", - "symbol": "usdtv" - }, - { - "id": "treasure-under-sea", - "name": "Treasure Under Sea", - "symbol": "tus" - }, - { - "id": "treasury-bond-eth-tokenized-stock-defichain", - "name": "iShares 20+ Year Treasury Bond ETF Defichain", - "symbol": "dtlt" - }, - { - "id": "treat", - "name": "Treat", - "symbol": "treat" - }, - { - "id": "treatdao-v2", - "name": "TreatDAO", - "symbol": "treat" - }, - { - "id": "treat-token", - "name": "Treat Token", - "symbol": "treat" - }, - { - "id": "treeb", - "name": "Retreeb", - "symbol": "treeb" - }, - { - "id": "tree-capital", - "name": "Tree", - "symbol": "tree" - }, - { - "id": "treecle", - "name": "Treecle", - "symbol": "trcl" - }, - { - "id": "treemeister", - "name": "Treemeister", - "symbol": "tree" - }, - { - "id": "trellis", - "name": "Trellis", - "symbol": "treis" - }, - { - "id": "tren", - "name": "TREN", - "symbol": "tren" - }, - { - "id": "trendappend", - "name": "TrendAppend", - "symbol": "trnd" - }, - { - "id": "trendguru", - "name": "TrendGuru", - "symbol": "trendguru" - }, - { - "id": "trendingtool", - "name": "TrendingTool", - "symbol": "tt" - }, - { - "id": "trendingtool-io", - "name": "TrendingTool.io", - "symbol": "smm" - }, - { - "id": "trendsy", - "name": "Trendsy", - "symbol": "trndz" - }, - { - "id": "trend-x", - "name": "Trend X", - "symbol": "trendx" - }, - { - "id": "trepe", - "name": "Trepe", - "symbol": "$trepe" - }, - { - "id": "tres-chain", - "name": "Tres Chain", - "symbol": "tres" - }, - { - "id": "trestle", - "name": "TRESTLE", - "symbol": "trestle" - }, - { - "id": "trestle-wrapped-tia", - "name": "Trestle Wrapped TIA", - "symbol": "wtia" - }, - { - "id": "trex20", - "name": "Trex20", - "symbol": "tx20" - }, - { - "id": "trezarcoin", - "name": "TrezarCoin", - "symbol": "tzc" - }, - { - "id": "triall", - "name": "Triall", - "symbol": "trl" - }, - { - "id": "trias-token", - "name": "TriasLab", - "symbol": "trias" - }, - { - "id": "tribal-token", - "name": "Tribal Token", - "symbol": "tribl" - }, - { - "id": "tribe-2", - "name": "Tribe", - "symbol": "tribe" - }, - { - "id": "tribeone", - "name": "TribeOne", - "symbol": "haka" - }, - { - "id": "tribe-token", - "name": "Tribe Token", - "symbol": "tribex" - }, - { - "id": "tribe-token-2", - "name": "Tribe Token", - "symbol": "tribe" - }, - { - "id": "trice", - "name": "Trice", - "symbol": "tri" - }, - { - "id": "tridentdao", - "name": "TridentDAO", - "symbol": "psi" - }, - { - "id": "triipmiles", - "name": "TriipMiles", - "symbol": "tiim" - }, - { - "id": "trillant", - "name": "TRILLANT", - "symbol": "tril" - }, - { - "id": "trillioner", - "name": "Trillioner", - "symbol": "tlc" - }, - { - "id": "trimbex", - "name": "TRIMBEX", - "symbol": "trim" - }, - { - "id": "trinique", - "name": "Trinique", - "symbol": "tnq" - }, - { - "id": "trinity-network-credit", - "name": "Trinity Network Credit", - "symbol": "tnc" - }, - { - "id": "triple", - "name": "TRIPLE", - "symbol": "triple" - }, - { - "id": "trisolaris", - "name": "Trisolaris", - "symbol": "tri" - }, - { - "id": "triton", - "name": "Equilibria", - "symbol": "xeq" - }, - { - "id": "trivian", - "name": "Trivians", - "symbol": "trivia" - }, - { - "id": "trolite", - "name": "Trolite", - "symbol": "trl" - }, - { - "id": "troll", - "name": "Troll", - "symbol": "troll" - }, - { - "id": "troll-2-0", - "name": "TROLL 2.0", - "symbol": "troll 2.0" - }, - { - "id": "trollbox", - "name": "trollbox", - "symbol": "tox" - }, - { - "id": "trollcoin-2", - "name": "TrollCoin", - "symbol": "troll" - }, - { - "id": "troll-face", - "name": "Troll Face", - "symbol": "troll" - }, - { - "id": "troll-inu", - "name": "Troll Inu", - "symbol": "trollinu" - }, - { - "id": "trollmuskwifhat", - "name": "TrollMuskWifHat", - "symbol": "troll" - }, - { - "id": "tron", - "name": "TRON", - "symbol": "trx" - }, - { - "id": "tronai", - "name": "TronAI", - "symbol": "tai" - }, - { - "id": "tronbetlive", - "name": "TRONbetLive", - "symbol": "live" - }, - { - "id": "tron-bsc", - "name": "TRON (BSC)", - "symbol": "trx" - }, - { - "id": "tronclassic", - "name": "TronClassic", - "symbol": "trxc" - }, - { - "id": "troneuroperewardcoin", - "name": "TronEuropeRewardCoin", - "symbol": "terc" - }, - { - "id": "tronpad", - "name": "TRONPAD", - "symbol": "tronpad" - }, - { - "id": "troves", - "name": "Troves", - "symbol": "troves" - }, - { - "id": "troy", - "name": "TROY", - "symbol": "troy" - }, - { - "id": "trrxitte", - "name": "TRRXITTE International", - "symbol": "trrxitte" - }, - { - "id": "trubadger", - "name": "TruBadger", - "symbol": "trubgr" - }, - { - "id": "truck", - "name": "Truck", - "symbol": "truck" - }, - { - "id": "truebit-protocol", - "name": "Truebit Protocol", - "symbol": "tru" - }, - { - "id": "truecnh", - "name": "TrueCNH", - "symbol": "tcnh" - }, - { - "id": "truefeedbackchain", - "name": "Truefeedback", - "symbol": "tfbx" - }, - { - "id": "truefi", - "name": "TrueFi", - "symbol": "tru" - }, - { - "id": "true-pnl", - "name": "True PNL", - "symbol": "pnl" - }, - { - "id": "true-usd", - "name": "TrueUSD", - "symbol": "tusd" - }, - { - "id": "trufin-staked-matic", - "name": "TruFin Staked MATIC", - "symbol": "trumatic" - }, - { - "id": "truflation", - "name": "Truflation", - "symbol": "truf" - }, - { - "id": "trumatic-matic-stable-pool", - "name": "TruMATIC-MATIC Stable Pool", - "symbol": "trumatic-matic" - }, - { - "id": "trump-cards-fraction-token", - "name": "Trump Cards Fraction Token", - "symbol": "itrump" - }, - { - "id": "trumpcoin-709b1637-4ceb-4e9e-878d-2b137bee017d", - "name": "TrumpCoin", - "symbol": "dtc" - }, - { - "id": "trust-ai", - "name": "TRUST AI", - "symbol": "trt" - }, - { - "id": "trustbase", - "name": "TrustBase", - "symbol": "tbe" - }, - { - "id": "trustbit-finance", - "name": "TrustBit Finance", - "symbol": "trs" - }, - { - "id": "trustfi-network-token", - "name": "TrustFi Network", - "symbol": "tfi" - }, - { - "id": "trustnft", - "name": "TrustNFT", - "symbol": "trustnft" - }, - { - "id": "trustpad-2-0", - "name": "TrustPad", - "symbol": "tpad" - }, - { - "id": "trustswap", - "name": "TrustSwap", - "symbol": "swap" - }, - { - "id": "trust-trading-group", - "name": "Trust Trading Group", - "symbol": "ttg" - }, - { - "id": "trust-wallet-token", - "name": "Trust Wallet", - "symbol": "twt" - }, - { - "id": "truthgpt", - "name": "TruthGPT", - "symbol": "truth" - }, - { - "id": "truthgpt-bsc", - "name": "TruthGPT (BSC)", - "symbol": "truth" - }, - { - "id": "truthgpt-eth", - "name": "TruthGPT (ETH)", - "symbol": "truth" - }, - { - "id": "truth-pay", - "name": "Truth Pay", - "symbol": "trp" - }, - { - "id": "truth-seekers", - "name": "Truth Seekers", - "symbol": "truth" - }, - { - "id": "trxi-tron", - "name": "TRXI (Tron)", - "symbol": "trxi" - }, - { - "id": "tryc", - "name": "TRYC", - "symbol": "tryc" - }, - { - "id": "tryhards", - "name": "TryHards", - "symbol": "try" - }, - { - "id": "tsilver", - "name": "tSILVER", - "symbol": "txag" - }, - { - "id": "tsubasa-utilitiy-token", - "name": "TSUBASA Utilitiy Token", - "symbol": "tsubasaut" - }, - { - "id": "tsuki-inu", - "name": "Tsuki Inu", - "symbol": "tkinu" - }, - { - "id": "ttcoin", - "name": "TTcoin", - "symbol": "tc" - }, - { - "id": "ttc-protocol", - "name": "Maro", - "symbol": "maro" - }, - { - "id": "tucker-carlson", - "name": "TUCKER CARLSON", - "symbol": "tucker" - }, - { - "id": "tudabirds", - "name": "tudaBirds", - "symbol": "burd" - }, - { - "id": "tuf-token", - "name": "TUF Token", - "symbol": "tuf" - }, - { - "id": "tunachain", - "name": "Tunachain", - "symbol": "tuna" - }, - { - "id": "tune-fm", - "name": "Tune.Fm", - "symbol": "jam" - }, - { - "id": "tupelothedog", - "name": "tupelothedog", - "symbol": "tupelo" - }, - { - "id": "turan-network", - "name": "Turan Network", - "symbol": "trn" - }, - { - "id": "turbo", - "name": "Turbo", - "symbol": "turbo" - }, - { - "id": "turbobot", - "name": "TurboBot", - "symbol": "turbo" - }, - { - "id": "turbodex", - "name": "TurboDEX", - "symbol": "turbo" - }, - { - "id": "turbomoon", - "name": "TurboMoon", - "symbol": "tmoon" - }, - { - "id": "turbos-finance", - "name": "Turbos Finance", - "symbol": "turbos" - }, - { - "id": "turbo-wallet", - "name": "Turbo Wallet", - "symbol": "turbo" - }, - { - "id": "turex", - "name": "Turex", - "symbol": "tur" - }, - { - "id": "turing-network", - "name": "Turing Network", - "symbol": "tur" - }, - { - "id": "turkiye-basketbol-federasyonu-token", - "name": "T\u00fcrkiye Basketbol Federasyonu Fan Token", - "symbol": "tbft" - }, - { - "id": "turkiye-motosiklet-federasyonu-fan-token", - "name": "T\u00fcrkiye Motosiklet Federasyonu Fan Token", - "symbol": "tmft" - }, - { - "id": "turk-shiba", - "name": "Turk Shiba", - "symbol": "tushi" - }, - { - "id": "turnup-lfg", - "name": "TurnUp $LFG", - "symbol": "lfg" - }, - { - "id": "turtlecoin", - "name": "TurtleCoin", - "symbol": "trtl" - }, - { - "id": "turtsat", - "name": "TurtSat", - "symbol": "turt" - }, - { - "id": "tusd-yvault", - "name": "TUSD yVault", - "symbol": "yvtusd" - }, - { - "id": "tutela", - "name": "Tutela", - "symbol": "tutl" - }, - { - "id": "tutellus", - "name": "Tutellus", - "symbol": "tut" - }, - { - "id": "tweety", - "name": "Tweety", - "symbol": "tweety" - }, - { - "id": "twelve-legions", - "name": "Twelve Legions", - "symbol": "ctl" - }, - { - "id": "twelve-zodiac", - "name": "Twelve Zodiac", - "symbol": "twelve" - }, - { - "id": "twinby", - "name": "Twinby", - "symbol": "twb" - }, - { - "id": "twitter-ceo-floki", - "name": "Twitter CEO Floki", - "symbol": "flokiceo" - }, - { - "id": "twotalkingcats", - "name": "TwoTalkingCats", - "symbol": "twocat" - }, - { - "id": "twtr-fun", - "name": "TWTR.fun", - "symbol": "twtr" - }, - { - "id": "txa", - "name": "TXA", - "symbol": "txa" - }, - { - "id": "txn-club", - "name": "TXN Club", - "symbol": "txn" - }, - { - "id": "txswap", - "name": "TXSwap", - "symbol": "txt" - }, - { - "id": "txworx", - "name": "TxWorx", - "symbol": "tx" - }, - { - "id": "tyche-protocol", - "name": "Tyche Protocol", - "symbol": "tyche" - }, - { - "id": "tycoon", - "name": "Tycoon", - "symbol": "tyc" - }, - { - "id": "tyo-ghoul", - "name": "TYO Ghoul", - "symbol": "tyo ghoul" - }, - { - "id": "typeai", - "name": "TypeAI", - "symbol": "type" - }, - { - "id": "typeit", - "name": "TypeIt", - "symbol": "type" - }, - { - "id": "typerium", - "name": "Typerium", - "symbol": "type" - }, - { - "id": "tyrel-derpden", - "name": "Tyrel Derpden", - "symbol": "tyrel" - }, - { - "id": "tyrh", - "name": "TYRH", - "symbol": "tyrh" - }, - { - "id": "tyrion-finance", - "name": "Tyrion.finance", - "symbol": "$tyrion" - }, - { - "id": "tyz-token", - "name": "TYZ Token", - "symbol": "tyz" - }, - { - "id": "tzbtc", - "name": "tzBTC", - "symbol": "tzbtc" - }, - { - "id": "ubd-network", - "name": "UBD Network", - "symbol": "ubdn" - }, - { - "id": "ubeswap", - "name": "Ubeswap (OLD)", - "symbol": "ube" - }, - { - "id": "ubeswap-2", - "name": "Ubeswap", - "symbol": "ube" - }, - { - "id": "ubiq", - "name": "Ubiq", - "symbol": "ubq" - }, - { - "id": "ubit", - "name": "UBIT", - "symbol": "ubit" - }, - { - "id": "ubix-network", - "name": "UBIX Network", - "symbol": "ubx" - }, - { - "id": "ubxs-token", - "name": "UBXS", - "symbol": "ubxs" - }, - { - "id": "uca", - "name": "UCA Coin", - "symbol": "uca" - }, - { - "id": "ucash", - "name": "U.CASH", - "symbol": "ucash" - }, - { - "id": "ucit", - "name": "UCIT", - "symbol": "ucit" - }, - { - "id": "ucon", - "name": "YouCoin", - "symbol": "ucon" - }, - { - "id": "ucon-social", - "name": "Ucon Social", - "symbol": "ucon" - }, - { - "id": "ucrowdme", - "name": "UCROWDME", - "symbol": "ucm" - }, - { - "id": "ucx", - "name": "UCX", - "symbol": "ucx" - }, - { - "id": "udder-chaos-milk", - "name": "MILK", - "symbol": "milk" - }, - { - "id": "udinese-calcio-fan-token", - "name": "Udinese Calcio Fan Token", - "symbol": "udi" - }, - { - "id": "uerii", - "name": "UERII", - "symbol": "uerii" - }, - { - "id": "ufc-fan-token", - "name": "UFC Fan Token", - "symbol": "ufc" - }, - { - "id": "ufocoin", - "name": "Uniform Fiscal Object", - "symbol": "ufo" - }, - { - "id": "ufo-gaming", - "name": "UFO Gaming", - "symbol": "ufo" - }, - { - "id": "uforika", - "name": "UFORIKA", - "symbol": "fora" - }, - { - "id": "ugold-inc", - "name": "UGOLD Inc.", - "symbol": "ugold" - }, - { - "id": "uhive", - "name": "Uhive", - "symbol": "hve2" - }, - { - "id": "ulanco", - "name": "Ulanco", - "symbol": "uac" - }, - { - "id": "ulord", - "name": "Ulord", - "symbol": "ut" - }, - { - "id": "ultima", - "name": "Ultima", - "symbol": "ultima" - }, - { - "id": "ultra", - "name": "Ultra", - "symbol": "uos" - }, - { - "id": "ultra-2", - "name": "ULTRA", - "symbol": "ultra" - }, - { - "id": "ultra-clear", - "name": "Ultra Clear", - "symbol": "ucr" - }, - { - "id": "ultragate", - "name": "Ultragate", - "symbol": "ulg" - }, - { - "id": "ultrain", - "name": "Ultrain", - "symbol": "ugas" - }, - { - "id": "ultramoc", - "name": "Ultramoc", - "symbol": "umc" - }, - { - "id": "ultra-nft", - "name": "Ultra NFT", - "symbol": "unft" - }, - { - "id": "ultranote-infinity-bsc", - "name": "UltraNote Infinity (BSC)", - "symbol": "bxuni" - }, - { - "id": "ultrapro", - "name": "Ultrapro", - "symbol": "upro" - }, - { - "id": "ultrasafe", - "name": "UltraSafe", - "symbol": "ultra" - }, - { - "id": "ultron", - "name": "ULTRON", - "symbol": "ulx" - }, - { - "id": "ultron-vault", - "name": "Ultron Vault", - "symbol": "ultron" - }, - { - "id": "uma", - "name": "UMA", - "symbol": "uma" - }, - { - "id": "umami-finance", - "name": "Umami", - "symbol": "umami" - }, - { - "id": "umareum", - "name": "UMAREUM", - "symbol": "umareum" - }, - { - "id": "umbrella-network", - "name": "Umbrella Network", - "symbol": "umb" - }, - { - "id": "umee", - "name": "UX Chain", - "symbol": "ux" - }, - { - "id": "umi-digital", - "name": "Umi Digital", - "symbol": "umi" - }, - { - "id": "umi-s-friends-unity", - "name": "Umi's Friends Unity", - "symbol": "unt" - }, - { - "id": "umma-token", - "name": "Umma Token", - "symbol": "umma" - }, - { - "id": "unagii-dai", - "name": "Unagii Dai", - "symbol": "udai" - }, - { - "id": "unagii-eth", - "name": "Unagii ETH", - "symbol": "ueth" - }, - { - "id": "unagii-tether-usd", - "name": "Unagii Tether USD", - "symbol": "uusdt" - }, - { - "id": "unagii-usd-coin", - "name": "Unagii USD Coin", - "symbol": "uusdc" - }, - { - "id": "unagii-wrapped-bitcoin", - "name": "Unagii Wrapped Bitcoin", - "symbol": "uwbtc" - }, - { - "id": "unagi-token", - "name": "Unagi Token", - "symbol": "una" - }, - { - "id": "unbanked", - "name": "Unbanked", - "symbol": "unbnk" - }, - { - "id": "unbound-finance", - "name": "Unbound Finance", - "symbol": "unb" - }, - { - "id": "uncharted-lands-x", - "name": "Uncharted Lands X", - "symbol": "uclx" - }, - { - "id": "unclemine", - "name": "UncleMine", - "symbol": "um" - }, - { - "id": "undead-blocks", - "name": "Undead Blocks", - "symbol": "undead" - }, - { - "id": "undeads-games", - "name": "Undeads Games", - "symbol": "uds" - }, - { - "id": "underworld", - "name": "Underworld", - "symbol": "udw" - }, - { - "id": "u-network", - "name": "U Network", - "symbol": "uuu" - }, - { - "id": "unfederalreserve", - "name": "Residual Token", - "symbol": "ersdl" - }, - { - "id": "unibets-ai-2", - "name": "Unibets.AI", - "symbol": "$bets" - }, - { - "id": "unibit", - "name": "Unibit", - "symbol": "uibt" - }, - { - "id": "unibot", - "name": "Unibot", - "symbol": "unibot" - }, - { - "id": "unibright", - "name": "Unibright", - "symbol": "ubt" - }, - { - "id": "unice", - "name": "UNICE", - "symbol": "unice" - }, - { - "id": "unicorn-2", - "name": "UNICORN", - "symbol": "unicorn" - }, - { - "id": "unicorn-metaverse", - "name": "Unicorn Metaverse", - "symbol": "universe" - }, - { - "id": "unicorn-milk", - "name": "Unicorn Milk", - "symbol": "unim" - }, - { - "id": "unicorn-token", - "name": "UNICORN", - "symbol": "uni" - }, - { - "id": "unicorn-ultra", - "name": "Unicorn Ultra", - "symbol": "u2u" - }, - { - "id": "unicrypt-2", - "name": "UNCX Network", - "symbol": "uncx" - }, - { - "id": "unidef", - "name": "Unidef", - "symbol": "u" - }, - { - "id": "unidex", - "name": "UniDex", - "symbol": "unidx" - }, - { - "id": "unidexai", - "name": "UniDexAI", - "symbol": "udx" - }, - { - "id": "unido-ep", - "name": "Unido", - "symbol": "udo" - }, - { - "id": "unielon", - "name": "Unielon (DRC-20)", - "symbol": "unix" - }, - { - "id": "unifarm", - "name": "UniFarm", - "symbol": "ufarm" - }, - { - "id": "unifees", - "name": "Unifees", - "symbol": "fees" - }, - { - "id": "unifi", - "name": "Covenants", - "symbol": "unifi" - }, - { - "id": "unification", - "name": "Unification", - "symbol": "fund" - }, - { - "id": "unifi-protocol-dao", - "name": "Unifi Protocol DAO", - "symbol": "unfi" - }, - { - "id": "unigraph-ordinals", - "name": "Unigraph (Ordinals)", - "symbol": "grph" - }, - { - "id": "unilab-network", - "name": "Unilab", - "symbol": "ulab" - }, - { - "id": "unilapse", - "name": "UNILAPSE", - "symbol": "uni" - }, - { - "id": "unilayer", - "name": "UniLayer", - "symbol": "layer" - }, - { - "id": "union-finance", - "name": "Union Finance", - "symbol": "union" - }, - { - "id": "union-protocol-governance-token", - "name": "UNION Protocol Governance", - "symbol": "unn" - }, - { - "id": "unipoly", - "name": "Unipoly", - "symbol": "unp" - }, - { - "id": "unipower", - "name": "UniPower", - "symbol": "power" - }, - { - "id": "uniq-digital-coin", - "name": "Uniq Digital Coin", - "symbol": "udc" - }, - { - "id": "unique-network", - "name": "Unique Network", - "symbol": "unq" - }, - { - "id": "unique-one", - "name": "Unique One", - "symbol": "rare" - }, - { - "id": "unique-utility-token", - "name": "Unique Utility", - "symbol": "unqt" - }, - { - "id": "unisocks", - "name": "Unisocks", - "symbol": "socks" - }, - { - "id": "unistake", - "name": "Unistake", - "symbol": "unistake" - }, - { - "id": "uniswap", - "name": "Uniswap", - "symbol": "uni" - }, - { - "id": "uniswap-wormhole", - "name": "Uniswap (Wormhole)", - "symbol": "uni" - }, - { - "id": "unitao", - "name": "UNITAO", - "symbol": "unitao" - }, - { - "id": "unit-dao", - "name": "UNIT DAO", - "symbol": "un" - }, - { - "id": "unitedcrowd", - "name": "UnitedCrowd", - "symbol": "uct" - }, - { - "id": "united-emirates-of-fun", - "name": "United Emirates Of Fun", - "symbol": "$uefn" - }, - { - "id": "united-states-property-coin", - "name": "USP Token", - "symbol": "usp" - }, - { - "id": "united-token", - "name": "United", - "symbol": "uted" - }, - { - "id": "uni-terminal", - "name": "Uni Terminal", - "symbol": "unit" - }, - { - "id": "uni-the-wonder-dog", - "name": "Uni the Wonder Dog", - "symbol": "uni" - }, - { - "id": "uniton-token", - "name": "Uniton Token", - "symbol": "utn" - }, - { - "id": "unit-protocol-duck", - "name": "Unit Protocol", - "symbol": "duck" - }, - { - "id": "unitrade", - "name": "Unitrade", - "symbol": "trade" - }, - { - "id": "units-limited-supply", - "name": "UNITS LIMITED SUPPLY", - "symbol": "uls" - }, - { - "id": "unitus", - "name": "Unitus", - "symbol": "uis" - }, - { - "id": "unitus-2", - "name": "Unitus", - "symbol": "uts" - }, - { - "id": "unitybot", - "name": "UnityBot", - "symbol": "unitybot" - }, - { - "id": "unitycore", - "name": "UnityCore", - "symbol": "ucore" - }, - { - "id": "unitymeta-token", - "name": "UnityMeta Token", - "symbol": "umt" - }, - { - "id": "unity-network", - "name": "Unity Network", - "symbol": "unt" - }, - { - "id": "unityventures", - "name": "Unityventures", - "symbol": "uv" - }, - { - "id": "unium", - "name": "UNIUM", - "symbol": "unm" - }, - { - "id": "universal-basic-income", - "name": "Universal Basic Income", - "symbol": "ubi" - }, - { - "id": "universal-contact", - "name": "Universal Contact", - "symbol": "cwf" - }, - { - "id": "universal-eth", - "name": "Universal ETH", - "symbol": "unieth" - }, - { - "id": "universal-liquidity-union", - "name": "Universal Liquidity Union", - "symbol": "ulu" - }, - { - "id": "universe-xyz", - "name": "Universe.XYZ", - "symbol": "xyz" - }, - { - "id": "universidad-de-chile-fan-token", - "name": "Universidad de Chile Fan Token", - "symbol": "uch" - }, - { - "id": "uniwhale", - "name": "Uniwhale", - "symbol": "unw" - }, - { - "id": "uniwswap", - "name": "UniWswap", - "symbol": "uniw" - }, - { - "id": "unix", - "name": "UniX", - "symbol": "unix" - }, - { - "id": "uni-yvault", - "name": "UNI yVault", - "symbol": "yvuni" - }, - { - "id": "unizen", - "name": "Unizen", - "symbol": "zcx" - }, - { - "id": "unleashclub", - "name": "UnleashClub", - "symbol": "unleash" - }, - { - "id": "unlend-finance", - "name": "UniLend Finance", - "symbol": "uft" - }, - { - "id": "unlimited-network-token", - "name": "Unlimited Network Token", - "symbol": "uwu" - }, - { - "id": "unlock", - "name": "UNLOCK", - "symbol": "unlock" - }, - { - "id": "unlock-maverick", - "name": "Unlock Maverick", - "symbol": "unkmav" - }, - { - "id": "unlock-protocol", - "name": "Unlock Protocol", - "symbol": "udt" - }, - { - "id": "unlucky", - "name": "UNLUCKY", - "symbol": "unlucky" - }, - { - "id": "unmarshal", - "name": "Unmarshal", - "symbol": "marsh" - }, - { - "id": "unobtanium", - "name": "Unobtanium", - "symbol": "uno" - }, - { - "id": "unobtanium-tezos", - "name": "Unobtanium Tezos", - "symbol": "uno" - }, - { - "id": "unodex", - "name": "UNODEX", - "symbol": "undx" - }, - { - "id": "uno-re", - "name": "Uno Re", - "symbol": "uno" - }, - { - "id": "unq", - "name": "Unique Venture clubs", - "symbol": "unq" - }, - { - "id": "unreal-finance", - "name": "Unreal Finance", - "symbol": "ugt" - }, - { - "id": "unsheth", - "name": "unshETHing_Token", - "symbol": "ush" - }, - { - "id": "unsheth-unsheth", - "name": "unshETH Ether", - "symbol": "unsheth" - }, - { - "id": "unstake-fi", - "name": "Unstake", - "symbol": "nstk" - }, - { - "id": "uns-token", - "name": "UNS Token", - "symbol": "uns" - }, - { - "id": "unstoppable-defi", - "name": "Unstoppable DeFi", - "symbol": "und" - }, - { - "id": "unvaxxed-sperm", - "name": "Unvaxxed Sperm", - "symbol": "nubtc" - }, - { - "id": "unvest", - "name": "Unvest", - "symbol": "unv" - }, - { - "id": "unwa", - "name": "unwa", - "symbol": "unwa" - }, - { - "id": "up", - "name": "UP", - "symbol": "up" - }, - { - "id": "upbots", - "name": "UpBots", - "symbol": "ubxn" - }, - { - "id": "upcx", - "name": "UPCX", - "symbol": "upc" - }, - { - "id": "updog", - "name": "UpDog", - "symbol": "updog" - }, - { - "id": "upfi-network", - "name": "UPFI Network", - "symbol": "ups" - }, - { - "id": "upfire", - "name": "Upfire", - "symbol": "upr" - }, - { - "id": "upfront-protocol", - "name": "Upfront Protocol", - "symbol": "up" - }, - { - "id": "uplexa", - "name": "uPlexa", - "symbol": "upx" - }, - { - "id": "uplift", - "name": "Uplift", - "symbol": "lift" - }, - { - "id": "uponly-token", - "name": "UpOnly", - "symbol": "upo" - }, - { - "id": "u-protocol", - "name": "U Protocol", - "symbol": "you" - }, - { - "id": "upsidedowncat", - "name": "UpSideDownCat", - "symbol": "usdc" - }, - { - "id": "upsorber", - "name": "Upsorber", - "symbol": "up" - }, - { - "id": "upstabletoken", - "name": "UpStable", - "symbol": "ustx" - }, - { - "id": "up-token-2", - "name": "uP Token", - "symbol": "up" - }, - { - "id": "uptos", - "name": "UPTOS", - "symbol": "uptos" - }, - { - "id": "upup-token", - "name": "UPUP TOKEN", - "symbol": "upup" - }, - { - "id": "upx", - "name": "uPX", - "symbol": "upx" - }, - { - "id": "uquid-coin", - "name": "Uquid Coin", - "symbol": "uqc" - }, - { - "id": "ura-dex", - "name": "Ura", - "symbol": "ura" - }, - { - "id": "uramaki", - "name": "Uramaki", - "symbol": "maki" - }, - { - "id": "uranium3o8", - "name": "Uranium3o8", - "symbol": "u" - }, - { - "id": "uraniumx", - "name": "UraniumX", - "symbol": "urx" - }, - { - "id": "uranus-sol", - "name": "URANUS (SOL)", - "symbol": "anus" - }, - { - "id": "urdex-finance", - "name": "UrDEX Finance", - "symbol": "urd" - }, - { - "id": "ureeqa", - "name": "UREEQA", - "symbol": "urqa" - }, - { - "id": "urmom", - "name": "URMOM", - "symbol": "urmom" - }, - { - "id": "urubit", - "name": "Urubit", - "symbol": "urub" - }, - { - "id": "urus-token", - "name": "Aurox", - "symbol": "urus" - }, - { - "id": "usc-2", - "name": "USC", - "symbol": "usc" - }, - { - "id": "usd", - "name": "Overnight.fi USD+", - "symbol": "usd+" - }, - { - "id": "usdb", - "name": "USDB", - "symbol": "usdb" - }, - { - "id": "usd-balance", - "name": "USD Balance", - "symbol": "usdb" - }, - { - "id": "usd-coin", - "name": "USDC", - "symbol": "usdc" - }, - { - "id": "usd-coin-avalanche-bridged-usdc-e", - "name": "Avalanche Bridged USDC (Avalanche)", - "symbol": "usdc.e" - }, - { - "id": "usd-coin-celer", - "name": "Bridged USD Coin (Celer)", - "symbol": "ceusdc" - }, - { - "id": "usd-coin-ethereum-bridged", - "name": "Bridged USDC (Arbitrum)", - "symbol": "usdc.e" - }, - { - "id": "usd-coin-nomad", - "name": "USD Coin - Nomad", - "symbol": "nomadusdc" - }, - { - "id": "usd-coin-plenty-bridge", - "name": "Bridged USDC (Plenty Bridge)", - "symbol": "usdc.e" - }, - { - "id": "usd-coin-pos-wormhole", - "name": "Bridged USD Coin (Wormhole POS)", - "symbol": "usdcpo" - }, - { - "id": "usd-coin-pulsechain", - "name": "Bridged USD Coin (PulseChain)", - "symbol": "usdc" - }, - { - "id": "usd-coin-wormhole-arb", - "name": "Bridged USD Coin (Wormhole Arbitrum)", - "symbol": "usdcarb" - }, - { - "id": "usd-coin-wormhole-bnb", - "name": "Bridged USD Coin (Wormhole BNB)", - "symbol": "usdcbnb" - }, - { - "id": "usd-coin-wormhole-from-ethereum", - "name": "Bridged USD Coin (Wormhole Ethereum)", - "symbol": "usdcet" - }, - { - "id": "usdc-plus-overnight", - "name": "Overnight.fi USDC+", - "symbol": "usdc+" - }, - { - "id": "usdc-rainbow-bridge", - "name": "Bridged USDC (Rainbow Bridge)", - "symbol": "usdc.e" - }, - { - "id": "usdc-yvault", - "name": "USDC yVault", - "symbol": "yvusdc" - }, - { - "id": "usdd", - "name": "USDD", - "symbol": "usdd" - }, - { - "id": "usde-2", - "name": "USDE (ERD)", - "symbol": "usde" - }, - { - "id": "usdebt", - "name": "USDEBT", - "symbol": "usdebt" - }, - { - "id": "usdex-8136b88a-eceb-4eaf-b910-9578cbc70136", - "name": "USDEX+", - "symbol": "usdex+" - }, - { - "id": "usdfi", - "name": "USDFI", - "symbol": "usdfi" - }, - { - "id": "usdfi-stable", - "name": "Stable", - "symbol": "stable" - }, - { - "id": "usdh", - "name": "USDH", - "symbol": "usdh" - }, - { - "id": "usdjpm", - "name": "USDJPM", - "symbol": "jpm" - }, - { - "id": "usd-mars", - "name": "USD Mars", - "symbol": "usdm" - }, - { - "id": "usdollhairs", - "name": "USDOLLHAIRS", - "symbol": "usdh" - }, - { - "id": "usdtez", - "name": "USDtez", - "symbol": "usdtz" - }, - { - "id": "usdtplus", - "name": "Overnight.fi USDT+", - "symbol": "usdt+" - }, - { - "id": "usdt-yvault", - "name": "USDT yVault", - "symbol": "yvusdt" - }, - { - "id": "usdv-2", - "name": "USDV", - "symbol": "usdv" - }, - { - "id": "usdx", - "name": "USDX", - "symbol": "usdx" - }, - { - "id": "usd-zee", - "name": "USD ZEE", - "symbol": "usdz" - }, - { - "id": "useless-utility", - "name": "Useless Utility", - "symbol": "uu" - }, - { - "id": "ushark", - "name": "uShark Token", - "symbol": "ushark" - }, - { - "id": "ushi", - "name": "Ushi", - "symbol": "ushi" - }, - { - "id": "usk", - "name": "USK", - "symbol": "usk" - }, - { - "id": "usp", - "name": "USP", - "symbol": "usp" - }, - { - "id": "utility-ape", - "name": "Utility Ape", - "symbol": "$banana" - }, - { - "id": "utility-meta-token", - "name": "Utility Meta Token", - "symbol": "umt" - }, - { - "id": "utility-net", - "name": "Utility Net", - "symbol": "unc" - }, - { - "id": "utility-nexusmind", - "name": "Utility NexusMind", - "symbol": "unmd" - }, - { - "id": "utility-web3shot", - "name": "Utility Web3Shot", - "symbol": "uw3s" - }, - { - "id": "utix", - "name": "UTIX", - "symbol": "utx" - }, - { - "id": "utopia", - "name": "Crypton", - "symbol": "crp" - }, - { - "id": "utopia-bot", - "name": "Utopia Bot", - "symbol": "ub" - }, - { - "id": "utopia-usd", - "name": "Utopia USD", - "symbol": "uusd" - }, - { - "id": "utrust", - "name": "xMoney", - "symbol": "utk" - }, - { - "id": "utu-coin", - "name": "UTU Coin", - "symbol": "utu" - }, - { - "id": "utxo", - "name": "UTXO", - "symbol": "utxo" - }, - { - "id": "uwon", - "name": "UWON", - "symbol": "uwon" - }, - { - "id": "uwu-lend", - "name": "UwU Lend", - "symbol": "uwu" - }, - { - "id": "uxd-protocol-token", - "name": "UXD Protocol", - "symbol": "uxp" - }, - { - "id": "uxd-stablecoin", - "name": "UXD Stablecoin", - "symbol": "uxd" - }, - { - "id": "uzxcoin", - "name": "UZXCoin", - "symbol": "uzx" - }, - { - "id": "v3s-share", - "name": "V3S Share", - "symbol": "vshare" - }, - { - "id": "vabble", - "name": "Vabble", - "symbol": "vab" - }, - { - "id": "vabot-ai", - "name": "Vabot Ai", - "symbol": "vabt" - }, - { - "id": "vader-protocol", - "name": "Vader Protocol", - "symbol": "vader" - }, - { - "id": "vai", - "name": "Vai", - "symbol": "vai" - }, - { - "id": "vaiot", - "name": "Vaiot", - "symbol": "vai" - }, - { - "id": "valencia-cf-fan-token", - "name": "Valencia CF Fan Token", - "symbol": "vcf" - }, - { - "id": "valentine-floki", - "name": "TOSHE", - "symbol": "toshe" - }, - { - "id": "valeria", - "name": "Valeria", - "symbol": "val" - }, - { - "id": "validao", - "name": "ValiDAO", - "symbol": "vdo" - }, - { - "id": "valleydao", - "name": "ValleyDAO", - "symbol": "grow" - }, - { - "id": "valobit", - "name": "VALOBIT", - "symbol": "vbit" - }, - { - "id": "value-liquidity", - "name": "Value DeFi", - "symbol": "value" - }, - { - "id": "vanar-chain", - "name": "Vanar Chain", - "symbol": "vanry" - }, - { - "id": "vana-world", - "name": "NIRVANA", - "symbol": "vana" - }, - { - "id": "vanguard-real-estate-tokenized-stock-defichain", - "name": "Vanguard Real Estate Tokenized Stock Defichain", - "symbol": "dvnq" - }, - { - "id": "vanguard-sp-500-etf-tokenized-stock-defichain", - "name": "Vanguard S&P 500 ETF Tokenized Stock Defichain", - "symbol": "dvoo" - }, - { - "id": "vanilla-2", - "name": "Vanilla", - "symbol": "bum" - }, - { - "id": "vanity", - "name": "Vanity", - "symbol": "vny" - }, - { - "id": "vape", - "name": "VAPE", - "symbol": "vape" - }, - { - "id": "vaporfi", - "name": "VAPE", - "symbol": "vape" - }, - { - "id": "vapornodes", - "name": "VaporNodes", - "symbol": "vpnd" - }, - { - "id": "vaporum-coin", - "name": "Vaporum Coin", - "symbol": "vprm" - }, - { - "id": "vapor-wallet", - "name": "VaporFund", - "symbol": "vpr" - }, - { - "id": "vaporwave", - "name": "Vaporwave", - "symbol": "vwave" - }, - { - "id": "vara-network", - "name": "Vara Network", - "symbol": "vara" - }, - { - "id": "varen", - "name": "Varen", - "symbol": "vrn" - }, - { - "id": "vasco-da-gama-fan-token", - "name": "Vasco da Gama Fan Token", - "symbol": "vasco" - }, - { - "id": "vaultcraft", - "name": "VaultCraft", - "symbol": "vcx" - }, - { - "id": "vaulteum", - "name": "Vaulteum", - "symbol": "vault" - }, - { - "id": "vault-hill-city", - "name": "Vault Hill City", - "symbol": "vhc" - }, - { - "id": "vaultka", - "name": "Vaultka", - "symbol": "vka" - }, - { - "id": "vaulttech", - "name": "VaultTech", - "symbol": "$vault" - }, - { - "id": "vaxlabs", - "name": "VaxLabs", - "symbol": "vlabs" - }, - { - "id": "vbswap", - "name": "vBSWAP", - "symbol": "vbswap" - }, - { - "id": "vcash", - "name": "Vcash", - "symbol": "xvc" - }, - { - "id": "vcgamers", - "name": "VCGamers", - "symbol": "vcg" - }, - { - "id": "vcore", - "name": "IMVU", - "symbol": "vcore" - }, - { - "id": "veax", - "name": "Veax", - "symbol": "veax" - }, - { - "id": "vechain", - "name": "VeChain", - "symbol": "vet" - }, - { - "id": "veco", - "name": "Veco", - "symbol": "veco" - }, - { - "id": "vecrv-dao-yvault", - "name": "veCRV-DAO yVault", - "symbol": "yve-crvdao" - }, - { - "id": "vectorchat-ai", - "name": "VectorChat.ai", - "symbol": "chat" - }, - { - "id": "vector-eth", - "name": "Vector ETH", - "symbol": "veth" - }, - { - "id": "vector-finance", - "name": "Vector Finance", - "symbol": "vtx" - }, - { - "id": "vectorium", - "name": "Vectorium", - "symbol": "vect" - }, - { - "id": "vector-reserve", - "name": "Vector Reserve", - "symbol": "vec" - }, - { - "id": "vectorspace", - "name": "Vectorspace AI", - "symbol": "vxv" - }, - { - "id": "vector-space-biosciences-inc", - "name": "Vector Space Biosciences, Inc.", - "symbol": "sbio" - }, - { - "id": "vedao", - "name": "veDAO", - "symbol": "weve" - }, - { - "id": "vee-finance", - "name": "Vee Finance", - "symbol": "vee" - }, - { - "id": "vega-2", - "name": "VEGA", - "symbol": "vega" - }, - { - "id": "vega-protocol", - "name": "Vega Protocol", - "symbol": "vega" - }, - { - "id": "vegasbot", - "name": "VegasBot", - "symbol": "vegas" - }, - { - "id": "vegasino", - "name": "Vegasino", - "symbol": "vegas" - }, - { - "id": "veil", - "name": "VEIL", - "symbol": "veil" - }, - { - "id": "veil-exchange", - "name": "Veil Exchange", - "symbol": "veil" - }, - { - "id": "velar", - "name": "Velar", - "symbol": "velar" - }, - { - "id": "velas", - "name": "Velas", - "symbol": "vlx" - }, - { - "id": "velaspad", - "name": "VelasPad", - "symbol": "vlxpad" - }, - { - "id": "vela-token", - "name": "Vela Token", - "symbol": "vela" - }, - { - "id": "veldorabsc", - "name": "VeldoraBSC", - "symbol": "vdora" - }, - { - "id": "velhalla", - "name": "ScarQuest", - "symbol": "scar" - }, - { - "id": "velo", - "name": "Velo", - "symbol": "velo" - }, - { - "id": "veloce-vext", - "name": "Veloce", - "symbol": "vext" - }, - { - "id": "velocimeter-flow", - "name": "Velocimeter FLOW", - "symbol": "flow" - }, - { - "id": "velocore", - "name": "Velocore", - "symbol": "vc" - }, - { - "id": "velocore-vetvc", - "name": "Velocore veTVC", - "symbol": "vetvc" - }, - { - "id": "velocore-waifu", - "name": "Waifu by Velocore", - "symbol": "waifu" - }, - { - "id": "velodrome-finance", - "name": "Velodrome Finance", - "symbol": "velo" - }, - { - "id": "velorex", - "name": "Velorex", - "symbol": "vex" - }, - { - "id": "velosbot", - "name": "VelosBot", - "symbol": "velos" - }, - { - "id": "velta-token", - "name": "VELTA Token", - "symbol": "vta" - }, - { - "id": "vemate", - "name": "Vemate", - "symbol": "vmt" - }, - { - "id": "vempire-ddao", - "name": "VEMP", - "symbol": "vemp" - }, - { - "id": "vendetta", - "name": "Vendetta", - "symbol": "vdt" - }, - { - "id": "venium", - "name": "Venium", - "symbol": "ven" - }, - { - "id": "veno-finance", - "name": "Veno Finance", - "symbol": "vno" - }, - { - "id": "veno-finance-staked-eth", - "name": "Veno Finance Staked ETH", - "symbol": "leth" - }, - { - "id": "venom", - "name": "Venom", - "symbol": "venom" - }, - { - "id": "venox", - "name": "Venox", - "symbol": "vnx" - }, - { - "id": "vent-finance", - "name": "Vent Finance", - "symbol": "vent" - }, - { - "id": "vention", - "name": "Vention", - "symbol": "vention" - }, - { - "id": "venture-coin-2", - "name": "Venture Coin", - "symbol": "vc" - }, - { - "id": "venus", - "name": "Venus", - "symbol": "xvs" - }, - { - "id": "venus-bch", - "name": "Venus BCH", - "symbol": "vbch" - }, - { - "id": "venus-beth", - "name": "Venus BETH", - "symbol": "vbeth" - }, - { - "id": "venus-btc", - "name": "Venus BTC", - "symbol": "vbtc" - }, - { - "id": "venus-busd", - "name": "Venus BUSD", - "symbol": "vbusd" - }, - { - "id": "venus-dai", - "name": "Venus DAI", - "symbol": "vdai" - }, - { - "id": "venus-doge", - "name": "Venus DOGE", - "symbol": "vdoge" - }, - { - "id": "venus-dot", - "name": "Venus DOT", - "symbol": "vdot" - }, - { - "id": "venus-eth", - "name": "Venus ETH", - "symbol": "veth" - }, - { - "id": "venus-fil", - "name": "Venus FIL", - "symbol": "vfil" - }, - { - "id": "venus-link", - "name": "Venus LINK", - "symbol": "vlink" - }, - { - "id": "venus-ltc", - "name": "Venus LTC", - "symbol": "vltc" - }, - { - "id": "venus-reward-token", - "name": "Venus Reward", - "symbol": "vrt" - }, - { - "id": "venus-sxp", - "name": "Venus SXP", - "symbol": "vsxp" - }, - { - "id": "venus-usdc", - "name": "Venus USDC", - "symbol": "vusdc" - }, - { - "id": "venus-usdt", - "name": "Venus USDT", - "symbol": "vusdt" - }, - { - "id": "venus-xrp", - "name": "Venus XRP", - "symbol": "vxrp" - }, - { - "id": "venus-xvs", - "name": "Venus XVS", - "symbol": "vxvs" - }, - { - "id": "vera", - "name": "Vera", - "symbol": "vera" - }, - { - "id": "veraone", - "name": "VeraOne", - "symbol": "vro" - }, - { - "id": "verasity", - "name": "Verasity", - "symbol": "vra" - }, - { - "id": "verge", - "name": "Verge", - "symbol": "xvg" - }, - { - "id": "verge-eth", - "name": "Verge (ETH)", - "symbol": "xvg" - }, - { - "id": "verida", - "name": "Verida", - "symbol": "vda" - }, - { - "id": "verified-usd-foundation-usdv", - "name": "Verified USD", - "symbol": "usdv" - }, - { - "id": "verify-authentificator-bot", - "name": "Verify Authentificator Bot", - "symbol": "verify" - }, - { - "id": "veritaseum", - "name": "Veritaseum", - "symbol": "veri" - }, - { - "id": "veritise", - "name": "Veritise", - "symbol": "vts" - }, - { - "id": "veriumreserve", - "name": "VeriumReserve", - "symbol": "vrm" - }, - { - "id": "verox", - "name": "Verox", - "symbol": "vrx" - }, - { - "id": "versagames", - "name": "VersaGames", - "symbol": "versa" - }, - { - "id": "verse-bitcoin", - "name": "Verse", - "symbol": "verse" - }, - { - "id": "versity", - "name": "Versity", - "symbol": "sity" - }, - { - "id": "verso", - "name": "Verso", - "symbol": "vso" - }, - { - "id": "versoview", - "name": "VersoView", - "symbol": "vvt" - }, - { - "id": "versus-2", - "name": "Versus", - "symbol": "vs" - }, - { - "id": "versus-x", - "name": "Versus-X", - "symbol": "vsx" - }, - { - "id": "vertcoin", - "name": "Vertcoin", - "symbol": "vtc" - }, - { - "id": "vertek", - "name": "Vertek", - "symbol": "vrtk" - }, - { - "id": "vertex-protocol", - "name": "Vertex", - "symbol": "vrtx" - }, - { - "id": "verus-coin", - "name": "Verus Coin", - "symbol": "vrsc" - }, - { - "id": "very-special-dragon", - "name": "Very Special Dragon", - "symbol": "vito" - }, - { - "id": "vesper-finance", - "name": "Vesper Finance", - "symbol": "vsp" - }, - { - "id": "vesta-finance", - "name": "Vesta Finance", - "symbol": "vsta" - }, - { - "id": "vesta-stable", - "name": "Vesta Stable", - "symbol": "vst" - }, - { - "id": "vestate", - "name": "Vestate", - "symbol": "ves" - }, - { - "id": "vestige", - "name": "Vestige", - "symbol": "vest" - }, - { - "id": "vesync", - "name": "veSync", - "symbol": "vs" - }, - { - "id": "vethor-token", - "name": "VeThor", - "symbol": "vtho" - }, - { - "id": "vetme", - "name": "VetMe", - "symbol": "vetme" - }, - { - "id": "vetter-skylabs", - "name": "Vetter Skylabs", - "symbol": "vsl" - }, - { - "id": "vetter-token", - "name": "Vetter", - "symbol": "vetter" - }, - { - "id": "veve", - "name": "VEVE", - "symbol": "veve" - }, - { - "id": "vex-aeterna", - "name": "Vex Aeterna", - "symbol": "vex" - }, - { - "id": "vexanium", - "name": "Vexanium", - "symbol": "vex" - }, - { - "id": "vfox", - "name": "VFOX", - "symbol": "vfox" - }, - { - "id": "viacoin", - "name": "Viacoin", - "symbol": "via" - }, - { - "id": "vibe", - "name": "VIBE", - "symbol": "vibe" - }, - { - "id": "viberate", - "name": "Viberate", - "symbol": "vib" - }, - { - "id": "vibing", - "name": "Vibing", - "symbol": "vbg" - }, - { - "id": "vibing-cat", - "name": "Vibing Cat", - "symbol": "vcat" - }, - { - "id": "vibingcattoken", - "name": "VibingCatToken", - "symbol": "vct" - }, - { - "id": "vicat", - "name": "ViCat", - "symbol": "vicat" - }, - { - "id": "vica-token", - "name": "ViCA", - "symbol": "vica" - }, - { - "id": "vicicoin", - "name": "ViciCoin", - "symbol": "vcnt" - }, - { - "id": "vicpool-staked-vic", - "name": "Vicpool Staked VIC", - "symbol": "svic" - }, - { - "id": "viction-bridged-usdt-viction", - "name": "Viction Bridged USDT (Viction)", - "symbol": "usdt" - }, - { - "id": "victoria-vr", - "name": "Victoria VR", - "symbol": "vr" - }, - { - "id": "victorum", - "name": "Victorum", - "symbol": "vcc" - }, - { - "id": "victory-gem", - "name": "Victory Gem", - "symbol": "vtg" - }, - { - "id": "victory-impact", - "name": "Victory Impact", - "symbol": "vic" - }, - { - "id": "vidt-dao", - "name": "VIDT DAO", - "symbol": "vidt" - }, - { - "id": "vidulum", - "name": "Vidulum", - "symbol": "vdl" - }, - { - "id": "vidy", - "name": "VIDY", - "symbol": "vidy" - }, - { - "id": "vidya", - "name": "Vidya", - "symbol": "vidya" - }, - { - "id": "vidyx", - "name": "VidyX", - "symbol": "vidyx" - }, - { - "id": "vigorus", - "name": "Vigorus", - "symbol": "vis" - }, - { - "id": "viking-elon", - "name": "Viking Elon", - "symbol": "velon" - }, - { - "id": "vimmer", - "name": "Vim", - "symbol": "viz" - }, - { - "id": "vimverse", - "name": "Vimverse", - "symbol": "vim" - }, - { - "id": "vinci-protocol", - "name": "Vinci Protocol", - "symbol": "vci" - }, - { - "id": "vindax-coin", - "name": "VinDax Coin", - "symbol": "vd" - }, - { - "id": "vinlink", - "name": "Vinlink", - "symbol": "vnlnk" - }, - { - "id": "vinuchain", - "name": "VinuChain", - "symbol": "vc" - }, - { - "id": "vinu-network", - "name": "VINU Network", - "symbol": "vnn" - }, - { - "id": "vip-coin", - "name": "Vip Coin", - "symbol": "vip" - }, - { - "id": "viper-2", - "name": "VIPER", - "symbol": "viper" - }, - { - "id": "vip-token", - "name": "VIP", - "symbol": "vip" - }, - { - "id": "viral-inu", - "name": "Viral Inu", - "symbol": "vinu" - }, - { - "id": "viralsniper", - "name": "Viralsniper", - "symbol": "viral" - }, - { - "id": "virgo", - "name": "Virgo", - "symbol": "vgo" - }, - { - "id": "viridis-network", - "name": "Viridis Network", - "symbol": "vrd" - }, - { - "id": "virtual-coin", - "name": "Virtual Coin", - "symbol": "vrc" - }, - { - "id": "virtual-protocol", - "name": "Virtual Protocol", - "symbol": "virtual" - }, - { - "id": "virtual-reality-glasses", - "name": "Virtual Reality Glasses", - "symbol": "vrg" - }, - { - "id": "virtual-tourist", - "name": "Virtual Tourist", - "symbol": "vt" - }, - { - "id": "virtual-trader", - "name": "Virtual Trader", - "symbol": "vtr" - }, - { - "id": "virtual-versions", - "name": "Virtual Versions", - "symbol": "vv" - }, - { - "id": "virtual-x", - "name": "VIRTUAL X", - "symbol": "vrl" - }, - { - "id": "virtublock", - "name": "VirtuBlock", - "symbol": "vb" - }, - { - "id": "virtucloud", - "name": "Virtucloud", - "symbol": "virtu" - }, - { - "id": "virtucoin", - "name": "Virtucoin", - "symbol": "v" - }, - { - "id": "virtue-poker", - "name": "Virtue Poker Points", - "symbol": "vpp" - }, - { - "id": "virtumate", - "name": "Virtumate", - "symbol": "mate" - }, - { - "id": "virtuswap", - "name": "VirtuSwap", - "symbol": "vrsw" - }, - { - "id": "vishai", - "name": "VishAI", - "symbol": "vish" - }, - { - "id": "vision-city", - "name": "Vision City", - "symbol": "viz" - }, - { - "id": "visiongame", - "name": "VisionGame", - "symbol": "vision" - }, - { - "id": "vitadao", - "name": "VitaDAO", - "symbol": "vita" - }, - { - "id": "vita-inu", - "name": "Vita Inu", - "symbol": "vinu" - }, - { - "id": "vitalek-buteren", - "name": "vitalek buteren", - "symbol": "vitalek" - }, - { - "id": "vitalikmum", - "name": "VitalikMum", - "symbol": "vmum" - }, - { - "id": "vitalik-smart-gas", - "name": "Vitalik Smart Gas", - "symbol": "vsg" - }, - { - "id": "vitality", - "name": "Vitality", - "symbol": "vita" - }, - { - "id": "vitalxp", - "name": "VitalXP", - "symbol": "vital" - }, - { - "id": "vitamin-coin", - "name": "Vitamin Coin", - "symbol": "vitc" - }, - { - "id": "vite", - "name": "Vite", - "symbol": "vite" - }, - { - "id": "viterium", - "name": "Viterium", - "symbol": "vt" - }, - { - "id": "vitex", - "name": "ViteX Coin", - "symbol": "vx" - }, - { - "id": "vitnixx", - "name": "VitnixX", - "symbol": "vtc" - }, - { - "id": "vitra-studios", - "name": "Vitra Studios", - "symbol": "vitra" - }, - { - "id": "vitteey", - "name": "Vitteey", - "symbol": "vity" - }, - { - "id": "viva", - "name": "Viva", - "symbol": "viva" - }, - { - "id": "vivex", - "name": "Vivex", - "symbol": "$vivx" - }, - { - "id": "vixco", - "name": "Vixco", - "symbol": "vix" - }, - { - "id": "vizion-protocol", - "name": "Vizion Protocol", - "symbol": "vizion" - }, - { - "id": "vizslaswap", - "name": "VizslaSwap", - "symbol": "vizslaswap" - }, - { - "id": "vlaunch-2", - "name": "VLaunch", - "symbol": "vpad" - }, - { - "id": "vmex", - "name": "VMEX", - "symbol": "vmex" - }, - { - "id": "vmpx", - "name": "VMPX", - "symbol": "vmpx" - }, - { - "id": "vndc", - "name": "VNDC", - "symbol": "vndc" - }, - { - "id": "vnst-stablecoin", - "name": "VNST Stablecoin", - "symbol": "vnst" - }, - { - "id": "vnx-euro", - "name": "VNX EURO", - "symbol": "veur" - }, - { - "id": "vnx-gold", - "name": "VNX Gold", - "symbol": "vnxau" - }, - { - "id": "vnx-swiss-franc", - "name": "VNX Swiss Franc", - "symbol": "vchf" - }, - { - "id": "vodra", - "name": "Vodra", - "symbol": "vdr" - }, - { - "id": "voice-street", - "name": "Voice Street", - "symbol": "vst" - }, - { - "id": "void-games", - "name": "Void Games", - "symbol": "void" - }, - { - "id": "voidz", - "name": "Voidz", - "symbol": "vdz" - }, - { - "id": "volare-network", - "name": "Volare Network", - "symbol": "volr" - }, - { - "id": "voldemorttrumprobotnik-10neko", - "name": "VoldemortTrumpRobotnik-10Neko", - "symbol": "ethereum" - }, - { - "id": "volley", - "name": "Volley", - "symbol": "voy" - }, - { - "id": "volo-staked-sui", - "name": "Volo Staked SUI", - "symbol": "vsui" - }, - { - "id": "volta-club", - "name": "Volta Club", - "symbol": "volta" - }, - { - "id": "volta-protocol", - "name": "Volta Protocol", - "symbol": "volta" - }, - { - "id": "volt-inu-2", - "name": "Volt Inu", - "symbol": "volt" - }, - { - "id": "voltswap", - "name": "VoltSwap", - "symbol": "volt" - }, - { - "id": "volume-ai", - "name": "Volume AI", - "symbol": "vai" - }, - { - "id": "volumint", - "name": "VoluMint", - "symbol": "vmint" - }, - { - "id": "voodoo", - "name": "Voodoo", - "symbol": "ldz" - }, - { - "id": "vortex-ai", - "name": "Vortex AI", - "symbol": "vxai" - }, - { - "id": "vortex-protocol", - "name": "Vortex Protocol", - "symbol": "vp" - }, - { - "id": "voucher-dot", - "name": "Voucher DOT", - "symbol": "vdot" - }, - { - "id": "voucher-ethereum-2-0", - "name": "Voucher Ethereum 2.0", - "symbol": "veth" - }, - { - "id": "voucher-glmr", - "name": "Voucher GLMR", - "symbol": "vglmr" - }, - { - "id": "voucher-ksm", - "name": "Voucher KSM", - "symbol": "vksm" - }, - { - "id": "voucher-movr", - "name": "Voucher MOVR", - "symbol": "vmovr" - }, - { - "id": "vow", - "name": "Vow", - "symbol": "vow" - }, - { - "id": "voxel-ape", - "name": "Voxel Ape", - "symbol": "voxelape" - }, - { - "id": "voxel-x-network", - "name": "Voxel X Network", - "symbol": "vxl" - }, - { - "id": "voxies", - "name": "Voxies", - "symbol": "voxel" - }, - { - "id": "voxnet", - "name": "VoxNET", - "symbol": "vxon" - }, - { - "id": "voxto", - "name": "VOXTO", - "symbol": "vxt" - }, - { - "id": "voy-finance", - "name": "Voy Finance", - "symbol": "voy" - }, - { - "id": "vps-ai", - "name": "VPS Ai", - "symbol": "vps" - }, - { - "id": "vrmars", - "name": "VRMARS", - "symbol": "vrm" - }, - { - "id": "vsolidus", - "name": "VSolidus", - "symbol": "vsol" - }, - { - "id": "v-systems", - "name": "V.SYSTEMS", - "symbol": "vsys" - }, - { - "id": "vtro", - "name": "VTRO", - "symbol": "vtro" - }, - { - "id": "vulcan-forged", - "name": "Vulcan Forged", - "symbol": "pyr" - }, - { - "id": "vulture-peak", - "name": "Vulture Peak", - "symbol": "vpk" - }, - { - "id": "vuzzmind", - "name": "VuzzMind", - "symbol": "vuzz" - }, - { - "id": "vvs-finance", - "name": "VVS Finance", - "symbol": "vvs" - }, - { - "id": "vxdefi", - "name": "vXDEFI", - "symbol": "vxdefi" - }, - { - "id": "vyfinance", - "name": "VyFinance", - "symbol": "vyfi" - }, - { - "id": "vyvo-smart-chain", - "name": "Vyvo Smart Chain", - "symbol": "vsc" - }, - { - "id": "vyvo-us-dollar", - "name": "Vyvo US Dollar", - "symbol": "usdv" - }, - { - "id": "vzzn", - "name": "VZZN", - "symbol": "vzzn" - }, - { - "id": "w3gamez-network", - "name": "W3Gamez Network", - "symbol": "w3g" - }, - { - "id": "wadzpay-token", - "name": "WadzPay", - "symbol": "wtk" - }, - { - "id": "wageron", - "name": "WagerOn", - "symbol": "wager" - }, - { - "id": "wagerr", - "name": "Wagerr", - "symbol": "wgr" - }, - { - "id": "waggle-network", - "name": "Waggle Network", - "symbol": "wag" - }, - { - "id": "wagie-bot", - "name": "Wagie Bot", - "symbol": "wagiebot" - }, - { - "id": "wagmi-2", - "name": "Wagmi", - "symbol": "wagmi" - }, - { - "id": "wagmicatgirlkanye420etfmoon1000x", - "name": "wagmicatgirlkanye420etfmoon1000x", - "symbol": "hood" - }, - { - "id": "wagmi-coin", - "name": "Wagmi Coin", - "symbol": "wagmi" - }, - { - "id": "wagmi-game-2", - "name": "WAGMI Games", - "symbol": "wagmigames" - }, - { - "id": "wagmi-on-solana", - "name": "WAGMI On Solana", - "symbol": "wagmi" - }, - { - "id": "wagmi-token", - "name": "WAGMI Token", - "symbol": "wag" - }, - { - "id": "wagyu", - "name": "Wagyu", - "symbol": "$wagyu" - }, - { - "id": "wagyu-protocol", - "name": "Wagyu Protocol", - "symbol": "wagyu" - }, - { - "id": "wagyuswap", - "name": "WagyuSwap", - "symbol": "wag" - }, - { - "id": "waifu", - "name": "Waifu", - "symbol": "waifu" - }, - { - "id": "waifuai", - "name": "WaifuAI", - "symbol": "wfai" - }, - { - "id": "walc", - "name": "WALC", - "symbol": "$walc" - }, - { - "id": "walk", - "name": "Walk", - "symbol": "walk" - }, - { - "id": "walken", - "name": "Walken", - "symbol": "wlkn" - }, - { - "id": "walk-up", - "name": "Walk Up", - "symbol": "wut" - }, - { - "id": "wallet-defi", - "name": "Wallet Defi", - "symbol": "wdf" - }, - { - "id": "walletika", - "name": "Walletika", - "symbol": "wltk" - }, - { - "id": "walletnow", - "name": "WalletNow", - "symbol": "wnow" - }, - { - "id": "wallet-safu", - "name": "Wallet SAFU", - "symbol": "wsafu" - }, - { - "id": "wallet-sniffer", - "name": "Wallet Sniffer", - "symbol": "bo" - }, - { - "id": "wall-street-baby", - "name": "Wall Street Baby", - "symbol": "wsb" - }, - { - "id": "wall-street-baby-on-solana", - "name": "Wall Street Baby On Solana", - "symbol": "wsb" - }, - { - "id": "wall-street-bets", - "name": "Wall Street Bets", - "symbol": "wsb" - }, - { - "id": "wall-street-bets-dapp", - "name": "WallStreetBets DApp", - "symbol": "wsb" - }, - { - "id": "wall-street-games", - "name": "Wall Street Games [OLD]", - "symbol": "wsg" - }, - { - "id": "wall-street-games-2", - "name": "Wall Street Games", - "symbol": "wsg" - }, - { - "id": "wall-street-memes", - "name": "Wall Street Memes", - "symbol": "wsm" - }, - { - "id": "wall-street-pepes", - "name": "Wall Street Pepes", - "symbol": "wsp" - }, - { - "id": "wally-bot", - "name": "Wally Bot", - "symbol": "wally" - }, - { - "id": "wally-the-whale", - "name": "Wally The Whale", - "symbol": "wally" - }, - { - "id": "walrus", - "name": "Walrus", - "symbol": "wlrs" - }, - { - "id": "waltonchain", - "name": "Waltonchain", - "symbol": "wtc" - }, - { - "id": "wam", - "name": "Wam", - "symbol": "wam" - }, - { - "id": "wanaka-farm", - "name": "Wanaka Farm", - "symbol": "wana" - }, - { - "id": "wanbtc", - "name": "wanBTC", - "symbol": "wanbtc" - }, - { - "id": "wanchain", - "name": "Wanchain", - "symbol": "wan" - }, - { - "id": "wanchain-bridged-usdt-xdc-network", - "name": "Wanchain Bridged USDT (XDC Network)", - "symbol": "xusdt" - }, - { - "id": "wand", - "name": "Wand", - "symbol": "wand" - }, - { - "id": "waneth", - "name": "wanETH", - "symbol": "waneth" - }, - { - "id": "wanna-bot", - "name": "Wanna Bot", - "symbol": "wanna" - }, - { - "id": "wannaswap", - "name": "WannaSwap", - "symbol": "wanna" - }, - { - "id": "wanswap", - "name": "WanSwap [OLD]", - "symbol": "wasp" - }, - { - "id": "wanswap-2", - "name": "WanSwap", - "symbol": "wasp" - }, - { - "id": "wanusdc", - "name": "Bridged USD Coin (Wanchain)", - "symbol": "wanusdc" - }, - { - "id": "wanusdt", - "name": "Bridged Tether (Wanchain)", - "symbol": "wanusdt" - }, - { - "id": "wanxrp", - "name": "wanXRP", - "symbol": "wanxrp" - }, - { - "id": "wap-ordinals", - "name": "$wap (Ordinals)", - "symbol": "$wap" - }, - { - "id": "war-bond", - "name": "War Bond", - "symbol": "wbond" - }, - { - "id": "war-coin", - "name": "War Coin", - "symbol": "war" - }, - { - "id": "warena", - "name": "Warena", - "symbol": "rena" - }, - { - "id": "warioxrpdumbledoreyugioh69inu", - "name": "WarioXRPDumbledoreYugioh69Inu", - "symbol": "xrp" - }, - { - "id": "warlegends", - "name": "War Legends", - "symbol": "war" - }, - { - "id": "war-of-meme", - "name": "War Of Meme", - "symbol": "wome" - }, - { - "id": "warp-cash", - "name": "Warp Cash", - "symbol": "warp" - }, - { - "id": "warped-games", - "name": "Warped Games", - "symbol": "warped" - }, - { - "id": "warp-finance", - "name": "Warp Finance", - "symbol": "warp" - }, - { - "id": "warrior-empires", - "name": "Warrior Empires", - "symbol": "chaos" - }, - { - "id": "warthog", - "name": "Warthog", - "symbol": "wart" - }, - { - "id": "wasder", - "name": "Wasder", - "symbol": "was" - }, - { - "id": "wasd-studios", - "name": "WASD Studios", - "symbol": "wasd" - }, - { - "id": "wassie", - "name": "WASSIE", - "symbol": "wassie" - }, - { - "id": "waste-coin", - "name": "Waste Digital Coin", - "symbol": "waco" - }, - { - "id": "watchdo", - "name": "WatchDO", - "symbol": "wdo" - }, - { - "id": "watcher-ai", - "name": "Watcher AI", - "symbol": "wai" - }, - { - "id": "watchtowers-ai", - "name": "WatchTowers AI", - "symbol": "wts" - }, - { - "id": "wateenswap", - "name": "Wateenswap", - "symbol": "wtn" - }, - { - "id": "water-2", - "name": "WATER", - "symbol": "water" - }, - { - "id": "water-bsc", - "name": "WATER (BSC)", - "symbol": "water" - }, - { - "id": "waterfall-finance", - "name": "Waterfall Finance", - "symbol": "waterfall" - }, - { - "id": "waterfall-governance-token", - "name": "Waterfall Governance", - "symbol": "wtf" - }, - { - "id": "water-rabbit", - "name": "Water Rabbit", - "symbol": "war" - }, - { - "id": "wattton", - "name": "WATTTON", - "symbol": "watt" - }, - { - "id": "waultswap", - "name": "WaultSwap", - "symbol": "wex" - }, - { - "id": "wavelength", - "name": "Wavelength", - "symbol": "wave" - }, - { - "id": "waves", - "name": "Waves", - "symbol": "waves" - }, - { - "id": "waves-ducks", - "name": "Waves Ducks", - "symbol": "egg" - }, - { - "id": "waves-enterprise", - "name": "Waves Enterprise", - "symbol": "west" - }, - { - "id": "waves-exchange", - "name": "WX Network Token", - "symbol": "wx" - }, - { - "id": "wavx-exchange", - "name": "WAVX Exchange", - "symbol": "wavx" - }, - { - "id": "wawacat", - "name": "wawacat", - "symbol": "wawa" - }, - { - "id": "waweswaps-global-token", - "name": "WaweSwaps Global Token", - "symbol": "gbl" - }, - { - "id": "wax", - "name": "WAX", - "symbol": "waxp" - }, - { - "id": "waxe", - "name": "WAXE", - "symbol": "waxe" - }, - { - "id": "wayawolfcoin", - "name": "WayaWolfCoin", - "symbol": "ww" - }, - { - "id": "waykichain", - "name": "WaykiChain", - "symbol": "wicc" - }, - { - "id": "waykichain-governance-coin", - "name": "WaykiChain Governance Coin", - "symbol": "wgrt" - }, - { - "id": "wazirx", - "name": "WazirX", - "symbol": "wrx" - }, - { - "id": "wbnb", - "name": "Wrapped BNB", - "symbol": "wbnb" - }, - { - "id": "wbtc-plenty-bridge", - "name": "WBTC (Plenty Bridge)", - "symbol": "wbtc.e" - }, - { - "id": "wbtc-yvault", - "name": "WBTC yVault", - "symbol": "yvwbtc" - }, - { - "id": "wcapes", - "name": "WCAPES", - "symbol": "wca" - }, - { - "id": "wcdonalds", - "name": "WcDonalds", - "symbol": "wcd" - }, - { - "id": "wctrades", - "name": "WCTrades", - "symbol": "wct" - }, - { - "id": "wdot", - "name": "WDOT", - "symbol": "wdot" - }, - { - "id": "we2net", - "name": "We2net", - "symbol": "we2net" - }, - { - "id": "we-all-got-mantle-illness", - "name": "We All Got Mantle Illness", - "symbol": "wagmi" - }, - { - "id": "wealthsecrets", - "name": "WealthSecrets", - "symbol": "wsc" - }, - { - "id": "we-are-all-richard", - "name": "We Are All Richard", - "symbol": "waar" - }, - { - "id": "weave6", - "name": "Weave6", - "symbol": "wx" - }, - { - "id": "web", - "name": "Web", - "symbol": "web" - }, - { - "id": "web3-bets", - "name": "Web3 Bets", - "symbol": "bxb" - }, - { - "id": "web3camp", - "name": "Web3Camp [OLD]", - "symbol": "3p" - }, - { - "id": "web3camp-2", - "name": "Web3Camp", - "symbol": "3p" - }, - { - "id": "web3frontier", - "name": "Web3Frontier", - "symbol": "w3f" - }, - { - "id": "web3games-com-token", - "name": "Web3Games.com Token", - "symbol": "wgt" - }, - { - "id": "web3-no-value", - "name": "Web3 No Value", - "symbol": "w3n" - }, - { - "id": "web3shot", - "name": "Web3Shot", - "symbol": "w3s" - }, - { - "id": "web3tools", - "name": "Web3Tools", - "symbol": "web3t" - }, - { - "id": "web3war", - "name": "web3war", - "symbol": "fps" - }, - { - "id": "web4-ai", - "name": "WEB4 AI", - "symbol": "web4" - }, - { - "id": "web-ai", - "name": "Web AI", - "symbol": "webai" - }, - { - "id": "webcash", - "name": "Webcash", - "symbol": "web" - }, - { - "id": "webchain", - "name": "MintMe.com Coin", - "symbol": "mintme" - }, - { - "id": "web-four", - "name": "WEBFOUR", - "symbol": "webfour" - }, - { - "id": "weble-ecosystem-token", - "name": "Weble Ecosystem", - "symbol": "wet" - }, - { - "id": "websea", - "name": "Websea", - "symbol": "wbs" - }, - { - "id": "website-ai", - "name": "Website AI", - "symbol": "webai" - }, - { - "id": "webuy", - "name": "WeBuy", - "symbol": "we" - }, - { - "id": "wecan", - "name": "Wecan", - "symbol": "wecan" - }, - { - "id": "wecashcoin", - "name": "WeCash", - "symbol": "wch" - }, - { - "id": "wecoin", - "name": "WECOIN", - "symbol": "weco" - }, - { - "id": "wecoown", - "name": "WeCoOwn", - "symbol": "wcx" - }, - { - "id": "wefi-finance", - "name": "Wefi Finance", - "symbol": "wefi" - }, - { - "id": "weft-finance", - "name": "Weft Finance", - "symbol": "weft" - }, - { - "id": "wegro", - "name": "WeGro", - "symbol": "wegro" - }, - { - "id": "weirdo", - "name": "weirdo", - "symbol": "weirdo" - }, - { - "id": "weld", - "name": "WELD", - "symbol": "weld" - }, - { - "id": "wellnode", - "name": "Wellnode", - "symbol": "wend" - }, - { - "id": "welsh-corgi", - "name": "Welsh Corgi", - "symbol": "corgi" - }, - { - "id": "welsh-corgi-coin", - "name": "WELSH CORGI COIN", - "symbol": "welsh" - }, - { - "id": "welups-blockchain", - "name": "Welups Blockchain", - "symbol": "welups" - }, - { - "id": "wemix-token", - "name": "WEMIX", - "symbol": "wemix" - }, - { - "id": "wen", - "name": "WEN", - "symbol": "$wen" - }, - { - "id": "wen-2", - "name": "WEN", - "symbol": "$wen" - }, - { - "id": "wen-3", - "name": "WEN", - "symbol": "wen" - }, - { - "id": "wen-4", - "name": "Wen", - "symbol": "$wen" - }, - { - "id": "wen-token", - "name": "WEN Token", - "symbol": "wen" - }, - { - "id": "wenwifhat", - "name": "WenWifHat", - "symbol": "why" - }, - { - "id": "wepiggy-coin", - "name": "WePiggy Coin", - "symbol": "wpc" - }, - { - "id": "wepower", - "name": "WePower", - "symbol": "wpr" - }, - { - "id": "we-re-so-back", - "name": "We're so back", - "symbol": "back" - }, - { - "id": "wesendit", - "name": "WeSendit", - "symbol": "wsi" - }, - { - "id": "westarter", - "name": "WeStarter", - "symbol": "war" - }, - { - "id": "wetc-hebeswap", - "name": "Wrapped ETC", - "symbol": "wetc" - }, - { - "id": "weth", - "name": "WETH", - "symbol": "weth" - }, - { - "id": "weth-plenty-bridge", - "name": "Polygon WETH (Plenty Bridge)", - "symbol": "weth.p" - }, - { - "id": "weth-plenty-bridge-65aa5342-507c-4f67-8634-1f4376ffdf9a", - "name": "WETH (Plenty Bridge)", - "symbol": "weth.e" - }, - { - "id": "weth-yvault", - "name": "WETH yVault", - "symbol": "yvweth" - }, - { - "id": "weway", - "name": "WeWay", - "symbol": "wwy" - }, - { - "id": "wewe", - "name": "WEWE", - "symbol": "wewe" - }, - { - "id": "wexo", - "name": "Wexo", - "symbol": "wexo" - }, - { - "id": "weyu", - "name": "WEYU", - "symbol": "weyu" - }, - { - "id": "wfca", - "name": "World Friendship Cash", - "symbol": "wfca" - }, - { - "id": "wfdp", - "name": "WFDP", - "symbol": "wfdp" - }, - { - "id": "whale", - "name": "WHALE", - "symbol": "whale" - }, - { - "id": "whalebert", - "name": "Whalebert", - "symbol": "whale" - }, - { - "id": "whaleroom", - "name": "WhaleRoom", - "symbol": "whl" - }, - { - "id": "whalescandypls-com", - "name": "WhalesCandyPLS.com", - "symbol": "wc" - }, - { - "id": "whales-club", - "name": "Whales Club", - "symbol": "whc" - }, - { - "id": "whale-sei", - "name": "Whale (SEI)", - "symbol": "whale" - }, - { - "id": "whales-market", - "name": "Whales Market", - "symbol": "whales" - }, - { - "id": "whatbot", - "name": "WhatBot", - "symbol": "what" - }, - { - "id": "what-do-you-meme", - "name": "Web3 Whales", - "symbol": "w3w" - }, - { - "id": "what-in-tarnation", - "name": "What in Tarnation?", - "symbol": "wit" - }, - { - "id": "what-s-updog", - "name": "What\u2019s Updog?", - "symbol": "$updog" - }, - { - "id": "wheat", - "name": "Wheat", - "symbol": "wheat" - }, - { - "id": "whee", - "name": "WHEE", - "symbol": "whee" - }, - { - "id": "when", - "name": "when", - "symbol": "when" - }, - { - "id": "where-did-the-eth-go", - "name": "Where Did The ETH Go?", - "symbol": "wheth" - }, - { - "id": "where-did-the-eth-go-pulsechain", - "name": "Where Did The ETH Go? (Pulsechain)", - "symbol": "wheth" - }, - { - "id": "whey-token", - "name": "Shredded Apes Whey", - "symbol": "whey" - }, - { - "id": "whirl-privacy", - "name": "Whirl", - "symbol": "whirl" - }, - { - "id": "whisper", - "name": "Whisper", - "symbol": "wisp" - }, - { - "id": "whisperbot", - "name": "WhisperBot", - "symbol": "wsp" - }, - { - "id": "whitebit", - "name": "WhiteBIT Coin", - "symbol": "wbt" - }, - { - "id": "white-coffee-cat", - "name": "White Coffee Cat", - "symbol": "wcc" - }, - { - "id": "whitecoin", - "name": "Whitecoin", - "symbol": "xwc" - }, - { - "id": "whiteheart", - "name": "Whiteheart", - "symbol": "white" - }, - { - "id": "white-hive", - "name": "Wh1t3h1v3", - "symbol": "hive" - }, - { - "id": "white-lotus", - "name": "White Lotus", - "symbol": "lotus" - }, - { - "id": "white-rhinoceros", - "name": "White Rhinoceros", - "symbol": "whrh" - }, - { - "id": "white-whale", - "name": "White Whale", - "symbol": "whale" - }, - { - "id": "white-yorkshire", - "name": "White Yorkshire", - "symbol": "wsh" - }, - { - "id": "whole-earth-coin", - "name": "Whole Earth Coin", - "symbol": "wec" - }, - { - "id": "why", - "name": "WHY", - "symbol": "why" - }, - { - "id": "wibx", - "name": "WiBX", - "symbol": "wbx" - }, - { - "id": "wickedbet-casino", - "name": "WickedBet Casino", - "symbol": "wik" - }, - { - "id": "wicked-moai", - "name": "Wicked Moai", - "symbol": "moai" - }, - { - "id": "wicrypt", - "name": "Wicrypt", - "symbol": "wnt" - }, - { - "id": "widecoin", - "name": "Widecoin", - "symbol": "wcn" - }, - { - "id": "wife-changing-money", - "name": "Wife Changing Money", - "symbol": "wife" - }, - { - "id": "wifedoge", - "name": "Wifedoge", - "symbol": "wifedoge" - }, - { - "id": "wifi", - "name": "WiFi Map", - "symbol": "wifi" - }, - { - "id": "wiflama-coin", - "name": "WIFLAMA COIN", - "symbol": "wflm" - }, - { - "id": "wifpepemoginu", - "name": "WIFPEPEMOGINU", - "symbol": "wifpepemog" - }, - { - "id": "wigger", - "name": "Wigger", - "symbol": "wigger" - }, - { - "id": "wigoswap", - "name": "WigoSwap", - "symbol": "wigo" - }, - { - "id": "wiki-cat", - "name": "Wiki Cat", - "symbol": "wkc" - }, - { - "id": "wild-base", - "name": "Wild Base", - "symbol": "bwild" - }, - { - "id": "wilder-world", - "name": "Wilder World", - "symbol": "wild" - }, - { - "id": "wild-goat-coin", - "name": "Wild Goat Coin", - "symbol": "wgc" - }, - { - "id": "wild-island-game", - "name": "Wild Island Game", - "symbol": "wild" - }, - { - "id": "wildx", - "name": "WILDx", - "symbol": "wild" - }, - { - "id": "willy", - "name": "Willy", - "symbol": "willy" - }, - { - "id": "winamp", - "name": "WINAMP", - "symbol": "winamp" - }, - { - "id": "windfall-token", - "name": "Windfall", - "symbol": "wft" - }, - { - "id": "windoge98", - "name": "Windoge98", - "symbol": "exe" - }, - { - "id": "winerz", - "name": "Winerz", - "symbol": "$wnz" - }, - { - "id": "wine-shares", - "name": "Wine Shares", - "symbol": "wine" - }, - { - "id": "wing-finance", - "name": "Wing Finance", - "symbol": "wing" - }, - { - "id": "wingriders", - "name": "WingRiders", - "symbol": "wrt" - }, - { - "id": "wingswap", - "name": "WingSwap", - "symbol": "wis" - }, - { - "id": "wink", - "name": "WINkLink", - "symbol": "win" - }, - { - "id": "winkhub", - "name": "WinkHub", - "symbol": "wink" - }, - { - "id": "winklink-bsc", - "name": "WINkLink BSC", - "symbol": "win" - }, - { - "id": "winners-coin", - "name": "Winners Coin", - "symbol": "tw" - }, - { - "id": "winnerz", - "name": "Winnerz", - "symbol": "wnz" - }, - { - "id": "winr-protocol", - "name": "WINR Protocol", - "symbol": "winr" - }, - { - "id": "wins", - "name": "Trophy", - "symbol": "wins" - }, - { - "id": "winter", - "name": "Winter", - "symbol": "winter" - }, - { - "id": "winterdog", - "name": "Winterdog", - "symbol": "wdog" - }, - { - "id": "wipemyass", - "name": "WipeMyAss", - "symbol": "wipe" - }, - { - "id": "wireshape", - "name": "Wireshape", - "symbol": "wire" - }, - { - "id": "wirex", - "name": "WXT Token", - "symbol": "wxt" - }, - { - "id": "wirtual", - "name": "Wirtual", - "symbol": "wirtual" - }, - { - "id": "wisdomise", - "name": "Wisdomise", - "symbol": "wsdm" - }, - { - "id": "wise-token11", - "name": "Wise", - "symbol": "wise" - }, - { - "id": "wish-me-luck", - "name": "Wish Me Luck", - "symbol": "wml" - }, - { - "id": "wiskers", - "name": "Wiskers", - "symbol": "wskr" - }, - { - "id": "wispswap", - "name": "WispSwap", - "symbol": "wisp" - }, - { - "id": "wistaverse", - "name": "Wistaverse", - "symbol": "wista" - }, - { - "id": "witch-token", - "name": "Witch Token", - "symbol": "witch" - }, - { - "id": "witnet", - "name": "Witnet", - "symbol": "wit" - }, - { - "id": "wizardia", - "name": "Wizardia", - "symbol": "wzrd" - }, - { - "id": "wizard-token-8fc587d7-4b79-4f5a-89c9-475f528c6d47", - "name": "Wizard Token", - "symbol": "wizt" - }, - { - "id": "wizard-vault-nftx", - "name": "WIZARD Vault (NFTX)", - "symbol": "wizard" - }, - { - "id": "wizarre-scroll", - "name": "Wizarre Scroll", - "symbol": "scrl" - }, - { - "id": "wjewel", - "name": "WJEWEL", - "symbol": "wjewel" - }, - { - "id": "wliti", - "name": "wLITI", - "symbol": "wliti" - }, - { - "id": "wlitidao", - "name": "WolfWorksDAO", - "symbol": "wwd" - }, - { - "id": "wmatic", - "name": "Wrapped Matic", - "symbol": "wmatic" - }, - { - "id": "wmatic-plenty-bridge", - "name": "WMATIC (Plenty Bridge)", - "symbol": "wmatic.p" - }, - { - "id": "wmetis", - "name": "Wrapped Metis", - "symbol": "wmetis" - }, - { - "id": "wmlp", - "name": "wMLP", - "symbol": "wmlpv2" - }, - { - "id": "wodo", - "name": "Wodo", - "symbol": "wodo" - }, - { - "id": "wodo-gaming", - "name": "Wodo Gaming", - "symbol": "xwgt" - }, - { - "id": "wojak", - "name": "Wojak", - "symbol": "wojak" - }, - { - "id": "wojak-2-0-coin", - "name": "Wojak 2.0 Coin", - "symbol": "wojak 2.0" - }, - { - "id": "wojak-2-69", - "name": "Wojak 2.69", - "symbol": "wojak2.69" - }, - { - "id": "wojak-finance", - "name": "Wojak Finance", - "symbol": "woj" - }, - { - "id": "woke", - "name": "Woke", - "symbol": "woke" - }, - { - "id": "woke-frens", - "name": "Woke Frens", - "symbol": "woke" - }, - { - "id": "wolfcoin", - "name": "WOLFCOIN", - "symbol": "wolf" - }, - { - "id": "wolf-game-wool", - "name": "Wolf Game Wool", - "symbol": "wool" - }, - { - "id": "wolf-inu", - "name": "WOLF INU", - "symbol": "wolf inu" - }, - { - "id": "wolf-of-solana", - "name": "Wolf Of Solana", - "symbol": "wos" - }, - { - "id": "wolf-of-wall-street", - "name": "Wolf of Wall Street", - "symbol": "$wolf" - }, - { - "id": "wolf-on-solana", - "name": "Wolf On Solana", - "symbol": "wolf" - }, - { - "id": "wolf-pups-2", - "name": "WOLF PUPS", - "symbol": "wolfies" - }, - { - "id": "wolfsafepoorpeople", - "name": "WolfSafePoorPeople", - "symbol": "wspp" - }, - { - "id": "wolfsafepoorpeople-polygon", - "name": "WolfSafePoorPeople Polygon", - "symbol": "wspp" - }, - { - "id": "wolf-solana", - "name": "WOLF SOLANA", - "symbol": "wolf" - }, - { - "id": "wolf-ventures", - "name": "Wolf Ventures", - "symbol": "$wv" - }, - { - "id": "wolfwifballz", - "name": "WolfWifBallz", - "symbol": "ballz" - }, - { - "id": "wolverinu-2", - "name": "Wolverinu", - "symbol": "wolverinu" - }, - { - "id": "wombat", - "name": "Wombat", - "symbol": "wombat" - }, - { - "id": "wombat-exchange", - "name": "Wombat Exchange", - "symbol": "wom" - }, - { - "id": "wombex", - "name": "Wombex", - "symbol": "wmx" - }, - { - "id": "wom-token", - "name": "WOM Protocol", - "symbol": "wom" - }, - { - "id": "wonderland", - "name": "Wonderland TIME", - "symbol": "time" - }, - { - "id": "wonderland-capital", - "name": "Wonderland Capital", - "symbol": "alice" - }, - { - "id": "wonderly-finance", - "name": "Wonderly Finance", - "symbol": "afx" - }, - { - "id": "wonderman-nation", - "name": "Wonderman Nation", - "symbol": "wndr" - }, - { - "id": "wonderverse", - "name": "Wonderverse", - "symbol": "wonder" - }, - { - "id": "woodcoin", - "name": "Woodcoin", - "symbol": "log" - }, - { - "id": "woof", - "name": "This is Fine (SOL)", - "symbol": "fine" - }, - { - "id": "wooforacle", - "name": "WoofOracle", - "symbol": "wfo" - }, - { - "id": "woofswap-woof", - "name": "WOOF", - "symbol": "woof" - }, - { - "id": "woof-token", - "name": "WOOF", - "symbol": "woof" - }, - { - "id": "woofwork-io", - "name": "WoofWork.io", - "symbol": "woof" - }, - { - "id": "woo-network", - "name": "WOO", - "symbol": "woo" - }, - { - "id": "woonkly-power", - "name": "Woonkly Power", - "symbol": "woop" - }, - { - "id": "wooonen", - "name": "Wooonen", - "symbol": "wooo" - }, - { - "id": "woop", - "name": "WOOP", - "symbol": "woop" - }, - { - "id": "woosh", - "name": "woosh", - "symbol": "woosh" - }, - { - "id": "woozoo-music", - "name": "Woozoo Music", - "symbol": "wzm" - }, - { - "id": "work-quest-2", - "name": "Work Quest", - "symbol": "wqt" - }, - { - "id": "work-x", - "name": "Work X", - "symbol": "work" - }, - { - "id": "world-cause-coin", - "name": "World Cause Coin", - "symbol": "cause" - }, - { - "id": "worldcoin", - "name": "WorldCoin", - "symbol": "wdc" - }, - { - "id": "worldcoin-wld", - "name": "Worldcoin", - "symbol": "wld" - }, - { - "id": "worldcore", - "name": "Worldcore [OLD]", - "symbol": "wrc" - }, - { - "id": "worldcore-2", - "name": "Worldcore coin", - "symbol": "wcc" - }, - { - "id": "world-football1", - "name": "WORLD FOOTBALL1", - "symbol": "wofo1" - }, - { - "id": "world-id", - "name": "WORLD ID", - "symbol": "woid" - }, - { - "id": "world-mobile-token", - "name": "World Mobile Token", - "symbol": "wmt" - }, - { - "id": "world-of-defish", - "name": "World of Defish", - "symbol": "wod" - }, - { - "id": "world-of-legends", - "name": "World of Legends", - "symbol": "wol" - }, - { - "id": "world-pay-token", - "name": "World Pay Token", - "symbol": "wpay" - }, - { - "id": "world-peace-coin", - "name": "WORLD PEACE COIN", - "symbol": "wpc" - }, - { - "id": "world-record-banana", - "name": "World Record Banana", - "symbol": "banana" - }, - { - "id": "worldtao", - "name": "WorldTao", - "symbol": "wtao" - }, - { - "id": "worldtoken", - "name": "WorldToken", - "symbol": "world" - }, - { - "id": "worldwide", - "name": "WORLDWIDE", - "symbol": "world" - }, - { - "id": "worldwide-usd", - "name": "Worldwide USD", - "symbol": "wusd" - }, - { - "id": "wormhole", - "name": "Wormhole", - "symbol": "w" - }, - { - "id": "wormz", - "name": "WORMZ", - "symbol": "wormz" - }, - { - "id": "wortheum", - "name": "Wortheum", - "symbol": "worth" - }, - { - "id": "wow", - "name": "WOW", - "symbol": "!" - }, - { - "id": "wownero", - "name": "Wownero", - "symbol": "wow" - }, - { - "id": "wowswap", - "name": "WOWswap", - "symbol": "wow" - }, - { - "id": "wozx", - "name": "Efforce", - "symbol": "wozx" - }, - { - "id": "wpt-investing-corp", - "name": "WPT Investing Corp", - "symbol": "wpt" - }, - { - "id": "wrap-governance-token", - "name": "WRAP Governance", - "symbol": "wrap" - }, - { - "id": "wrapped-accumulate", - "name": "Wrapped Accumulate", - "symbol": "wacme" - }, - { - "id": "wrapped-ada", - "name": "Wrapped ADA", - "symbol": "wada" - }, - { - "id": "wrapped-ada-21-co", - "name": "21.co Wrapped ADA", - "symbol": "21ada" - }, - { - "id": "wrapped-algo", - "name": "Wrapped ALGO", - "symbol": "xalgo" - }, - { - "id": "wrapped-ampleforth", - "name": "Wrapped Ampleforth", - "symbol": "wampl" - }, - { - "id": "wrappedarc", - "name": "WrappedARC", - "symbol": "warc" - }, - { - "id": "wrapped-astar", - "name": "Wrapped ASTR", - "symbol": "wastr" - }, - { - "id": "wrapped-avax", - "name": "Wrapped AVAX", - "symbol": "wavax" - }, - { - "id": "wrapped-avax-21-co", - "name": "21.co Wrapped AVAX", - "symbol": "21avax" - }, - { - "id": "wrapped-axelar", - "name": "Wrapped Axelar", - "symbol": "waxl" - }, - { - "id": "wrapped-banano", - "name": "Wrapped Banano", - "symbol": "wban" - }, - { - "id": "wrapped-bch", - "name": "Wrapped BCH", - "symbol": "wbch" - }, - { - "id": "wrapped-bch-21-co", - "name": "21.co Wrapped BCH", - "symbol": "21bch" - }, - { - "id": "wrapped-beacon-eth", - "name": "Wrapped Beacon ETH", - "symbol": "wbeth" - }, - { - "id": "wrapped-bitcoin", - "name": "Wrapped Bitcoin", - "symbol": "wbtc" - }, - { - "id": "wrapped-bitcoin-celer", - "name": "Wrapped Bitcoin - Celer", - "symbol": "cewbtc" - }, - { - "id": "wrapped-bitcoin-sollet", - "name": "Wrapped Bitcoin (Sollet)", - "symbol": "sobtc" - }, - { - "id": "wrapped-bitcoin-stacks", - "name": "Wrapped Bitcoin-Stacks", - "symbol": "xbtc" - }, - { - "id": "wrapped-bitrock", - "name": "Wrapped Bitrock", - "symbol": "wbrock" - }, - { - "id": "wrapped-bmx-liquidity-token", - "name": "Wrapped BMX Liquidity Token", - "symbol": "wblt" - }, - { - "id": "wrapped-bnb-21-co", - "name": "21.co Wrapped BNB", - "symbol": "21bnb" - }, - { - "id": "wrapped-bnb-celer", - "name": "Wrapped BNB - Celer", - "symbol": "cewbnb" - }, - { - "id": "wrapped-btc-21-co", - "name": "21.co Wrapped BTC", - "symbol": "21btc" - }, - { - "id": "wrapped-btc-caviarnine", - "name": "Instabridge Wrapped BTC (Radix)", - "symbol": "xwbtc" - }, - { - "id": "wrapped-btc-wormhole", - "name": "Wrapped BTC (Wormhole)", - "symbol": "wbtc" - }, - { - "id": "wrapped-btt", - "name": "Wrapped BTT", - "symbol": "wbtt" - }, - { - "id": "wrapped-busd", - "name": "Wrapped BUSD", - "symbol": "wbusd" - }, - { - "id": "wrapped-busd-allbridge-from-bsc", - "name": "Wrapped BUSD (Allbridge from BSC)", - "symbol": "abbusd" - }, - { - "id": "wrapped-cellmates", - "name": "Wrapped CellMates", - "symbol": "wcell" - }, - { - "id": "wrapped-centrifuge", - "name": "Wrapped Centrifuge", - "symbol": "wcfg" - }, - { - "id": "wrapped-chiliz", - "name": "Wrapped Chiliz", - "symbol": "wchz" - }, - { - "id": "wrapped-ckb", - "name": "Wrapped CKB", - "symbol": "wckb" - }, - { - "id": "wrapped-conflux", - "name": "Wrapped Conflux", - "symbol": "wcfx" - }, - { - "id": "wrapped-core", - "name": "Wrapped CORE", - "symbol": "wcore" - }, - { - "id": "wrapped-cro", - "name": "Wrapped CRO", - "symbol": "wcro" - }, - { - "id": "wrapped-cusd-allbridge-from-celo", - "name": "Wrapped CUSD (Allbridge from Celo)", - "symbol": "acusd" - }, - { - "id": "wrapped-cybria", - "name": "Wrapped Cybria", - "symbol": "wcyba" - }, - { - "id": "wrapped-degen", - "name": "Wrapped DEGEN", - "symbol": "wdegen" - }, - { - "id": "wrapped-doge-21-co", - "name": "21.co Wrapped DOGE", - "symbol": "21doge" - }, - { - "id": "wrapped-dot-21-co", - "name": "21.co Wrapped DOT", - "symbol": "21dot" - }, - { - "id": "wrapped-ecomi", - "name": "Wrapped ECOMI", - "symbol": "womi" - }, - { - "id": "wrapped-eeth", - "name": "Wrapped eETH", - "symbol": "weeth" - }, - { - "id": "wrapped-ehmnd", - "name": "Wrapped eHMND", - "symbol": "wehmnd" - }, - { - "id": "wrapped-elastos", - "name": "Wrapped Elastos", - "symbol": "wela" - }, - { - "id": "wrapped-elrond", - "name": "Wrapped EGLD", - "symbol": "wegld" - }, - { - "id": "wrapped-energi", - "name": "Wrapped Energi", - "symbol": "wnrg" - }, - { - "id": "wrapped-eos", - "name": "Wrapped EOS", - "symbol": "weos" - }, - { - "id": "wrapped-ether-celer", - "name": "Wrapped Ether - Celer", - "symbol": "ceweth" - }, - { - "id": "wrapped-ethereum-sollet", - "name": "Wrapped Ethereum (Sollet)", - "symbol": "soeth" - }, - { - "id": "wrapped-ether-linea", - "name": "Bridged Wrapped Ether (Linea)", - "symbol": "weth" - }, - { - "id": "wrapped-ether-mantle-bridge", - "name": "Wrapped Ether (Mantle Bridge)", - "symbol": "weth" - }, - { - "id": "wrapped-ethw", - "name": "Wrapped ETHW", - "symbol": "wethw" - }, - { - "id": "wrapped-ever", - "name": "Wrapped Ever", - "symbol": "wever" - }, - { - "id": "wrapped-fantom", - "name": "Wrapped Fantom", - "symbol": "wftm" - }, - { - "id": "wrapped-fil", - "name": "Wrapped FIL", - "symbol": "wfil" - }, - { - "id": "wrapped-fio", - "name": "Wrapped FIO", - "symbol": "wfio" - }, - { - "id": "wrapped-flare", - "name": "Wrapped Flare", - "symbol": "wflr" - }, - { - "id": "wrapped-flow", - "name": "Wrapped Flow", - "symbol": "wflow" - }, - { - "id": "wrapped-frxeth", - "name": "Wrapped frxETH", - "symbol": "wfrxeth" - }, - { - "id": "wrapped-fuse", - "name": "Wrapped FUSE", - "symbol": "wfuse" - }, - { - "id": "wrapped-hbar", - "name": "Wrapped HBAR (SaucerSwap)", - "symbol": "whbar" - }, - { - "id": "wrapped-hec", - "name": "Wrapped HEC", - "symbol": "wshec" - }, - { - "id": "wrapped-huobi-token", - "name": "Wrapped Huobi", - "symbol": "wht" - }, - { - "id": "wrapped-hyp", - "name": "Wrapped HYP", - "symbol": "whyp" - }, - { - "id": "wrapped-icp", - "name": "Wrapped ICP", - "symbol": "wicp" - }, - { - "id": "wrapped-immutable", - "name": "Wrapped IMX", - "symbol": "wimx" - }, - { - "id": "wrapped-iotex", - "name": "Wrapped IoTex", - "symbol": "wiotx" - }, - { - "id": "wrapped-jones-aura", - "name": "Wrapped Jones AURA", - "symbol": "wjaura" - }, - { - "id": "wrapped-kaspa", - "name": "Wrapped Kaspa", - "symbol": "kas" - }, - { - "id": "wrapped-kava", - "name": "Wrapped Kava", - "symbol": "wkava" - }, - { - "id": "wrapped-kcs", - "name": "Wrapped KCS", - "symbol": "wkcs" - }, - { - "id": "wrapped-klay", - "name": "Wrapped KLAY", - "symbol": "wklay" - }, - { - "id": "wrapped-libertas-omnibus", - "name": "Wrapped LIBERTAS OMNIBUS", - "symbol": "libertas" - }, - { - "id": "wrapped-ltc-21-co", - "name": "21.co Wrapped LTC", - "symbol": "21ltc" - }, - { - "id": "wrapped-lunagens", - "name": "Wrapped LunaGens", - "symbol": "wlung" - }, - { - "id": "wrapped-lyx-sigmaswap", - "name": "Wrapped LYX (SigmaSwap)", - "symbol": "wlyx" - }, - { - "id": "wrapped-mantle", - "name": "Wrapped Mantle", - "symbol": "wmnt" - }, - { - "id": "wrapped-memory", - "name": "Wonderful Memories", - "symbol": "wmemo" - }, - { - "id": "wrapped-merit-circle", - "name": "Wrapped BEAM", - "symbol": "wbeam" - }, - { - "id": "wrapped-metrix", - "name": "Wrapped Metrix", - "symbol": "mrxb" - }, - { - "id": "wrapped-millix", - "name": "Wrapped Millix", - "symbol": "wmlx" - }, - { - "id": "wrapped-minima", - "name": "Wrapped Minima", - "symbol": "wminima" - }, - { - "id": "wrapped-mistcoin", - "name": "Wrapped MistCoin", - "symbol": "wmc" - }, - { - "id": "wrapped-moonbeam", - "name": "Wrapped Moonbeam", - "symbol": "wglmr" - }, - { - "id": "wrapped-moxy", - "name": "Wrapped MOXY", - "symbol": "wmoxy" - }, - { - "id": "wrapped-ncg", - "name": "Wrapped NCG", - "symbol": "wncg" - }, - { - "id": "wrapped-near", - "name": "Wrapped Near", - "symbol": "wnear" - }, - { - "id": "wrapped-neon", - "name": "Wrapped Neon", - "symbol": "wneon" - }, - { - "id": "wrapped-newyorkcoin", - "name": "Wrapped NewYorkCoin", - "symbol": "wnyc" - }, - { - "id": "wrapped-nxm", - "name": "Wrapped NXM", - "symbol": "wnxm" - }, - { - "id": "wrapped-nybc", - "name": "Wrapped NYBC", - "symbol": "wnybc" - }, - { - "id": "wrapped-oas", - "name": "Wrapped OAS", - "symbol": "woas" - }, - { - "id": "wrapped-oeth", - "name": "Wrapped OETH", - "symbol": "woeth" - }, - { - "id": "wrapped-omax", - "name": "Wrapped OMAX", - "symbol": "womax" - }, - { - "id": "wrapped-one", - "name": "Wrapped One", - "symbol": "wone" - }, - { - "id": "wrapped-optidoge", - "name": "Wrapped OptiDoge", - "symbol": "woptidoge" - }, - { - "id": "wrapped-ousd", - "name": "Wrapped OUSD", - "symbol": "wousd" - }, - { - "id": "wrapped-paycoin", - "name": "Wrapped Paycoin", - "symbol": "wpci" - }, - { - "id": "wrapped-pepe", - "name": "Wrapped Pepe", - "symbol": "wpepe" - }, - { - "id": "wrapped-pfil", - "name": "Wrapped pFIL", - "symbol": "wpfil" - }, - { - "id": "wrapped-platform", - "name": "Wrapped Platform", - "symbol": "wrap" - }, - { - "id": "wrapped-pokt", - "name": "Wrapped POKT", - "symbol": "wpokt" - }, - { - "id": "wrapped-pom", - "name": "Wrapped POM", - "symbol": "wpom" - }, - { - "id": "wrapped-pulse-wpls", - "name": "Wrapped Pulse", - "symbol": "wpls" - }, - { - "id": "wrapped-rose", - "name": "Wrapped ROSE", - "symbol": "wrose" - }, - { - "id": "wrapped-shiden-network", - "name": "Wrapped Shiden Network", - "symbol": "sdn" - }, - { - "id": "wrapped-sol-21-co", - "name": "21.co Wrapped SOL", - "symbol": "21sol" - }, - { - "id": "wrapped-solana", - "name": "Wrapped Solana", - "symbol": "sol" - }, - { - "id": "wrapped-songbird", - "name": "Wrapped Songbird", - "symbol": "wsgb" - }, - { - "id": "wrapped-staked-link", - "name": "Wrapped Staked LINK", - "symbol": "wstlink" - }, - { - "id": "wrapped-staked-usdt", - "name": "Wrapped Staked Tether", - "symbol": "wstusdt" - }, - { - "id": "wrapped-statera", - "name": "Wrapped Statera", - "symbol": "wsta" - }, - { - "id": "wrapped-steth", - "name": "Wrapped stETH", - "symbol": "wsteth" - }, - { - "id": "wrapped-syscoin", - "name": "Wrapped Syscoin", - "symbol": "wsys" - }, - { - "id": "wrapped-tao", - "name": "Wrapped TAO", - "symbol": "wtao" - }, - { - "id": "wrapped-telos", - "name": "Wrapped Telos", - "symbol": "wtlos" - }, - { - "id": "wrapped-terra", - "name": "Wrapped Terra Classic", - "symbol": "lunc" - }, - { - "id": "wrapped-tezos", - "name": "StakerDAO Wrapped Tezos", - "symbol": "wxtz" - }, - { - "id": "wrapped-thunderpokt", - "name": "Wrapped ThunderPOKT", - "symbol": "wtpokt" - }, - { - "id": "wrapped-thunder-token", - "name": "Wrapped Thunder Token", - "symbol": "wtt" - }, - { - "id": "wrapped-tomo", - "name": "Wrapped TOMO", - "symbol": "wtomo" - }, - { - "id": "wrapped-trade-ai", - "name": "Wrapped Trade AI", - "symbol": "wtai" - }, - { - "id": "wrapped-tron", - "name": "Wrapped Tron", - "symbol": "wtrx" - }, - { - "id": "wrapped-turtlecoin", - "name": "Wrapped TurtleCoin", - "symbol": "wtrtl" - }, - { - "id": "wrapped-usdc", - "name": "Bridged USD Coin (Wrapped)", - "symbol": "xusd" - }, - { - "id": "wrapped-usdc-caviarnine", - "name": "Instabridge Wrapped USDC (Radix)", - "symbol": "xusdc" - }, - { - "id": "wrapped-usdm", - "name": "Wrapped USDM", - "symbol": "wusdm" - }, - { - "id": "wrapped-usdr", - "name": "Wrapped USDR", - "symbol": "wusdr" - }, - { - "id": "wrapped-usdt-allbridge-from-polygon", - "name": "Bridged Tether (Allbridge)", - "symbol": "apusdt" - }, - { - "id": "wrapped-ust", - "name": "Wrapped USTC", - "symbol": "ustc" - }, - { - "id": "wrapped-velas", - "name": "Wrapped Velas", - "symbol": "wvlx" - }, - { - "id": "wrapped-virgin-gen-0-cryptokitties", - "name": "Wrapped Virgin Gen-0 CryptoKittties", - "symbol": "wvg0" - }, - { - "id": "wrapped-vtru", - "name": "Wrapped VTRU", - "symbol": "wvtru" - }, - { - "id": "wrapped-wan", - "name": "Wrapped Wan", - "symbol": "wwan" - }, - { - "id": "wrapped-wdoge", - "name": "Wrapped WDOGE", - "symbol": "wwdoge" - }, - { - "id": "wrapped-xdai", - "name": "Wrapped XDAI", - "symbol": "wxdai" - }, - { - "id": "wrapped-xdc", - "name": "Wrapped XDC", - "symbol": "wxdc" - }, - { - "id": "wrapped-xrp", - "name": "Wrapped XRP", - "symbol": "wxrp" - }, - { - "id": "wrapped-xrp-21-co", - "name": "21.co Wrapped XRP", - "symbol": "21xrp" - }, - { - "id": "wrapped-zetachain", - "name": "Wrapped ZETA", - "symbol": "wzeta" - }, - { - "id": "wrestling-shiba", - "name": "Wrestling Shiba", - "symbol": "wwe" - }, - { - "id": "wsb-classic", - "name": "WSB Classic", - "symbol": "wsbc" - }, - { - "id": "wsb-coin", - "name": "WSB Coin", - "symbol": "wsb" - }, - { - "id": "wuffi", - "name": "WUFFI", - "symbol": "wuf" - }, - { - "id": "wusd", - "name": "Wrapped USD", - "symbol": "wusd" - }, - { - "id": "wut", - "name": "WUT", - "symbol": "wut" - }, - { - "id": "wynd", - "name": "WYND", - "symbol": "wynd" - }, - { - "id": "wyscale", - "name": "WYscale", - "symbol": "wys" - }, - { - "id": "x0", - "name": "X0", - "symbol": "x0" - }, - { - "id": "x-2", - "name": "X", - "symbol": "x" - }, - { - "id": "x2y2", - "name": "X2Y2", - "symbol": "x2y2" - }, - { - "id": "x42-protocol", - "name": "X42 Protocol", - "symbol": "x42" - }, - { - "id": "x7101", - "name": "X7101", - "symbol": "x7101" - }, - { - "id": "x7102", - "name": "X7102", - "symbol": "x7102" - }, - { - "id": "x7103", - "name": "X7103", - "symbol": "x7103" - }, - { - "id": "x7104", - "name": "X7104", - "symbol": "x7104" - }, - { - "id": "x7105", - "name": "X7105", - "symbol": "x7105" - }, - { - "id": "x7-coin", - "name": "X7 Coin", - "symbol": "x7c" - }, - { - "id": "x7dao", - "name": "X7DAO", - "symbol": "x7dao" - }, - { - "id": "x7r", - "name": "X7R", - "symbol": "x7r" - }, - { - "id": "x8-project", - "name": "X8X", - "symbol": "x8x" - }, - { - "id": "xactrewards", - "name": "XActRewards", - "symbol": "xact" - }, - { - "id": "xahau", - "name": "Xahau", - "symbol": "xah" - }, - { - "id": "xai", - "name": "XAI Stablecoin", - "symbol": "xai" - }, - { - "id": "x-ai", - "name": "X AI", - "symbol": "x" - }, - { - "id": "xai-2", - "name": "XAI", - "symbol": "x" - }, - { - "id": "xai-3", - "name": "xAI", - "symbol": "xai" - }, - { - "id": "xai-blockchain", - "name": "Xai", - "symbol": "xai" - }, - { - "id": "xai-corp", - "name": "XAI Corp", - "symbol": "xai" - }, - { - "id": "xaigrok", - "name": "XAIGROK", - "symbol": "xaigrok" - }, - { - "id": "x-akamaru-inu", - "name": "X Akamaru Inu", - "symbol": "aka" - }, - { - "id": "xakt_astrovault", - "name": "xAKT_Astrovault", - "symbol": "xakt" - }, - { - "id": "xalpha-ai", - "name": "XALPHA.AI", - "symbol": "xalpha" - }, - { - "id": "xana", - "name": "XANA", - "symbol": "xeta" - }, - { - "id": "xapis", - "name": "XApis", - "symbol": "wax" - }, - { - "id": "xaurum", - "name": "Xaurum", - "symbol": "xaur" - }, - { - "id": "xave-coin", - "name": "Xave Coin", - "symbol": "xvc" - }, - { - "id": "xave-token", - "name": "Xave", - "symbol": "xav" - }, - { - "id": "xbanking", - "name": "XBANKING", - "symbol": "xb" - }, - { - "id": "xbcna_astrovault", - "name": "xBCNA_Astrovault", - "symbol": "xbcna" - }, - { - "id": "xbid", - "name": "xBid", - "symbol": "xbid" - }, - { - "id": "xbit", - "name": "Xbit", - "symbol": "xbt" - }, - { - "id": "xbld_astrovault", - "name": "xBLD_Astrovault", - "symbol": "xbld" - }, - { - "id": "xblue-finance", - "name": "XBlue Finance", - "symbol": "xb" - }, - { - "id": "xbomb", - "name": "xbomb", - "symbol": "xbomb" - }, - { - "id": "xbot", - "name": "XBot", - "symbol": "xbot" - }, - { - "id": "x-bridge-bot", - "name": "X Bridge Bot", - "symbol": "xfer" - }, - { - "id": "xbullion_silver", - "name": "XBullion Silver", - "symbol": "silv" - }, - { - "id": "xcad-network", - "name": "XCAD Network", - "symbol": "xcad" - }, - { - "id": "xcad-network-play", - "name": "Play Token", - "symbol": "play" - }, - { - "id": "xcarnival", - "name": "XCarnival", - "symbol": "xcv" - }, - { - "id": "x-cash", - "name": "X-CASH", - "symbol": "xcash" - }, - { - "id": "xccelerate", - "name": "Xccelerate", - "symbol": "xlrt" - }, - { - "id": "xcdot", - "name": "xcDOT", - "symbol": "dot" - }, - { - "id": "xcel-swap", - "name": "Xcel Defi", - "symbol": "xld" - }, - { - "id": "xceltoken-plus", - "name": "XCELTOKEN PLUS", - "symbol": "xlab" - }, - { - "id": "xception", - "name": "XCeption", - "symbol": "xcept" - }, - { - "id": "xcksm", - "name": "xcKSM", - "symbol": "xcksm" - }, - { - "id": "xcmdx_astrovault", - "name": "xCMDX_Astrovault", - "symbol": "xcmdx" - }, - { - "id": "xcoinmeme", - "name": "Xcoinmeme", - "symbol": "x" - }, - { - "id": "x-com", - "name": "CruxDecussata", - "symbol": "x" - }, - { - "id": "xcrx", - "name": "xCRX", - "symbol": "xcrx" - }, - { - "id": "xcusdt", - "name": "xcUSDT", - "symbol": "xcusdt" - }, - { - "id": "xd", - "name": "LENX XD", - "symbol": "xd" - }, - { - "id": "xdai", - "name": "XDAI", - "symbol": "xdai" - }, - { - "id": "xdai-native-comb", - "name": "xDai Native Comb", - "symbol": "xcomb" - }, - { - "id": "xdai-stake", - "name": "STAKE", - "symbol": "stake" - }, - { - "id": "xdao", - "name": "XDAO", - "symbol": "xdao" - }, - { - "id": "xdce-crowd-sale", - "name": "XDC Network", - "symbol": "xdc" - }, - { - "id": "xdec-astrovault", - "name": "xDEC_Astrovault", - "symbol": "xdec" - }, - { - "id": "xdefi", - "name": "XDEFI", - "symbol": "xdefi" - }, - { - "id": "xdoge", - "name": "Xdoge", - "symbol": "xdoge" - }, - { - "id": "xdoge-2", - "name": "XDOGE", - "symbol": "xdoge" - }, - { - "id": "xdoge-3", - "name": "XDOGE", - "symbol": "xdoge" - }, - { - "id": "xdoge-4", - "name": "XDoge", - "symbol": "xd" - }, - { - "id": "x-dog-finance", - "name": "X-Dog Finance", - "symbol": "xdog" - }, - { - "id": "xdollar-stablecoin", - "name": "xDollar Stablecoin", - "symbol": "xusd" - }, - { - "id": "xdx", - "name": "XDX", - "symbol": "xdx" - }, - { - "id": "xels", - "name": "XELS", - "symbol": "xels" - }, - { - "id": "xena-finance", - "name": "Xena Finance", - "symbol": "xen" - }, - { - "id": "xenbitcoin", - "name": "XenBitcoin", - "symbol": "xbtc" - }, - { - "id": "xen-crypto", - "name": "XEN Crypto", - "symbol": "xen" - }, - { - "id": "xen-crypto-bsc", - "name": "XEN Crypto (BSC)", - "symbol": "bxen" - }, - { - "id": "xen-crypto-evmos", - "name": "Xen Crypto (EVMOS)", - "symbol": "coxen" - }, - { - "id": "xen-crypto-fantom", - "name": "Xen Crypto (Fantom)", - "symbol": "fmxen" - }, - { - "id": "xen-crypto-matic", - "name": "Xen Crypto (MATIC)", - "symbol": "mxen" - }, - { - "id": "xen-crypto-pulsechain", - "name": "XEN Crypto (PulseChain)", - "symbol": "pxen" - }, - { - "id": "xend-finance", - "name": "Xend Finance", - "symbol": "rwa" - }, - { - "id": "xenify-bxnf-bnb-chain", - "name": "bXNF", - "symbol": "bxnf" - }, - { - "id": "xenify-bysl", - "name": "bYSL", - "symbol": "bysl" - }, - { - "id": "xenify-ysl", - "name": "YSL", - "symbol": "ysl" - }, - { - "id": "xenios", - "name": "Xenios", - "symbol": "xnc" - }, - { - "id": "xeno", - "name": "Xeno", - "symbol": "xeno" - }, - { - "id": "xeno-token", - "name": "Xeno", - "symbol": "xno" - }, - { - "id": "xensei", - "name": "Xensei", - "symbol": "xsei" - }, - { - "id": "xerc20-pro", - "name": "X", - "symbol": "x" - }, - { - "id": "xero-ai", - "name": "Xero AI", - "symbol": "xeroai" - }, - { - "id": "xertinet", - "name": "XertiNet", - "symbol": "xert" - }, - { - "id": "xfarmer", - "name": "xFarmer", - "symbol": "xf" - }, - { - "id": "xfile", - "name": "XFILE", - "symbol": "x-file" - }, - { - "id": "xfinance", - "name": "Xfinance", - "symbol": "xfi" - }, - { - "id": "xfinite-entertainment-token", - "name": "Xfinite Entertainment", - "symbol": "xet" - }, - { - "id": "xfish", - "name": "Xfish", - "symbol": "xfish" - }, - { - "id": "xfit", - "name": "XFai", - "symbol": "xfit" - }, - { - "id": "xflix_astrovault", - "name": "xFLIX_Astrovault", - "symbol": "xflix" - }, - { - "id": "xfuel", - "name": "XFUEL", - "symbol": "xfuel" - }, - { - "id": "xfund", - "name": "xFUND", - "symbol": "xfund" - }, - { - "id": "xgold-coin", - "name": "Xgold Coin", - "symbol": "xgold" - }, - { - "id": "x-gpt", - "name": "X-GPT", - "symbol": "xgpt" - }, - { - "id": "xgrav_astrovault", - "name": "xGRAV_Astrovault", - "symbol": "xgrav" - }, - { - "id": "xhashtag", - "name": "xHashtag", - "symbol": "xtag" - }, - { - "id": "xidar", - "name": "Xidar", - "symbol": "ida" - }, - { - "id": "xiden", - "name": "Xiden", - "symbol": "xden" - }, - { - "id": "xido-finance", - "name": "Xido Finance", - "symbol": "xido" - }, - { - "id": "xidol-tech", - "name": "Xidol.tech", - "symbol": "xid" - }, - { - "id": "xing", - "name": "XING", - "symbol": "xing" - }, - { - "id": "xinu-eth", - "name": "XINU (ETH)", - "symbol": "xinu" - }, - { - "id": "xio", - "name": "Blockzero Labs", - "symbol": "xio" - }, - { - "id": "xion-finance", - "name": "Xion Finance", - "symbol": "xgt" - }, - { - "id": "xi-token", - "name": "Xi", - "symbol": "xi" - }, - { - "id": "xjewel", - "name": "xJEWEL", - "symbol": "xjewel" - }, - { - "id": "xlauncher", - "name": "xLauncher", - "symbol": "xlh" - }, - { - "id": "xl-bully", - "name": "XL BULLY", - "symbol": "xlbully" - }, - { - "id": "xlink-bridged-btc-stacks", - "name": "XLink Bridged BTC (Stacks)", - "symbol": "abtc" - }, - { - "id": "xlist", - "name": "XList", - "symbol": "xlist" - }, - { - "id": "xlsd-coin", - "name": "XLSD Coin", - "symbol": "xlsd" - }, - { - "id": "xmas2023", - "name": "XMAS2023", - "symbol": "xmas" - }, - { - "id": "x-mask", - "name": "X-MASK", - "symbol": "xmc" - }, - { - "id": "x-mass", - "name": "X-Mass", - "symbol": "x-mass" - }, - { - "id": "xmas-santa-rally", - "name": "XMas Santa Rally", - "symbol": "xmry" - }, - { - "id": "xmatic", - "name": "xMATIC", - "symbol": "xmatic" - }, - { - "id": "xmax", - "name": "XMax", - "symbol": "xmx" - }, - { - "id": "x-metapol", - "name": "X-MetaPol", - "symbol": "xmp" - }, - { - "id": "xmon", - "name": "XMON", - "symbol": "xmon" - }, - { - "id": "xmpwr_astrovault", - "name": "xMPWR_Astrovault", - "symbol": "xmpwr" - }, - { - "id": "xnet-mobile", - "name": "XNET Mobile", - "symbol": "xnet" - }, - { - "id": "xnf", - "name": "XNF", - "symbol": "xnf" - }, - { - "id": "xnft", - "name": "xNFT Protocol", - "symbol": "xnft" - }, - { - "id": "xninja-tech-token", - "name": "xNinja.Tech Token", - "symbol": "xnj" - }, - { - "id": "xnova", - "name": "XNOVA", - "symbol": "$xnova" - }, - { - "id": "xodex", - "name": "Xodex", - "symbol": "xodex" - }, - { - "id": "xolo-2", - "name": "Xolo", - "symbol": "xolo" - }, - { - "id": "xover", - "name": "Xover", - "symbol": "xvr" - }, - { - "id": "xox-labs", - "name": "XOX Labs", - "symbol": "xox" - }, - { - "id": "xp", - "name": "XP", - "symbol": "xp" - }, - { - "id": "xp-2", - "name": "XP", - "symbol": "t3xp" - }, - { - "id": "xpad-pro", - "name": "Xpad.pro", - "symbol": "xpp" - }, - { - "id": "xpansion-game", - "name": "Xpansion Game", - "symbol": "xps" - }, - { - "id": "xpaypro-tech", - "name": "XPayPro.Tech", - "symbol": "xppt" - }, - { - "id": "xpendium", - "name": "Xpendium", - "symbol": "xpnd" - }, - { - "id": "xpense-2", - "name": "Xpense", - "symbol": "xpe" - }, - { - "id": "x-pepe", - "name": "X-Pepe", - "symbol": "xpep" - }, - { - "id": "xperp", - "name": "xperp", - "symbol": "xperp" - }, - { - "id": "xpet-tech", - "name": "xPet.tech", - "symbol": "xpet" - }, - { - "id": "xpet-tech-bpet", - "name": "xPet.tech BPET", - "symbol": "bpet" - }, - { - "id": "xpla", - "name": "XPLA", - "symbol": "xpla" - }, - { - "id": "xplq_astrovault", - "name": "xPLQ_Astrovault", - "symbol": "xplq" - }, - { - "id": "xplus-ai", - "name": "XPlus AI", - "symbol": "xpai" - }, - { - "id": "xp-network", - "name": "XP Network", - "symbol": "xpnet" - }, - { - "id": "xpolar", - "name": "XPOLAR", - "symbol": "xpolar" - }, - { - "id": "xpowermine-com-apow", - "name": "XPowermine.com APOW", - "symbol": "apow" - }, - { - "id": "xpowermine-com-xpow", - "name": "XPowermine.com XPOW", - "symbol": "xpow" - }, - { - "id": "x-project-erc", - "name": "X Project ERC", - "symbol": "xers" - }, - { - "id": "x-protocol", - "name": "X Protocol", - "symbol": "pot" - }, - { - "id": "xptp", - "name": "xPTP", - "symbol": "xptp" - }, - { - "id": "xquok", - "name": "XQUOK", - "symbol": "xquok" - }, - { - "id": "xqwoyn_astrovault", - "name": "xQWOYN_Astrovault", - "symbol": "xqwoyn" - }, - { - "id": "xraid", - "name": "XRAID", - "symbol": "xraid" - }, - { - "id": "x-ratio-ai", - "name": "X-Ratio AI", - "symbol": "xrai" - }, - { - "id": "xrdoge", - "name": "XRdoge", - "symbol": "xrdoge" - }, - { - "id": "xreators", - "name": "XREATORS", - "symbol": "ort" - }, - { - "id": "xrender", - "name": "XRender", - "symbol": "xrai" - }, - { - "id": "xrgb", - "name": "XRGB", - "symbol": "xrgb" - }, - { - "id": "x-rise", - "name": "X Rise", - "symbol": "xrise" - }, - { - "id": "xrius", - "name": "Xrius", - "symbol": "xrs" - }, - { - "id": "xrow", - "name": "XROW", - "symbol": "xrow" - }, - { - "id": "xrp20", - "name": "XRP20", - "symbol": "xrp20" - }, - { - "id": "xrpaynet", - "name": "XRPayNet", - "symbol": "xrpaynet" - }, - { - "id": "xrpcashone", - "name": "Xrpcashone", - "symbol": "xce" - }, - { - "id": "xrp-classic-new", - "name": "XRP Classic", - "symbol": "xrpc" - }, - { - "id": "xrp-healthcare", - "name": "XRP Healthcare", - "symbol": "xrph" - }, - { - "id": "xrps", - "name": "XRPS", - "symbol": "xrps" - }, - { - "id": "xrun", - "name": "XRun", - "symbol": "xrun" - }, - { - "id": "xsauce", - "name": "xSAUCE", - "symbol": "xsauce" - }, - { - "id": "xsgd", - "name": "XSGD", - "symbol": "xsgd" - }, - { - "id": "xshib", - "name": "XSHIB", - "symbol": "xshib" - }, - { - "id": "xsl-labs", - "name": "myDid", - "symbol": "syl" - }, - { - "id": "xspace", - "name": "XSPACE", - "symbol": "xsp" - }, - { - "id": "xspectar", - "name": "xSPECTAR", - "symbol": "xspectar" - }, - { - "id": "xsushi", - "name": "xSUSHI", - "symbol": "xsushi" - }, - { - "id": "xswap-2", - "name": "XSwap", - "symbol": "xswap" - }, - { - "id": "xswap-protocol", - "name": "XSwap Protocol", - "symbol": "xsp" - }, - { - "id": "xswap-treasure", - "name": "XSwap Treasure", - "symbol": "xtt" - }, - { - "id": "xtblock-token", - "name": "XTblock", - "symbol": "xtt-b20" - }, - { - "id": "xtcom-token", - "name": "XT.com", - "symbol": "xt" - }, - { - "id": "xthebot", - "name": "XTheBot", - "symbol": "xtb" - }, - { - "id": "xtoken", - "name": "xToken", - "symbol": "xtk" - }, - { - "id": "xtoolsai", - "name": "XToolsAI", - "symbol": "xtai" - }, - { - "id": "xtrabytes", - "name": "XTRABYTES", - "symbol": "xby" - }, - { - "id": "xtrack-ai", - "name": "Xtrack AI", - "symbol": "xtrack" - }, - { - "id": "x-travel-space", - "name": "X-Travel Space", - "symbol": "xts" - }, - { - "id": "xtremeverse", - "name": "Xtremeverse", - "symbol": "xtreme" - }, - { - "id": "xtusd", - "name": "XT Stablecoin XTUSD", - "symbol": "xtusd" - }, - { - "id": "xudo", - "name": "Xudo", - "symbol": "xudo" - }, - { - "id": "xusd", - "name": "xUSD", - "symbol": "xusd" - }, - { - "id": "xusd-babelfish", - "name": "XUSD (BabelFish)", - "symbol": "xusd" - }, - { - "id": "xv", - "name": "XV", - "symbol": "xv" - }, - { - "id": "xvdl_astrovault", - "name": "xVDL_Astrovault", - "symbol": "xvdl" - }, - { - "id": "xwin-finance", - "name": "xWIN Finance", - "symbol": "xwin" - }, - { - "id": "x-world-games", - "name": "X World Games", - "symbol": "xwg" - }, - { - "id": "xxcoin", - "name": "XX Network", - "symbol": "xx" - }, - { - "id": "xxcoin-2", - "name": "XX", - "symbol": "xx" - }, - { - "id": "x-xrc-20", - "name": "x (XRC-20)", - "symbol": "x" - }, - { - "id": "xy-finance", - "name": "XY Finance", - "symbol": "xy" - }, - { - "id": "xym-finance", - "name": "XYM Token", - "symbol": "xym" - }, - { - "id": "xyo-network", - "name": "XYO Network", - "symbol": "xyo" - }, - { - "id": "xyxyx", - "name": "Xyxyx", - "symbol": "xyxyx" - }, - { - "id": "y", - "name": "\u0178", - "symbol": "yai" - }, - { - "id": "y2k", - "name": "Y2K", - "symbol": "y2k" - }, - { - "id": "y2k-2", - "name": "Y2K", - "symbol": "y2k" - }, - { - "id": "yachtingverse", - "name": "YachtingVerse [OLD]", - "symbol": "yacht" - }, - { - "id": "yachtingverse-old", - "name": "YachtingVerse", - "symbol": "yacht" - }, - { - "id": "yadacoin", - "name": "YadaCoin", - "symbol": "yda" - }, - { - "id": "yak", - "name": "YAK", - "symbol": "yak" - }, - { - "id": "yak-dao", - "name": "Yak DAO", - "symbol": "yaks" - }, - { - "id": "yaku", - "name": "Yaku", - "symbol": "yaku" - }, - { - "id": "yam-2", - "name": "YAM", - "symbol": "yam" - }, - { - "id": "yama-inu", - "name": "YAMA Inu", - "symbol": "yama" - }, - { - "id": "yamfore", - "name": "Yamfore", - "symbol": "cblp" - }, - { - "id": "yamp-finance", - "name": "Yamp Finance", - "symbol": "yamp" - }, - { - "id": "yasha-dao", - "name": "YASHA", - "symbol": "yasha" - }, - { - "id": "yawww", - "name": "Yawww", - "symbol": "yaw" - }, - { - "id": "yaya-coin", - "name": "YaYa Coin", - "symbol": "yaya" - }, - { - "id": "yay-games", - "name": "YAY Network", - "symbol": "yay" - }, - { - "id": "ycash", - "name": "Ycash", - "symbol": "yec" - }, - { - "id": "y-coin", - "name": "Y Coin", - "symbol": "yco" - }, - { - "id": "ydragon", - "name": "YDragon", - "symbol": "ydr" - }, - { - "id": "yearn-crv", - "name": "Yearn CRV", - "symbol": "ycrv" - }, - { - "id": "yearn-ether", - "name": "Yearn Ether", - "symbol": "yeth" - }, - { - "id": "yearn-finance", - "name": "yearn.finance", - "symbol": "yfi" - }, - { - "id": "yearntogether", - "name": "YearnTogether", - "symbol": "yearn" - }, - { - "id": "yearn-yprisma", - "name": "Yearn yPRISMA", - "symbol": "yprisma" - }, - { - "id": "year-of-the-dragon", - "name": "Year of the Dragon", - "symbol": "yod" - }, - { - "id": "yel-finance", - "name": "Yel.Finance", - "symbol": "yel" - }, - { - "id": "yellow-road", - "name": "Yellow Road", - "symbol": "road" - }, - { - "id": "yellow-team", - "name": "Yellow Team", - "symbol": "yellow" - }, - { - "id": "yelo-cat", - "name": "Yelo Cat", - "symbol": "yelo" - }, - { - "id": "yenten", - "name": "YENTEN", - "symbol": "ytn" - }, - { - "id": "yertle-the-turtle", - "name": "Yertle The Turtle", - "symbol": "yertle" - }, - { - "id": "yes-2", - "name": "Yes", - "symbol": "yesgo" - }, - { - "id": "yes-3", - "name": "YES", - "symbol": "yes" - }, - { - "id": "yes-money", - "name": "YES Money", - "symbol": "yes" - }, - { - "id": "yesorno", - "name": "YESorNO", - "symbol": "yon" - }, - { - "id": "yesports", - "name": "Yesports", - "symbol": "yesp" - }, - { - "id": "yes-token", - "name": "YES Token", - "symbol": "yes" - }, - { - "id": "yeti", - "name": "Yeti", - "symbol": "yeti" - }, - { - "id": "yeti-finance", - "name": "Yeti Finance", - "symbol": "yeti" - }, - { - "id": "yfdai-finance", - "name": "YfDAI.finance", - "symbol": "yf-dai" - }, - { - "id": "yfii-finance", - "name": "DFI.money", - "symbol": "yfii" - }, - { - "id": "yfione-2", - "name": "YFIONE", - "symbol": "yfo" - }, - { - "id": "yfi-yvault", - "name": "YFI yVault", - "symbol": "yvyfi" - }, - { - "id": "yflink", - "name": "YF Link", - "symbol": "yfl" - }, - { - "id": "yfx", - "name": "Your Futures Exchange", - "symbol": "yfx" - }, - { - "id": "yield-24", - "name": "Yield 24", - "symbol": "y24" - }, - { - "id": "yield-app", - "name": "Yield App", - "symbol": "yld" - }, - { - "id": "yieldblox", - "name": "YieldBlox", - "symbol": "ybx" - }, - { - "id": "yieldeth-sommelier", - "name": "YieldETH (Sommelier)", - "symbol": "yieldeth" - }, - { - "id": "yieldfarming-index", - "name": "YieldFarming Index", - "symbol": "yfx" - }, - { - "id": "yield-finance", - "name": "Yield Finance", - "symbol": "yieldx" - }, - { - "id": "yield-guild-games", - "name": "Yield Guild Games", - "symbol": "ygg" - }, - { - "id": "yieldification", - "name": "Yieldification", - "symbol": "ydf" - }, - { - "id": "yielding-protocol", - "name": "Yielding Protocol", - "symbol": "yield" - }, - { - "id": "yieldly", - "name": "Yieldly", - "symbol": "yldy" - }, - { - "id": "yield-magnet", - "name": "Yield Magnet", - "symbol": "magnet" - }, - { - "id": "yield-protocol", - "name": "Yield Protocol", - "symbol": "yield" - }, - { - "id": "yieldwatch", - "name": "Yieldwatch", - "symbol": "watch" - }, - { - "id": "yield-yak", - "name": "Yield Yak", - "symbol": "yak" - }, - { - "id": "yield-yak-avax", - "name": "Yield Yak AVAX", - "symbol": "yyavax" - }, - { - "id": "yikes-dog", - "name": "Yikes Dog", - "symbol": "yikes" - }, - { - "id": "yin-finance", - "name": "YIN Finance", - "symbol": "yin" - }, - { - "id": "yisu-ordinals", - "name": "Yisu (Ordinals)", - "symbol": "yisu" - }, - { - "id": "yocash", - "name": "YoCash", - "symbol": "ych" - }, - { - "id": "yocoin", - "name": "Yocoin", - "symbol": "yoc" - }, - { - "id": "yocoinyoco", - "name": "YocoinYOCO", - "symbol": "yoco" - }, - { - "id": "yoda-coin-swap", - "name": "Yoda Coin Swap", - "symbol": "jedals" - }, - { - "id": "yodeswap", - "name": "YodeSwap", - "symbol": "yode" - }, - { - "id": "yoj", - "name": "YOJ", - "symbol": "yoj" - }, - { - "id": "yokaiswap", - "name": "YokaiSwap", - "symbol": "yok" - }, - { - "id": "yolo", - "name": "YOLO", - "symbol": "yolo" - }, - { - "id": "yolonolo", - "name": "YoloNolo", - "symbol": "nolo" - }, - { - "id": "yooldo", - "name": "Yooldo", - "symbol": "yool" - }, - { - "id": "yooshi", - "name": "YooShi", - "symbol": "yooshi" - }, - { - "id": "yoshi-exchange", - "name": "Yoshi.exchange", - "symbol": "yoshi" - }, - { - "id": "yotoshi", - "name": "Yotoshi", - "symbol": "yoto" - }, - { - "id": "youclout", - "name": "Youclout", - "symbol": "yct" - }, - { - "id": "youcoin-2", - "name": "Youcoin", - "symbol": "you" - }, - { - "id": "you-looked", - "name": "You Looked", - "symbol": "circle" - }, - { - "id": "young-boys-fan-token", - "name": "Young Boys Fan Token", - "symbol": "ybo" - }, - { - "id": "young-mids-inspired", - "name": "Young Mids Inspired", - "symbol": "ymii" - }, - { - "id": "young-peezy-aka-pepe", - "name": "Young Peezy AKA Pepe", - "symbol": "peezy" - }, - { - "id": "your-ai", - "name": "YOUR AI", - "symbol": "yourai" - }, - { - "id": "yourkiss", - "name": "YourKiss", - "symbol": "yks" - }, - { - "id": "yourmom", - "name": "YourMom", - "symbol": "yourmom" - }, - { - "id": "your-open-metaverse", - "name": "YOM", - "symbol": "yom" - }, - { - "id": "yourwallet", - "name": "YourWallet", - "symbol": "yourwallet" - }, - { - "id": "yousui", - "name": "YouSUI", - "symbol": "xui" - }, - { - "id": "youves-uusd", - "name": "Youves uUSD", - "symbol": "uusd" - }, - { - "id": "youves-you-governance", - "name": "Youves YOU Governance", - "symbol": "you" - }, - { - "id": "youwho", - "name": "Youwho", - "symbol": "you" - }, - { - "id": "yoyo-market", - "name": "Yoyo Market", - "symbol": "yoyo" - }, - { - "id": "yuan-chain-coin", - "name": "Yuan Chain Coin", - "symbol": "ycc" - }, - { - "id": "yuge-meme", - "name": "Yuge Meme", - "symbol": "yuge" - }, - { - "id": "yuki", - "name": "YUKI", - "symbol": "yuki" - }, - { - "id": "yukky", - "name": "YUKKY", - "symbol": "yukky" - }, - { - "id": "yummi-universe", - "name": "Yummi Universe", - "symbol": "yummi" - }, - { - "id": "yummy", - "name": "Yummy", - "symbol": "yummy" - }, - { - "id": "yunki", - "name": "Yunki", - "symbol": "yunki" - }, - { - "id": "yup", - "name": "Yup", - "symbol": "yup" - }, - { - "id": "yuri", - "name": "Yuri", - "symbol": "yuri" - }, - { - "id": "yusd-stablecoin", - "name": "YUSD Stablecoin", - "symbol": "yusd" - }, - { - "id": "yvboost", - "name": "Yearn Compounding veCRV yVault", - "symbol": "yvboost" - }, - { - "id": "yvdai", - "name": "yvDAI", - "symbol": "yvdai" - }, - { - "id": "yvs-finance", - "name": "YVS Finance", - "symbol": "yvs" - }, - { - "id": "zab", - "name": "Zab", - "symbol": "zab" - }, - { - "id": "zada", - "name": "Zada", - "symbol": "zada" - }, - { - "id": "zahnymous", - "name": "Zahnymous", - "symbol": "zah" - }, - { - "id": "zaibot", - "name": "Zaibot", - "symbol": "zai" - }, - { - "id": "zaif-token", - "name": "Zaif", - "symbol": "zaif" - }, - { - "id": "zaiho", - "name": "ZAIHO", - "symbol": "zai" - }, - { - "id": "zakumifi", - "name": "ZakumiFi", - "symbol": "zafi" - }, - { - "id": "zambesigold", - "name": "ZambesiGold", - "symbol": "zgd" - }, - { - "id": "zam-io", - "name": "Zam.io", - "symbol": "zam" - }, - { - "id": "zanix", - "name": "Zanix", - "symbol": "nix" - }, - { - "id": "zano", - "name": "Zano", - "symbol": "zano" - }, - { - "id": "zap", - "name": "Zap", - "symbol": "zap" - }, - { - "id": "zapexchange", - "name": "ZapExchange", - "symbol": "zapex" - }, - { - "id": "zapicorn", - "name": "Zapicorn", - "symbol": "zapi" - }, - { - "id": "zarp-stablecoin", - "name": "ZARP Stablecoin", - "symbol": "zarp" - }, - { - "id": "zasset-zusd", - "name": "Zasset zUSD", - "symbol": "zusd" - }, - { - "id": "zatcoin-2", - "name": "ZAT Project", - "symbol": "zpro" - }, - { - "id": "zbit-ordinals", - "name": "ZBIT (Ordinals)", - "symbol": "zbit" - }, - { - "id": "zbyte", - "name": "zbyte", - "symbol": "dplat" - }, - { - "id": "zcash", - "name": "Zcash", - "symbol": "zec" - }, - { - "id": "zclassic", - "name": "Zclassic", - "symbol": "zcl" - }, - { - "id": "zcoin", - "name": "Firo", - "symbol": "firo" - }, - { - "id": "zcore-2", - "name": "ZCore", - "symbol": "zcr" - }, - { - "id": "zcore-finance", - "name": "ZCore Finance", - "symbol": "zefi" - }, - { - "id": "z-cubed", - "name": "Z-Cubed", - "symbol": "z3" - }, - { - "id": "zeal-ai", - "name": "Zeal AI", - "symbol": "zai" - }, - { - "id": "zebec-protocol", - "name": "Zebec Network", - "symbol": "zbcn" - }, - { - "id": "zebi", - "name": "Zebi", - "symbol": "zco" - }, - { - "id": "zebradao", - "name": "ZebraDAO", - "symbol": "zeb" - }, - { - "id": "zebu", - "name": "ZEBU", - "symbol": "zebu" - }, - { - "id": "zed-run", - "name": "ZED RUN", - "symbol": "zed" - }, - { - "id": "zedxion", - "name": "Zedxion", - "symbol": "zedxion" - }, - { - "id": "zedxion-usdz", - "name": "Zedxion USDZ", - "symbol": "usdz" - }, - { - "id": "zeebu", - "name": "Zeebu", - "symbol": "zbu" - }, - { - "id": "zeedex", - "name": "Zeedex", - "symbol": "zdex" - }, - { - "id": "zeek-coin", - "name": "Zeek Coin", - "symbol": "meow" - }, - { - "id": "zeekwifhat", - "name": "Zeekwifhat", - "symbol": "zwif" - }, - { - "id": "zeemcoin", - "name": "Zeemcoin", - "symbol": "zeem" - }, - { - "id": "zeepin", - "name": "Zeepin", - "symbol": "zpt" - }, - { - "id": "zeepr", - "name": "Zeepr", - "symbol": "zeep" - }, - { - "id": "zeitgeist", - "name": "Zeitgeist", - "symbol": "ztg" - }, - { - "id": "zelcash", - "name": "Flux", - "symbol": "flux" - }, - { - "id": "zelix", - "name": "ZELIX", - "symbol": "zelix" - }, - { - "id": "zeloop-eco-reward", - "name": "ZeLoop Eco Reward", - "symbol": "erw" - }, - { - "id": "zelwin", - "name": "Zelwin", - "symbol": "zlw" - }, - { - "id": "zencash", - "name": "Horizen", - "symbol": "zen" - }, - { - "id": "zenc-coin", - "name": "Zenc Coin", - "symbol": "zenc" - }, - { - "id": "zenex", - "name": "ZENEX", - "symbol": "znx" - }, - { - "id": "zenfuse", - "name": "Zenfuse", - "symbol": "zefu" - }, - { - "id": "zeniq", - "name": "ZENIQ", - "symbol": "zeniq" - }, - { - "id": "zenith-2", - "name": "Zenith", - "symbol": "zen" - }, - { - "id": "zenith-chain", - "name": "Zenith Chain", - "symbol": "zenith" - }, - { - "id": "zenithereum", - "name": "Zenithereum", - "symbol": "zen-ai" - }, - { - "id": "zenithswap", - "name": "ZenithSwap", - "symbol": "zsp" - }, - { - "id": "zenith-wallet", - "name": "Zenith Wallet", - "symbol": "zw" - }, - { - "id": "zenland", - "name": "Zenland", - "symbol": "zenf" - }, - { - "id": "zenlink-network-token", - "name": "Zenlink Network", - "symbol": "zlk" - }, - { - "id": "zenocard", - "name": "ZenoCard", - "symbol": "zeno" - }, - { - "id": "zenon-2", - "name": "Zenon", - "symbol": "znn" - }, - { - "id": "zenpandacoin", - "name": "ZenPandaCoin", - "symbol": "$zpc" - }, - { - "id": "zent-cash", - "name": "Zent Cash", - "symbol": "ztc" - }, - { - "id": "zentry", - "name": "Zentry", - "symbol": "zent" - }, - { - "id": "zenzo", - "name": "ZENZO", - "symbol": "znz" - }, - { - "id": "zeon", - "name": "ZEON Network", - "symbol": "zeon" - }, - { - "id": "zephyr-protocol", - "name": "Zephyr Protocol", - "symbol": "zeph" - }, - { - "id": "zephyr-protocol-reserve-share", - "name": "Zephyr Protocol Reserve Share", - "symbol": "zrs" - }, - { - "id": "zephyr-protocol-stable-dollar", - "name": "Zephyr Protocol Stable Dollar", - "symbol": "zsd" - }, - { - "id": "zer0zer0", - "name": "00 Token", - "symbol": "00" - }, - { - "id": "zero", - "name": "Zero", - "symbol": "zer" - }, - { - "id": "zero1-labs", - "name": "Zero1 Labs", - "symbol": "deai" - }, - { - "id": "zeroclassic", - "name": "ZeroClassic", - "symbol": "zerc" - }, - { - "id": "zero-exchange", - "name": "0.exchange", - "symbol": "zero" - }, - { - "id": "zeroliquid", - "name": "ZeroLiquid", - "symbol": "zero" - }, - { - "id": "zeroliquid-eth", - "name": "ZeroLiquid ETH", - "symbol": "zeth" - }, - { - "id": "zerosum", - "name": "ZeroSum", - "symbol": "zsum" - }, - { - "id": "zeroswap", - "name": "ZeroSwap", - "symbol": "zee" - }, - { - "id": "zeroswapnft", - "name": "ZeroSwapNFT", - "symbol": "zero" - }, - { - "id": "zero-tech", - "name": "MEOW", - "symbol": "meow" - }, - { - "id": "zerpaay", - "name": "Zerpaay", - "symbol": "zrpy" - }, - { - "id": "zesh", - "name": "Zesh", - "symbol": "zesh" - }, - { - "id": "zetachain", - "name": "ZetaChain", - "symbol": "zeta" - }, - { - "id": "zetachain-bridged-bnb-bsc-zetachain", - "name": "ZetaChain Bridged BNB.BSC (ZetaChain)", - "symbol": "bnb.bsc" - }, - { - "id": "zetachain-bridged-btc-btc-zetachain", - "name": "ZetaChain Bridged BTC.BTC (ZetaChain)", - "symbol": "btc.btc" - }, - { - "id": "zetachain-bridged-usdc-bsc-zetachain", - "name": "ZetaChain Bridged USDC.BSC (ZetaChain)", - "symbol": "usdc.bsc" - }, - { - "id": "zetachain-bridged-usdc-eth-zetachain", - "name": "ZetaChain Bridged USDC.ETH (ZetaChain)", - "symbol": "usdc.eth" - }, - { - "id": "zetachain-bridged-usdt-bsc-zetachain", - "name": "ZetaChain Bridged USDT.BSC (ZetaChain)", - "symbol": "usdt.bsc" - }, - { - "id": "zetachain-bridged-usdt-eth-zetachain", - "name": "ZetaChain Bridged USDT.ETH (ZetaChain)", - "symbol": "usdt.eth" - }, - { - "id": "zetachain-eth-eth", - "name": "ZetaChain Bridged ETH.ETH (ZetaChain)", - "symbol": "eth.eth" - }, - { - "id": "zetacoin", - "name": "Zetacoin", - "symbol": "zet" - }, - { - "id": "zetaearn-staked-zeta", - "name": "ZetaEarn Staked ZETA", - "symbol": "stzeta" - }, - { - "id": "zethan", - "name": "Zethan", - "symbol": "zeth" - }, - { - "id": "zetrix", - "name": "Zetrix", - "symbol": "zetrix" - }, - { - "id": "zeus-2", - "name": "Zeus", - "symbol": "zeus" - }, - { - "id": "zeus-ai", - "name": "Zeus AI", - "symbol": "zeus" - }, - { - "id": "zeus-ai-2", - "name": "ZEUS AI", - "symbol": "zeus" - }, - { - "id": "zeus-finance", - "name": "Zeus Finance", - "symbol": "zeus" - }, - { - "id": "zeus-network", - "name": "Zeus Network", - "symbol": "zeus" - }, - { - "id": "zeuspepesdog", - "name": "Zeus", - "symbol": "zeus" - }, - { - "id": "zeusshield", - "name": "Zeusshield", - "symbol": "zsc" - }, - { - "id": "zfmcoin", - "name": "ZFMCOIN", - "symbol": "zfm" - }, - { - "id": "zhaodavinci", - "name": "ZhaoDaVinci", - "symbol": "vini" - }, - { - "id": "zhc-zero-hour-cash", - "name": "ZHC : Zero Hour Cash", - "symbol": "zhc" - }, - { - "id": "zibu", - "name": "Zibu", - "symbol": "zibu" - }, - { - "id": "ziesha", - "name": "Ziesha", - "symbol": "zsh" - }, - { - "id": "zignaly", - "name": "Zignaly", - "symbol": "zig" - }, - { - "id": "zigzag-2", - "name": "ZigZag", - "symbol": "zz" - }, - { - "id": "zik-token", - "name": "Ziktalk", - "symbol": "zik" - }, - { - "id": "zillion-aakar-xo", - "name": "Zillion Aakar XO", - "symbol": "zillionxo" - }, - { - "id": "zilliqa", - "name": "Zilliqa", - "symbol": "zil" - }, - { - "id": "zilpay-wallet", - "name": "ZilPay Wallet", - "symbol": "zlp" - }, - { - "id": "zilpepe", - "name": "ZilPepe", - "symbol": "zilpepe" - }, - { - "id": "zilstream", - "name": "ZilStream", - "symbol": "stream" - }, - { - "id": "zilswap", - "name": "ZilSwap", - "symbol": "zwap" - }, - { - "id": "zin", - "name": "Zin", - "symbol": "zin" - }, - { - "id": "zino-pet", - "name": "Zino Pet", - "symbol": "zpet" - }, - { - "id": "zion", - "name": "Zion", - "symbol": "zion" - }, - { - "id": "ziontopia", - "name": "ZionTopia", - "symbol": "zion" - }, - { - "id": "zionwallet", - "name": "ZionWallet", - "symbol": "zion" - }, - { - "id": "zipmex-token", - "name": "Zipmex", - "symbol": "zmt" - }, - { - "id": "zipswap", - "name": "ZipSwap", - "symbol": "zip" - }, - { - "id": "zircuit", - "name": "Zircuit", - "symbol": "zrc" - }, - { - "id": "ziv4-labs", - "name": "Ziv4 Labs", - "symbol": "ziv4" - }, - { - "id": "ziyon", - "name": "ZIY\u00d8N SAS", - "symbol": "ion" - }, - { - "id": "zjoe", - "name": "zJOE", - "symbol": "zjoe" - }, - { - "id": "zkapes-token", - "name": "zkApes Token", - "symbol": "zat" - }, - { - "id": "zkcult", - "name": "zkCULT", - "symbol": "zcult" - }, - { - "id": "zkdoge", - "name": "zkDoge", - "symbol": "zkdoge" - }, - { - "id": "zkdx", - "name": "ZKDX", - "symbol": "zkdx" - }, - { - "id": "zkera-finance", - "name": "zkEra Finance", - "symbol": "zke" - }, - { - "id": "zkevmchain-bsc", - "name": "zkEVMChain (BSC)", - "symbol": "zkevm" - }, - { - "id": "zkfair", - "name": "ZKFair", - "symbol": "zkf" - }, - { - "id": "zkfarmer-io-zkbud", - "name": "zkFarmer.io zkBud", - "symbol": "zkb farm" - }, - { - "id": "zkgap", - "name": "ZKGAP", - "symbol": "zkgap" - }, - { - "id": "zkgrok", - "name": "ZKGROK", - "symbol": "zkgrok" - }, - { - "id": "zkhive", - "name": "zkHive", - "symbol": "zkhive" - }, - { - "id": "zkinfra", - "name": "zkInfra", - "symbol": "zkin" - }, - { - "id": "zkitty-bot", - "name": "ZKitty Bot", - "symbol": "$zkitty" - }, - { - "id": "zklaunchpad", - "name": "zkLaunchpad", - "symbol": "zkpad" - }, - { - "id": "zklend-2", - "name": "zkLend", - "symbol": "zend" - }, - { - "id": "zklink", - "name": "zkLink", - "symbol": "zkl" - }, - { - "id": "zklock", - "name": "ZkLock", - "symbol": "zklk" - }, - { - "id": "zklotto", - "name": "zkLotto", - "symbol": "zklotto" - }, - { - "id": "zkml", - "name": "zKML", - "symbol": "zkml" - }, - { - "id": "zkpepe", - "name": "ZKPepe", - "symbol": "zkpepe" - }, - { - "id": "zkpepe-2", - "name": "ZKPEPE", - "symbol": "zkpepe" - }, - { - "id": "zkproof", - "name": "zkProof", - "symbol": "zkp" - }, - { - "id": "zkshib", - "name": "zkShib", - "symbol": "zkshib" - }, - { - "id": "zkshield", - "name": "zkSHIELD", - "symbol": "zkshield" - }, - { - "id": "zkspace", - "name": "ZKBase", - "symbol": "zkb" - }, - { - "id": "zksvm", - "name": "zkSVM", - "symbol": "zksvm" - }, - { - "id": "zkswap-92fc4897-ea4c-4692-afc9-a9840a85b4f2", - "name": "zkSwap", - "symbol": "zksp" - }, - { - "id": "zkswap-finance", - "name": "zkSwap Finance", - "symbol": "zf" - }, - { - "id": "zksync-bridged-usdc-zksync", - "name": "zkSync Bridged USDC (zkSync)", - "symbol": "usdc" - }, - { - "id": "zksync-id", - "name": "zkSync id", - "symbol": "zkid" - }, - { - "id": "zktao", - "name": "zkTAO", - "symbol": "zao" - }, - { - "id": "zktsunami", - "name": "ZkTsunami", - "symbol": ":zkt:" - }, - { - "id": "zkx", - "name": "ZKX", - "symbol": "$zkx" - }, - { - "id": "zkzone", - "name": "Zkzone", - "symbol": "zkz" - }, - { - "id": "zmine", - "name": "ZMINE", - "symbol": "zmn" - }, - { - "id": "zoci", - "name": "Zoci", - "symbol": "zoci" - }, - { - "id": "zodiacsv2", - "name": "ZodiacsV2", - "symbol": "zdcv2" - }, - { - "id": "zodium", - "name": "Zodium", - "symbol": "zodi" - }, - { - "id": "zoid-pay", - "name": "ZoidPay", - "symbol": "zpay" - }, - { - "id": "zombie-inu-2", - "name": "Zombie Inu", - "symbol": "zinu" - }, - { - "id": "zone", - "name": "Zone", - "symbol": "zone" - }, - { - "id": "zone-of-avoidance", - "name": "Zone of Avoidance", - "symbol": "zoa" - }, - { - "id": "zoobit-finance", - "name": "Zoobit Finance", - "symbol": "zb" - }, - { - "id": "zoocoin", - "name": "ZooCoin", - "symbol": "zoo" - }, - { - "id": "zoo-coin", - "name": "ZooCoin (OLD)", - "symbol": "zoo" - }, - { - "id": "zoo-crypto-world", - "name": "ZOO Crypto World", - "symbol": "zoo" - }, - { - "id": "zoodao", - "name": "ZooDAO", - "symbol": "zoo" - }, - { - "id": "zookeeper", - "name": "ZooKeeper", - "symbol": "zoo" - }, - { - "id": "zook-protocol", - "name": "Zook Protocol", - "symbol": "zook" - }, - { - "id": "zoomer", - "name": "Zoomer", - "symbol": "zoomer" - }, - { - "id": "zoomswap", - "name": "ZoomSwap", - "symbol": "zm" - }, - { - "id": "zoopia", - "name": "Zoopia", - "symbol": "zooa" - }, - { - "id": "zoo-token", - "name": "Zoo", - "symbol": "zoot" - }, - { - "id": "zora-bridged-weth-zora-network", - "name": "Zora Bridged WETH (Zora Network)", - "symbol": "weth" - }, - { - "id": "zorksees", - "name": "Zorksees", - "symbol": "zorksees" - }, - { - "id": "zorro", - "name": "Zorro", - "symbol": "zorro" - }, - { - "id": "z-protocol", - "name": "Z Protocol", - "symbol": "zp" - }, - { - "id": "zpunk", - "name": "Zpunk", - "symbol": "zpt" - }, - { - "id": "zro", - "name": "Carb0n.fi", - "symbol": "zro" - }, - { - "id": "zsol", - "name": "zSOL", - "symbol": "zsol" - }, - { - "id": "ztx", - "name": "ZTX", - "symbol": "ztx" - }, - { - "id": "zum-token", - "name": "ZUM", - "symbol": "zum" - }, - { - "id": "zurf", - "name": "ZURF", - "symbol": "zrf" - }, - { - "id": "zurrency", - "name": "ZURRENCY", - "symbol": "zurr" - }, - { - "id": "zuzalu", - "name": "zuzalu", - "symbol": "zuzalu" - }, - { - "id": "zuzalu-inu", - "name": "Zuzalu Inu", - "symbol": "zuzalu" - }, - { - "id": "zuzuai", - "name": "ZUZUAI", - "symbol": "zuzuai" - }, - { - "id": "zyberswap", - "name": "Zyberswap", - "symbol": "zyb" - }, - { - "id": "zyncoin-2", - "name": "ZynCoin", - "symbol": "zyn" - }, - { - "id": "zynecoin", - "name": "Zynecoin", - "symbol": "zyn" - }, - { - "id": "zynergy", - "name": "Zynergy", - "symbol": "zyn" - }, - { - "id": "zyrri", - "name": "Zyrri", - "symbol": "zyr" - }, - { - "id": "zyx", - "name": "ZYX", - "symbol": "zyx" - }, - { - "id": "zzz", - "name": "GoSleep ZZZ", - "symbol": "zzz" - } -] \ No newline at end of file diff --git a/data/exchanges.json b/data/exchanges.json deleted file mode 100644 index 2dac1ed..0000000 --- a/data/exchanges.json +++ /dev/null @@ -1,4226 +0,0 @@ -[ - { - "id": "10kswap-starknet-alpha", - "name": "10KSwap" - }, - { - "id": "1bch", - "name": "1BCH" - }, - { - "id": "3xcalibur", - "name": "3xcalibur" - }, - { - "id": "9inch", - "name": "9inch" - }, - { - "id": "aave", - "name": "Aave" - }, - { - "id": "abstradex", - "name": "AbstraDEX" - }, - { - "id": "acala_swap", - "name": "Acala Swap" - }, - { - "id": "acdx", - "name": "ACDX" - }, - { - "id": "ace", - "name": "Ace" - }, - { - "id": "acsi_finance", - "name": "Acsi Finance" - }, - { - "id": "aerodrome-base", - "name": "Aerodrome (Base)" - }, - { - "id": "aevo", - "name": "Aevo" - }, - { - "id": "aftermath_finance", - "name": "Aftermath Finance" - }, - { - "id": "agni-finance", - "name": "Agni Finance" - }, - { - "id": "agora_swap", - "name": "Agora Swap" - }, - { - "id": "aktionariat-ethereum", - "name": "Aktionariat (Ethereum)" - }, - { - "id": "alexgo", - "name": "ALEX" - }, - { - "id": "algebra_finance", - "name": "Algebra finance" - }, - { - "id": "alien-base", - "name": "Alien Base" - }, - { - "id": "alienfi", - "name": "AlienFi" - }, - { - "id": "allinxswap-opbnb", - "name": "AllInXSwap (opBnb)" - }, - { - "id": "altcointrader", - "name": "AltcoinTrader" - }, - { - "id": "alterdice", - "name": "AlterDice" - }, - { - "id": "amaterasu", - "name": "Amaterasu Finance" - }, - { - "id": "animeswap", - "name": "Animeswap" - }, - { - "id": "antfarm-avalanche", - "name": "Antfarm (Avalanche)" - }, - { - "id": "antfarm-ethereum", - "name": "Antfarm (Ethereum) " - }, - { - "id": "apertureswap", - "name": "ApertureSwap" - }, - { - "id": "apeswap-arbitrum", - "name": "Apeswap (Arbitrum)" - }, - { - "id": "apeswap_bsc", - "name": "ApeSwap" - }, - { - "id": "apeswap_polygon", - "name": "ApeSwap (Polygon)" - }, - { - "id": "apeswap_telos", - "name": "Apeswap (Telos)" - }, - { - "id": "apex_pro", - "name": "ApeX Pro" - }, - { - "id": "aprobit", - "name": "Aprobit" - }, - { - "id": "aqx", - "name": "AQX" - }, - { - "id": "aqx_derivatives", - "name": "Flipster" - }, - { - "id": "arbidex", - "name": "Arbidex" - }, - { - "id": "arbswap_arbitrum_one", - "name": "Arbswap" - }, - { - "id": "archerswap", - "name": "Archerswap" - }, - { - "id": "armada", - "name": "Armada" - }, - { - "id": "arthswap", - "name": "ArthSwap" - }, - { - "id": "arthswap-astar-zkevm", - "name": "ArthSwap (Astar zkEVM)" - }, - { - "id": "ashswap", - "name": "Ashswap" - }, - { - "id": "astroport_injective", - "name": "Astroport (Injective)" - }, - { - "id": "astroport_neutron", - "name": "Astroport (Neutron)" - }, - { - "id": "astroport-sei", - "name": "Astroport (Sei)" - }, - { - "id": "astroport_v2", - "name": "Astroport V2" - }, - { - "id": "astrovault", - "name": "Astrovault" - }, - { - "id": "auroraswap", - "name": "AuroraSwap" - }, - { - "id": "autoshark_finance", - "name": "AutoShark Finance" - }, - { - "id": "aux", - "name": "AUX Exchange" - }, - { - "id": "ayin", - "name": "AYIN" - }, - { - "id": "azbit", - "name": "Azbit" - }, - { - "id": "babydogeswap", - "name": "BabyDogeSwap" - }, - { - "id": "babyswap", - "name": "BabySwap" - }, - { - "id": "backpack_exchange", - "name": "Backpack Exchange " - }, - { - "id": "baguette", - "name": "Baguette" - }, - { - "id": "bakeryswap", - "name": "Bakeryswap" - }, - { - "id": "bakeryswap-base", - "name": "BakerySwap (Base)" - }, - { - "id": "balanced_network", - "name": "Balanced" - }, - { - "id": "balancer", - "name": "Balancer V2" - }, - { - "id": "balancer_arbitrum", - "name": "Balancer V2 (Arbitrum)" - }, - { - "id": "balancer-gnosis", - "name": "Balancer V2 (Gnosis)" - }, - { - "id": "balancer_polygon", - "name": "Balancer V2 (Polygon)" - }, - { - "id": "balancer_v1", - "name": "Balancer V1" - }, - { - "id": "balancer-v2-avalanche", - "name": "Balancer V2 (Avalanche)" - }, - { - "id": "balancer-v2-base", - "name": "Balancer V2 (Base)" - }, - { - "id": "balancer-v2-polygon-zkevm", - "name": "Balancer V2 (Polygon zkEVM) " - }, - { - "id": "bancor", - "name": "Bancor (V2)" - }, - { - "id": "bancor_v3", - "name": "Bancor (V3)" - }, - { - "id": "baptswap", - "name": "BAPTSwap" - }, - { - "id": "baryon_network", - "name": "Baryon Network" - }, - { - "id": "baryon-network-viction", - "name": "BaryonSwap (Viction)" - }, - { - "id": "baseswap", - "name": "BaseSwap" - }, - { - "id": "basex", - "name": "BaseX" - }, - { - "id": "baso-finance", - "name": "Baso Finance" - }, - { - "id": "bcex", - "name": "BCEX" - }, - { - "id": "beamswap", - "name": "Beamswap" - }, - { - "id": "beam-swap", - "name": "Beam Swap" - }, - { - "id": "beethovenx", - "name": "Beethoven X" - }, - { - "id": "beethoven_x_optimism", - "name": "Beethoven X (Optimism)" - }, - { - "id": "benswap_smart_bitcoin_cash", - "name": "Benswap" - }, - { - "id": "bibox", - "name": "Bibox" - }, - { - "id": "bibox_futures", - "name": "Bibox (Futures)" - }, - { - "id": "biconomy", - "name": "Biconomy" - }, - { - "id": "bifrost_swap", - "name": "Bifrost Swap" - }, - { - "id": "bigone", - "name": "BigONE" - }, - { - "id": "bigone_futures", - "name": "BigONE Futures" - }, - { - "id": "bilaxy", - "name": "Bilaxy" - }, - { - "id": "binance", - "name": "Binance" - }, - { - "id": "binance_dex", - "name": "Binance DEX" - }, - { - "id": "binance_dex_mini", - "name": "Binance DEX (Mini)" - }, - { - "id": "binance_futures", - "name": "Binance (Futures)" - }, - { - "id": "binance_us", - "name": "Binance US" - }, - { - "id": "binaryswap", - "name": "BinarySwap" - }, - { - "id": "bingx", - "name": "BingX" - }, - { - "id": "bingx_futures", - "name": "BingX (Futures)" - }, - { - "id": "bione", - "name": "BiONE" - }, - { - "id": "birake", - "name": "Birake" - }, - { - "id": "bisq", - "name": "Bisq" - }, - { - "id": "biswap", - "name": "Biswap" - }, - { - "id": "biswap-v3-1", - "name": "Biswap V3" - }, - { - "id": "bit2c", - "name": "Bit2c" - }, - { - "id": "bit2me", - "name": "Bit2Me" - }, - { - "id": "bitazza", - "name": "Bitazza" - }, - { - "id": "bitbank", - "name": "Bitbank" - }, - { - "id": "bitbay", - "name": "zondacrypto" - }, - { - "id": "bitbegin", - "name": "Bitbegin" - }, - { - "id": "bitbns", - "name": "BitBNS" - }, - { - "id": "bitcastle", - "name": "bitcastle" - }, - { - "id": "bitci", - "name": "Bitci TR" - }, - { - "id": "bitcoin_com", - "name": "FMFW.io" - }, - { - "id": "bitcointry_exchange", - "name": "Bitcointry Exchange" - }, - { - "id": "bit_com", - "name": "BIT" - }, - { - "id": "bit_com_futures", - "name": "BIT (Futures)" - }, - { - "id": "bitdelta", - "name": "BitDelta" - }, - { - "id": "bitdex", - "name": "Bitdex" - }, - { - "id": "bitexbook", - "name": "BITEXBOOK" - }, - { - "id": "bitexen", - "name": "Bitexen" - }, - { - "id": "bitexlive", - "name": "Bitexlive" - }, - { - "id": "bitfinex", - "name": "Bitfinex" - }, - { - "id": "bitfinex_futures", - "name": "Bitfinex (Futures)" - }, - { - "id": "bitflyer", - "name": "bitFlyer" - }, - { - "id": "bitflyer_futures", - "name": "Bitflyer (Futures)" - }, - { - "id": "bitget", - "name": "Bitget" - }, - { - "id": "bitget_futures", - "name": "Bitget Futures" - }, - { - "id": "bithash", - "name": "BitHash" - }, - { - "id": "bithumb", - "name": "Bithumb" - }, - { - "id": "bitker", - "name": "BITKER" - }, - { - "id": "bitkub", - "name": "Bitkub" - }, - { - "id": "bitlo", - "name": "Bitlo" - }, - { - "id": "bitmake", - "name": "BitMake" - }, - { - "id": "bitmake_futures", - "name": "BitMake Futures" - }, - { - "id": "bitmart", - "name": "BitMart" - }, - { - "id": "bitmart_futures", - "name": "Bitmart Futures" - }, - { - "id": "bitmax", - "name": "AscendEX (BitMax)" - }, - { - "id": "bitmax_futures", - "name": "AscendEX (BitMax) (Futures)" - }, - { - "id": "bitmex", - "name": "BitMEX (Derivative)" - }, - { - "id": "bitmex_spot", - "name": "BitMEX" - }, - { - "id": "bitonbay", - "name": "BitOnBay" - }, - { - "id": "bitopro", - "name": "BitoPro" - }, - { - "id": "bitpanda", - "name": "One Trading" - }, - { - "id": "bitrue", - "name": "Bitrue" - }, - { - "id": "bitrue_futures", - "name": "Bitrue (Futures)" - }, - { - "id": "bitso", - "name": "Bitso" - }, - { - "id": "bitstamp", - "name": "Bitstamp" - }, - { - "id": "bitsten", - "name": "Bitsten" - }, - { - "id": "bitstorage", - "name": "BitStorage" - }, - { - "id": "bitswap", - "name": "BitSwap" - }, - { - "id": "bittime", - "name": "Bittime" - }, - { - "id": "bittrex", - "name": "Bittrex Global" - }, - { - "id": "bitunix", - "name": "Bitunix" - }, - { - "id": "bitunix_futures", - "name": "Bitunix Futures" - }, - { - "id": "bitvavo", - "name": "Bitvavo" - }, - { - "id": "bitvenus", - "name": "BitVenus Futures" - }, - { - "id": "bitvenus_spot", - "name": "BitVenus" - }, - { - "id": "blastdex", - "name": "BlastDEX" - }, - { - "id": "blasterswap", - "name": "BlasterSwap" - }, - { - "id": "blazeswap", - "name": "Blazeswap (Songbird)" - }, - { - "id": "blazeswap-flare", - "name": "BlazeSwap (Flare) " - }, - { - "id": "blockchain_com", - "name": "Blockchain.com" - }, - { - "id": "blofin", - "name": "Blofin" - }, - { - "id": "bluemove", - "name": "BlueMove" - }, - { - "id": "blueprint", - "name": "Blueprint" - }, - { - "id": "blueshift", - "name": "Blueshift" - }, - { - "id": "bobswap_polygon", - "name": "BobSwap (Polygon)" - }, - { - "id": "bossswap", - "name": "BossSwap" - }, - { - "id": "btc_alpha", - "name": "BTC-Alpha" - }, - { - "id": "btcbox", - "name": "BTCBOX" - }, - { - "id": "btcmarkets", - "name": "BTCMarkets" - }, - { - "id": "btc_trade_ua", - "name": "BTC Trade UA" - }, - { - "id": "btcturk", - "name": "BtcTurk | Kripto" - }, - { - "id": "btse", - "name": "BTSE" - }, - { - "id": "btse_futures", - "name": "BTSE (Futures)" - }, - { - "id": "bullish_com", - "name": "Bullish" - }, - { - "id": "butter-xyz", - "name": "Butter.xyz" - }, - { - "id": "buyucoin", - "name": "BuyUcoin" - }, - { - "id": "bw", - "name": "BWFX.pro" - }, - { - "id": "bybit", - "name": "Bybit (Futures)" - }, - { - "id": "bybit_spot", - "name": "Bybit" - }, - { - "id": "bydfi", - "name": "BYDFi" - }, - { - "id": "bydfi-futures", - "name": "BYDFi (Futures)" - }, - { - "id": "byte-exchange", - "name": "Byte Exchange" - }, - { - "id": "camelot", - "name": "Camelot" - }, - { - "id": "camelot-v3", - "name": "Camelot V3" - }, - { - "id": "canto_dex", - "name": "Canto Dex" - }, - { - "id": "cantoswap", - "name": "Cantoswap" - }, - { - "id": "capricorn", - "name": "Capricorn" - }, - { - "id": "carbon", - "name": "Carbon" - }, - { - "id": "catex", - "name": "Catex" - }, - { - "id": "caviarnine", - "name": "CaviarNine" - }, - { - "id": "cellana-finance", - "name": "Cellana Finance" - }, - { - "id": "cetoswap", - "name": "Cetoswap (Manta Pacific)" - }, - { - "id": "cetus", - "name": "Cetus" - }, - { - "id": "cex", - "name": "CEX.IO" - }, - { - "id": "chainex", - "name": "ChainEX" - }, - { - "id": "changelly", - "name": "Changelly PRO" - }, - { - "id": "cherryswap", - "name": "CherrySwap" - }, - { - "id": "chiliz", - "name": "ChilizX" - }, - { - "id": "chronos", - "name": "Chronos" - }, - { - "id": "citadelswap", - "name": "CitadelSwap" - }, - { - "id": "citex", - "name": "CITEX" - }, - { - "id": "claimswap", - "name": "Claimswap" - }, - { - "id": "cleopatra-exchange", - "name": "Cleopatra Exchange" - }, - { - "id": "clipper-arbitrum", - "name": "Clipper (Arbitrum)" - }, - { - "id": "clipper_ethereum", - "name": "Clipper (Ethereum)" - }, - { - "id": "clipper_optimism", - "name": "Clipper (Optimism)" - }, - { - "id": "clipper_polygon", - "name": "Clipper (Polygon)" - }, - { - "id": "clone", - "name": "Clone" - }, - { - "id": "cme_futures", - "name": "CME Group" - }, - { - "id": "coinbase_international", - "name": "Coinbase International Exchange" - }, - { - "id": "coinbase_international_derivatives", - "name": "Coinbase International Exchange (Derivatives)" - }, - { - "id": "coincall", - "name": "Coincall" - }, - { - "id": "coincatch", - "name": "CoinCatch" - }, - { - "id": "coincatch_derivatives", - "name": "CoinCatch Derivatives" - }, - { - "id": "coincheck", - "name": "Coincheck" - }, - { - "id": "coindcx", - "name": "CoinDCX" - }, - { - "id": "coinex", - "name": "CoinEx" - }, - { - "id": "coinex_futures", - "name": "CoinEx (Futures)" - }, - { - "id": "coinjar", - "name": "CoinJar Exchange" - }, - { - "id": "coinlist", - "name": "Coinlist" - }, - { - "id": "coin_metro", - "name": "Coinmetro" - }, - { - "id": "coinone", - "name": "Coinone" - }, - { - "id": "coinsbit", - "name": "Coinsbit" - }, - { - "id": "coinspro", - "name": "Coins.ph" - }, - { - "id": "coinstore", - "name": "Coinstore" - }, - { - "id": "coinswap", - "name": "CoinSwap" - }, - { - "id": "cointr", - "name": "CoinTR Pro" - }, - { - "id": "cointr_derivatives", - "name": "CoinTR Pro (Derivatives)" - }, - { - "id": "coinw", - "name": "CoinW" - }, - { - "id": "coinw_futures", - "name": "CoinW (Futures)" - }, - { - "id": "coinzoom", - "name": "Coinzoom" - }, - { - "id": "comethswap", - "name": "ComethSwap" - }, - { - "id": "concave", - "name": "Concave" - }, - { - "id": "convergence-finance-v2", - "name": "Convergence Finance" - }, - { - "id": "c_patex", - "name": "C-Patex" - }, - { - "id": "crema_finance", - "name": "Crema Finance" - }, - { - "id": "crescent", - "name": "Crescent" - }, - { - "id": "crex24", - "name": "CREX24" - }, - { - "id": "crodex", - "name": "Crodex" - }, - { - "id": "cronaswap", - "name": "Cronaswap" - }, - { - "id": "cronus_finance", - "name": "Cronus Finance" - }, - { - "id": "croswap", - "name": "CroSwap" - }, - { - "id": "crowdswap-polygon", - "name": "CrowdSwap (Polygon)" - }, - { - "id": "cryptal", - "name": "Cryptal" - }, - { - "id": "crypto_com", - "name": "Crypto.com Exchange" - }, - { - "id": "crypto_com_futures", - "name": "Crypto.com Exchange (Futures)" - }, - { - "id": "cryptology", - "name": "Cryptology" - }, - { - "id": "cswap", - "name": "cSwap" - }, - { - "id": "cube", - "name": "Cube" - }, - { - "id": "cubiswap", - "name": "CUBISwap" - }, - { - "id": "currency", - "name": "Currency.com" - }, - { - "id": "curve_arbitrum", - "name": "Curve (Arbitrum)" - }, - { - "id": "curve_avalanche", - "name": "Curve (Avalanche)" - }, - { - "id": "curve-bsc", - "name": "Curve (BSC)" - }, - { - "id": "curve-celo", - "name": "Curve (Celo)" - }, - { - "id": "curve_ethereum", - "name": "Curve (Ethereum)" - }, - { - "id": "curve_fantom", - "name": "Curve (Fantom)" - }, - { - "id": "curve_moonbeam", - "name": "Curve (Moonbeam)" - }, - { - "id": "curve_optimism", - "name": "Curve (Optimism)" - }, - { - "id": "curve_polygon", - "name": "Curve (Polygon)" - }, - { - "id": "curve_xdai", - "name": "Curve (Xdai)" - }, - { - "id": "cyberblast-v2", - "name": "Cyberblast V2" - }, - { - "id": "cyberblast-v3", - "name": "Cyberblast V3" - }, - { - "id": "dackieswap", - "name": "DackieSwap V3" - }, - { - "id": "dackieswap-v2", - "name": "DackieSwap V2" - }, - { - "id": "dao_swap", - "name": "DAO Swap" - }, - { - "id": "darkknight", - "name": "Dark KnightSwap" - }, - { - "id": "dcoin", - "name": "Dcoin" - }, - { - "id": "dedust", - "name": "DeDust" - }, - { - "id": "deepcoin", - "name": "Deepcoin" - }, - { - "id": "deepcoin_derivatives", - "name": "Deepcoin (Derivatives)" - }, - { - "id": "defichain", - "name": "DeFiChain DEX" - }, - { - "id": "defi_kingdoms", - "name": "Defi Kingdoms" - }, - { - "id": "defi_kingdoms_crystalvale", - "name": "Defi Kingdoms (Crystalvale)" - }, - { - "id": "defi_plaza", - "name": "DefiPlaza" - }, - { - "id": "defiplaza_radix", - "name": "DefiPlaza (Radix)" - }, - { - "id": "defi_swap", - "name": "DeFi Swap" - }, - { - "id": "degate", - "name": "DeGate" - }, - { - "id": "degenswap-degenchain", - "name": "DegenSwap" - }, - { - "id": "delta_futures", - "name": "Delta Exchange (Futures)" - }, - { - "id": "delta_spot", - "name": "Delta Exchange" - }, - { - "id": "dem_exchange", - "name": "Demex" - }, - { - "id": "demex_derivatives", - "name": "Demex (Derivatives)" - }, - { - "id": "deribit", - "name": "Deribit" - }, - { - "id": "deribit_spot", - "name": "Deribit Spot" - }, - { - "id": "derpdex", - "name": "DerpDEX (zkSync)" - }, - { - "id": "derpdex-base", - "name": "DerpDEX (Base)" - }, - { - "id": "derpdex-opbnb", - "name": "DerpDEX (opBnb)" - }, - { - "id": "deversifi", - "name": "Rhino.fi" - }, - { - "id": "dexalot", - "name": "Dexalot" - }, - { - "id": "dexter", - "name": "Dexter" - }, - { - "id": "dextoro", - "name": "DexToro" - }, - { - "id": "dextrade", - "name": "Dex-Trade" - }, - { - "id": "dezswap", - "name": "Dezswap" - }, - { - "id": "dforceswap_arbitrum", - "name": "dForceswap (Arbitrum)" - }, - { - "id": "dforceswap_bsc", - "name": "dForceswap (BSC)" - }, - { - "id": "dforceswap_ethereum", - "name": "dForceswap (Ethereum)" - }, - { - "id": "dforceswap_optimism", - "name": "dForceswap (Optimism)" - }, - { - "id": "dforceswap_polygon", - "name": "dForceswap (Polygon)" - }, - { - "id": "dfx", - "name": "DFX" - }, - { - "id": "dfx_polygon", - "name": "DFX (Polygon)" - }, - { - "id": "dfyn", - "name": "Dfyn" - }, - { - "id": "diffusion", - "name": "Diffusion Finance" - }, - { - "id": "difx", - "name": "DIFX" - }, - { - "id": "digifinex", - "name": "DigiFinex" - }, - { - "id": "digitalexchange_id", - "name": "Digitalexchange.id" - }, - { - "id": "dinosaureggs", - "name": "DinosaurEggs (BSC)" - }, - { - "id": "dodo", - "name": "DODO (Ethereum)" - }, - { - "id": "dodo_arbitrum", - "name": "DODO (Arbitrum)" - }, - { - "id": "dodo-avalanche", - "name": "DODO (Avalanche)" - }, - { - "id": "dodo_bsc", - "name": "DODO (BSC)" - }, - { - "id": "dodo_polygon", - "name": "DODO (Polygon)" - }, - { - "id": "dogeshrek", - "name": "Dogeshrek" - }, - { - "id": "dogeswap", - "name": "DogeSwap" - }, - { - "id": "dogswap", - "name": "DogSwap" - }, - { - "id": "dojoswap", - "name": "DojoSwap" - }, - { - "id": "dooar_bsc", - "name": "DOOAR (BSC)" - }, - { - "id": "dooar_ethereum", - "name": "DOOAR (Ethereum)" - }, - { - "id": "dooar-polygon", - "name": "DOOAR (Polygon)" - }, - { - "id": "doveswap-v3", - "name": "DoveSwap V3" - }, - { - "id": "dracula-finance", - "name": "Dracula Finance" - }, - { - "id": "drift_protocol", - "name": "Drift Protocol" - }, - { - "id": "duckydefi", - "name": "DuckyDeFi" - }, - { - "id": "dydx_chain", - "name": "dYdX Chain (Cosmos)" - }, - { - "id": "dydx_perpetual", - "name": "dYdX Perpetual (Ethereum)" - }, - { - "id": "dyorswap-blast", - "name": "DYORSwap (Blast)" - }, - { - "id": "dyorswap-degenchain", - "name": "DYORSwap (Degen Chain)" - }, - { - "id": "dystopia", - "name": "Dystopia" - }, - { - "id": "ebisus-bay", - "name": "Ebisu's Bay" - }, - { - "id": "echodex", - "name": "EchoDEX" - }, - { - "id": "eddyfinance", - "name": "EddyFinance" - }, - { - "id": "ekubo", - "name": "Ekubo (Starknet)" - }, - { - "id": "elk_finance_avax", - "name": "Elk Finance (Avalanche)" - }, - { - "id": "elk_finance_bsc", - "name": "Elk Finance (BSC)" - }, - { - "id": "elk_finance_ethereum", - "name": "Elk Finance (Ethereum)" - }, - { - "id": "elk_finance_polygon", - "name": "Elk Finance (Polygon)" - }, - { - "id": "elk_finance_telos", - "name": "Elk Finance (Telos)" - }, - { - "id": "ellipsis_finance", - "name": "Ellipsis Finance" - }, - { - "id": "emirex", - "name": "Emirex" - }, - { - "id": "empiredex", - "name": "EmpireDEX (Cronos)" - }, - { - "id": "empiredex_bsc", - "name": "EmpireDEX (BSC)" - }, - { - "id": "empiredex_empire", - "name": "EmpireDEX (Empire)" - }, - { - "id": "energiswap", - "name": "Energiswap" - }, - { - "id": "enosys-flare", - "name": "Enosys (Flare)" - }, - { - "id": "equalizer", - "name": "Equalizer" - }, - { - "id": "equalizer-base", - "name": "Equalizer (Base)" - }, - { - "id": "equation", - "name": "Equation" - }, - { - "id": "equilibre", - "name": "\u00c9quilibre" - }, - { - "id": "etcmc", - "name": "ETCMC" - }, - { - "id": "evmoswap", - "name": "EvmoSwap" - }, - { - "id": "excalibur", - "name": "Excalibur" - }, - { - "id": "exmo", - "name": "EXMO" - }, - { - "id": "ezkalibur", - "name": "eZKalibur" - }, - { - "id": "fairdesk", - "name": "Fairdesk" - }, - { - "id": "fairdesk_derivatives", - "name": "Fairdesk Derivatives" - }, - { - "id": "fairyswap", - "name": "Fairyswap" - }, - { - "id": "fameex", - "name": "FameEX" - }, - { - "id": "fastex", - "name": "Fastex" - }, - { - "id": "fatbtc", - "name": "FatBTC" - }, - { - "id": "fathom-dex", - "name": "Fathom DEX" - }, - { - "id": "ferro_protocol", - "name": "Ferro Protocol" - }, - { - "id": "financex", - "name": "FinanceX" - }, - { - "id": "finexbox", - "name": "FinexBox" - }, - { - "id": "firebird_finance_polygon", - "name": "Firebird Finance (Polygon)" - }, - { - "id": "flatqube", - "name": "FlatQube" - }, - { - "id": "flowx-finance", - "name": "FlowX Finance" - }, - { - "id": "fluxbeam", - "name": "FluxBeam" - }, - { - "id": "fmcpay", - "name": "FMCPAY" - }, - { - "id": "forge", - "name": "Forge" - }, - { - "id": "forteswap", - "name": "Forteswap" - }, - { - "id": "four_swap", - "name": "4swap" - }, - { - "id": "foxbit", - "name": "Foxbit" - }, - { - "id": "fraxswap_ethereum", - "name": "Fraxswap (Ethereum)" - }, - { - "id": "fraxswap-fraxtal", - "name": "Fraxswap (Fraxtal)" - }, - { - "id": "freiexchange", - "name": "Freiexchange" - }, - { - "id": "friendly_market", - "name": "Friendly Market" - }, - { - "id": "frogswap-degen-chain", - "name": "FrogSwap (Degen Chain)" - }, - { - "id": "fubt", - "name": "FUBT" - }, - { - "id": "fusionx-v2", - "name": "FusionX V2" - }, - { - "id": "fusionx-v3", - "name": "FusionX V3" - }, - { - "id": "fuzz_finance", - "name": "FuzzSwap" - }, - { - "id": "fx_swap", - "name": "MarginX" - }, - { - "id": "gasx", - "name": "GasX" - }, - { - "id": "gate", - "name": "Gate.io" - }, - { - "id": "gate_futures", - "name": "Gate.io (Futures)" - }, - { - "id": "gdax", - "name": "Coinbase Exchange" - }, - { - "id": "gemini", - "name": "Gemini" - }, - { - "id": "gemini_derivatives", - "name": "Gemini Derivatives" - }, - { - "id": "gemswap", - "name": "GemSwap" - }, - { - "id": "giottus", - "name": "Giottus" - }, - { - "id": "glide_finance", - "name": "Glide Finance" - }, - { - "id": "globe_exchange", - "name": "Globe" - }, - { - "id": "globe_exchange_derivatives", - "name": "Globe (Derivatives)" - }, - { - "id": "globiance", - "name": "Globiance" - }, - { - "id": "gmo_japan", - "name": "GMO Japan" - }, - { - "id": "gmo_japan_futures", - "name": "GMO Japan (Futures)" - }, - { - "id": "gmx_arbitrum", - "name": "GMX Derivatives (Arbitrum)" - }, - { - "id": "gmx_avalanche", - "name": "GMX Derivatives (Avalanche)" - }, - { - "id": "goosefx", - "name": "GooseFX" - }, - { - "id": "gopax", - "name": "GoPax" - }, - { - "id": "graviex", - "name": "Graviex" - }, - { - "id": "gravity_finance", - "name": "Gravity Finance" - }, - { - "id": "greenhouse_dex", - "name": "Greenhouse" - }, - { - "id": "hakuswap", - "name": "HakuSwap" - }, - { - "id": "halo_trade", - "name": "Halo Trade" - }, - { - "id": "hashkey_exchange", - "name": "HashKey Exchange" - }, - { - "id": "hbtc_futures", - "name": "BHEX (Futures)" - }, - { - "id": "hebeswap", - "name": "Hebeswap" - }, - { - "id": "heliswap", - "name": "HeliSwap" - }, - { - "id": "hercules-v2", - "name": "Hercules V2" - }, - { - "id": "hercules-v3", - "name": "Hercules V3" - }, - { - "id": "hermes_protocol", - "name": "Hermes Protocol" - }, - { - "id": "hitbtc", - "name": "HitBTC" - }, - { - "id": "hitbtc_derivatives", - "name": "HitBTC (Derivatives)" - }, - { - "id": "hiveswap-v3", - "name": "HiveSwap V3" - }, - { - "id": "holdstation-defutures", - "name": "Holdstation DeFutures" - }, - { - "id": "honeyswap", - "name": "Honeyswap" - }, - { - "id": "honeyswap_polygon", - "name": "Honeyswap (Polygon)" - }, - { - "id": "honorswap", - "name": "HonorSwap" - }, - { - "id": "hopeswap", - "name": "HopeSwap" - }, - { - "id": "horizondex", - "name": "HorizonDEX" - }, - { - "id": "hotcoin_global", - "name": "Hotcoin Global" - }, - { - "id": "huckleberry", - "name": "Huckleberry" - }, - { - "id": "huobi", - "name": "HTX" - }, - { - "id": "huobi_dm", - "name": "HTX Futures" - }, - { - "id": "huobi_japan", - "name": "BitTrade" - }, - { - "id": "hydra", - "name": "Hydra DEX" - }, - { - "id": "hydradx", - "name": "HydraDX" - }, - { - "id": "hyperblast", - "name": "HyperBlast" - }, - { - "id": "hyperliquid", - "name": "Hyperliquid" - }, - { - "id": "icecreamswap-core", - "name": "IcecreamSwap (Core)" - }, - { - "id": "icpswap", - "name": "ICPSwap" - }, - { - "id": "icrypex", - "name": "Icrypex" - }, - { - "id": "idex", - "name": "Idex" - }, - { - "id": "illuminex", - "name": "illumineX" - }, - { - "id": "impossible_finance", - "name": "Impossible Finance" - }, - { - "id": "impossible-finance-humanode", - "name": "Impossible Finance (Humanode)" - }, - { - "id": "impossible_finance_v3", - "name": "Impossible Finance (v3)" - }, - { - "id": "increment_swap", - "name": "Increment Swap" - }, - { - "id": "independent_reserve", - "name": "Independent Reserve" - }, - { - "id": "indodax", - "name": "Indodax" - }, - { - "id": "infusion", - "name": "Infusion" - }, - { - "id": "injective", - "name": "Helix" - }, - { - "id": "injective_futures", - "name": "Helix (Futures)" - }, - { - "id": "inx_one", - "name": "INX One" - }, - { - "id": "iotabee-shimmerevm", - "name": "Iotabee (ShimmerEVM)" - }, - { - "id": "itbit", - "name": "itBit" - }, - { - "id": "iziswap", - "name": "iZiSwap (BSC)" - }, - { - "id": "iziswap-linea", - "name": "iZiSwap (Linea)" - }, - { - "id": "iziswap-manta-pacific", - "name": "iZiSwap (Manta Pacific)" - }, - { - "id": "iziswap-mantle", - "name": "iZiSwap (Mantle)" - }, - { - "id": "iziswap-scroll", - "name": "iZiSwap (Scroll)" - }, - { - "id": "iziswap-zetachain", - "name": "iZiSwap (Zetachain)" - }, - { - "id": "iziswap-zkfair", - "name": "iZiSwap (ZKFair)" - }, - { - "id": "iziswap_zksync", - "name": "iZiSwap (zkSync)" - }, - { - "id": "jediswap-starknet-alpha", - "name": "JediSwap" - }, - { - "id": "jetswap", - "name": "JetSwap" - }, - { - "id": "jswap", - "name": "Jswap" - }, - { - "id": "julswap", - "name": "Julswap" - }, - { - "id": "junoswap", - "name": "Junoswap" - }, - { - "id": "jupiter", - "name": "Jupiter" - }, - { - "id": "justmoney_bttc", - "name": "Justmoney (Bittorent)" - }, - { - "id": "kaddex", - "name": "eckoDEX" - }, - { - "id": "kaidex", - "name": "Kaidex" - }, - { - "id": "kaidex_v3", - "name": "Kaidex V3" - }, - { - "id": "kaleidoswap-arbitrum", - "name": "KaleidoSwap (Arbitrum)" - }, - { - "id": "kanga", - "name": "Kanga" - }, - { - "id": "karura_swap", - "name": "Karura Swap" - }, - { - "id": "katana", - "name": "Katana" - }, - { - "id": "kava", - "name": "Kava Swap" - }, - { - "id": "kdswap", - "name": "KDSwap" - }, - { - "id": "kewlswap-chiliz-chain", - "name": "KEWLSwap (Chiliz Chain)" - }, - { - "id": "khaos_exchange", - "name": "Khaos Exchange" - }, - { - "id": "kibbleswap", - "name": "KibbleSwap" - }, - { - "id": "kickex", - "name": "KickEX" - }, - { - "id": "kiloex-bsc", - "name": "KiloEx (BSC)" - }, - { - "id": "kiloex-manta-pacific", - "name": "KiloEx (Manta Pacific)" - }, - { - "id": "kiloex-opbnb", - "name": "KiloEx (opBnb)" - }, - { - "id": "kim", - "name": "Kim" - }, - { - "id": "kim-v4", - "name": "Kim V4" - }, - { - "id": "kine-protocol-derivatives", - "name": "Kine Protocol (Derivatives)" - }, - { - "id": "kine-protocol-spot", - "name": "Kine Protocol (Spot)" - }, - { - "id": "kinesis_money", - "name": "Kinesis Money" - }, - { - "id": "kinetix-v3", - "name": "Kinetix V3" - }, - { - "id": "klayswap", - "name": "KLAYSwap" - }, - { - "id": "klayswap-v3", - "name": "Klayswap V3" - }, - { - "id": "klever_exchange", - "name": "Bitcoin.me" - }, - { - "id": "knightswap", - "name": "KnightSwap" - }, - { - "id": "koinbazar", - "name": "Koinbx" - }, - { - "id": "koinpark", - "name": "Koinpark" - }, - { - "id": "komodo_wallet", - "name": "Komodo Wallet" - }, - { - "id": "korbit", - "name": "Korbit" - }, - { - "id": "kraken", - "name": "Kraken" - }, - { - "id": "kraken_futures", - "name": "Kraken (Futures)" - }, - { - "id": "kriya-dex", - "name": "KriyaDEX" - }, - { - "id": "ktx_finance_arbitrum_derivatives", - "name": "KTX.Finance (Arbitrum)" - }, - { - "id": "ktx_finance_bsc_derivatives", - "name": "KTX.Finance (BSC)" - }, - { - "id": "ktx_finance_mantle_derivatives", - "name": "KTX.Finance (Mantle)" - }, - { - "id": "kucoin", - "name": "KuCoin" - }, - { - "id": "kujira", - "name": "Kujira Fin" - }, - { - "id": "kumex", - "name": "KuCoin Futures" - }, - { - "id": "kuna", - "name": "Kuna Exchange" - }, - { - "id": "kuswap", - "name": "Kuswap" - }, - { - "id": "kyberswap_classic_arbitrum", - "name": "Kyberswap Classic (Arbitrum)" - }, - { - "id": "kyberswap_classic_avalanche", - "name": "KyberSwap Classic (Avalanche)" - }, - { - "id": "kyberswap_classic_bsc", - "name": "KyberSwap Classic (BSC)" - }, - { - "id": "kyberswap_classic_bttc", - "name": "Kyberswap Classic (Bittorent)" - }, - { - "id": "kyberswap_classic_ethereum", - "name": "KyberSwap Classic (Ethereum)" - }, - { - "id": "kyberswap_classic_fantom", - "name": "KyberSwap Classic (Fantom)" - }, - { - "id": "kyberswap_classic_optimism", - "name": "Kyberswap Classic (Optimism)" - }, - { - "id": "kyberswap_classic_polygon", - "name": "KyberSwap Classic (Polygon)" - }, - { - "id": "kyberswap_elastic", - "name": "KyberSwap Elastic (Ethereum)" - }, - { - "id": "kyberswap_elastic_arbitrum", - "name": "Kyberswap Elastic (Arbitrum)" - }, - { - "id": "kyberswap_elastic_avalanche", - "name": "Kyberswap Elastic (Avalanche)" - }, - { - "id": "kyberswap_elastic_bsc", - "name": "Kyberswap Elastic (BSC)" - }, - { - "id": "kyberswap_elastic_fantom", - "name": "Kyberswap Elastic (Fantom)" - }, - { - "id": "kyberswap-elastic-linea", - "name": "Kyberswap Elastic (Linea)" - }, - { - "id": "kyberswap_elastic_optimism", - "name": "Kyberswap Elastic (Optimism)" - }, - { - "id": "kyberswap_elastic_polygon", - "name": "Kyberswap Elastic (Polygon)" - }, - { - "id": "latoken", - "name": "LATOKEN" - }, - { - "id": "lbank", - "name": "LBank" - }, - { - "id": "lbank-futures", - "name": "LBank (Futures)" - }, - { - "id": "lcx", - "name": "LCX Exchange" - }, - { - "id": "leetswap-base", - "name": "LeetSwap (Base)" - }, - { - "id": "leetswap-linea", - "name": "LeetSwap (Linea)" - }, - { - "id": "leonicornswap", - "name": "LeonicornSwap" - }, - { - "id": "levana-perps-osmosis", - "name": "Levana Perps (Osmosis)" - }, - { - "id": "levinswap_xdai", - "name": "Levinswap (xDai)" - }, - { - "id": "lfgswap", - "name": "LFGswap" - }, - { - "id": "lfgswap-core", - "name": "LFGSwap (Core)" - }, - { - "id": "libre_swap", - "name": "Libre Swap" - }, - { - "id": "lif3", - "name": "LIF3 (Tombchain)" - }, - { - "id": "lif3-bsc", - "name": "LIF3 (BSC)" - }, - { - "id": "lif3-ethereum", - "name": "Lif3 (Ethereum)" - }, - { - "id": "lif3-polygon", - "name": "LIF3 (Polygon)" - }, - { - "id": "lif3-v3-bsc", - "name": "Lif3 V3 (BSC)" - }, - { - "id": "lif3-v3-fantom", - "name": "Lif3 V3 (Fantom)" - }, - { - "id": "lif3-v3-polygon", - "name": "Lif3 V3 (Polygon)" - }, - { - "id": "liquidswap", - "name": "Liquidswap" - }, - { - "id": "localtrade", - "name": "LocalTrade" - }, - { - "id": "loop_markets", - "name": "Loop Markets" - }, - { - "id": "loopring", - "name": "Loopring" - }, - { - "id": "loopring_amm", - "name": "Loopring AMM" - }, - { - "id": "lovely-swap", - "name": "Lovely Swap" - }, - { - "id": "luaswap", - "name": "Luaswap" - }, - { - "id": "luigiswap", - "name": "LuigiSwap" - }, - { - "id": "luno", - "name": "Luno" - }, - { - "id": "lydia_finance", - "name": "Lydia Finance" - }, - { - "id": "lykke", - "name": "Lykke" - }, - { - "id": "lynex-linea", - "name": "Lynex" - }, - { - "id": "lynex-v2-linea", - "name": "Lynex V2 (Linea)" - }, - { - "id": "magicswap", - "name": "Magicswap" - }, - { - "id": "maiar", - "name": "xExchange" - }, - { - "id": "makiswap", - "name": "Makiswap" - }, - { - "id": "mangata", - "name": "Mangata" - }, - { - "id": "mantaswap", - "name": "MantaSwap" - }, - { - "id": "mars_ecosystem", - "name": "Mars Ecosystem" - }, - { - "id": "marswap", - "name": "MARSWAP" - }, - { - "id": "maverick_protocol", - "name": "Maverick Protocol" - }, - { - "id": "maverick_protocol_base", - "name": "Maverick Protocol (Base)" - }, - { - "id": "maverick_protocol_bsc", - "name": "Maverick Protocol (BSC)" - }, - { - "id": "maverick_protocol_zksync", - "name": "Maverick Protocol (zkSync)" - }, - { - "id": "max_maicoin", - "name": "Max Maicoin" - }, - { - "id": "maya-protocol", - "name": "Maya Protocol" - }, - { - "id": "mcdex", - "name": "MCDEX (Arbitrum)" - }, - { - "id": "mcdex_bsc", - "name": "MCDEX (BSC)" - }, - { - "id": "mdex", - "name": "Mdex" - }, - { - "id": "mdex_bsc", - "name": "Mdex BSC" - }, - { - "id": "megaton-finance", - "name": "Megaton Finance" - }, - { - "id": "melegaswap", - "name": "MelegaSwap" - }, - { - "id": "mercado_bitcoin", - "name": "Mercado Bitcoin" - }, - { - "id": "mercatox", - "name": "Mercatox" - }, - { - "id": "merchant-moe-mantle", - "name": "Merchant Moe" - }, - { - "id": "merlinswap", - "name": "MerlinSwap" - }, - { - "id": "meshswap", - "name": "Meshswap" - }, - { - "id": "metalx", - "name": "Metal X" - }, - { - "id": "meteora", - "name": "Meteora" - }, - { - "id": "methlab", - "name": "Methlab (Mantle)" - }, - { - "id": "miaswap", - "name": "MiaSwap" - }, - { - "id": "milkyswap-milkada", - "name": "MilkySwap" - }, - { - "id": "mimo", - "name": "Mimo" - }, - { - "id": "mindgames-arbitrum", - "name": "MIND Games" - }, - { - "id": "minswap", - "name": "Minswap" - }, - { - "id": "mistswap_smart_bitcoin_cash", - "name": "Mistswap" - }, - { - "id": "mm_finance", - "name": "MMFinance (Cronos)" - }, - { - "id": "mm-finance-arbitrum", - "name": "MM Finance (Arbitrum)" - }, - { - "id": "mmfinance_polygon", - "name": "MMFinance (Polygon)" - }, - { - "id": "mmfinance-v3-arbitrum", - "name": "MMFinance V3 (Arbitrum)" - }, - { - "id": "mojitoswap", - "name": "MojitoSwap" - }, - { - "id": "monoswap-V2-blast", - "name": "MonoSwap V2 (Blast)" - }, - { - "id": "monoswap-v3-blast", - "name": "MonoSwap V3 (Blast)" - }, - { - "id": "moraswap-v2", - "name": "Moraswap V2" - }, - { - "id": "morpheus_swap", - "name": "Morpheus Swap" - }, - { - "id": "mudrex", - "name": "Mudrex" - }, - { - "id": "muesliswap", - "name": "Muesliswap" - }, - { - "id": "muesliswap-milkada", - "name": "Muesliswap (Milkada)" - }, - { - "id": "mufex", - "name": "MUFEX" - }, - { - "id": "mute", - "name": "Koi Finance" - }, - { - "id": "mxc", - "name": "MEXC" - }, - { - "id": "mxc_futures", - "name": "MEXC (Futures)" - }, - { - "id": "nachoswap", - "name": "NachoSwap" - }, - { - "id": "namebase", - "name": "Namebase" - }, - { - "id": "nami_exchange", - "name": "Nami.Exchange" - }, - { - "id": "nanu_exchange", - "name": "Nanu Exchange" - }, - { - "id": "narkasa", - "name": "Narkasa" - }, - { - "id": "nash", - "name": "Nash" - }, - { - "id": "nearpad", - "name": "NearPAD" - }, - { - "id": "netswap", - "name": "Netswap" - }, - { - "id": "neutroswap", - "name": "Neutroswap" - }, - { - "id": "newdex", - "name": "Newdex" - }, - { - "id": "nexus_mutual", - "name": "Nexus Mutual" - }, - { - "id": "nice_hash", - "name": "NiceHash" - }, - { - "id": "nile", - "name": "NILE" - }, - { - "id": "nile-v1", - "name": "NILE V1" - }, - { - "id": "nominex", - "name": "Nominex" - }, - { - "id": "nomiswap", - "name": "Nomiswap" - }, - { - "id": "nomiswap_stable", - "name": "Nomiswap (Stable)" - }, - { - "id": "nonkyc_io", - "name": "Nonkyc.io" - }, - { - "id": "nostra", - "name": "Nostra " - }, - { - "id": "novadax", - "name": "NovaDAX" - }, - { - "id": "oasisswap-base", - "name": "OasisSwap (Base)" - }, - { - "id": "oasis_trade", - "name": "OasisDEX" - }, - { - "id": "occamx", - "name": "OccamX" - }, - { - "id": "oceanex", - "name": "Oceanex" - }, - { - "id": "okcoin", - "name": "Okcoin" - }, - { - "id": "okcoin-japan", - "name": "OKCoin Japan" - }, - { - "id": "okex", - "name": "OKX" - }, - { - "id": "okex_ordinals", - "name": "OKX Ordinals" - }, - { - "id": "okex_swap", - "name": "OKX (Futures)" - }, - { - "id": "oku-trade-filecoin", - "name": "Oku Trade (Filecoin)" - }, - { - "id": "oku-trade-scroll", - "name": "Oku Trade (Scroll)" - }, - { - "id": "omax-swap", - "name": "Omax Swap" - }, - { - "id": "omgfin", - "name": "Omgfin" - }, - { - "id": "omnidex", - "name": "OmniDex" - }, - { - "id": "onedex", - "name": "OneDex" - }, - { - "id": "one_inch_liquidity_protocol", - "name": "1inch Liquidity Protocol" - }, - { - "id": "one_inch_liquidity_protocol_bsc", - "name": "1inch Liquidity Protocol (BSC)" - }, - { - "id": "onsen-swap", - "name": "Onsen Swap" - }, - { - "id": "oolongswap", - "name": "Oolongswap" - }, - { - "id": "openbook", - "name": "OpenBook" - }, - { - "id": "openleverage", - "name": "OpenLeverage" - }, - { - "id": "openocean_finance", - "name": "OpenOcean" - }, - { - "id": "openswap", - "name": "OpenSwap" - }, - { - "id": "opnx_derivatives", - "name": "OPNX Derivatives" - }, - { - "id": "opnx_spot", - "name": "OPNX" - }, - { - "id": "oracleswap", - "name": "Oracleswap" - }, - { - "id": "oraidex", - "name": "OraiDEX" - }, - { - "id": "orangex", - "name": "OrangeX" - }, - { - "id": "orangex_futures", - "name": "OrangeX Futures" - }, - { - "id": "orca", - "name": "Orca" - }, - { - "id": "orderbook", - "name": "Orderbook.io" - }, - { - "id": "orderly_network", - "name": "Orderly Network" - }, - { - "id": "orderly_network_derivatives", - "name": "Orderly Network (Derivatives) (Near)" - }, - { - "id": "orderly_network_derivatives_evm", - "name": "Orderly Network (Derivatives)" - }, - { - "id": "oreoswap", - "name": "OreoSwap" - }, - { - "id": "orion-bsc", - "name": "Orion (BSC)" - }, - { - "id": "orion-ethereum", - "name": "Orion (Ethereum) " - }, - { - "id": "osmosis", - "name": "Osmosis" - }, - { - "id": "ox-fun", - "name": "OX.FUN" - }, - { - "id": "p2pb2b", - "name": "P2B" - }, - { - "id": "pacificswap", - "name": "PacificSwap" - }, - { - "id": "paintswap", - "name": "Paintswap" - }, - { - "id": "pancakeswap_aptos", - "name": "Pancakeswap (Aptos)" - }, - { - "id": "pancakeswap_ethereum", - "name": "PancakeSwap (Ethereum)" - }, - { - "id": "pancakeswap_new", - "name": "PancakeSwap (v2)" - }, - { - "id": "pancakeswap_stableswap", - "name": "Pancakeswap (Stableswap)" - }, - { - "id": "pancakeswap-stableswap-arbitrum", - "name": "Pancakeswap Stableswap (Arbitrum)" - }, - { - "id": "pancakeswap-v1-bsc", - "name": "Pancakeswap V1 (BSC)" - }, - { - "id": "pancakeswap-v2-arbitrum", - "name": "Pancakeswap V2 (Arbitrum)" - }, - { - "id": "pancakeswap-v2-opbnb", - "name": "Pancakeswap V2 (opBnb)" - }, - { - "id": "pancakeswap-v2-polygon-zkevm", - "name": "Pancakeswap V2 (Polygon zkEVM)" - }, - { - "id": "pancakeswap-v2-zksync", - "name": "PancakeSwap (zkSync)" - }, - { - "id": "pancakeswap-v3-arbitrum", - "name": "Pancakeswap V3 (Arbitrum)" - }, - { - "id": "pancakeswap-v3-base", - "name": "Pancakeswap V3 (Base)" - }, - { - "id": "pancakeswap-v3-bsc", - "name": "Pancakeswap V3 (BSC)" - }, - { - "id": "pancakeswap-v3-ethereum", - "name": "Pancakeswap V3 (Ethereum)" - }, - { - "id": "pancakeswap-v3-linea", - "name": "Pancakeswap V3 (Linea)" - }, - { - "id": "pancakeswap-v3-opbnb", - "name": "Pancakeswap V3 (opBnb)" - }, - { - "id": "pancakeswap-v3-polygon-zkevm", - "name": "Pancakeswap V3 (Polygon zkEVM)" - }, - { - "id": "pancakeswap-v3-zksync", - "name": "Pancakeswap V3 (zkSync)" - }, - { - "id": "pangolin", - "name": "Pangolin" - }, - { - "id": "pangolin-flare", - "name": "Pangolin (Flare)" - }, - { - "id": "pangolin-songbird", - "name": "Pangolin (Songbird)" - }, - { - "id": "paradex", - "name": "Paradex" - }, - { - "id": "paribu", - "name": "Paribu" - }, - { - "id": "paymium", - "name": "Paymium" - }, - { - "id": "pearl-exchange", - "name": "PearlFi" - }, - { - "id": "pearlfi-v1-5", - "name": "PearlFi V1.5" - }, - { - "id": "pegasys", - "name": "Pegasys" - }, - { - "id": "pegasys-v3-rollux", - "name": "Pegasys V3 (Rollux)" - }, - { - "id": "perpetual_protocol", - "name": "Perpetual Protocol" - }, - { - "id": "pharaoh-exchange", - "name": "Pharaoh Exchange" - }, - { - "id": "phemex", - "name": "Phemex" - }, - { - "id": "phemex_futures", - "name": "Phemex (Futures)" - }, - { - "id": "photonswap", - "name": "PhotonSwap (Cronos)" - }, - { - "id": "photonswap_kava", - "name": "PhotonSwap (Kava)" - }, - { - "id": "phux", - "name": "Phux" - }, - { - "id": "pinkswap", - "name": "PinkSwap" - }, - { - "id": "pionex", - "name": "Pionex" - }, - { - "id": "planet_finance", - "name": "Planet Finance" - }, - { - "id": "platypus_finance", - "name": "Platypus Finance" - }, - { - "id": "plenty_network", - "name": "Plenty Network" - }, - { - "id": "pointpay", - "name": "PointPay" - }, - { - "id": "polaris", - "name": "Polaris" - }, - { - "id": "polia", - "name": "Polia" - }, - { - "id": "polkaex_shiden", - "name": "PolkaEx (Shiden)" - }, - { - "id": "polkaswap", - "name": "Polkaswap" - }, - { - "id": "poloniex", - "name": "Poloniex" - }, - { - "id": "poloniex_futures", - "name": "Poloniex Futures" - }, - { - "id": "polycat_finance", - "name": "Polycat Finance" - }, - { - "id": "polynomial-trade", - "name": "Polynomial Trade " - }, - { - "id": "polyzap", - "name": "PolyZap" - }, - { - "id": "pomswap", - "name": "POMSwap" - }, - { - "id": "poolshark", - "name": "Poolshark" - }, - { - "id": "powertrade", - "name": "Powertrade" - }, - { - "id": "powertrade_derivatives", - "name": "Powertrade (Derivatives)" - }, - { - "id": "powswap", - "name": "Powswap" - }, - { - "id": "prime_xbt", - "name": "Prime XBT" - }, - { - "id": "prism", - "name": "Prism Protocol" - }, - { - "id": "probit", - "name": "ProBit Global" - }, - { - "id": "probit_kr", - "name": "Probit (Korea)" - }, - { - "id": "protofi", - "name": "ProtoFi" - }, - { - "id": "puddingswap", - "name": "PuddingSwap" - }, - { - "id": "pulsex", - "name": "PulseX" - }, - { - "id": "pulsex-v2", - "name": "PulseX V2" - }, - { - "id": "punkswap", - "name": "Punkswap" - }, - { - "id": "purcow", - "name": "Purcow" - }, - { - "id": "qmall", - "name": "QMall" - }, - { - "id": "quickswap", - "name": "Quickswap" - }, - { - "id": "quickswap_dogechain", - "name": "Quickswap (Dogechain)" - }, - { - "id": "quickswap-polygon-zkevm", - "name": "Quickswap (Polygon zkEVM)" - }, - { - "id": "quickswap_v3", - "name": "Quickswap (v3)" - }, - { - "id": "quickswap-v3-astar-zkevm", - "name": "QuickSwap V3 (Astar zkEVM)" - }, - { - "id": "quickswap-v3-immutable-zkevm", - "name": "QuickSwap V3 (Immutable zkEVM)" - }, - { - "id": "quickswap-v3-manta-pacific", - "name": "Quickswap V3 (Manta Pacific)" - }, - { - "id": "quipuswap", - "name": "Quipuswap" - }, - { - "id": "rabbitx", - "name": "RabbitX" - }, - { - "id": "radioshack_avalanche", - "name": "RadioShack (Avalanche)" - }, - { - "id": "radioshack_bsc", - "name": "RadioShack (BSC)" - }, - { - "id": "radioshack_ethereum", - "name": "RadioShack (Ethereum)" - }, - { - "id": "radioshack_polygon_pos", - "name": "RadioShack (Polygon)" - }, - { - "id": "ra-exchange", - "name": "Ra Exchange" - }, - { - "id": "ra-exchange-v1", - "name": "Ra Exchange V1" - }, - { - "id": "ramses", - "name": "Ramses" - }, - { - "id": "ramses-v2", - "name": "Ramses V2" - }, - { - "id": "rawr-trade", - "name": "Rawr Trade" - }, - { - "id": "raydium2", - "name": "Raydium" - }, - { - "id": "raydium-clmm", - "name": "Raydium (CLMM)" - }, - { - "id": "rcpswap", - "name": "RCP Swap" - }, - { - "id": "ref_finance", - "name": "Ref Finance" - }, - { - "id": "retherswap", - "name": "Retherswap" - }, - { - "id": "retro", - "name": "Retro" - }, - { - "id": "rocketswap", - "name": "Rocketswap" - }, - { - "id": "rockswap", - "name": "Rockswap" - }, - { - "id": "roguex-protocol", - "name": "RogueX Protocol " - }, - { - "id": "ruby_exchange", - "name": "Ruby Exchange" - }, - { - "id": "saber", - "name": "Saber" - }, - { - "id": "safe_trade", - "name": "SafeTrade" - }, - { - "id": "saitaswap-bsc", - "name": "SaitaSwap (BSC)" - }, - { - "id": "saitaswap-ethereum", - "name": "SaitaSwap (Ethereum)" - }, - { - "id": "sakeswap", - "name": "SakeSwap" - }, - { - "id": "satori-base", - "name": "Satori (Base)" - }, - { - "id": "satori-linea", - "name": "Satori (Linea)" - }, - { - "id": "saucerswap", - "name": "Saucerswap V1" - }, - { - "id": "saucerswap-v2", - "name": "Saucerswap V2" - }, - { - "id": "scrollswap", - "name": "ScrollSwap" - }, - { - "id": "secondbtc", - "name": "SecondBTC" - }, - { - "id": "secretswap", - "name": "SecretSwap" - }, - { - "id": "secta-finance-v2", - "name": "Secta Finance V2 (Linea)" - }, - { - "id": "secta-finance-v3", - "name": "Secta Finance V3 (Linea)" - }, - { - "id": "serum_dex", - "name": "Serum DEX" - }, - { - "id": "shade_protocol", - "name": "Shade Protocol" - }, - { - "id": "shadowswap", - "name": "ShadowSwap" - }, - { - "id": "sharkswap", - "name": "SharkSwap" - }, - { - "id": "sharkyswap", - "name": "SharkySwap" - }, - { - "id": "shibaswap", - "name": "Shibaswap" - }, - { - "id": "shibswap", - "name": "ShibSwap" - }, - { - "id": "shimmersea", - "name": "MagicSea" - }, - { - "id": "sideswap", - "name": "Sideswap" - }, - { - "id": "siennaswap", - "name": "Siennaswap" - }, - { - "id": "skydrome", - "name": "Skydrome" - }, - { - "id": "skydrome-v2", - "name": "Skydrome V2" - }, - { - "id": "slex", - "name": "Slex" - }, - { - "id": "smardex-arbitrum", - "name": "SmarDex (Arbitrum)" - }, - { - "id": "smardex-base", - "name": "SmarDex (Base)" - }, - { - "id": "smardex-bsc", - "name": "SmarDex (BSC)" - }, - { - "id": "smardex-ethereum", - "name": "SmarDex" - }, - { - "id": "smardex-polygon", - "name": "SmarDex (Polygon)" - }, - { - "id": "sobal", - "name": "Sobal (Neon EVM)" - }, - { - "id": "solarbeam", - "name": "Solarbeam" - }, - { - "id": "solarflare", - "name": "Solarflare" - }, - { - "id": "solidlizard", - "name": "SolidLizard" - }, - { - "id": "solidly", - "name": "Solidly V1 (Fantom)" - }, - { - "id": "solidlydex", - "name": "Solidly V2 (Ethereum)" - }, - { - "id": "solidly-v3", - "name": "Solidly V3 (Ethereum)" - }, - { - "id": "solidly-v3-arbitrum", - "name": "Solidly V3 (Arbitrum)" - }, - { - "id": "solidly-v3-base", - "name": "Solidly V3 (Base)" - }, - { - "id": "solidly-v3-fantom", - "name": "Solidly V3 (Fantom)" - }, - { - "id": "solidly-v3-optimism", - "name": "Solidly V3 (Optimism)" - }, - { - "id": "solisnek", - "name": "SoliSnek" - }, - { - "id": "sologenic", - "name": "Sologenic" - }, - { - "id": "sonic", - "name": "Sonic" - }, - { - "id": "soswap", - "name": "Soswap" - }, - { - "id": "soulswap", - "name": "Soulswap" - }, - { - "id": "sovryn", - "name": "Sovryn DEX" - }, - { - "id": "soy-finance-callisto", - "name": "Soy Finance (Callisto)" - }, - { - "id": "spacefi", - "name": "SpaceFi" - }, - { - "id": "spacefi_zksync", - "name": "SpaceFi (ZkSync)" - }, - { - "id": "spartadex", - "name": "SpartaDEX" - }, - { - "id": "spartan_protocol", - "name": "Spartan Protocol" - }, - { - "id": "spectrum_finance", - "name": "Spectrum Finance" - }, - { - "id": "spectrum-finance-cardano", - "name": "Spectrum Finance (Cardano)" - }, - { - "id": "sphynx_brise", - "name": "Sphynx (Brise)" - }, - { - "id": "sphynx_swap", - "name": "Sphynx Swap (BSC)" - }, - { - "id": "spice_trade_avalanche", - "name": "Spice Trade (Avalanche)" - }, - { - "id": "spicyswap", - "name": "Spicyswap" - }, - { - "id": "spinaqdex", - "name": "SpinaqDex" - }, - { - "id": "spiritswap", - "name": "SpiritSwap" - }, - { - "id": "spiritswap_v2", - "name": "SpiritSwap (V2)" - }, - { - "id": "spookyswap", - "name": "SpookySwap" - }, - { - "id": "spookyswap-v3", - "name": "SpookySwap V3 " - }, - { - "id": "squadswap", - "name": "SquadSwap V2" - }, - { - "id": "squadswap-v3", - "name": "SquadSwap V3" - }, - { - "id": "stake_cube", - "name": "StakeCube Exchange" - }, - { - "id": "starkdefi", - "name": "StarkDefi" - }, - { - "id": "steam-exchange-rails-network", - "name": "Rails Network Swap" - }, - { - "id": "stellar_term", - "name": "StellarTerm" - }, - { - "id": "stellaswap", - "name": "StellaSwap" - }, - { - "id": "stellaswap-v3", - "name": "Stellaswap (V3)" - }, - { - "id": "step-exchange", - "name": "Step Exchange" - }, - { - "id": "step_finance", - "name": "Step Finance" - }, - { - "id": "sterling", - "name": "Sterling" - }, - { - "id": "ston_fi", - "name": "STON.fi" - }, - { - "id": "stormgain", - "name": "Stormgain" - }, - { - "id": "stormgain_futures", - "name": "Stormgain Futures" - }, - { - "id": "stratum-exchange", - "name": "Stratum Exchange" - }, - { - "id": "suiswap", - "name": "Suiswap" - }, - { - "id": "sundaeswap", - "name": "Sundaeswap" - }, - { - "id": "sunswap_v1", - "name": "SUN.io" - }, - { - "id": "supswap", - "name": "SupSwap" - }, - { - "id": "surf-protocol", - "name": "Surf Protocol" - }, - { - "id": "surfswap", - "name": "Surfswap" - }, - { - "id": "sushiswap", - "name": "Sushiswap" - }, - { - "id": "sushiswap_arbitrum", - "name": "Sushiswap (Arbitrum One)" - }, - { - "id": "sushiswap_arbitrum_nova", - "name": "Sushiswap (Arbitrum Nova)" - }, - { - "id": "sushiswap_avalanche", - "name": "Sushiswap (Avalanche)" - }, - { - "id": "sushiswap_bsc", - "name": "Sushiswap (BSC)" - }, - { - "id": "sushiswap_celo", - "name": "Sushiswap Celo" - }, - { - "id": "sushiswap_fantom", - "name": "Sushiswap (Fantom)" - }, - { - "id": "sushiswap_harmony", - "name": "Sushiswap (Harmony)" - }, - { - "id": "sushiswap_polygon_pos", - "name": "Sushiswap (Polygon POS)" - }, - { - "id": "sushiswap-v2-base", - "name": "Sushiswap V2 (Base)" - }, - { - "id": "sushiswap-v3-arbitrum", - "name": "Sushiswap V3 (Arbitrum)" - }, - { - "id": "sushiswap-v3-arbitrum-nova", - "name": "Sushiswap V3 (Arbitrum Nova)" - }, - { - "id": "sushiswap-v3-base", - "name": "SushiSwap V3 (Base)" - }, - { - "id": "sushiswap-v3-bsc", - "name": "Sushiswap V3 (BSC)" - }, - { - "id": "sushiswap-v3-core", - "name": "Sushiswap V3 (Core)" - }, - { - "id": "sushiswap-v3-ethereum", - "name": "Sushiswap V3 (Ethereum)" - }, - { - "id": "sushiswap-v3-fantom", - "name": "Sushiswap V3 (Fantom)" - }, - { - "id": "sushiswap-v3-linea", - "name": "Sushiswap V3 (Linea)" - }, - { - "id": "sushiswap-v3-optimism", - "name": "Sushiswap V3 (Optimism)" - }, - { - "id": "sushiswap-v3-polygon", - "name": "Sushiswap V3 (Polygon)" - }, - { - "id": "sushiswap-v3-polygon-zkevm", - "name": "Sushiswap V3 (Polygon zkEVM)" - }, - { - "id": "sushiswap-v3-scroll", - "name": "SushiSwap V3 (Scroll)" - }, - { - "id": "sushiswap-v3-thundercore", - "name": "Sushiswap V3 (ThunderCore)" - }, - { - "id": "sushiswap-v3-zetachain", - "name": "Sushiswap V3 (ZetaChain)" - }, - { - "id": "sushiswap_xdai", - "name": "Sushiswap (xDai)" - }, - { - "id": "swapbased", - "name": "SwapBased" - }, - { - "id": "swapblast", - "name": "SwapBlast" - }, - { - "id": "swapfish", - "name": "SwapFish" - }, - { - "id": "swapline-optimism", - "name": "Swapline (Optimism)" - }, - { - "id": "swapline-shimmerevm", - "name": "Swapline (ShimmerEVM) " - }, - { - "id": "swapmode", - "name": "SwapMode" - }, - { - "id": "swappi", - "name": "Swappi" - }, - { - "id": "swapr_arbitrum", - "name": "Swapr (Arbitrum)" - }, - { - "id": "swapr_ethereum", - "name": "Swapr (Ethereum)" - }, - { - "id": "swapr_xdai", - "name": "Swapr (Xdai)" - }, - { - "id": "swapsicle", - "name": "Swapsicle" - }, - { - "id": "swapsicle-telos", - "name": "Swapsicle (Telos)" - }, - { - "id": "swapsicle-v2-mantle", - "name": "Swapsicle V2 (Mantle)" - }, - { - "id": "swapsicle-v2-telos", - "name": "Swapsicle V2 (Telos)" - }, - { - "id": "swop_fi", - "name": "Swop.Fi" - }, - { - "id": "swych", - "name": "SWYCH" - }, - { - "id": "syncswap", - "name": "SyncSwap" - }, - { - "id": "syncswap-linea", - "name": "SyncSwap (Linea)" - }, - { - "id": "syncswap-scroll", - "name": "SyncSwap (Scroll)" - }, - { - "id": "syncswap-v2-zksync", - "name": "SyncSwap (zkSync)" - }, - { - "id": "synfutures", - "name": "SynFutures" - }, - { - "id": "synthetix", - "name": "Kwenta" - }, - { - "id": "synthswap", - "name": "Synthswap" - }, - { - "id": "tangleswap", - "name": "TangleSwap" - }, - { - "id": "tangleswap-milkomeda-cardano", - "name": "TangleSwap (Milkomeda Cardano)" - }, - { - "id": "tangoswap", - "name": "TangoSwap" - }, - { - "id": "tanx", - "name": "tanX" - }, - { - "id": "tapbit", - "name": "Tapbit" - }, - { - "id": "tdax", - "name": "Orbix" - }, - { - "id": "tealswap", - "name": "Tealswap" - }, - { - "id": "templedao", - "name": "TempleDAO" - }, - { - "id": "tenderswap", - "name": "Tenderswap" - }, - { - "id": "terraport", - "name": "Terraport" - }, - { - "id": "terraswap", - "name": "Terraswap Classic" - }, - { - "id": "tethys", - "name": "Tethys Finance" - }, - { - "id": "tetuswap", - "name": "Tetuswap" - }, - { - "id": "tfm", - "name": "Terraformer" - }, - { - "id": "thala", - "name": "Thala" - }, - { - "id": "thena", - "name": "THENA" - }, - { - "id": "thena-fusion", - "name": "THENA FUSION" - }, - { - "id": "thena-opbnb", - "name": "THENA (opBnb)" - }, - { - "id": "thorswap", - "name": "THORChain" - }, - { - "id": "thorus", - "name": "Thorus" - }, - { - "id": "thorwallet", - "name": "THORWallet DEX" - }, - { - "id": "throne-v3-base", - "name": "Throne V3 (Base)" - }, - { - "id": "thruster-v2-0-3-fee-tier", - "name": "Thruster V2 (0.3% Fee Tier)" - }, - { - "id": "thruster-v2-1-0-fee-tier", - "name": "Thruster V2 (1.0% Fee Tier)" - }, - { - "id": "thruster-v3", - "name": "Thruster V3" - }, - { - "id": "tidex", - "name": "Tidex" - }, - { - "id": "tinyman", - "name": "Tinyman" - }, - { - "id": "tokenize", - "name": "Tokenize" - }, - { - "id": "tokenlon", - "name": "Tokenlon" - }, - { - "id": "token_sets", - "name": "TokenSets" - }, - { - "id": "toko_crypto", - "name": "TokoCrypto" - }, - { - "id": "tokpie", - "name": "Tokpie" - }, - { - "id": "tomb_swap_fantom", - "name": "Tomb Swap (Fantom)" - }, - { - "id": "toobit", - "name": "Toobit" - }, - { - "id": "toobit_derivatives", - "name": "Toobit Futures" - }, - { - "id": "trade_ogre", - "name": "TradeOgre" - }, - { - "id": "traderjoe", - "name": "Trader Joe" - }, - { - "id": "traderjoe-v2-1-arbitrum", - "name": "Trader Joe V2.1 (Arbitrum)" - }, - { - "id": "traderjoe-v2-1-avalanche", - "name": "Trader Joe V2.1 (Avalanche)" - }, - { - "id": "traderjoe-v2-1-bsc", - "name": "Trader Joe V2.1 (BSC)" - }, - { - "id": "traderjoe-v2-arbitrum", - "name": "Trader Joe v2 (Arbitrum)" - }, - { - "id": "traderjoe-v2-avalanche", - "name": "Trader Joe v2" - }, - { - "id": "traderjoe-v2-bsc", - "name": "Trader Joe V2 (BSC)" - }, - { - "id": "tranquil_finance", - "name": "Tranquil Finance" - }, - { - "id": "trisolaris", - "name": "Trisolaris" - }, - { - "id": "tropical_finance", - "name": "Tropical Finance" - }, - { - "id": "trubit", - "name": "Trubit" - }, - { - "id": "trustless-market", - "name": "Trustless Markets" - }, - { - "id": "turbos-finance", - "name": "Turbos Finance" - }, - { - "id": "ubeswap", - "name": "Ubeswap" - }, - { - "id": "unicly", - "name": "Unicly" - }, - { - "id": "unisat", - "name": "UniSat" - }, - { - "id": "uniswap-bsc", - "name": "Uniswap V3 (BSC)" - }, - { - "id": "uniswap_v2", - "name": "Uniswap V2 (Ethereum)" - }, - { - "id": "uniswap-v2-arbitrum", - "name": "Uniswap V2 (Arbitrum)" - }, - { - "id": "uniswap-v2-avalanche", - "name": "Uniswap V2 (Avalanche)" - }, - { - "id": "uniswap-v2-base", - "name": "Uniswap V2 (Base)" - }, - { - "id": "uniswap-v2-blast", - "name": "Uniswap V2 (Blast)" - }, - { - "id": "uniswap-v2-bsc", - "name": "Uniswap V2 (BSC) " - }, - { - "id": "uniswap-v2-optimism", - "name": "Uniswap V2 (Optimism)" - }, - { - "id": "uniswap-v2-polygon", - "name": "Uniswap V2 (Polygon)" - }, - { - "id": "uniswap_v3", - "name": "Uniswap V3 (Ethereum)" - }, - { - "id": "uniswap_v3_arbitrum", - "name": "Uniswap V3 (Arbitrum One)" - }, - { - "id": "uniswap-v3-avalanche", - "name": "Uniswap V3 (Avalanche)" - }, - { - "id": "uniswap-v3-base", - "name": "Uniswap V3 (Base)" - }, - { - "id": "uniswap-v3-blast", - "name": "Uniswap V3 (Blast)" - }, - { - "id": "uniswap_v3_celo", - "name": "Uniswap V3 (Celo)" - }, - { - "id": "uniswap_v3_optimism", - "name": "Uniswap V3 (Optimism)" - }, - { - "id": "uniswap_v3_polygon_pos", - "name": "Uniswap V3 (Polygon)" - }, - { - "id": "uniwswap", - "name": "UniWswap" - }, - { - "id": "upbit", - "name": "Upbit" - }, - { - "id": "upbit_indonesia", - "name": "Upbit Indonesia " - }, - { - "id": "usdfi", - "name": "USDFI" - }, - { - "id": "valr", - "name": "VALR" - }, - { - "id": "value_liquid_bsc", - "name": "vSwap BSC" - }, - { - "id": "vapordex", - "name": "VaporDex" - }, - { - "id": "vapordex-v2", - "name": "VaporDEX V2" - }, - { - "id": "velocimeter", - "name": "Velocimeter" - }, - { - "id": "velocimeter-base", - "name": "Velocimeter (Base)" - }, - { - "id": "velocimeter-fantom", - "name": "Velocimeter (Fantom)" - }, - { - "id": "velocimeter_v2", - "name": "Velocimeter V2" - }, - { - "id": "velocimeter-v3", - "name": "Velocimeter V3" - }, - { - "id": "velocore", - "name": "Velocore" - }, - { - "id": "velocore-v2-linea", - "name": "Velocore V2 (Linea)" - }, - { - "id": "velocore-v2-telos", - "name": "Velocore V2 (Telos)" - }, - { - "id": "velocore-v2-zksync", - "name": "Velocore V2 (ZkSync)" - }, - { - "id": "velodrome", - "name": "Velodrome Finance" - }, - { - "id": "velodrome-finance-slipstream", - "name": "Velodrome SlipStream" - }, - { - "id": "velodrome-finance-v2", - "name": "Velodrome Finance v2" - }, - { - "id": "verse", - "name": "Verse" - }, - { - "id": "vertex_protocol_derivatives", - "name": "Vertex (Derivatives)" - }, - { - "id": "vertex-protocol-spot", - "name": "Vertex (Spot)" - }, - { - "id": "vindax", - "name": "Vindax" - }, - { - "id": "virtuswap", - "name": "VirtuSwap" - }, - { - "id": "virtuswap-arbitrum-one", - "name": "VirtuSwap (Arbitrum One)" - }, - { - "id": "vitex", - "name": "ViteX" - }, - { - "id": "voltage_finance", - "name": "Voltage Finance" - }, - { - "id": "voltage-finance-v3", - "name": "Voltage Finance V3" - }, - { - "id": "voltswap_meter", - "name": "Voltswap (Meter)" - }, - { - "id": "vvs", - "name": "VVS Finance" - }, - { - "id": "vvs-v3-ethereum", - "name": "VVS V3 (Ethereum)" - }, - { - "id": "wagmi-ethereum", - "name": "WAGMI (Ethereum)" - }, - { - "id": "wagmi-kava", - "name": "WAGMI (Kava)" - }, - { - "id": "wagmi-metis", - "name": "WAGMI (Metis)" - }, - { - "id": "wagmi-zksync", - "name": "WAGMI (zkSync)" - }, - { - "id": "wagyuswap", - "name": "WagyuSwap" - }, - { - "id": "wannaswap", - "name": "Wannaswap" - }, - { - "id": "wanswap", - "name": "WanSwap" - }, - { - "id": "warpgate", - "name": "WarpGate" - }, - { - "id": "waultswap_polygon", - "name": "WaultSwap Polygon" - }, - { - "id": "wavelength", - "name": "Wavelength" - }, - { - "id": "waves", - "name": "WX Network" - }, - { - "id": "wazirx", - "name": "WazirX" - }, - { - "id": "websea", - "name": "Websea" - }, - { - "id": "weex", - "name": "WEEX" - }, - { - "id": "wemix_fi", - "name": "WEMIX.Fi" - }, - { - "id": "whitebit", - "name": "WhiteBIT" - }, - { - "id": "whitebit_futures", - "name": "WhiteBIT Futures" - }, - { - "id": "white-whale-juno", - "name": "White Whale (Juno)" - }, - { - "id": "white-whale-migaloo", - "name": "White Whale (Migaloo)" - }, - { - "id": "white_whale_osmosis", - "name": "White Whale (Osmosis)" - }, - { - "id": "white_whale_terra", - "name": "White Whale (Terra)" - }, - { - "id": "wigoswap", - "name": "Wigoswap" - }, - { - "id": "wingriders", - "name": "WingRiders" - }, - { - "id": "wombat", - "name": "Wombat Exchange (BNB)" - }, - { - "id": "wombat_arbitrum", - "name": "Wombat (Arbitrum)" - }, - { - "id": "woofi", - "name": "WOOFi" - }, - { - "id": "woofswap", - "name": "WoofSwap" - }, - { - "id": "woofswap-core", - "name": "WOOFSwap (Core)" - }, - { - "id": "woo_network_futures", - "name": "WOO X (Futures)" - }, - { - "id": "wootrade", - "name": "WOO X" - }, - { - "id": "xave", - "name": "Xave Finance" - }, - { - "id": "xcad", - "name": "XCAD DEX" - }, - { - "id": "xdx", - "name": "XDX" - }, - { - "id": "xeggex", - "name": "XeggeX" - }, - { - "id": "xenos-swap", - "name": "Xenos Swap" - }, - { - "id": "xswap", - "name": "XSwap" - }, - { - "id": "xswap-v3", - "name": "XSwap Protocol V3" - }, - { - "id": "xt", - "name": "XT.COM" - }, - { - "id": "xt_derivatives", - "name": "XT.COM (Derivatives)" - }, - { - "id": "yobit", - "name": "YoBit" - }, - { - "id": "yodeswap", - "name": "Yodeswap" - }, - { - "id": "yokaiswap", - "name": "Yokaiswap" - }, - { - "id": "yoshi_exchange_bsc", - "name": "Yoshi.exchange (BSC)" - }, - { - "id": "yoshi_exchange_ftm", - "name": "Yoshi.exchange (Fantom)" - }, - { - "id": "zaif", - "name": "Zaif" - }, - { - "id": "zappy", - "name": "Zappy" - }, - { - "id": "zbx", - "name": "ZBX" - }, - { - "id": "zebitex", - "name": "Zebitex" - }, - { - "id": "zebpay", - "name": "ZebPay" - }, - { - "id": "zenlink_astar", - "name": "Zenlink (Astar)" - }, - { - "id": "zenlink_bitfrost_kusama", - "name": "Zenlink (Bifrost Kusama)" - }, - { - "id": "zenlink_moonbeam", - "name": "Zenlink (Moonbeam)" - }, - { - "id": "zenlink_moonriver", - "name": "Zenlink (Moonriver)" - }, - { - "id": "zero_ex", - "name": "0x Protocol" - }, - { - "id": "zigzag", - "name": "ZigZag (zkSync v1)" - }, - { - "id": "zigzag_arbitrum", - "name": "ZigZag (Arbitrum)" - }, - { - "id": "zilswap", - "name": "ZilSwap" - }, - { - "id": "zipmex", - "name": "Zipmex" - }, - { - "id": "zipswap", - "name": "ZipSwap" - }, - { - "id": "zircon", - "name": "Zircon" - }, - { - "id": "zkswap-finance", - "name": "zkSwap Finance" - }, - { - "id": "zora-energy-swap", - "name": "Zora Energy Swap" - }, - { - "id": "zora-energy-swap-v3", - "name": "Zora Energy Swap V3" - }, - { - "id": "zyberswap", - "name": "Zyberswap" - } -] \ No newline at end of file diff --git a/data/market_data.json b/data/market_data.json deleted file mode 100644 index 1273328..0000000 --- a/data/market_data.json +++ /dev/null @@ -1,2866 +0,0 @@ -[ - { - "ath": 1.003301, - "ath_change_percentage": -0.32896, - "ath_date": "2019-10-15T16:00:56.136Z", - "atl": 0.99895134, - "atl_change_percentage": 0.10498, - "atl_date": "2019-10-21T00:00:00.000Z", - "circulating_supply": 19681493.0, - "current_price": 1.0, - "fully_diluted_valuation": 21000000, - "high_24h": 1.0, - "id": "bitcoin", - "image": "https://assets.coingecko.com/coins/images/1/large/bitcoin.png?1696501400", - "last_updated": "2024-04-13T14:49:50.355Z", - "low_24h": 1.0, - "market_cap": 19681493, - "market_cap_change_24h": 1006, - "market_cap_change_percentage_24h": 0.00511, - "market_cap_rank": 1, - "max_supply": 21000000.0, - "name": "Bitcoin", - "price_change_24h": 0.0, - "price_change_percentage_24h": 0.0, - "roi": null, - "symbol": "btc", - "total_supply": 21000000.0, - "total_volume": 566895 - }, - { - "ath": 0.1474984, - "ath_change_percentage": -67.25233, - "ath_date": "2017-06-12T00:00:00.000Z", - "atl": 0.00160204, - "atl_change_percentage": 2915.04203, - "atl_date": "2015-10-20T00:00:00.000Z", - "circulating_supply": 120070454.784932, - "current_price": 0.04829396, - "fully_diluted_valuation": 5799678, - "high_24h": 0.04986028, - "id": "ethereum", - "image": "https://assets.coingecko.com/coins/images/279/large/ethereum.png?1696501628", - "last_updated": "2024-04-13T14:49:44.042Z", - "low_24h": 0.04786165, - "market_cap": 5799678, - "market_cap_change_24h": -161094.3187539857, - "market_cap_change_percentage_24h": -2.70257, - "market_cap_rank": 2, - "max_supply": null, - "name": "Ethereum", - "price_change_24h": -0.001402741288563034, - "price_change_percentage_24h": -2.8226, - "roi": { - "currency": "btc", - "percentage": 6356.929575270398, - "times": 63.56929575270399 - }, - "symbol": "eth", - "total_supply": 120070454.784932, - "total_volume": 395748 - }, - { - "ath": 0.01916831, - "ath_change_percentage": -54.27596, - "ath_date": "2022-11-27T02:54:58.041Z", - "atl": 6.99e-06, - "atl_change_percentage": 125286.62126, - "atl_date": "2017-10-19T00:00:00.000Z", - "circulating_supply": 153856150.0, - "current_price": 0.0087448, - "fully_diluted_valuation": 1348476, - "high_24h": 0.00893537, - "id": "binancecoin", - "image": "https://assets.coingecko.com/coins/images/825/large/bnb-icon2_2x.png?1696501970", - "last_updated": "2024-04-13T14:49:54.185Z", - "low_24h": 0.00858629, - "market_cap": 1348476, - "market_cap_change_24h": -1112.5652382038534, - "market_cap_change_percentage_24h": -0.08244, - "market_cap_rank": 4, - "max_supply": 200000000.0, - "name": "BNB", - "price_change_24h": -3.2227367987516e-05, - "price_change_percentage_24h": -0.36718, - "roi": null, - "symbol": "bnb", - "total_supply": 153856150.0, - "total_volume": 47626 - }, - { - "ath": 0.00460798, - "ath_change_percentage": -51.67559, - "ath_date": "2021-09-09T02:24:33.650Z", - "atl": 4.553e-05, - "atl_change_percentage": 4790.71105, - "atl_date": "2020-12-27T11:19:57.793Z", - "circulating_supply": 446456087.625132, - "current_price": 0.00222587, - "fully_diluted_valuation": 1277951, - "high_24h": 0.00242302, - "id": "solana", - "image": "https://assets.coingecko.com/coins/images/4128/large/solana.png?1696504756", - "last_updated": "2024-04-13T14:49:51.795Z", - "low_24h": 0.00221389, - "market_cap": 994320, - "market_cap_change_24h": -79875.40692776616, - "market_cap_change_percentage_24h": -7.43584, - "market_cap_rank": 5, - "max_supply": null, - "name": "Solana", - "price_change_24h": -0.00018397476411234, - "price_change_percentage_24h": -7.63431, - "roi": null, - "symbol": "sol", - "total_supply": 573808225.952739, - "total_volume": 93079 - }, - { - "ath": 0.00016834, - "ath_change_percentage": -41.39852, - "ath_date": "2022-12-18T14:10:00.817Z", - "atl": 1.015e-05, - "atl_change_percentage": 872.28136, - "atl_date": "2021-10-19T11:57:44.931Z", - "circulating_supply": 3470767461.12746, - "current_price": 9.913e-05, - "fully_diluted_valuation": 503158, - "high_24h": 0.00010227, - "id": "the-open-network", - "image": "https://assets.coingecko.com/coins/images/17980/large/ton_symbol.png?1696517498", - "last_updated": "2024-04-13T14:49:54.462Z", - "low_24h": 8.981e-05, - "market_cap": 342071, - "market_cap_change_24h": -9823.737827037694, - "market_cap_change_percentage_24h": -2.79167, - "market_cap_rank": 10, - "max_supply": null, - "name": "Toncoin", - "price_change_24h": -2.598644107384e-06, - "price_change_percentage_24h": -2.5545, - "roi": null, - "symbol": "ton", - "total_supply": 5105205136.66519, - "total_volume": 13659 - }, - { - "ath": 7.382e-05, - "ath_change_percentage": -89.87584, - "ath_date": "2018-01-04T00:00:00.000Z", - "atl": 2.95e-06, - "atl_change_percentage": 153.3382, - "atl_date": "2017-11-04T00:00:00.000Z", - "circulating_supply": 35283502633.1346, - "current_price": 7.46e-06, - "fully_diluted_valuation": 336322, - "high_24h": 8.14e-06, - "id": "cardano", - "image": "https://assets.coingecko.com/coins/images/975/large/cardano.png?1696502090", - "last_updated": "2024-04-13T14:49:51.063Z", - "low_24h": 7.04e-06, - "market_cap": 263703, - "market_cap_change_24h": -22121.54658141185, - "market_cap_change_percentage_24h": -7.73956, - "market_cap_rank": 11, - "max_supply": 45000000000.0, - "name": "Cardano", - "price_change_24h": -6.4752962298e-07, - "price_change_percentage_24h": -7.98185, - "roi": null, - "symbol": "ada", - "total_supply": 45000000000.0, - "total_volume": 18328 - }, - { - "ath": 0.00258643, - "ath_change_percentage": -78.04574, - "ath_date": "2021-12-22T02:20:07.678Z", - "atl": 9.735e-05, - "atl_change_percentage": 483.29995, - "atl_date": "2020-12-31T21:37:36.652Z", - "circulating_supply": 377915680.081583, - "current_price": 0.00056642, - "fully_diluted_valuation": 248069, - "high_24h": 0.00063821, - "id": "avalanche-2", - "image": "https://assets.coingecko.com/coins/images/12559/large/Avalanche_Circle_RedWhite_Trans.png?1696512369", - "last_updated": "2024-04-13T14:49:55.290Z", - "low_24h": 0.00056384, - "market_cap": 214723, - "market_cap_change_24h": -25767.87138557207, - "market_cap_change_percentage_24h": -10.71469, - "market_cap_rank": 13, - "max_supply": 720000000.0, - "name": "Avalanche", - "price_change_24h": -7.1139728832296e-05, - "price_change_percentage_24h": -11.15812, - "roi": null, - "symbol": "avax", - "total_supply": 436605305.84744, - "total_volume": 18521 - }, - { - "ath": 0.28458493, - "ath_change_percentage": -97.23679, - "ath_date": "2017-08-02T00:00:00.000Z", - "atl": 0.00366482, - "atl_change_percentage": 114.57241, - "atl_date": "2023-06-10T04:31:00.559Z", - "circulating_supply": 19690849.8966508, - "current_price": 0.00784847, - "fully_diluted_valuation": 165168, - "high_24h": 0.00837904, - "id": "bitcoin-cash", - "image": "https://assets.coingecko.com/coins/images/780/large/bitcoin-cash-circle.png?1696501932", - "last_updated": "2024-04-13T14:49:53.411Z", - "low_24h": 0.00772909, - "market_cap": 154871, - "market_cap_change_24h": -9946.390722688171, - "market_cap_change_percentage_24h": -6.0348, - "market_cap_rank": 15, - "max_supply": 21000000.0, - "name": "Bitcoin Cash", - "price_change_24h": -0.000461753016599288, - "price_change_percentage_24h": -5.55645, - "roi": null, - "symbol": "bch", - "total_supply": 21000000.0, - "total_volume": 15988 - }, - { - "ath": 1.367e-05, - "ath_change_percentage": -87.63835, - "ath_date": "2018-01-04T00:00:00.000Z", - "atl": 1.75539e-07, - "atl_change_percentage": 862.706, - "atl_date": "2017-12-05T00:00:00.000Z", - "circulating_supply": 87647355287.8925, - "current_price": 1.69e-06, - "fully_diluted_valuation": 148118, - "high_24h": 1.75e-06, - "id": "tron", - "image": "https://assets.coingecko.com/coins/images/1094/large/tron-logo.png?1696502193", - "last_updated": "2024-04-13T14:49:36.043Z", - "low_24h": 1.69e-06, - "market_cap": 148117, - "market_cap_change_24h": -3337.7321366230026, - "market_cap_change_percentage_24h": -2.20377, - "market_cap_rank": 16, - "max_supply": null, - "name": "TRON", - "price_change_24h": -4.4046162072e-08, - "price_change_percentage_24h": -2.54073, - "roi": { - "currency": "usd", - "percentage": 5906.440112832847, - "times": 59.06440112832848 - }, - "symbol": "trx", - "total_supply": 87647355287.8925, - "total_volume": 9089 - }, - { - "ath": 0.00047394, - "ath_change_percentage": -82.14935, - "ath_date": "2022-01-16T22:09:45.873Z", - "atl": 3.195e-05, - "atl_change_percentage": 164.77113, - "atl_date": "2023-10-24T02:30:37.562Z", - "circulating_supply": 1065728011.89191, - "current_price": 8.458e-05, - "fully_diluted_valuation": 100183, - "high_24h": 9.504e-05, - "id": "near", - "image": "https://assets.coingecko.com/coins/images/10365/large/near.jpg?1696510367", - "last_updated": "2024-04-13T14:49:52.103Z", - "low_24h": 8.354e-05, - "market_cap": 90233, - "market_cap_change_24h": -9924.384019179575, - "market_cap_change_percentage_24h": -9.90883, - "market_cap_rank": 22, - "max_supply": null, - "name": "NEAR Protocol", - "price_change_24h": -1.0099431601661e-05, - "price_change_percentage_24h": -10.66665, - "roi": null, - "symbol": "near", - "total_supply": 1183246170.6779, - "total_volume": 13778 - }, - { - "ath": 0.00085901, - "ath_change_percentage": -82.66373, - "ath_date": "2023-01-26T14:25:17.390Z", - "atl": 0.00014259, - "atl_change_percentage": 4.44057, - "atl_date": "2024-04-13T02:00:04.547Z", - "circulating_supply": 424265501.377917, - "current_price": 0.00014885, - "fully_diluted_valuation": 162622, - "high_24h": 0.00016338, - "id": "aptos", - "image": "https://assets.coingecko.com/coins/images/26455/large/aptos_round.png?1696525528", - "last_updated": "2024-04-13T14:49:51.203Z", - "low_24h": 0.00014259, - "market_cap": 63258, - "market_cap_change_24h": -1984.5653924071667, - "market_cap_change_percentage_24h": -3.04182, - "market_cap_rank": 26, - "max_supply": null, - "name": "Aptos", - "price_change_24h": -1.4528621409146e-05, - "price_change_percentage_24h": -8.89242, - "roi": null, - "symbol": "apt", - "total_supply": 1090689417.1703, - "total_volume": 7073 - }, - { - "ath": 3.155e-05, - "ath_change_percentage": -93.55875, - "ath_date": "2019-03-15T13:19:44.119Z", - "atl": 1.49e-06, - "atl_change_percentage": 36.26655, - "atl_date": "2021-02-09T15:47:20.811Z", - "circulating_supply": 26653544324.5675, - "current_price": 2.03e-06, - "fully_diluted_valuation": 61070, - "high_24h": 2.15e-06, - "id": "crypto-com-chain", - "image": "https://assets.coingecko.com/coins/images/7310/large/cro_token_logo.png?1696507599", - "last_updated": "2024-04-13T14:49:49.075Z", - "low_24h": 1.99e-06, - "market_cap": 54258, - "market_cap_change_24h": -2989.279999910126, - "market_cap_change_percentage_24h": -5.22172, - "market_cap_rank": 31, - "max_supply": null, - "name": "Cronos", - "price_change_24h": -1.13947420471e-07, - "price_change_percentage_24h": -5.30396, - "roi": null, - "symbol": "cro", - "total_supply": 30000000000.0, - "total_volume": 579.406 - }, - { - "ath": 0.01848777, - "ath_change_percentage": -99.47097, - "ath_date": "2020-10-15T09:43:23.730Z", - "atl": 9.371e-05, - "atl_change_percentage": 4.36518, - "atl_date": "2024-04-12T18:55:15.633Z", - "circulating_supply": 538257224.0, - "current_price": 9.785e-05, - "fully_diluted_valuation": 191914, - "high_24h": 0.00011321, - "id": "filecoin", - "image": "https://assets.coingecko.com/coins/images/12817/large/filecoin.png?1696512609", - "last_updated": "2024-04-13T14:49:44.546Z", - "low_24h": 9.371e-05, - "market_cap": 52688, - "market_cap_change_24h": -7963.877564287999, - "market_cap_change_percentage_24h": -13.13054, - "market_cap_rank": 32, - "max_supply": 1960598288.0, - "name": "Filecoin", - "price_change_24h": -1.5129924181318e-05, - "price_change_percentage_24h": -13.39192, - "roi": null, - "symbol": "fil", - "total_supply": 1960598288.0, - "total_volume": 10710 - }, - { - "ath": 0.00165424, - "ath_change_percentage": -91.98636, - "ath_date": "2019-03-15T00:00:00.000Z", - "atl": 0.00013262, - "atl_change_percentage": -0.04393, - "atl_date": "2024-04-13T14:36:26.110Z", - "circulating_supply": 390688369.813272, - "current_price": 0.00013235, - "fully_diluted_valuation": 51824, - "high_24h": 0.00015189, - "id": "cosmos", - "image": "https://assets.coingecko.com/coins/images/1481/large/cosmos_hub.png?1696502525", - "last_updated": "2024-04-13T14:49:45.680Z", - "low_24h": 0.00013232, - "market_cap": 51792, - "market_cap_change_24h": -7415.313473010174, - "market_cap_change_percentage_24h": -12.52439, - "market_cap_rank": 33, - "max_supply": null, - "name": "Cosmos Hub", - "price_change_24h": -1.9407891816767e-05, - "price_change_percentage_24h": -12.78875, - "roi": { - "currency": "usd", - "percentage": 8839.639002813625, - "times": 88.39639002813625 - }, - "symbol": "atom", - "total_supply": 390930035.085365, - "total_volume": 6925 - }, - { - "ath": 3.199e-05, - "ath_change_percentage": -96.04316, - "ath_date": "2019-09-17T09:03:31.347Z", - "atl": 9.26031e-07, - "atl_change_percentage": 36.69027, - "atl_date": "2021-01-03T07:55:19.551Z", - "circulating_supply": 35733448211.3365, - "current_price": 1.26e-06, - "fully_diluted_valuation": 63303, - "high_24h": 1.38e-06, - "id": "hedera-hashgraph", - "image": "https://assets.coingecko.com/coins/images/3688/large/hbar.png?1696504364", - "last_updated": "2024-04-13T14:49:53.794Z", - "low_24h": 1.24e-06, - "market_cap": 45240, - "market_cap_change_24h": -3873.4515423189223, - "market_cap_change_percentage_24h": -7.88667, - "market_cap_rank": 41, - "max_supply": 50000000000.0, - "name": "Hedera", - "price_change_24h": -1.07978569423e-07, - "price_change_percentage_24h": -7.86653, - "roi": null, - "symbol": "hbar", - "total_supply": 50000000000.0, - "total_volume": 2202 - }, - { - "ath": 4.13e-06, - "ath_change_percentage": -54.98529, - "ath_date": "2023-11-19T21:45:36.425Z", - "atl": 5.696e-09, - "atl_change_percentage": 32539.33527, - "atl_date": "2022-06-01T06:54:10.263Z", - "circulating_supply": 23088387840.5108, - "current_price": 1.87e-06, - "fully_diluted_valuation": 43421, - "high_24h": 2.05e-06, - "id": "kaspa", - "image": "https://assets.coingecko.com/coins/images/25751/large/kaspa-icon-exchanges.png?1696524837", - "last_updated": "2024-04-13T14:49:56.580Z", - "low_24h": 1.7e-06, - "market_cap": 42983, - "market_cap_change_24h": -3695.279219634045, - "market_cap_change_percentage_24h": -7.91645, - "market_cap_rank": 42, - "max_supply": 28704026601.0, - "name": "Kaspa", - "price_change_24h": -1.53870403883e-07, - "price_change_percentage_24h": -7.62087, - "roi": null, - "symbol": "kas", - "total_supply": 23324042966.3169, - "total_volume": 1570 - }, - { - "ath": 0.00102122, - "ath_change_percentage": -61.28657, - "ath_date": "2023-12-24T05:35:15.371Z", - "atl": 4.354e-05, - "atl_change_percentage": 807.94339, - "atl_date": "2020-11-06T08:31:01.270Z", - "circulating_supply": 90042222.33, - "current_price": 0.00039455, - "fully_diluted_valuation": 39538, - "high_24h": 0.00045294, - "id": "injective-protocol", - "image": "https://assets.coingecko.com/coins/images/12882/large/Secondary_Symbol.png?1696512670", - "last_updated": "2024-04-13T14:49:56.065Z", - "low_24h": 0.00037677, - "market_cap": 35601, - "market_cap_change_24h": -4289.525639169973, - "market_cap_change_percentage_24h": -10.75324, - "market_cap_rank": 48, - "max_supply": null, - "name": "Injective", - "price_change_24h": -5.1101151670331e-05, - "price_change_percentage_24h": -11.46658, - "roi": null, - "symbol": "inj", - "total_supply": 100000000.0, - "total_volume": 6036 - }, - { - "ath": 0.03475393, - "ath_change_percentage": -94.69257, - "ath_date": "2018-01-09T00:00:00.000Z", - "atl": 0.00101492, - "atl_change_percentage": 81.74256, - "atl_date": "2014-12-18T00:00:00.000Z", - "circulating_supply": 18147820.3764146, - "current_price": 0.00184941, - "fully_diluted_valuation": null, - "high_24h": 0.00193672, - "id": "monero", - "image": "https://assets.coingecko.com/coins/images/69/large/monero_logo.png?1696501460", - "last_updated": "2024-04-13T14:49:52.672Z", - "low_24h": 0.00175585, - "market_cap": 33481, - "market_cap_change_24h": -1404.5170135365988, - "market_cap_change_percentage_24h": -4.02611, - "market_cap_rank": 53, - "max_supply": null, - "name": "Monero", - "price_change_24h": -7.9135061544027e-05, - "price_change_percentage_24h": -4.10335, - "roi": null, - "symbol": "xmr", - "total_supply": null, - "total_volume": 730.833 - }, - { - "ath": 7.792e-05, - "ath_change_percentage": -86.02272, - "ath_date": "2022-01-17T00:34:22.938Z", - "atl": 3.93034e-07, - "atl_change_percentage": 2670.98842, - "atl_date": "2020-05-08T14:49:58.253Z", - "circulating_supply": 2803634835.52659, - "current_price": 1.092e-05, - "fully_diluted_valuation": 34591, - "high_24h": 1.262e-05, - "id": "fantom", - "image": "https://assets.coingecko.com/coins/images/4001/large/Fantom_round.png?1696504642", - "last_updated": "2024-04-13T14:49:52.072Z", - "low_24h": 1.061e-05, - "market_cap": 30545, - "market_cap_change_24h": -4774.899093567059, - "market_cap_change_percentage_24h": -13.51907, - "market_cap_rank": 54, - "max_supply": 3175000000.0, - "name": "Fantom", - "price_change_24h": -1.679025189259e-06, - "price_change_percentage_24h": -13.33037, - "roi": { - "currency": "usd", - "percentage": 2357.8648886319083, - "times": 23.578648886319083 - }, - "symbol": "ftm", - "total_supply": 3175000000.0, - "total_volume": 7559 - }, - { - "ath": 1.446e-05, - "ath_change_percentage": -95.06039, - "ath_date": "2021-11-26T15:08:53.159Z", - "atl": 5e-09, - "atl_change_percentage": 14183.6946, - "atl_date": "2020-12-28T08:46:48.367Z", - "circulating_supply": 37891806449.388, - "current_price": 7.15517e-07, - "fully_diluted_valuation": 27133, - "high_24h": 8.15734e-07, - "id": "gala", - "image": "https://assets.coingecko.com/coins/images/12493/large/GALA_token_image_-_200PNG.png?1709725869", - "last_updated": "2024-04-13T14:49:52.058Z", - "low_24h": 6.74689e-07, - "market_cap": 27120, - "market_cap_change_24h": -3578.915932557069, - "market_cap_change_percentage_24h": -11.65818, - "market_cap_rank": 57, - "max_supply": 50000000000.0, - "name": "GALA", - "price_change_24h": -9.6721913648e-08, - "price_change_percentage_24h": -11.90806, - "roi": null, - "symbol": "gala", - "total_supply": 37909689315.1627, - "total_volume": 5019 - }, - { - "ath": 0.00157441, - "ath_change_percentage": -74.14847, - "ath_date": "2021-09-10T06:03:31.930Z", - "atl": 3.198e-05, - "atl_change_percentage": 1172.68603, - "atl_date": "2020-01-31T06:47:36.543Z", - "circulating_supply": 65454185.5381511, - "current_price": 0.00040854, - "fully_diluted_valuation": 26669, - "high_24h": 0.00042196, - "id": "arweave", - "image": "https://assets.coingecko.com/coins/images/4343/large/oRt6SiEN_400x400.jpg?1696504946", - "last_updated": "2024-04-13T14:49:52.547Z", - "low_24h": 0.00035054, - "market_cap": 26669, - "market_cap_change_24h": -169.22446913164094, - "market_cap_change_percentage_24h": -0.63053, - "market_cap_rank": 59, - "max_supply": 66000000.0, - "name": "Arweave", - "price_change_24h": -1.683041163795e-06, - "price_change_percentage_24h": -0.41027, - "roi": { - "currency": "usd", - "percentage": 3629.0661640551593, - "times": 36.2906616405516 - }, - "symbol": "ar", - "total_supply": 65454185.5381511, - "total_volume": 2709 - }, - { - "ath": 7.566e-05, - "ath_change_percentage": -76.18633, - "ath_date": "2023-05-03T12:00:26.430Z", - "atl": 1.232e-05, - "atl_change_percentage": 46.31374, - "atl_date": "2023-10-25T17:01:06.901Z", - "circulating_supply": 1295901469.41462, - "current_price": 1.804e-05, - "fully_diluted_valuation": 180339, - "high_24h": 2.044e-05, - "id": "sui", - "image": "https://assets.coingecko.com/coins/images/26375/large/sui_asset.jpeg?1696525453", - "last_updated": "2024-04-13T14:49:57.151Z", - "low_24h": 1.739e-05, - "market_cap": 23370, - "market_cap_change_24h": -3058.611659012342, - "market_cap_change_percentage_24h": -11.57302, - "market_cap_rank": 64, - "max_supply": 10000000000.0, - "name": "Sui", - "price_change_24h": -2.392496641586e-06, - "price_change_percentage_24h": -11.70988, - "roi": null, - "symbol": "sui", - "total_supply": 10000000000.0, - "total_volume": 7433 - }, - { - "ath": 0.0003803, - "ath_change_percentage": -99.26757, - "ath_date": "2019-06-20T14:51:19.480Z", - "atl": 2.76e-06, - "atl_change_percentage": 0.75054, - "atl_date": "2024-04-12T18:50:46.046Z", - "circulating_supply": 8125783627.96933, - "current_price": 2.78e-06, - "fully_diluted_valuation": 22634, - "high_24h": 3.2e-06, - "id": "algorand", - "image": "https://assets.coingecko.com/coins/images/4380/large/download.png?1696504978", - "last_updated": "2024-04-13T14:49:52.513Z", - "low_24h": 2.76e-06, - "market_cap": 22634, - "market_cap_change_24h": -3328.200833136878, - "market_cap_change_percentage_24h": -12.81947, - "market_cap_rank": 65, - "max_supply": 10000000000.0, - "name": "Algorand", - "price_change_24h": -4.17221930744e-07, - "price_change_percentage_24h": -13.04637, - "roi": { - "currency": "usd", - "percentage": -92.17379240973449, - "times": -0.921737924097345 - }, - "symbol": "algo", - "total_supply": 8125783514.12581, - "total_volume": 3060 - }, - { - "ath": 0.00082648, - "ath_change_percentage": -98.19866, - "ath_date": "2021-03-04T14:24:31.734Z", - "atl": 1.421e-05, - "atl_change_percentage": 4.80216, - "atl_date": "2023-10-24T07:10:35.187Z", - "circulating_supply": 1499068195.0, - "current_price": 1.49e-05, - "fully_diluted_valuation": 22356, - "high_24h": 1.661e-05, - "id": "flow", - "image": "https://assets.coingecko.com/coins/images/13446/large/5f6294c0c7a8cda55cb1c936_Flow_Wordmark.png?1696513210", - "last_updated": "2024-04-13T14:49:37.979Z", - "low_24h": 1.456e-05, - "market_cap": 22356, - "market_cap_change_24h": -2524.9153815222744, - "market_cap_change_percentage_24h": -10.14802, - "market_cap_rank": 68, - "max_supply": 1499068195.06697, - "name": "Flow", - "price_change_24h": -1.680931031588e-06, - "price_change_percentage_24h": -10.13535, - "roi": null, - "symbol": "flow", - "total_supply": 1499068195.06697, - "total_volume": 1314 - }, - { - "ath": 2.048e-05, - "ath_change_percentage": -60.3745, - "ath_date": "2024-01-03T21:20:26.826Z", - "atl": 3.1e-06, - "atl_change_percentage": 161.72438, - "atl_date": "2023-10-27T11:35:27.959Z", - "circulating_supply": 2675000000.0, - "current_price": 8.12e-06, - "fully_diluted_valuation": 81225, - "high_24h": 9.13e-06, - "id": "sei-network", - "image": "https://assets.coingecko.com/coins/images/28205/large/Sei_Logo_-_Transparent.png?1696527207", - "last_updated": "2024-04-13T14:49:53.869Z", - "low_24h": 7.83e-06, - "market_cap": 21728, - "market_cap_change_24h": -2692.9580718845937, - "market_cap_change_percentage_24h": -11.02733, - "market_cap_rank": 70, - "max_supply": null, - "name": "Sei", - "price_change_24h": -1.019039574837e-06, - "price_change_percentage_24h": -11.15597, - "roi": null, - "symbol": "sei", - "total_supply": 10000000000.0, - "total_volume": 2616 - }, - { - "ath": 0.00026558, - "ath_change_percentage": -91.01847, - "ath_date": "2023-02-08T12:55:39.828Z", - "atl": 8.58e-06, - "atl_change_percentage": 178.14938, - "atl_date": "2024-03-21T00:16:26.068Z", - "circulating_supply": 880158673.528684, - "current_price": 2.371e-05, - "fully_diluted_valuation": 50341, - "high_24h": 2.963e-05, - "id": "coredaoorg", - "image": "https://assets.coingecko.com/coins/images/28938/large/file_589.jpg?1701868471", - "last_updated": "2024-04-13T14:49:49.305Z", - "low_24h": 2.178e-05, - "market_cap": 21099, - "market_cap_change_24h": -4832.595629487918, - "market_cap_change_percentage_24h": -18.63591, - "market_cap_rank": 72, - "max_supply": 2100000000.0, - "name": "Core", - "price_change_24h": -5.762549730749e-06, - "price_change_percentage_24h": -19.54961, - "roi": null, - "symbol": "core", - "total_supply": 2100000000.0, - "total_volume": 2011 - }, - { - "ath": 8.73e-06, - "ath_change_percentage": -94.34106, - "ath_date": "2023-01-10T03:14:05.921Z", - "atl": 2.69315e-07, - "atl_change_percentage": 83.34535, - "atl_date": "2023-10-24T22:30:45.952Z", - "circulating_supply": 38585233403.3251, - "current_price": 4.94349e-07, - "fully_diluted_valuation": 50176, - "high_24h": 5.2265e-07, - "id": "flare-networks", - "image": "https://assets.coingecko.com/coins/images/28624/large/FLR-icon200x200.png?1696527609", - "last_updated": "2024-04-13T14:49:53.048Z", - "low_24h": 4.52278e-07, - "market_cap": 19015, - "market_cap_change_24h": -689.0295228284776, - "market_cap_change_percentage_24h": -3.49688, - "market_cap_rank": 80, - "max_supply": null, - "name": "Flare", - "price_change_24h": -1.7884178163e-08, - "price_change_percentage_24h": -3.49141, - "roi": null, - "symbol": "flr", - "total_supply": 101817321286.769, - "total_volume": 591.008 - }, - { - "ath": 7.63e-09, - "ath_change_percentage": -88.21068, - "ath_date": "2021-09-04T17:09:31.137Z", - "atl": 5.49673e-10, - "atl_change_percentage": 63.65091, - "atl_date": "2021-07-30T01:41:06.714Z", - "circulating_supply": 19687726548092.0, - "current_price": 8.98337e-10, - "fully_diluted_valuation": 18917, - "high_24h": 9.89968e-10, - "id": "ecash", - "image": "https://assets.coingecko.com/coins/images/16646/large/Logo_final-22.png?1696516207", - "last_updated": "2024-04-13T14:49:51.530Z", - "low_24h": 8.44116e-10, - "market_cap": 17735, - "market_cap_change_24h": -1135.0246501619367, - "market_cap_change_percentage_24h": -6.01485, - "market_cap_rank": 83, - "max_supply": 21000000000000.0, - "name": "eCash", - "price_change_24h": -5.9639769e-11, - "price_change_percentage_24h": -6.22559, - "roi": null, - "symbol": "xec", - "total_supply": 21000000000000.0, - "total_volume": 584.555 - }, - { - "ath": 0.00958979, - "ath_change_percentage": -93.41938, - "ath_date": "2021-11-23T08:59:12.407Z", - "atl": 0.00040416, - "atl_change_percentage": 56.14336, - "atl_date": "2020-11-18T12:30:07.583Z", - "circulating_supply": 26809617.0, - "current_price": 0.00062827, - "fully_diluted_valuation": 16877, - "high_24h": 0.00071534, - "id": "elrond-erd-2", - "image": "https://assets.coingecko.com/coins/images/12335/large/egld-token-logo.png?1696512162", - "last_updated": "2024-04-13T14:49:52.790Z", - "low_24h": 0.00061892, - "market_cap": 16874, - "market_cap_change_24h": -2239.1070211875267, - "market_cap_change_percentage_24h": -11.71517, - "market_cap_rank": 87, - "max_supply": 31415926.0, - "name": "MultiversX", - "price_change_24h": -8.5771713944216e-05, - "price_change_percentage_24h": -12.01214, - "roi": null, - "symbol": "egld", - "total_supply": 26814769.0, - "total_volume": 1014 - }, - { - "ath": 0.00044543, - "ath_change_percentage": -96.38689, - "ath_date": "2018-07-03T00:00:00.000Z", - "atl": 1.594e-05, - "atl_change_percentage": 0.94408, - "atl_date": "2024-04-12T18:56:37.614Z", - "circulating_supply": 977951220.924945, - "current_price": 1.608e-05, - "fully_diluted_valuation": 16071, - "high_24h": 1.776e-05, - "id": "tezos", - "image": "https://assets.coingecko.com/coins/images/976/large/Tezos-logo.png?1696502091", - "last_updated": "2024-04-13T14:49:53.561Z", - "low_24h": 1.594e-05, - "market_cap": 15739, - "market_cap_change_24h": -1583.6440332054444, - "market_cap_change_percentage_24h": -9.14199, - "market_cap_rank": 96, - "max_supply": null, - "name": "Tezos", - "price_change_24h": -1.659803636491e-06, - "price_change_percentage_24h": -9.35645, - "roi": { - "currency": "usd", - "percentage": 131.09044647632277, - "times": 1.3109044647632278 - }, - "symbol": "xtz", - "total_supply": 998562345.052715, - "total_volume": 1304 - }, - { - "ath": 1.638e-05, - "ath_change_percentage": -89.55898, - "ath_date": "2022-11-19T03:41:07.812Z", - "atl": 4.67615e-07, - "atl_change_percentage": 265.6391, - "atl_date": "2021-01-08T14:11:51.035Z", - "circulating_supply": 8888888888.0, - "current_price": 1.71e-06, - "fully_diluted_valuation": 15286, - "high_24h": 1.94e-06, - "id": "chiliz", - "image": "https://assets.coingecko.com/coins/images/8834/large/CHZ_Token_updated.png?1696508986", - "last_updated": "2024-04-13T14:49:49.783Z", - "low_24h": 1.71e-06, - "market_cap": 15286, - "market_cap_change_24h": -1909.059496071699, - "market_cap_change_percentage_24h": -11.10268, - "market_cap_rank": 98, - "max_supply": 8888888888.0, - "name": "Chiliz", - "price_change_24h": -2.26246678507e-07, - "price_change_percentage_24h": -11.686, - "roi": { - "currency": "usd", - "percentage": 424.95314997867683, - "times": 4.249531499786769 - }, - "symbol": "chz", - "total_supply": 8888888888.0, - "total_volume": 2033 - }, - { - "ath": 0.00011675, - "ath_change_percentage": -59.39123, - "ath_date": "2022-01-27T13:14:36.500Z", - "atl": 1.12e-05, - "atl_change_percentage": 323.37515, - "atl_date": "2022-06-15T10:15:40.854Z", - "circulating_supply": 312025523.554129, - "current_price": 4.74e-05, - "fully_diluted_valuation": 47512, - "high_24h": 5.06e-05, - "id": "ronin", - "image": "https://assets.coingecko.com/coins/images/20009/large/photo_2024-04-06_22-52-24.jpg?1712415367", - "last_updated": "2024-04-13T14:49:53.825Z", - "low_24h": 4.386e-05, - "market_cap": 14825, - "market_cap_change_24h": -956.484024168014, - "market_cap_change_percentage_24h": -6.06081, - "market_cap_rank": 101, - "max_supply": 1000000000.0, - "name": "Ronin", - "price_change_24h": -3.190874128544e-06, - "price_change_percentage_24h": -6.30662, - "roi": null, - "symbol": "ron", - "total_supply": 1000000000.0, - "total_volume": 610.748 - }, - { - "ath": 0.13725599, - "ath_change_percentage": -96.21763, - "ath_date": "2017-06-30T00:00:00.000Z", - "atl": 0.00129239, - "atl_change_percentage": 301.70014, - "atl_date": "2019-09-06T00:00:00.000Z", - "circulating_supply": 2589589.0, - "current_price": 0.00518573, - "fully_diluted_valuation": 15575, - "high_24h": 0.00527888, - "id": "gnosis", - "image": "https://assets.coingecko.com/coins/images/662/large/logo_square_simple_300px.png?1696501854", - "last_updated": "2024-04-13T14:49:42.216Z", - "low_24h": 0.00507936, - "market_cap": 13444, - "market_cap_change_24h": -159.57620454403695, - "market_cap_change_percentage_24h": -1.17305, - "market_cap_rank": 109, - "max_supply": 3000000.0, - "name": "Gnosis", - "price_change_24h": -8.7335488735e-05, - "price_change_percentage_24h": -1.65626, - "roi": null, - "symbol": "gno", - "total_supply": 3000000.0, - "total_volume": 83.559 - }, - { - "ath": 0.00046388, - "ath_change_percentage": -97.61138, - "ath_date": "2020-08-17T08:48:52.897Z", - "atl": 1.108e-05, - "atl_change_percentage": 0.0, - "atl_date": "2024-04-13T14:41:36.146Z", - "circulating_supply": 1082860629.0, - "current_price": 1.108e-05, - "fully_diluted_valuation": 12001, - "high_24h": 1.301e-05, - "id": "kava", - "image": "https://assets.coingecko.com/coins/images/9761/large/kava.png?1696509822", - "last_updated": "2024-04-13T14:49:53.626Z", - "low_24h": 1.106e-05, - "market_cap": 12001, - "market_cap_change_24h": -1968.4999614721182, - "market_cap_change_percentage_24h": -14.09149, - "market_cap_rank": 117, - "max_supply": null, - "name": "Kava", - "price_change_24h": -1.844090436415e-06, - "price_change_percentage_24h": -14.26358, - "roi": null, - "symbol": "kava", - "total_supply": 1082860628.0, - "total_volume": 538.233 - }, - { - "ath": 7.741e-05, - "ath_change_percentage": -96.12052, - "ath_date": "2020-09-04T00:13:55.189Z", - "atl": 2.85e-06, - "atl_change_percentage": 5.27159, - "atl_date": "2024-04-12T18:50:32.914Z", - "circulating_supply": 3622449607.52599, - "current_price": 3e-06, - "fully_diluted_valuation": 17816, - "high_24h": 3.34e-06, - "id": "klay-token", - "image": "https://assets.coingecko.com/coins/images/9672/large/klaytn.png?1696509742", - "last_updated": "2024-04-13T14:49:57.908Z", - "low_24h": 2.85e-06, - "market_cap": 10883, - "market_cap_change_24h": -1127.6964301367461, - "market_cap_change_percentage_24h": -9.38885, - "market_cap_rank": 123, - "max_supply": null, - "name": "Klaytn", - "price_change_24h": -3.20317806482e-07, - "price_change_percentage_24h": -9.64767, - "roi": null, - "symbol": "klay", - "total_supply": 5929831062.25584, - "total_volume": 529.812 - }, - { - "ath": 4.467e-05, - "ath_change_percentage": -78.0988, - "ath_date": "2021-04-03T11:55:34.211Z", - "atl": 3.43226e-07, - "atl_change_percentage": 2750.56578, - "atl_date": "2023-10-25T16:51:12.666Z", - "circulating_supply": 1084558448.74651, - "current_price": 9.79e-06, - "fully_diluted_valuation": 10632, - "high_24h": 1.051e-05, - "id": "aioz-network", - "image": "https://assets.coingecko.com/coins/images/14631/large/aioz-logo-200.png?1696514309", - "last_updated": "2024-04-13T14:49:55.907Z", - "low_24h": 9.24e-06, - "market_cap": 10615, - "market_cap_change_24h": -411.89646477392307, - "market_cap_change_percentage_24h": -3.73547, - "market_cap_rank": 127, - "max_supply": null, - "name": "AIOZ Network", - "price_change_24h": -4.14382598065e-07, - "price_change_percentage_24h": -4.06019, - "roi": null, - "symbol": "aioz", - "total_supply": 1086293223.17753, - "total_volume": 240.465 - }, - { - "ath": 5.431e-05, - "ath_change_percentage": -76.19892, - "ath_date": "2020-08-26T16:00:20.235Z", - "atl": 5.53687e-07, - "atl_change_percentage": 2234.54245, - "atl_date": "2023-12-18T10:40:18.160Z", - "circulating_supply": 810731946.9, - "current_price": 1.292e-05, - "fully_diluted_valuation": 11504, - "high_24h": 1.411e-05, - "id": "mantra-dao", - "image": "https://assets.coingecko.com/coins/images/12151/large/OM_Token.png?1696511991", - "last_updated": "2024-04-13T14:49:51.555Z", - "low_24h": 1.172e-05, - "market_cap": 10493, - "market_cap_change_24h": -731.9226438756741, - "market_cap_change_percentage_24h": -6.52076, - "market_cap_rank": 129, - "max_supply": 888888888.0, - "name": "MANTRA", - "price_change_24h": -9.13738044388e-07, - "price_change_percentage_24h": -6.60527, - "roi": null, - "symbol": "om", - "total_supply": 888888888.0, - "total_volume": 1365 - }, - { - "ath": 1.385e-05, - "ath_change_percentage": -89.13137, - "ath_date": "2022-01-15T03:31:11.062Z", - "atl": 1.07e-06, - "atl_change_percentage": 40.09076, - "atl_date": "2021-01-08T12:43:53.431Z", - "circulating_supply": 6729795897.58809, - "current_price": 1.5e-06, - "fully_diluted_valuation": 15049, - "high_24h": 1.69e-06, - "id": "oasis-network", - "image": "https://assets.coingecko.com/coins/images/13162/large/rose.png?1696512946", - "last_updated": "2024-04-13T14:49:56.622Z", - "low_24h": 1.44e-06, - "market_cap": 10128, - "market_cap_change_24h": -1234.980502803759, - "market_cap_change_percentage_24h": -10.86864, - "market_cap_rank": 135, - "max_supply": 10000000000.0, - "name": "Oasis Network", - "price_change_24h": -1.85895325519e-07, - "price_change_percentage_24h": -11.01638, - "roi": null, - "symbol": "rose", - "total_supply": 10000000000.0, - "total_volume": 1249 - }, - { - "ath": 1.013e-05, - "ath_change_percentage": -91.09067, - "ath_date": "2021-11-14T16:09:27.130Z", - "atl": 5.64196e-07, - "atl_change_percentage": 59.90076, - "atl_date": "2024-03-08T15:36:35.415Z", - "circulating_supply": 10421559756.4095, - "current_price": 9.00569e-07, - "fully_diluted_valuation": 11567, - "high_24h": 9.53386e-07, - "id": "radix", - "image": "https://assets.coingecko.com/coins/images/4374/large/Radix.png?1696504973", - "last_updated": "2024-04-13T14:49:56.395Z", - "low_24h": 8.5673e-07, - "market_cap": 9402, - "market_cap_change_24h": -468.9014470439688, - "market_cap_change_percentage_24h": -4.75041, - "market_cap_rank": 139, - "max_supply": 24000000000.0, - "name": "Radix", - "price_change_24h": -4.8289345842e-08, - "price_change_percentage_24h": -5.08921, - "roi": null, - "symbol": "xrd", - "total_supply": 12821571121.6564, - "total_volume": 109.26 - }, - { - "ath": 9.89e-06, - "ath_change_percentage": -83.8067, - "ath_date": "2022-01-17T13:34:36.289Z", - "atl": 1.33e-06, - "atl_change_percentage": 20.53893, - "atl_date": "2023-06-10T04:40:19.051Z", - "circulating_supply": 5626793302.0, - "current_price": 1.6e-06, - "fully_diluted_valuation": 13503, - "high_24h": 1.85e-06, - "id": "astar", - "image": "https://assets.coingecko.com/coins/images/22617/large/astr.png?1696521933", - "last_updated": "2024-04-13T14:49:46.014Z", - "low_24h": 1.6e-06, - "market_cap": 9022, - "market_cap_change_24h": -1406.0865395993678, - "market_cap_change_percentage_24h": -13.48383, - "market_cap_rank": 145, - "max_supply": null, - "name": "Astar", - "price_change_24h": -2.49124980561e-07, - "price_change_percentage_24h": -13.46495, - "roi": null, - "symbol": "astr", - "total_supply": 8421658741.0, - "total_volume": 911.1 - }, - { - "ath": 8.371e-05, - "ath_change_percentage": -93.74404, - "ath_date": "2021-11-25T09:53:41.955Z", - "atl": 2.24e-06, - "atl_change_percentage": 134.26719, - "atl_date": "2017-11-29T00:00:00.000Z", - "circulating_supply": 1438906273.22624, - "current_price": 5.24e-06, - "fully_diluted_valuation": 9417, - "high_24h": 6.16e-06, - "id": "enjincoin", - "image": "https://assets.coingecko.com/coins/images/1102/large/Symbol_Only_-_Purple.png?1709725966", - "last_updated": "2024-04-13T14:49:51.399Z", - "low_24h": 5.11e-06, - "market_cap": 7538, - "market_cap_change_24h": -1306.4638545804282, - "market_cap_change_percentage_24h": -14.77203, - "market_cap_rank": 163, - "max_supply": null, - "name": "Enjin Coin", - "price_change_24h": -9.17851679673e-07, - "price_change_percentage_24h": -14.90447, - "roi": null, - "symbol": "enj", - "total_supply": 1797695958.96408, - "total_volume": 1091 - }, - { - "ath": 0.00010752, - "ath_change_percentage": -42.85695, - "ath_date": "2024-04-09T11:05:27.037Z", - "atl": 5.599e-05, - "atl_change_percentage": 9.73044, - "atl_date": "2024-04-12T18:50:06.203Z", - "circulating_supply": 90000000.0, - "current_price": 6.131e-05, - "fully_diluted_valuation": 61676, - "high_24h": 6.711e-05, - "id": "saga-2", - "image": "https://assets.coingecko.com/coins/images/25691/large/zcPXETKs_400x400.jpg?1696524818", - "last_updated": "2024-04-13T14:49:51.980Z", - "low_24h": 5.599e-05, - "market_cap": 5551, - "market_cap_change_24h": -256.2946274544347, - "market_cap_change_percentage_24h": -4.41345, - "market_cap_rank": 206, - "max_supply": 1000000000.0, - "name": "Saga", - "price_change_24h": -2.970054123531e-06, - "price_change_percentage_24h": -4.62081, - "roi": null, - "symbol": "saga", - "total_supply": 1000000000.0, - "total_volume": 5832 - }, - { - "ath": 0.01722886, - "ath_change_percentage": -98.17297, - "ath_date": "2017-06-22T00:00:00.000Z", - "atl": 0.00030522, - "atl_change_percentage": 3.13059, - "atl_date": "2024-04-13T02:20:41.115Z", - "circulating_supply": 15987752.5799821, - "current_price": 0.00031468, - "fully_diluted_valuation": 6610, - "high_24h": 0.00033558, - "id": "decred", - "image": "https://assets.coingecko.com/coins/images/329/large/decred.png?1696501665", - "last_updated": "2024-04-13T14:49:46.734Z", - "low_24h": 0.00030522, - "market_cap": 5033, - "market_cap_change_24h": -300.3757727132743, - "market_cap_change_percentage_24h": -5.63246, - "market_cap_rank": 215, - "max_supply": null, - "name": "Decred", - "price_change_24h": -1.9202901289496e-05, - "price_change_percentage_24h": -5.75145, - "roi": null, - "symbol": "dcr", - "total_supply": 21000000.0, - "total_volume": 38.124781 - }, - { - "ath": 0.03375058, - "ath_change_percentage": -98.54801, - "ath_date": "2021-05-15T19:53:42.631Z", - "atl": 0.00046118, - "atl_change_percentage": 6.26215, - "atl_date": "2024-04-12T18:45:48.485Z", - "circulating_supply": 10262473.2665191, - "current_price": 0.00048934, - "fully_diluted_valuation": 15323, - "high_24h": 0.00053403, - "id": "chia", - "image": "https://assets.coingecko.com/coins/images/15174/large/zV5K5y9f_400x400.png?1696514829", - "last_updated": "2024-04-13T14:49:50.341Z", - "low_24h": 0.00046118, - "market_cap": 5030, - "market_cap_change_24h": -444.29179066028155, - "market_cap_change_percentage_24h": -8.11587, - "market_cap_rank": 216, - "max_supply": null, - "name": "Chia", - "price_change_24h": -4.3980050868041e-05, - "price_change_percentage_24h": -8.24649, - "roi": null, - "symbol": "xch", - "total_supply": 31262536.3081385, - "total_volume": 489.244 - }, - { - "ath": 5.495e-05, - "ath_change_percentage": -65.95881, - "ath_date": "2024-02-15T20:45:12.099Z", - "atl": 1.571e-05, - "atl_change_percentage": 19.10659, - "atl_date": "2024-02-01T05:41:28.321Z", - "circulating_supply": 236468750.0, - "current_price": 1.872e-05, - "fully_diluted_valuation": 39561, - "high_24h": 2.263e-05, - "id": "zetachain", - "image": "https://assets.coingecko.com/coins/images/26718/large/Twitter_icon.png?1696525788", - "last_updated": "2024-04-13T14:49:51.986Z", - "low_24h": 1.73e-05, - "market_cap": 4455, - "market_cap_change_24h": -849.2993605325564, - "market_cap_change_percentage_24h": -16.01221, - "market_cap_rank": 232, - "max_supply": 2100000000.0, - "name": "ZetaChain", - "price_change_24h": -3.78587297161e-06, - "price_change_percentage_24h": -16.81819, - "roi": null, - "symbol": "zeta", - "total_supply": 2100000000.0, - "total_volume": 972.307 - }, - { - "ath": 0.00046885, - "ath_change_percentage": -98.89826, - "ath_date": "2022-01-11T14:57:46.115Z", - "atl": 4.99e-06, - "atl_change_percentage": 3.45948, - "atl_date": "2024-04-13T01:56:55.487Z", - "circulating_supply": 856733629.0, - "current_price": 5.17e-06, - "fully_diluted_valuation": 5763, - "high_24h": 5.98e-06, - "id": "moonbeam", - "image": "https://assets.coingecko.com/coins/images/22459/large/glmr.png?1696521782", - "last_updated": "2024-04-13T14:49:46.968Z", - "low_24h": 4.99e-06, - "market_cap": 4431, - "market_cap_change_24h": -690.4910973251772, - "market_cap_change_percentage_24h": -13.48156, - "market_cap_rank": 234, - "max_supply": null, - "name": "Moonbeam", - "price_change_24h": -8.00570641219e-07, - "price_change_percentage_24h": -13.39977, - "roi": null, - "symbol": "glmr", - "total_supply": 1114148889.0, - "total_volume": 358.245 - }, - { - "ath": 0.00042402, - "ath_change_percentage": -96.39883, - "ath_date": "2021-11-11T13:19:44.324Z", - "atl": 3.31e-06, - "atl_change_percentage": 360.73487, - "atl_date": "2021-01-15T02:14:58.376Z", - "circulating_supply": 270582824.80446, - "current_price": 1.525e-05, - "fully_diluted_valuation": 15270, - "high_24h": 1.663e-05, - "id": "kadena", - "image": "https://assets.coingecko.com/coins/images/3693/large/800_x_800.png?1704378151", - "last_updated": "2024-04-13T14:49:53.150Z", - "low_24h": 1.365e-05, - "market_cap": 4132, - "market_cap_change_24h": -361.8360881414583, - "market_cap_change_percentage_24h": -8.0524, - "market_cap_rank": 243, - "max_supply": 1000000000.0, - "name": "Kadena", - "price_change_24h": -1.3266728793e-06, - "price_change_percentage_24h": -8.00198, - "roi": { - "currency": "usd", - "percentage": 3.0248324114961, - "times": 0.030248324114961 - }, - "symbol": "kda", - "total_supply": 1000000000.0, - "total_volume": 395.932 - }, - { - "ath": 2.536e-05, - "ath_change_percentage": -80.33186, - "ath_date": "2021-11-20T09:59:59.379Z", - "atl": 5.97628e-07, - "atl_change_percentage": 734.75614, - "atl_date": "2021-01-08T13:52:32.676Z", - "circulating_supply": 812434439.326204, - "current_price": 4.98e-06, - "fully_diluted_valuation": 4063, - "high_24h": 5.43e-06, - "id": "chromaway", - "image": "https://assets.coingecko.com/coins/images/5000/large/Chromia.png?1696505533", - "last_updated": "2024-04-13T14:49:53.469Z", - "low_24h": 4.68e-06, - "market_cap": 4063, - "market_cap_change_24h": -338.8285779298044, - "market_cap_change_percentage_24h": -7.69816, - "market_cap_rank": 246, - "max_supply": 978064789.0, - "name": "Chromia", - "price_change_24h": -4.55063435413e-07, - "price_change_percentage_24h": -8.37445, - "roi": { - "currency": "usd", - "percentage": 572.6041987464274, - "times": 5.726041987464274 - }, - "symbol": "chr", - "total_supply": 812434439.326204, - "total_volume": 504.951 - }, - { - "ath": 8.05e-05, - "ath_change_percentage": -83.78627, - "ath_date": "2023-02-17T16:41:39.301Z", - "atl": 1.214e-05, - "atl_change_percentage": 7.55276, - "atl_date": "2024-04-12T19:26:15.126Z", - "circulating_supply": 309736533.221, - "current_price": 1.305e-05, - "fully_diluted_valuation": 4686, - "high_24h": 1.335e-05, - "id": "aleph-zero", - "image": "https://assets.coingecko.com/coins/images/17212/large/azero-logo_coingecko.png?1698147162", - "last_updated": "2024-04-13T14:49:40.408Z", - "low_24h": 1.214e-05, - "market_cap": 4044, - "market_cap_change_24h": -75.57496769454019, - "market_cap_change_percentage_24h": -1.83453, - "market_cap_rank": 250, - "max_supply": null, - "name": "Aleph Zero", - "price_change_24h": -2.40736677829e-07, - "price_change_percentage_24h": -1.81119, - "roi": null, - "symbol": "azero", - "total_supply": 358880076.53653, - "total_volume": 51.316 - }, - { - "ath": 0.00017762, - "ath_change_percentage": -99.38279, - "ath_date": "2018-01-09T00:00:00.000Z", - "atl": 9.7092e-07, - "atl_change_percentage": 12.91063, - "atl_date": "2021-02-09T07:58:49.246Z", - "circulating_supply": 3432526915.20417, - "current_price": 1.1e-06, - "fully_diluted_valuation": 4133, - "high_24h": 1.24e-06, - "id": "wax", - "image": "https://assets.coingecko.com/coins/images/1372/large/WAX_Coin_Tickers_P_512px.png?1696502430", - "last_updated": "2024-04-13T14:49:39.358Z", - "low_24h": 1.07e-06, - "market_cap": 3763, - "market_cap_change_24h": -453.5642242237177, - "market_cap_change_percentage_24h": -10.75677, - "market_cap_rank": 261, - "max_supply": 3770303327.0, - "name": "WAX", - "price_change_24h": -1.34300403755e-07, - "price_change_percentage_24h": -10.90997, - "roi": { - "currency": "usd", - "percentage": -76.85111635832763, - "times": -0.7685111635832763 - }, - "symbol": "waxp", - "total_supply": 3770303327.0, - "total_volume": 168.772 - }, - { - "ath": 5.1e-06, - "ath_change_percentage": -50.18436, - "ath_date": "2024-03-13T13:00:51.153Z", - "atl": 1.15e-06, - "atl_change_percentage": 120.35401, - "atl_date": "2023-12-18T11:05:35.554Z", - "circulating_supply": 1404000000.0, - "current_price": 2.55e-06, - "fully_diluted_valuation": 3587, - "high_24h": 2.89e-06, - "id": "vanar-chain", - "image": "https://assets.coingecko.com/coins/images/33466/large/apple-touch-icon.png?1701942541", - "last_updated": "2024-04-13T14:49:48.247Z", - "low_24h": 2.4e-06, - "market_cap": 3587, - "market_cap_change_24h": -464.98406130444937, - "market_cap_change_percentage_24h": -11.47426, - "market_cap_rank": 267, - "max_supply": 2400000000.0, - "name": "Vanar Chain", - "price_change_24h": -3.33000737411e-07, - "price_change_percentage_24h": -11.55722, - "roi": null, - "symbol": "vanry", - "total_supply": 1404000000.0, - "total_volume": 664.214 - }, - { - "ath": 7.416e-05, - "ath_change_percentage": -44.46061, - "ath_date": "2024-02-26T01:04:42.034Z", - "atl": 1.8e-07, - "atl_change_percentage": 22783.64887, - "atl_date": "2023-07-03T19:24:56.142Z", - "circulating_supply": 74918779.7951237, - "current_price": 4.089e-05, - "fully_diluted_valuation": 8041, - "high_24h": 4.347e-05, - "id": "alephium", - "image": "https://assets.coingecko.com/coins/images/21598/large/Alephium-Logo_200x200_listing.png?1696520959", - "last_updated": "2024-04-13T14:49:19.628Z", - "low_24h": 4.054e-05, - "market_cap": 3088, - "market_cap_change_24h": -130.02233902266016, - "market_cap_change_percentage_24h": -4.04103, - "market_cap_rank": 301, - "max_supply": 1000000000.0, - "name": "Alephium", - "price_change_24h": -2.148583433267e-06, - "price_change_percentage_24h": -4.99238, - "roi": null, - "symbol": "alph", - "total_supply": 195112918.611968, - "total_volume": 68.444 - }, - { - "ath": 0.0018999, - "ath_change_percentage": -90.43951, - "ath_date": "2021-02-19T23:29:50.620Z", - "atl": 5.751e-05, - "atl_change_percentage": 215.83991, - "atl_date": "2022-11-22T07:26:08.582Z", - "circulating_supply": 15840555.0, - "current_price": 0.00018144, - "fully_diluted_valuation": 3206, - "high_24h": 0.00019234, - "id": "oraichain-token", - "image": "https://assets.coingecko.com/coins/images/12931/large/orai.png?1696512718", - "last_updated": "2024-04-13T14:49:44.317Z", - "low_24h": 0.00017878, - "market_cap": 2877, - "market_cap_change_24h": -117.84019524164887, - "market_cap_change_percentage_24h": -3.93424, - "market_cap_rank": 312, - "max_supply": 19779272.0, - "name": "Oraichain", - "price_change_24h": -7.122859538482e-06, - "price_change_percentage_24h": -3.77738, - "roi": null, - "symbol": "orai", - "total_supply": 17650806.0, - "total_volume": 118.608 - }, - { - "ath": 0.00014967, - "ath_change_percentage": -97.66269, - "ath_date": "2018-07-03T22:14:43.428Z", - "atl": 8.70082e-07, - "atl_change_percentage": 302.07246, - "atl_date": "2016-01-19T00:00:00.000Z", - "circulating_supply": 775298708.760274, - "current_price": 3.49e-06, - "fully_diluted_valuation": 2742, - "high_24h": 3.82e-06, - "id": "syscoin", - "image": "https://assets.coingecko.com/coins/images/119/large/Syscoin.png?1696501494", - "last_updated": "2024-04-13T14:49:53.284Z", - "low_24h": 3.4e-06, - "market_cap": 2712, - "market_cap_change_24h": -245.14099459557747, - "market_cap_change_percentage_24h": -8.28903, - "market_cap_rank": 324, - "max_supply": null, - "name": "Syscoin", - "price_change_24h": -3.21538170028e-07, - "price_change_percentage_24h": -8.42639, - "roi": null, - "symbol": "sys", - "total_supply": 783921817.713538, - "total_volume": 71.662 - }, - { - "ath": 6.389e-05, - "ath_change_percentage": -91.28593, - "ath_date": "2019-07-22T07:49:23.013Z", - "atl": 1.35e-06, - "atl_change_percentage": 312.74705, - "atl_date": "2021-01-07T19:10:22.220Z", - "circulating_supply": 457027796.316325, - "current_price": 5.58e-06, - "fully_diluted_valuation": 2784, - "high_24h": 6.13e-06, - "id": "dusk-network", - "image": "https://assets.coingecko.com/coins/images/5217/large/image_widget_biddfvxd454b1.png?1696505726", - "last_updated": "2024-04-13T14:49:40.037Z", - "low_24h": 5.25e-06, - "market_cap": 2544, - "market_cap_change_24h": -257.7627908890845, - "market_cap_change_percentage_24h": -9.19849, - "market_cap_rank": 335, - "max_supply": 1000000000.0, - "name": "Dusk", - "price_change_24h": -5.31871012425e-07, - "price_change_percentage_24h": -8.70872, - "roi": { - "currency": "usd", - "percentage": 832.1739642695686, - "times": 8.321739642695686 - }, - "symbol": "dusk", - "total_supply": 500000000.0, - "total_volume": 465.799 - }, - { - "ath": 0.00102391, - "ath_change_percentage": -67.74409, - "ath_date": "2024-01-07T05:40:48.338Z", - "atl": 0.00011047, - "atl_change_percentage": 198.97075, - "atl_date": "2023-10-10T03:00:31.078Z", - "circulating_supply": 7354856.89999919, - "current_price": 0.0003303, - "fully_diluted_valuation": 3304, - "high_24h": 0.00035163, - "id": "tectum", - "image": "https://assets.coingecko.com/coins/images/29575/large/Icon_TET.png?1696528514", - "last_updated": "2024-04-13T14:49:38.956Z", - "low_24h": 0.00031908, - "market_cap": 2430, - "market_cap_change_24h": -152.51546112517326, - "market_cap_change_percentage_24h": -5.90526, - "market_cap_rank": 346, - "max_supply": 10000000.0, - "name": "Tectum", - "price_change_24h": -2.1329334020669e-05, - "price_change_percentage_24h": -6.0658, - "roi": null, - "symbol": "tet", - "total_supply": 10000000.0, - "total_volume": 31.530569 - }, - { - "ath": 0.00012576, - "ath_change_percentage": -95.96082, - "ath_date": "2020-04-26T13:18:47.279Z", - "atl": 2.96e-06, - "atl_change_percentage": 71.887, - "atl_date": "2021-01-08T12:20:55.432Z", - "circulating_supply": 426523329.862, - "current_price": 5.08e-06, - "fully_diluted_valuation": null, - "high_24h": 5.82e-06, - "id": "hive", - "image": "https://assets.coingecko.com/coins/images/10840/large/logo_transparent_4x.png?1696510797", - "last_updated": "2024-04-13T14:49:53.574Z", - "low_24h": 5.08e-06, - "market_cap": 2167, - "market_cap_change_24h": -259.19394748222066, - "market_cap_change_percentage_24h": -10.68421, - "market_cap_rank": 369, - "max_supply": null, - "name": "Hive", - "price_change_24h": -6.28989731126e-07, - "price_change_percentage_24h": -11.01861, - "roi": null, - "symbol": "hive", - "total_supply": null, - "total_volume": 63.545 - }, - { - "ath": 3.53e-06, - "ath_change_percentage": -91.4635, - "ath_date": "2021-01-17T21:37:35.063Z", - "atl": 6.0534e-08, - "atl_change_percentage": 397.64937, - "atl_date": "2023-05-15T18:34:40.770Z", - "circulating_supply": 6985165382.0, - "current_price": 3.00491e-07, - "fully_diluted_valuation": 2768, - "high_24h": 3.04312e-07, - "id": "cudos", - "image": "https://assets.coingecko.com/coins/images/13651/large/CudosIconTransparent.png?1696513400", - "last_updated": "2024-04-13T14:49:46.087Z", - "low_24h": 2.87139e-07, - "market_cap": 2105, - "market_cap_change_24h": -9.36143718032099, - "market_cap_change_percentage_24h": -0.44273, - "market_cap_rank": 377, - "max_supply": 10000000000.0, - "name": "Cudos", - "price_change_24h": -3.002009804e-09, - "price_change_percentage_24h": -0.98915, - "roi": null, - "symbol": "cudos", - "total_supply": 9185807314.0, - "total_volume": 13.163663 - }, - { - "ath": 5.54e-06, - "ath_change_percentage": -93.47472, - "ath_date": "2021-12-26T18:32:54.961Z", - "atl": 1.83671e-07, - "atl_change_percentage": 96.74675, - "atl_date": "2024-02-12T17:34:33.088Z", - "circulating_supply": 5577000000.0, - "current_price": 3.61849e-07, - "fully_diluted_valuation": 2825, - "high_24h": 4.19698e-07, - "id": "humans-ai", - "image": "https://assets.coingecko.com/coins/images/21273/large/h_logo_1x.png?1696520644", - "last_updated": "2024-04-13T14:49:05.560Z", - "low_24h": 3.48886e-07, - "market_cap": 2020, - "market_cap_change_24h": -296.33172675510605, - "market_cap_change_percentage_24h": -12.79383, - "market_cap_rank": 390, - "max_supply": 7800000000.0, - "name": "Humans.ai", - "price_change_24h": -5.5872405765e-08, - "price_change_percentage_24h": -13.37553, - "roi": null, - "symbol": "heart", - "total_supply": 7800000000.0, - "total_volume": 8.62163 - }, - { - "ath": 5.28e-06, - "ath_change_percentage": -79.73706, - "ath_date": "2023-02-17T23:46:15.971Z", - "atl": 1.05e-06, - "atl_change_percentage": 2.19293, - "atl_date": "2024-04-13T04:50:16.447Z", - "circulating_supply": 1858090982.0, - "current_price": 1.07e-06, - "fully_diluted_valuation": 10699, - "high_24h": 1.16e-06, - "id": "oasys", - "image": "https://assets.coingecko.com/coins/images/27909/large/OAS.png?1696526929", - "last_updated": "2024-04-13T14:49:56.836Z", - "low_24h": 1.05e-06, - "market_cap": 1988, - "market_cap_change_24h": -126.8528533559404, - "market_cap_change_percentage_24h": -5.99803, - "market_cap_rank": 393, - "max_supply": 10000000000.0, - "name": "Oasys", - "price_change_24h": -7.0391261098e-08, - "price_change_percentage_24h": -6.18238, - "roi": null, - "symbol": "oas", - "total_supply": 10000000000.0, - "total_volume": 22.521594 - }, - { - "ath": 3.99e-06, - "ath_change_percentage": -72.17251, - "ath_date": "2022-11-17T01:38:25.603Z", - "atl": 6.128e-09, - "atl_change_percentage": 18009.36338, - "atl_date": "2023-01-13T15:32:34.833Z", - "circulating_supply": 1700000000.0, - "current_price": 1.11e-06, - "fully_diluted_valuation": 2332, - "high_24h": 1.26e-06, - "id": "qanplatform", - "image": "https://assets.coingecko.com/coins/images/15977/large/qanx.png?1696515591", - "last_updated": "2024-04-13T14:49:22.021Z", - "low_24h": 1.06e-06, - "market_cap": 1888, - "market_cap_change_24h": -210.6987139114758, - "market_cap_change_percentage_24h": -10.03884, - "market_cap_rank": 412, - "max_supply": 3333333000.0, - "name": "QANplatform", - "price_change_24h": -1.34147752942e-07, - "price_change_percentage_24h": -10.8146, - "roi": null, - "symbol": "qanx", - "total_supply": 2099550000.0, - "total_volume": 24.507931 - }, - { - "ath": 0.01082116, - "ath_change_percentage": -98.13648, - "ath_date": "2021-09-11T11:40:35.912Z", - "atl": 0.00011677, - "atl_change_percentage": 72.7013, - "atl_date": "2023-10-25T08:20:12.142Z", - "circulating_supply": 8925991.0, - "current_price": 0.0002014, - "fully_diluted_valuation": 2278, - "high_24h": 0.0002451, - "id": "moonriver", - "image": "https://assets.coingecko.com/coins/images/17984/large/9285.png?1696517502", - "last_updated": "2024-04-13T14:49:39.582Z", - "low_24h": 0.00019287, - "market_cap": 1807, - "market_cap_change_24h": -372.8833112928419, - "market_cap_change_percentage_24h": -17.10845, - "market_cap_rank": 425, - "max_supply": null, - "name": "Moonriver", - "price_change_24h": -4.2821703103042e-05, - "price_change_percentage_24h": -17.53399, - "roi": null, - "symbol": "movr", - "total_supply": 11255325.0, - "total_volume": 362.782 - }, - { - "ath": 0.00029782, - "ath_change_percentage": -80.23985, - "ath_date": "2023-07-25T05:57:49.349Z", - "atl": 5.064e-05, - "atl_change_percentage": 16.20148, - "atl_date": "2024-04-05T07:24:53.378Z", - "circulating_supply": 30283651.48748234, - "current_price": 5.897e-05, - "fully_diluted_valuation": 2453, - "high_24h": 6.237e-05, - "id": "lukso-token-2", - "image": "https://assets.coingecko.com/coins/images/31010/large/LYX.png?1696529847", - "last_updated": "2024-04-13T14:49:47.051Z", - "low_24h": 5.796e-05, - "market_cap": 1774, - "market_cap_change_24h": -34.05527104841849, - "market_cap_change_percentage_24h": -1.88307, - "market_cap_rank": 429, - "max_supply": null, - "name": "LUKSO", - "price_change_24h": -6.80532616507e-07, - "price_change_percentage_24h": -1.1409, - "roi": null, - "symbol": "lyx", - "total_supply": 41862926.8264017, - "total_volume": 6.618856 - }, - { - "ath": 0.00042205, - "ath_change_percentage": -94.46138, - "ath_date": "2021-05-19T00:00:00.000Z", - "atl": 1.203e-05, - "atl_change_percentage": 94.26553, - "atl_date": "2021-01-04T05:34:15.556Z", - "circulating_supply": 74616285.0, - "current_price": 2.335e-05, - "fully_diluted_valuation": 2285, - "high_24h": 2.391e-05, - "id": "ergo", - "image": "https://assets.coingecko.com/coins/images/2484/large/Ergo.png?1696503303", - "last_updated": "2024-04-13T14:49:49.858Z", - "low_24h": 2.297e-05, - "market_cap": 1744, - "market_cap_change_24h": 9.611561, - "market_cap_change_percentage_24h": 0.55411, - "market_cap_rank": 437, - "max_supply": null, - "name": "Ergo", - "price_change_24h": 2.5462e-08, - "price_change_percentage_24h": 0.10915, - "roi": null, - "symbol": "erg", - "total_supply": 97739924.0, - "total_volume": 5.647825 - }, - { - "ath": 3.28e-05, - "ath_change_percentage": -91.86986, - "ath_date": "2023-02-07T18:11:01.341Z", - "atl": 2.47e-06, - "atl_change_percentage": 8.11497, - "atl_date": "2024-02-27T17:26:06.835Z", - "circulating_supply": 583124016.057424, - "current_price": 2.67e-06, - "fully_diluted_valuation": 2668, - "high_24h": 2.88e-06, - "id": "canto", - "image": "https://assets.coingecko.com/coins/images/26959/large/canto-network.png?1696526014", - "last_updated": "2024-04-13T14:49:40.477Z", - "low_24h": 2.65e-06, - "market_cap": 1556, - "market_cap_change_24h": -122.85626586340027, - "market_cap_change_percentage_24h": -7.31888, - "market_cap_rank": 472, - "max_supply": null, - "name": "CANTO", - "price_change_24h": -2.1260436999e-07, - "price_change_percentage_24h": -7.3852, - "roi": null, - "symbol": "canto", - "total_supply": 1000000000.0, - "total_volume": 180.381 - }, - { - "ath": 6.116e-05, - "ath_change_percentage": -94.47842, - "ath_date": "2019-02-24T21:47:21.877Z", - "atl": 1.61e-06, - "atl_change_percentage": 110.26797, - "atl_date": "2024-02-28T19:34:53.124Z", - "circulating_supply": 426782176.734934, - "current_price": 3.38e-06, - "fully_diluted_valuation": 1442, - "high_24h": 3.79e-06, - "id": "lto-network", - "image": "https://assets.coingecko.com/coins/images/6068/large/lto.png?1696506473", - "last_updated": "2024-04-13T14:49:33.368Z", - "low_24h": 3.16e-06, - "market_cap": 1442, - "market_cap_change_24h": -115.85246125007075, - "market_cap_change_percentage_24h": -7.4375, - "market_cap_rank": 497, - "max_supply": 500000000.0, - "name": "LTO Network", - "price_change_24h": -2.89562321014e-07, - "price_change_percentage_24h": -7.90068, - "roi": { - "currency": "usd", - "percentage": 659.993232377117, - "times": 6.59993232377117 - }, - "symbol": "lto", - "total_supply": 426795530.40265, - "total_volume": 272.401 - }, - { - "ath": 0.00024187, - "ath_change_percentage": -95.18687, - "ath_date": "2018-04-29T07:04:51.181Z", - "atl": 1.115e-05, - "atl_change_percentage": 4.41472, - "atl_date": "2024-04-13T01:55:50.743Z", - "circulating_supply": 98059690.5944444, - "current_price": 1.163e-05, - "fully_diluted_valuation": 1164, - "high_24h": 1.307e-05, - "id": "tomochain", - "image": "https://assets.coingecko.com/coins/images/3416/large/viction.jpeg?1698894318", - "last_updated": "2024-04-13T14:49:42.518Z", - "low_24h": 1.115e-05, - "market_cap": 1142, - "market_cap_change_24h": -139.51858069793548, - "market_cap_change_percentage_24h": -10.89015, - "market_cap_rank": 554, - "max_supply": null, - "name": "Viction", - "price_change_24h": -1.440232679893e-06, - "price_change_percentage_24h": -11.01698, - "roi": { - "currency": "usd", - "percentage": 214.29298844107004, - "times": 2.1429298844107003 - }, - "symbol": "vic", - "total_supply": 100000000.0, - "total_volume": 112.297 - }, - { - "ath": 3.692e-05, - "ath_change_percentage": -95.62235, - "ath_date": "2022-08-30T03:37:03.176Z", - "atl": 1.4e-06, - "atl_change_percentage": 15.31299, - "atl_date": "2024-04-05T06:44:43.327Z", - "circulating_supply": 656535978.525545, - "current_price": 1.62e-06, - "fully_diluted_valuation": 1734, - "high_24h": 1.71e-06, - "id": "agoric", - "image": "https://assets.coingecko.com/coins/images/24487/large/agoric_bld_logo.png?1696523668", - "last_updated": "2024-04-13T14:49:57.437Z", - "low_24h": 1.59e-06, - "market_cap": 1061, - "market_cap_change_24h": -50.15908973489445, - "market_cap_change_percentage_24h": -4.51447, - "market_cap_rank": 583, - "max_supply": null, - "name": "Agoric", - "price_change_24h": -7.496821679e-08, - "price_change_percentage_24h": -4.43411, - "roi": null, - "symbol": "bld", - "total_supply": 1073101297.28249, - "total_volume": 5.551801 - }, - { - "ath": 9.27102e-07, - "ath_change_percentage": -75.77591, - "ath_date": "2023-07-14T02:11:20.328Z", - "atl": 2.00084e-07, - "atl_change_percentage": 12.24377, - "atl_date": "2024-03-19T13:06:31.915Z", - "circulating_supply": 3781735012.14397, - "current_price": 2.27166e-07, - "fully_diluted_valuation": 899.649, - "high_24h": 2.57827e-07, - "id": "meld-2", - "image": "https://assets.coingecko.com/coins/images/30170/large/Twitter.jpg?1696529090", - "last_updated": "2024-04-13T14:49:56.521Z", - "low_24h": 2.23087e-07, - "market_cap": 850.559, - "market_cap_change_24h": -118.18330490511778, - "market_cap_change_percentage_24h": -12.19967, - "market_cap_rank": 657, - "max_supply": 4000000000.0, - "name": "MELD", - "price_change_24h": -3.0661478267e-08, - "price_change_percentage_24h": -11.89225, - "roi": null, - "symbol": "meld", - "total_supply": 4000000000.0, - "total_volume": 4.655407 - }, - { - "ath": 4.479e-05, - "ath_change_percentage": -81.01301, - "ath_date": "2023-08-08T09:49:29.073Z", - "atl": 2.16645e-07, - "atl_change_percentage": 3825.82855, - "atl_date": "2022-10-19T10:04:04.383Z", - "circulating_supply": 87652993.7944669, - "current_price": 8.51e-06, - "fully_diluted_valuation": 744.835, - "high_24h": 9.81e-06, - "id": "dynex", - "image": "https://assets.coingecko.com/coins/images/27776/large/Transparent_Logo.png?1696526797", - "last_updated": "2024-04-13T14:49:19.636Z", - "low_24h": 8.38e-06, - "market_cap": 744.777, - "market_cap_change_24h": -102.90287376789274, - "market_cap_change_percentage_24h": -12.13935, - "market_cap_rank": 701, - "max_supply": 110000000.0, - "name": "Dynex", - "price_change_24h": -1.184560750181e-06, - "price_change_percentage_24h": -12.22325, - "roi": null, - "symbol": "dnx", - "total_supply": 87659800.5980971, - "total_volume": 36.689362 - }, - { - "ath": 3.33e-06, - "ath_change_percentage": -97.67422, - "ath_date": "2022-02-10T12:22:15.949Z", - "atl": 7.2971e-08, - "atl_change_percentage": 6.16621, - "atl_date": "2024-04-12T21:55:39.286Z", - "circulating_supply": 9317944157.06287, - "current_price": 7.7449e-08, - "fully_diluted_valuation": 1010, - "high_24h": 7.8077e-08, - "id": "concordium", - "image": "https://assets.coingecko.com/coins/images/23547/large/Sf_cldmL_400x400.jpg?1696522754", - "last_updated": "2024-04-13T14:49:56.044Z", - "low_24h": 7.2971e-08, - "market_cap": 722.294, - "market_cap_change_24h": 21.120899, - "market_cap_change_percentage_24h": 3.01222, - "market_cap_rank": 717, - "max_supply": null, - "name": "Concordium", - "price_change_24h": 1.871e-09, - "price_change_percentage_24h": 2.47587, - "roi": null, - "symbol": "ccd", - "total_supply": 13033591231.5094, - "total_volume": 18.267987 - }, - { - "ath": 6.35e-06, - "ath_change_percentage": -64.59206, - "ath_date": "2023-12-24T00:00:00.000Z", - "atl": 1.54e-06, - "atl_change_percentage": 46.19732, - "atl_date": "2023-10-26T00:00:00.000Z", - "circulating_supply": 310403811.852787, - "current_price": 2.25e-06, - "fully_diluted_valuation": 2432, - "high_24h": 2.4e-06, - "id": "archway", - "image": "https://assets.coingecko.com/coins/images/30789/large/bxLJkEWw_400x400.jpg?1696529656", - "last_updated": "2024-04-13T14:49:36.141Z", - "low_24h": 2.21e-06, - "market_cap": 697.966, - "market_cap_change_24h": -37.45468098353251, - "market_cap_change_percentage_24h": -5.09296, - "market_cap_rank": 727, - "max_supply": null, - "name": "Archway", - "price_change_24h": -1.32888925013e-07, - "price_change_percentage_24h": -5.58295, - "roi": null, - "symbol": "arch", - "total_supply": 1081730935.75833, - "total_volume": 2.821783 - }, - { - "ath": 0.00038, - "ath_change_percentage": -87.90293, - "ath_date": "2019-05-14T05:44:31.581Z", - "atl": 8.01e-06, - "atl_change_percentage": 473.89359, - "atl_date": "2020-12-18T01:19:35.074Z", - "circulating_supply": 14199928.86, - "current_price": 4.599e-05, - "fully_diluted_valuation": null, - "high_24h": 4.969e-05, - "id": "zano", - "image": "https://assets.coingecko.com/coins/images/8370/large/zano.png?1696508563", - "last_updated": "2024-04-13T14:49:41.073Z", - "low_24h": 4.524e-05, - "market_cap": 652.755, - "market_cap_change_24h": -26.753945234590446, - "market_cap_change_percentage_24h": -3.93725, - "market_cap_rank": 759, - "max_supply": null, - "name": "Zano", - "price_change_24h": -2.058926695349e-06, - "price_change_percentage_24h": -4.28516, - "roi": null, - "symbol": "zano", - "total_supply": null, - "total_volume": 1.091866 - }, - { - "ath": 3.269e-05, - "ath_change_percentage": -36.95635, - "ath_date": "2024-02-25T12:44:46.860Z", - "atl": 4.22e-06, - "atl_change_percentage": 388.70648, - "atl_date": "2023-04-05T08:53:56.117Z", - "circulating_supply": 29156385.2917029, - "current_price": 2.061e-05, - "fully_diluted_valuation": 605.095, - "high_24h": 2.157e-05, - "id": "octaspace", - "image": "https://assets.coingecko.com/coins/images/29687/large/logo-256x256.png?1696528621", - "last_updated": "2024-04-13T14:49:57.379Z", - "low_24h": 1.914e-05, - "market_cap": 605.095, - "market_cap_change_24h": -18.036190656674876, - "market_cap_change_percentage_24h": -2.89444, - "market_cap_rank": 789, - "max_supply": 48000000.0, - "name": "OctaSpace", - "price_change_24h": -8.18248035703e-07, - "price_change_percentage_24h": -3.81929, - "roi": null, - "symbol": "octa", - "total_supply": 29156385.2917029, - "total_volume": 8.101007 - }, - { - "ath": 6.53101e-07, - "ath_change_percentage": -80.48975, - "ath_date": "2024-01-06T10:49:55.577Z", - "atl": 1.1939e-08, - "atl_change_percentage": 967.24299, - "atl_date": "2023-10-29T09:32:26.908Z", - "circulating_supply": 4684767098.87352, - "current_price": 1.27601e-07, - "fully_diluted_valuation": 1274, - "high_24h": 1.58749e-07, - "id": "picasso", - "image": "https://assets.coingecko.com/coins/images/28286/large/PICA.png?1696527286", - "last_updated": "2024-04-13T14:49:36.679Z", - "low_24h": 1.15114e-07, - "market_cap": 596.613, - "market_cap_change_24h": -121.18456466593511, - "market_cap_change_percentage_24h": -16.88283, - "market_cap_rank": 792, - "max_supply": 10000000000.0, - "name": "Picasso", - "price_change_24h": -2.5394962458e-08, - "price_change_percentage_24h": -16.59847, - "roi": null, - "symbol": "pica", - "total_supply": 10000000000.0, - "total_volume": 29.496178 - }, - { - "ath": 1.826e-05, - "ath_change_percentage": -69.14351, - "ath_date": "2023-02-03T17:19:44.908Z", - "atl": 7.63883e-07, - "atl_change_percentage": 637.60881, - "atl_date": "2023-08-04T08:09:03.690Z", - "circulating_supply": 97905259.853742, - "current_price": 5.65e-06, - "fully_diluted_valuation": 813.516, - "high_24h": 6.84e-06, - "id": "jackal-protocol", - "image": "https://assets.coingecko.com/coins/images/28025/large/Listing_Logo_-_JKL.png?1696527040", - "last_updated": "2024-04-13T14:47:22.034Z", - "low_24h": 5.26e-06, - "market_cap": 551.875, - "market_cap_change_24h": -114.65631215748385, - "market_cap_change_percentage_24h": -17.20195, - "market_cap_rank": 830, - "max_supply": 400000000.0, - "name": "Jackal Protocol", - "price_change_24h": -1.188183689953e-06, - "price_change_percentage_24h": -17.37961, - "roi": null, - "symbol": "jkl", - "total_supply": 144321653.107788, - "total_volume": 4.941214 - }, - { - "ath": 1.23e-06, - "ath_change_percentage": -89.22028, - "ath_date": "2021-03-22T05:38:18.728Z", - "atl": 2.295e-08, - "atl_change_percentage": 476.45052, - "atl_date": "2023-06-20T22:41:09.124Z", - "circulating_supply": 3895744487.0, - "current_price": 1.31302e-07, - "fully_diluted_valuation": 1384, - "high_24h": 1.39464e-07, - "id": "taraxa", - "image": "https://assets.coingecko.com/coins/images/4372/large/CPuCDZX.jpg?1696504972", - "last_updated": "2024-04-13T14:49:03.780Z", - "low_24h": 1.29225e-07, - "market_cap": 515.382, - "market_cap_change_24h": -15.398334341476925, - "market_cap_change_percentage_24h": -2.90107, - "market_cap_rank": 863, - "max_supply": 12000000000.0, - "name": "Taraxa", - "price_change_24h": -5.296760864e-09, - "price_change_percentage_24h": -3.87761, - "roi": null, - "symbol": "tara", - "total_supply": 10464838126.0, - "total_volume": 10.550289 - }, - { - "ath": 3.99e-06, - "ath_change_percentage": -71.08431, - "ath_date": "2019-07-19T01:33:08.118Z", - "atl": 1.8896e-08, - "atl_change_percentage": 6005.85929, - "atl_date": "2020-05-31T17:14:14.330Z", - "circulating_supply": 435960367.48, - "current_price": 1.15e-06, - "fully_diluted_valuation": 1650, - "high_24h": 1.19e-06, - "id": "thought", - "image": "https://assets.coingecko.com/coins/images/3071/large/IeNAK31H_400x400.jpg?1696503803", - "last_updated": "2024-04-13T14:46:27.189Z", - "low_24h": 1.13e-06, - "market_cap": 502.983, - "market_cap_change_24h": 0.49729942, - "market_cap_change_percentage_24h": 0.09897, - "market_cap_rank": 879, - "max_supply": 1618033988.0, - "name": "Thought", - "price_change_24h": -5.487865687e-09, - "price_change_percentage_24h": -0.4733, - "roi": null, - "symbol": "tht", - "total_supply": 1430467896.0, - "total_volume": 0.55586305 - }, - { - "ath": 0.00020819, - "ath_change_percentage": -99.55745, - "ath_date": "2022-08-02T16:01:09.339Z", - "atl": 9.08886e-07, - "atl_change_percentage": 1.37025, - "atl_date": "2024-04-13T06:10:46.764Z", - "circulating_supply": 497171367.624584, - "current_price": 9.21934e-07, - "fully_diluted_valuation": 925.05, - "high_24h": 9.86031e-07, - "id": "evmos", - "image": "https://assets.coingecko.com/coins/images/24023/large/evmos.png?1696523216", - "last_updated": "2024-04-13T14:49:55.524Z", - "low_24h": 9.08886e-07, - "market_cap": 459.909, - "market_cap_change_24h": -24.39776253059557, - "market_cap_change_percentage_24h": -5.03767, - "market_cap_rank": 923, - "max_supply": null, - "name": "Evmos", - "price_change_24h": -5.4736967528e-08, - "price_change_percentage_24h": -5.60444, - "roi": null, - "symbol": "evmos", - "total_supply": 1000000000.0, - "total_volume": 19.816589 - }, - { - "ath": 3.8e-05, - "ath_change_percentage": -98.45049, - "ath_date": "2020-07-31T10:55:41.770Z", - "atl": 4.93519e-07, - "atl_change_percentage": 19.31371, - "atl_date": "2024-01-09T21:16:25.336Z", - "circulating_supply": 723791561.056974, - "current_price": 5.8678e-07, - "fully_diluted_valuation": 589.185, - "high_24h": 6.55893e-07, - "id": "fio-protocol", - "image": "https://assets.coingecko.com/coins/images/11821/large/fio_light_favicon_square.png?1697267276", - "last_updated": "2024-04-13T14:49:41.509Z", - "low_24h": 5.73922e-07, - "market_cap": 426.447, - "market_cap_change_24h": -48.529851680198874, - "market_cap_change_percentage_24h": -10.21731, - "market_cap_rank": 963, - "max_supply": null, - "name": "FIO Protocol", - "price_change_24h": -6.8039375507e-08, - "price_change_percentage_24h": -10.39055, - "roi": null, - "symbol": "fio", - "total_supply": 1000000000.0, - "total_volume": 75.479 - }, - { - "ath": 0.00403414, - "ath_change_percentage": -99.99632, - "ath_date": "2017-11-17T00:00:00.000Z", - "atl": 1.2563e-07, - "atl_change_percentage": 18.3026, - "atl_date": "2024-01-09T21:15:11.775Z", - "circulating_supply": 2842767287.0, - "current_price": 1.48822e-07, - "fully_diluted_valuation": 964.863, - "high_24h": 1.76918e-07, - "id": "amber", - "image": "https://assets.coingecko.com/coins/images/1041/large/amb.png?1696502148", - "last_updated": "2024-04-13T14:49:39.922Z", - "low_24h": 1.41679e-07, - "market_cap": 422.504, - "market_cap_change_24h": -81.90127590439795, - "market_cap_change_percentage_24h": -16.2372, - "market_cap_rank": 968, - "max_supply": 6500000000.0, - "name": "AirDAO", - "price_change_24h": -2.8075587578e-08, - "price_change_percentage_24h": -15.87112, - "roi": { - "currency": "usd", - "percentage": -97.20770570784752, - "times": -0.9720770570784752 - }, - "symbol": "amb", - "total_supply": 6491966623.0, - "total_volume": 165.755 - }, - { - "ath": 1.96468e-07, - "ath_change_percentage": -82.42063, - "ath_date": "2023-11-27T01:44:52.492Z", - "atl": 8.666e-09, - "atl_change_percentage": 298.5429, - "atl_date": "2023-09-17T08:44:30.261Z", - "circulating_supply": 12115233127.046, - "current_price": 3.4529e-08, - "fully_diluted_valuation": 417.776, - "high_24h": 3.5674e-08, - "id": "neurai", - "image": "https://assets.coingecko.com/coins/images/30975/large/neurai-logo1.1_200px.png?1696529814", - "last_updated": "2024-04-13T14:49:56.485Z", - "low_24h": 3.2679e-08, - "market_cap": 417.776, - "market_cap_change_24h": -10.60269767008225, - "market_cap_change_percentage_24h": -2.47508, - "market_cap_rank": 973, - "max_supply": 21000000000.0, - "name": "Neurai", - "price_change_24h": -6.49175742e-10, - "price_change_percentage_24h": -1.84539, - "roi": null, - "symbol": "xna", - "total_supply": 12115473949.8986, - "total_volume": 13.329997 - }, - { - "ath": 1.479e-09, - "ath_change_percentage": -94.95792, - "ath_date": "2023-04-02T17:45:20.485Z", - "atl": 7.4262e-11, - "atl_change_percentage": 0.41621, - "atl_date": "2024-04-13T05:15:32.731Z", - "circulating_supply": 5129840000000.0, - "current_price": 7.4569e-11, - "fully_diluted_valuation": 382.353, - "high_24h": 8.5089e-11, - "id": "nexacoin", - "image": "https://assets.coingecko.com/coins/images/28729/large/200x200.png?1709182274", - "last_updated": "2024-04-13T14:49:42.639Z", - "low_24h": 7.4262e-11, - "market_cap": 382.353, - "market_cap_change_24h": -6.37555838380672, - "market_cap_change_percentage_24h": -1.64011, - "market_cap_rank": 1008, - "max_supply": 21000000000000.0, - "name": "Nexa", - "price_change_24h": -2.107462e-12, - "price_change_percentage_24h": -2.7485, - "roi": null, - "symbol": "nexa", - "total_supply": 5129840000000.0, - "total_volume": 7.892511 - }, - { - "ath": 4.881e-05, - "ath_change_percentage": -96.94778, - "ath_date": "2022-01-04T11:08:32.595Z", - "atl": 1.18e-06, - "atl_change_percentage": 26.39682, - "atl_date": "2024-02-22T12:51:00.537Z", - "circulating_supply": 251698072.0, - "current_price": 1.49e-06, - "fully_diluted_valuation": 1298, - "high_24h": 1.61e-06, - "id": "hathor", - "image": "https://assets.coingecko.com/coins/images/12718/large/hathor_logo.png?1696512519", - "last_updated": "2024-04-13T14:49:53.384Z", - "low_24h": 1.42e-06, - "market_cap": 375.662, - "market_cap_change_24h": -27.714471081517217, - "market_cap_change_percentage_24h": -6.87062, - "market_cap_rank": 1017, - "max_supply": null, - "name": "Hathor", - "price_change_24h": -1.08919213266e-07, - "price_change_percentage_24h": -6.79995, - "roi": null, - "symbol": "htr", - "total_supply": 869464480.0, - "total_volume": 11.230646 - }, - { - "ath": 5.047e-05, - "ath_change_percentage": -97.78692, - "ath_date": "2022-01-19T18:39:56.888Z", - "atl": 6.67343e-07, - "atl_change_percentage": 67.36664, - "atl_date": "2020-01-13T10:05:10.914Z", - "circulating_supply": 253529793.624016, - "current_price": 1.11e-06, - "fully_diluted_valuation": 409.643, - "high_24h": 1.18e-06, - "id": "fuse-network-token", - "image": "https://assets.coingecko.com/coins/images/10347/large/fuse.png?1696510348", - "last_updated": "2024-04-13T14:49:39.046Z", - "low_24h": 1.09e-06, - "market_cap": 282.938, - "market_cap_change_24h": -15.520317627894656, - "market_cap_change_percentage_24h": -5.20015, - "market_cap_rank": 1127, - "max_supply": null, - "name": "Fuse", - "price_change_24h": -6.4019412323e-08, - "price_change_percentage_24h": -5.43656, - "roi": null, - "symbol": "fuse", - "total_supply": 367064241.033772, - "total_volume": 24.21927 - }, - { - "ath": 3.01631e-07, - "ath_change_percentage": -91.19314, - "ath_date": "2023-04-15T11:01:15.209Z", - "atl": 1.3151e-08, - "atl_change_percentage": 101.99795, - "atl_date": "2022-10-25T18:55:01.410Z", - "circulating_supply": 10417568243.0861, - "current_price": 2.6706e-08, - "fully_diluted_valuation": 560.523, - "high_24h": 2.9731e-08, - "id": "radiant", - "image": "https://assets.coingecko.com/coins/images/27382/large/Radiant_new_circle.png?1696526425", - "last_updated": "2024-04-13T14:49:57.932Z", - "low_24h": 2.6564e-08, - "market_cap": 278.061, - "market_cap_change_24h": -5.22012851431424, - "market_cap_change_percentage_24h": -1.84273, - "market_cap_rank": 1141, - "max_supply": 21000000000.0, - "name": "Radiant", - "price_change_24h": -6.50211222e-10, - "price_change_percentage_24h": -2.37687, - "roi": null, - "symbol": "rxd", - "total_supply": 21000000000.0, - "total_volume": 1.791544 - }, - { - "ath": 9e-08, - "ath_change_percentage": -82.87566, - "ath_date": "2021-02-06T06:56:45.314Z", - "atl": 4.966e-09, - "atl_change_percentage": 210.33605, - "atl_date": "2023-11-01T23:30:56.902Z", - "circulating_supply": 17951327064.1611, - "current_price": 1.531e-08, - "fully_diluted_valuation": 454.701, - "high_24h": 1.5799e-08, - "id": "electra-protocol", - "image": "https://assets.coingecko.com/coins/images/13589/large/Apple-iPhone-Icon-Retina.png?1696513341", - "last_updated": "2024-04-13T14:49:08.913Z", - "low_24h": 1.4533e-08, - "market_cap": 276.695, - "market_cap_change_24h": 4.681466, - "market_cap_change_percentage_24h": 1.72104, - "market_cap_rank": 1143, - "max_supply": null, - "name": "Electra Protocol", - "price_change_24h": -4.234986e-12, - "price_change_percentage_24h": -0.02765, - "roi": null, - "symbol": "xep", - "total_supply": 29500005853.0, - "total_volume": 3.846148 - }, - { - "ath": 2.34e-06, - "ath_change_percentage": -94.58438, - "ath_date": "2022-01-03T14:11:01.610Z", - "atl": 1.06934e-07, - "atl_change_percentage": 18.51117, - "atl_date": "2024-04-10T22:40:42.816Z", - "circulating_supply": 2132604084.093, - "current_price": 1.26676e-07, - "fully_diluted_valuation": 379.71, - "high_24h": 1.30547e-07, - "id": "saito", - "image": "https://assets.coingecko.com/coins/images/14750/large/SAITO.png?1696514419", - "last_updated": "2024-04-13T14:49:29.092Z", - "low_24h": 1.17733e-07, - "market_cap": 269.924, - "market_cap_change_24h": 11.309003, - "market_cap_change_percentage_24h": 4.37292, - "market_cap_rank": 1155, - "max_supply": 8000000000.0, - "name": "Saito", - "price_change_24h": 5.247e-09, - "price_change_percentage_24h": 4.32107, - "roi": null, - "symbol": "saito", - "total_supply": 3000000000.0, - "total_volume": 6.5778 - }, - { - "ath": 5.195e-05, - "ath_change_percentage": -97.88421, - "ath_date": "2021-02-17T20:49:17.535Z", - "atl": 9.5797e-08, - "atl_change_percentage": 1047.42276, - "atl_date": "2023-11-14T03:05:12.413Z", - "circulating_supply": 224000000.0, - "current_price": 1.08e-06, - "fully_diluted_valuation": 324.404, - "high_24h": 1.18e-06, - "id": "kira-network", - "image": "https://assets.coingecko.com/coins/images/13232/large/KEX-200x200.png?1705676884", - "last_updated": "2024-04-13T14:49:10.632Z", - "low_24h": 1.03e-06, - "market_cap": 242.222, - "market_cap_change_24h": -7.825809906111459, - "market_cap_change_percentage_24h": -3.12973, - "market_cap_rank": 1207, - "max_supply": null, - "name": "KIRA Network", - "price_change_24h": -1.4170619579e-08, - "price_change_percentage_24h": -1.2918, - "roi": null, - "symbol": "kex", - "total_supply": 300000000.0, - "total_volume": 4.959251 - }, - { - "ath": 0.00010354, - "ath_change_percentage": -98.11725, - "ath_date": "2018-05-29T12:57:20.029Z", - "atl": 1.71e-06, - "atl_change_percentage": 13.82671, - "atl_date": "2021-01-14T14:43:52.163Z", - "circulating_supply": 124129197.661631, - "current_price": 1.93e-06, - "fully_diluted_valuation": 241.972, - "high_24h": 2.24e-06, - "id": "phantasma", - "image": "https://assets.coingecko.com/coins/images/4130/large/phantasma.png?1696504758", - "last_updated": "2024-04-13T14:49:03.673Z", - "low_24h": 1.9e-06, - "market_cap": 241.972, - "market_cap_change_24h": -12.837710945723217, - "market_cap_change_percentage_24h": -5.03816, - "market_cap_rank": 1211, - "max_supply": null, - "name": "Phantasma", - "price_change_24h": -1.63315747108e-07, - "price_change_percentage_24h": -7.80664, - "roi": { - "currency": "usd", - "percentage": -43.358735879410084, - "times": -0.4335873587941009 - }, - "symbol": "soul", - "total_supply": 124129197.661631, - "total_volume": 2.795029 - }, - { - "ath": 2.3346e-07, - "ath_change_percentage": -99.15484, - "ath_date": "2022-01-20T10:10:57.442Z", - "atl": 5.91876e-10, - "atl_change_percentage": 233.36377, - "atl_date": "2023-10-24T04:22:30.529Z", - "circulating_supply": 101983489294.0, - "current_price": 1.976e-09, - "fully_diluted_valuation": 205.702, - "high_24h": 2.427e-09, - "id": "chihuahua-token", - "image": "https://assets.coingecko.com/coins/images/22485/large/logo_transparent_notext.png?1696521808", - "last_updated": "2024-04-13T14:48:19.021Z", - "low_24h": 1.947e-09, - "market_cap": 201.426, - "market_cap_change_24h": -41.330876628351234, - "market_cap_change_percentage_24h": -17.02566, - "market_cap_rank": 1295, - "max_supply": null, - "name": "Chihuahua Chain", - "price_change_24h": -4.47925213e-10, - "price_change_percentage_24h": -18.47671, - "roi": null, - "symbol": "huahua", - "total_supply": 104148846663.0, - "total_volume": 3.738245 - }, - { - "ath": 8.27e-06, - "ath_change_percentage": -93.23711, - "ath_date": "2022-08-09T08:32:39.594Z", - "atl": 5.52147e-07, - "atl_change_percentage": 1.30643, - "atl_date": "2024-04-13T04:54:40.306Z", - "circulating_supply": 309544234.741792, - "current_price": 5.58866e-07, - "fully_diluted_valuation": 559.47, - "high_24h": 5.76711e-07, - "id": "aura-network", - "image": "https://assets.coingecko.com/coins/images/25768/large/LOGO-AURA-WHITE.png?1696524855", - "last_updated": "2024-04-13T14:49:25.666Z", - "low_24h": 5.52147e-07, - "market_cap": 173.181, - "market_cap_change_24h": -3.098201239669578, - "market_cap_change_percentage_24h": -1.75756, - "market_cap_rank": 1365, - "max_supply": 1000000000.0, - "name": "Aura Network", - "price_change_24h": -1.0854746671e-08, - "price_change_percentage_24h": -1.90528, - "roi": null, - "symbol": "aura", - "total_supply": 1000000000.0, - "total_volume": 3.551377 - }, - { - "ath": 5.69e-06, - "ath_change_percentage": -93.56587, - "ath_date": "2021-12-19T19:33:58.105Z", - "atl": 4.2879e-08, - "atl_change_percentage": 753.25551, - "atl_date": "2022-05-27T10:47:31.731Z", - "circulating_supply": 423159956.550211, - "current_price": 3.66028e-07, - "fully_diluted_valuation": 219.102, - "high_24h": 4.04691e-07, - "id": "white-whale", - "image": "https://assets.coingecko.com/coins/images/21628/large/whale.png?1696520988", - "last_updated": "2024-04-13T14:48:31.959Z", - "low_24h": 3.62583e-07, - "market_cap": 154.811, - "market_cap_change_24h": -14.939851675931578, - "market_cap_change_percentage_24h": -8.80106, - "market_cap_rank": 1428, - "max_supply": null, - "name": "White Whale", - "price_change_24h": -3.8315524192e-08, - "price_change_percentage_24h": -9.47599, - "roi": null, - "symbol": "whale", - "total_supply": 598894846.373455, - "total_volume": 2.148191 - }, - { - "ath": 0.00071368, - "ath_change_percentage": -71.75599, - "ath_date": "2024-03-17T08:25:40.907Z", - "atl": 8.43e-06, - "atl_change_percentage": 2291.64012, - "atl_date": "2021-08-22T22:13:18.965Z", - "circulating_supply": 748825.613, - "current_price": 0.00020186, - "fully_diluted_valuation": 150.944, - "high_24h": 0.00022886, - "id": "hacash", - "image": "https://assets.coingecko.com/coins/images/14765/large/hac_200.png?1701797420", - "last_updated": "2024-04-13T14:49:33.232Z", - "low_24h": 0.00019613, - "market_cap": 150.941, - "market_cap_change_24h": -16.33458908943686, - "market_cap_change_percentage_24h": -9.76507, - "market_cap_rank": 1438, - "max_supply": null, - "name": "Hacash", - "price_change_24h": -2.4961837519361e-05, - "price_change_percentage_24h": -11.00491, - "roi": null, - "symbol": "hac", - "total_supply": 748894.2128, - "total_volume": 0.98931227 - }, - { - "ath": 8.2384e-07, - "ath_change_percentage": -33.22761, - "ath_date": "2024-03-13T21:45:30.134Z", - "atl": 2.9284e-07, - "atl_change_percentage": 87.84926, - "atl_date": "2023-12-28T17:25:02.049Z", - "circulating_supply": 263617040.17583334, - "current_price": 5.48221e-07, - "fully_diluted_valuation": 549.432, - "high_24h": 5.83883e-07, - "id": "script-network", - "image": "https://assets.coingecko.com/coins/images/20869/large/8Z2SZTB.png?1700075234", - "last_updated": "2024-04-13T14:49:46.149Z", - "low_24h": 4.94953e-07, - "market_cap": 144.84, - "market_cap_change_24h": -0.9279960175793462, - "market_cap_change_percentage_24h": -0.63663, - "market_cap_rank": 1457, - "max_supply": 1000000000.0, - "name": "Script Network", - "price_change_24h": -1.145387418e-09, - "price_change_percentage_24h": -0.20849, - "roi": null, - "symbol": "scpt", - "total_supply": 1000000000.0, - "total_volume": 12.30861 - }, - { - "ath": 1.02e-06, - "ath_change_percentage": -89.83956, - "ath_date": "2022-01-31T01:31:06.289Z", - "atl": 7.7002e-08, - "atl_change_percentage": 35.13989, - "atl_date": "2023-03-23T12:38:51.474Z", - "circulating_supply": 1332927867.0, - "current_price": 1.0422e-07, - "fully_diluted_valuation": 259.373, - "high_24h": 1.27196e-07, - "id": "witnet", - "image": "https://assets.coingecko.com/coins/images/11109/large/wit.png?1696511049", - "last_updated": "2024-04-13T14:49:24.673Z", - "low_24h": 9.1571e-08, - "market_cap": 138.29, - "market_cap_change_24h": -22.273873395067085, - "market_cap_change_percentage_24h": -13.87227, - "market_cap_rank": 1475, - "max_supply": 2500000000.0, - "name": "Witnet", - "price_change_24h": -1.6481151371e-08, - "price_change_percentage_24h": -13.65456, - "roi": null, - "symbol": "wit", - "total_supply": 2500000000.0, - "total_volume": 3.087701 - }, - { - "ath": 0.00329246, - "ath_change_percentage": -98.98112, - "ath_date": "2013-12-25T00:00:00.000Z", - "atl": 8.98e-06, - "atl_change_percentage": 273.46593, - "atl_date": "2023-11-07T11:29:39.060Z", - "circulating_supply": 3807895.79754179, - "current_price": 3.353e-05, - "fully_diluted_valuation": 146.933, - "high_24h": 3.651e-05, - "id": "diamond", - "image": "https://assets.coingecko.com/coins/images/165/large/DMD_LOGO_BLUE.png?1696501536", - "last_updated": "2024-04-13T14:49:12.319Z", - "low_24h": 3.163e-05, - "market_cap": 127.741, - "market_cap_change_24h": 3.164259, - "market_cap_change_percentage_24h": 2.54001, - "market_cap_rank": 1515, - "max_supply": null, - "name": "Diamond", - "price_change_24h": 9.66537e-07, - "price_change_percentage_24h": 2.96782, - "roi": null, - "symbol": "dmd", - "total_supply": 4380000.0, - "total_volume": 0.44789587 - }, - { - "ath": 9.26e-06, - "ath_change_percentage": -93.5333, - "ath_date": "2022-07-18T19:45:36.630Z", - "atl": 2.50641e-07, - "atl_change_percentage": 138.84562, - "atl_date": "2023-09-13T17:34:53.882Z", - "circulating_supply": 152424438.765187, - "current_price": 5.98996e-07, - "fully_diluted_valuation": 597.602, - "high_24h": 6.21469e-07, - "id": "interlay", - "image": "https://assets.coingecko.com/coins/images/26180/large/Interlay-Coinbase-2.png?1696525267", - "last_updated": "2024-04-13T14:49:02.222Z", - "low_24h": 5.78005e-07, - "market_cap": 91.089, - "market_cap_change_24h": 0.77120483, - "market_cap_change_percentage_24h": 0.85388, - "market_cap_rank": 1704, - "max_supply": null, - "name": "Interlay", - "price_change_24h": 1.965e-09, - "price_change_percentage_24h": 0.3291, - "roi": null, - "symbol": "intr", - "total_supply": 1000000000.0, - "total_volume": 2.898046 - }, - { - "ath": 3.5e-06, - "ath_change_percentage": -91.20911, - "ath_date": "2024-01-12T22:33:39.803Z", - "atl": 3.01723e-07, - "atl_change_percentage": 1.97357, - "atl_date": "2024-04-13T14:40:53.441Z", - "circulating_supply": 288295913.584025, - "current_price": 3.03886e-07, - "fully_diluted_valuation": 331.383, - "high_24h": 4.37175e-07, - "id": "mainnetz", - "image": "https://assets.coingecko.com/coins/images/33947/large/zcM8MEO5_400x400.png?1703537595", - "last_updated": "2024-04-13T14:49:27.868Z", - "low_24h": 3.01723e-07, - "market_cap": 86.851, - "market_cap_change_24h": -38.66825046068554, - "market_cap_change_percentage_24h": -30.8066, - "market_cap_rank": 1727, - "max_supply": 1100000000.0, - "name": "MainnetZ", - "price_change_24h": -1.33289592465e-07, - "price_change_percentage_24h": -30.48881, - "roi": null, - "symbol": "netz", - "total_supply": 1100000000.0, - "total_volume": 4.637023 - }, - { - "ath": 5.172e-05, - "ath_change_percentage": -82.55568, - "ath_date": "2023-11-26T11:44:41.410Z", - "atl": 1.01e-06, - "atl_change_percentage": 793.15346, - "atl_date": "2023-10-28T06:49:45.223Z", - "circulating_supply": 8250000.0, - "current_price": 9.02e-06, - "fully_diluted_valuation": 90.229, - "high_24h": 1.006e-05, - "id": "liquidlayer", - "image": "https://assets.coingecko.com/coins/images/32547/large/photo_2023-10-08_12-09-02.jpg?1698474657", - "last_updated": "2024-04-13T14:42:45.341Z", - "low_24h": 8.64e-06, - "market_cap": 74.439, - "market_cap_change_24h": -9.082373770025228, - "market_cap_change_percentage_24h": -10.87436, - "market_cap_rank": 1810, - "max_supply": 10000000.0, - "name": "LiquidLayer", - "price_change_24h": -1.033899226728e-06, - "price_change_percentage_24h": -10.28064, - "roi": null, - "symbol": "lila", - "total_supply": 10000000.0, - "total_volume": 2.004954 - } -] \ No newline at end of file diff --git a/data/market_list.json b/data/market_list.json deleted file mode 100644 index 51ddcfb..0000000 --- a/data/market_list.json +++ /dev/null @@ -1,90 +0,0 @@ -[ - { - "ath": 1.003301, - "ath_change_percentage": -0.32896, - "ath_date": "2019-10-15T16:00:56.136Z", - "atl": 0.99895134, - "atl_change_percentage": 0.10498, - "atl_date": "2019-10-21T00:00:00.000Z", - "circulating_supply": 19681493.0, - "current_price": 1.0, - "fully_diluted_valuation": 21000000, - "high_24h": 1.0, - "id": "bitcoin", - "image": "https://assets.coingecko.com/coins/images/1/large/bitcoin.png?1696501400", - "last_updated": "2024-04-13T14:30:00.354Z", - "low_24h": 1.0, - "market_cap": 19681493, - "market_cap_change_24h": 1006, - "market_cap_change_percentage_24h": 0.00511, - "market_cap_rank": 1, - "max_supply": 21000000.0, - "name": "Bitcoin", - "price_change_24h": 0.0, - "price_change_percentage_24h": 0.0, - "roi": null, - "symbol": "btc", - "total_supply": 21000000.0, - "total_volume": 666215 - }, - { - "ath": 0.1474984, - "ath_change_percentage": -67.20127, - "ath_date": "2017-06-12T00:00:00.000Z", - "atl": 0.00160204, - "atl_change_percentage": 2919.74238, - "atl_date": "2015-10-20T00:00:00.000Z", - "circulating_supply": 120070454.784932, - "current_price": 0.04838277, - "fully_diluted_valuation": 5809341, - "high_24h": 0.04986028, - "id": "ethereum", - "image": "https://assets.coingecko.com/coins/images/279/large/ethereum.png?1696501628", - "last_updated": "2024-04-13T14:30:24.064Z", - "low_24h": 0.04786165, - "market_cap": 5809341, - "market_cap_change_24h": -151708.31284870673, - "market_cap_change_percentage_24h": -2.54499, - "market_cap_rank": 2, - "max_supply": null, - "name": "Ethereum", - "price_change_24h": -0.001263284078290218, - "price_change_percentage_24h": -2.54458, - "roi": { - "currency": "btc", - "percentage": 6368.803456116151, - "times": 63.68803456116151 - }, - "symbol": "eth", - "total_supply": 120070454.784932, - "total_volume": 401156 - }, - { - "ath": 0.0482909, - "ath_change_percentage": -97.37995, - "ath_date": "2013-11-28T00:00:00.000Z", - "atl": 0.00119299, - "atl_change_percentage": 6.05641, - "atl_date": "2024-02-29T00:00:21.395Z", - "circulating_supply": 74418489.4834713, - "current_price": 0.0012652, - "fully_diluted_valuation": 106277, - "high_24h": 0.00138868, - "id": "litecoin", - "image": "https://assets.coingecko.com/coins/images/2/large/litecoin.png?1696501400", - "last_updated": "2024-04-13T14:29:56.991Z", - "low_24h": 0.00124544, - "market_cap": 94154, - "market_cap_change_24h": -8111.681401661946, - "market_cap_change_percentage_24h": -7.93193, - "market_cap_rank": 20, - "max_supply": 84000000.0, - "name": "Litecoin", - "price_change_24h": -0.000110478822394236, - "price_change_percentage_24h": -8.03084, - "roi": null, - "symbol": "ltc", - "total_supply": 84000000.0, - "total_volume": 18001 - } -] \ No newline at end of file diff --git a/data/trending_data.json b/data/trending_data.json deleted file mode 100644 index 4bedb2d..0000000 --- a/data/trending_data.json +++ /dev/null @@ -1,1946 +0,0 @@ -{ - "categories": [ - { - "coins_count": 27, - "data": { - "market_cap": 1322690481.238544, - "market_cap_btc": 20354.57286700558, - "market_cap_change_percentage_24h": { - "aed": 7.9595012601788655, - "ars": 7.799753583049821, - "aud": 8.032767415667044, - "bch": -1.4458693561486262, - "bdt": 8.188075180991683, - "bhd": 7.90623671493384, - "bits": 6.304644204196854, - "bmd": 7.959501260178516, - "bnb": 5.692015151558384, - "brl": 7.961610462117825, - "btc": 6.304644204196838, - "cad": 7.832941833230247, - "chf": 8.006030183204464, - "clp": 9.15772289797863, - "cny": 7.987846484785993, - "czk": 7.914369585674928, - "dkk": 7.882314729078592, - "dot": 2.6537939656938123, - "eos": 4.322194731620209, - "eth": 3.3114316468881357, - "eur": 8.039241131612837, - "gbp": 7.9569460439078545, - "gel": 7.999950679909006, - "hkd": 7.915421258132758, - "huf": 7.800460880190155, - "idr": 7.800821256185558, - "ils": 8.062014121401479, - "inr": 7.737278235726876, - "jpy": 8.360629532679978, - "krw": 8.170573971165771, - "kwd": 7.885871233110543, - "link": 3.782801130411418, - "lkr": 8.187083085449357, - "ltc": 6.263061571544465, - "mmk": 8.18659805523388, - "mxn": 7.670352983505584, - "myr": 8.163262508231675, - "ngn": 7.929549978918739, - "nok": 7.698028563714223, - "nzd": 7.9027194052057395, - "php": 8.340221515422838, - "pkr": 8.187138746396684, - "pln": 7.831851367894517, - "rub": 7.949915915487872, - "sar": 7.922922867061145, - "sats": 6.304644204196834, - "sek": 7.777606604052726, - "sgd": 7.921346579718409, - "thb": 9.269354059291054, - "try": 8.101942306381934, - "twd": 8.069118437587019, - "uah": 8.085610903042534, - "usd": 7.959501260178516, - "vef": 7.959501260178505, - "vnd": 8.298260357197648, - "xag": 6.90051491110143, - "xau": 7.400112491105809, - "xdr": 8.187071091955294, - "xlm": 4.7826740189470645, - "xrp": 3.675827007871458, - "yfi": 1.6250772232283006, - "zar": 8.139048567336825 - }, - "sparkline": "https://www.coingecko.com/categories/25546484/sparkline.svg", - "total_volume": 103599303.84961134, - "total_volume_btc": 1594.2653319795556 - }, - "id": 337, - "market_cap_1h_change": -0.13976768976639217, - "name": "Base Meme Coins", - "slug": "base-meme-coins" - }, - { - "coins_count": 618, - "data": { - "market_cap": 51254592080.81116, - "market_cap_btc": 788744.868187622, - "market_cap_change_percentage_24h": { - "aed": 5.641398781086978, - "ars": 5.485081200263236, - "aud": 5.713091768353051, - "bch": -3.5746567182205307, - "bdt": 5.8650647709970505, - "bhd": 5.589277930217778, - "bits": 4.015675309832824, - "bmd": 5.641398781086903, - "bnb": 3.4176248211361866, - "brl": 5.643462694319041, - "btc": 4.015675309832822, - "cad": 5.517556833544635, - "chf": 5.6869286367721354, - "clp": 6.8138922475201475, - "cny": 5.669135378063747, - "czk": 5.597236172254387, - "dkk": 5.565869596371451, - "dot": 0.4397155223874875, - "eos": 2.060732075841168, - "eth": 1.1013061368739756, - "eur": 5.719426480905758, - "gbp": 5.6388984303268455, - "gel": 5.680979672350049, - "hkd": 5.598265263239622, - "huf": 5.4857733103452855, - "idr": 5.4861259483601, - "ils": 5.74171048988714, - "inr": 5.423947321322603, - "jpy": 6.033914041930535, - "krw": 5.847939346511116, - "kwd": 5.569349735278341, - "link": 1.5355434756924884, - "lkr": 5.864093977694169, - "ltc": 3.9934838317358876, - "mmk": 5.863619362029906, - "mxn": 5.358459085679824, - "myr": 5.840784875042668, - "ngn": 5.6120906126473455, - "nok": 5.385540416837981, - "nzd": 5.585836144036384, - "php": 6.013944224876725, - "pkr": 5.8641484434917155, - "pln": 5.516489782641044, - "rub": 5.6320192525682975, - "sar": 5.605605797894179, - "sats": 4.015675309832821, - "sek": 5.463409760392621, - "sgd": 5.604063356536003, - "thb": 6.923126468602657, - "try": 5.780781338334016, - "twd": 5.748662262454419, - "uah": 5.764800602292212, - "usd": 5.641398781086903, - "vef": 5.641398781086896, - "vnd": 5.972884055112244, - "xag": 4.605150948328182, - "xau": 5.094021187290235, - "xdr": 5.864082241724014, - "xlm": 2.54189098157724, - "xrp": 1.5010130109175097, - "yfi": -0.5450382305456131, - "zar": 5.817090855005127 - }, - "sparkline": "https://www.coingecko.com/categories/25546575/sparkline.svg", - "total_volume": 8375254866.047589, - "total_volume_btc": 128884.82821096525 - }, - "id": 113, - "market_cap_1h_change": -0.4162836680847137, - "name": "Meme", - "slug": "meme-token" - }, - { - "coins_count": 157, - "data": { - "market_cap": 63021242275.21016, - "market_cap_btc": 969819.0818299486, - "market_cap_change_percentage_24h": { - "aed": 9.015233748133179, - "ars": 8.85392390361126, - "aud": 9.089216370997677, - "bch": -0.482111684722769, - "bdt": 9.246042885960575, - "bhd": 8.961448330614626, - "bits": 7.344193898265228, - "bmd": 9.015233748132838, - "bnb": 6.725573965839586, - "brl": 9.017363575890009, - "btc": 7.344193898265228, - "cad": 8.887436700621967, - "chf": 9.062217675999426, - "clp": 10.225172756762085, - "cny": 9.043856159779383, - "czk": 8.96966073243691, - "dkk": 8.937292412429654, - "dot": 3.657642112788996, - "eos": 5.342358116104939, - "eth": 4.321710811700506, - "eur": 9.09575339320335, - "gbp": 9.012653544484506, - "gel": 9.056078721436917, - "hkd": 8.970722689165848, - "huf": 8.854638117387568, - "idr": 8.855002017488205, - "ils": 9.118749079326143, - "inr": 8.790837611877711, - "jpy": 9.420284641100057, - "krw": 9.228370532367078, - "kwd": 8.940883695400059, - "link": 4.797689802231268, - "lkr": 9.245041088747866, - "ltc": 7.3022046303865675, - "mmk": 9.244551315437521, - "mxn": 8.723257899769058, - "myr": 9.22098757087229, - "ngn": 8.984989574257648, - "nok": 8.751204118585763, - "nzd": 8.957896625227894, - "php": 9.399677054499016, - "pkr": 9.245097294001805, - "pln": 8.886335571660817, - "rub": 9.00555466866497, - "sar": 8.978297656086491, - "sats": 7.344193898265229, - "sek": 8.831560350019378, - "sgd": 8.976705954280598, - "thb": 10.337895555607956, - "try": 9.159067720742335, - "twd": 9.12592286839098, - "uah": 9.142576613135333, - "usd": 9.015233748132838, - "vef": 9.01523374813281, - "vnd": 9.357305559458153, - "xag": 7.945891605633474, - "xau": 8.450374734292277, - "xdr": 9.245028977969799, - "xlm": 5.807340415561211, - "xrp": 4.689669583190157, - "yfi": 2.618865582410024, - "zar": 9.196536842628786 - }, - "sparkline": "https://www.coingecko.com/categories/25546477/sparkline.svg", - "total_volume": 4413303675.902938, - "total_volume_btc": 67915.29275335364 - }, - "id": 231, - "market_cap_1h_change": -0.658868798517451, - "name": "DWF Labs Portfolio", - "slug": "dwf-labs-portfolio" - }, - { - "coins_count": 123, - "data": { - "market_cap": 1943156196735.6995, - "market_cap_btc": 29902773.898693457, - "market_cap_change_percentage_24h": { - "aed": 2.639650817103953, - "ars": 2.487774922829123, - "aud": 2.709306683685902, - "bch": -6.3145350349800395, - "bdt": 2.856961448815725, - "bhd": 2.589010954368032, - "bits": 1.0601214721690606, - "bmd": 2.6396508171038904, - "bnb": 0.4790642915648837, - "brl": 2.641656085264934, - "btc": 1.0601214721690635, - "cad": 2.5193277770938707, - "chf": 2.683886964515842, - "clp": 3.778828463070374, - "cny": 2.666599292430855, - "czk": 2.59674306690327, - "dkk": 2.566267756720905, - "dot": -2.4142291910588494, - "eos": -0.8392730191890541, - "eth": -1.7714373458327084, - "eur": 2.7154613985225, - "gbp": 2.6372215125708633, - "gel": 2.6781070369680102, - "hkd": 2.5977429167784565, - "huf": 2.4884473669463536, - "idr": 2.4887899849268447, - "ils": 2.737112218438221, - "inr": 2.4283781327452925, - "jpy": 3.021012951439703, - "krw": 2.8403226347749073, - "kwd": 2.569649009206405, - "link": -1.349538645679736, - "lkr": 2.856018240123167, - "ltc": 1.0385605539185887, - "mmk": 2.8555571104276694, - "mxn": 2.3647507128459098, - "myr": 2.833371454065692, - "ngn": 2.61117542573807, - "nok": 2.3910625414074977, - "nzd": 2.5856669648343735, - "php": 3.0016105668354065, - "pkr": 2.85607115830209, - "pln": 2.5182910459126195, - "rub": 2.6305378032373072, - "sar": 2.6048748737806067, - "sats": 1.060121472169053, - "sek": 2.466719266176613, - "sgd": 2.6033762601287926, - "thb": 3.884958847924696, - "try": 2.775072888099782, - "twd": 2.7438664598350426, - "uah": 2.759546236748576, - "usd": 2.6396508171038904, - "vef": 2.639650817103887, - "vnd": 2.96171710143508, - "xag": 1.6328474526885954, - "xau": 2.1078266862172885, - "xdr": 2.8560068376247925, - "xlm": -0.37178600517638377, - "xrp": -1.3830879444201023, - "yfi": -3.3710016543933885, - "zar": 2.8103506878587945 - }, - "sparkline": "https://www.coingecko.com/categories/25546564/sparkline.svg", - "total_volume": 87072517341.59013, - "total_volume_btc": 1339938.4996582349 - }, - "id": 98, - "market_cap_1h_change": -0.679972964815294, - "name": "Layer 1 (L1)", - "slug": "layer-1" - }, - { - "coins_count": 235, - "data": { - "market_cap": 671446505810.4719, - "market_cap_btc": 10332732.428843059, - "market_cap_change_percentage_24h": { - "aed": 4.406140279883355, - "ars": 4.251650511099366, - "aud": 4.476994965375398, - "bch": -4.689663539977234, - "bdt": 4.627190956870038, - "bhd": 4.354628874977977, - "bits": 2.805750912451717, - "bmd": 4.4061402798830365, - "bnb": 2.213285830057962, - "brl": 4.408180059902237, - "btc": 2.8057509124517193, - "cad": 4.283746408760403, - "chf": 4.451137757713292, - "clp": 5.564923850965475, - "cny": 4.433552554505341, - "czk": 4.362494061770819, - "dkk": 4.331494253366902, - "dot": -0.7249358514986102, - "eos": 0.8885514504719656, - "eth": -0.08894354702657717, - "eur": 4.483255606516591, - "gbp": 4.403669165573639, - "gel": 4.445258354173161, - "hkd": 4.363511119657146, - "huf": 4.252334528379862, - "idr": 4.252683043019965, - "ils": 4.505279049925557, - "inr": 4.191231466916177, - "jpy": 4.7940658834673515, - "krw": 4.610265778939227, - "kwd": 4.334933699219578, - "link": 0.3669113600999604, - "lkr": 4.626231514994591, - "ltc": 2.7655369236204073, - "mmk": 4.625762448982546, - "mxn": 4.126508981260709, - "myr": 4.603194964274118, - "ngn": 4.377174810088624, - "nok": 4.153273652048018, - "nzd": 4.351227333394388, - "php": 4.77432957227923, - "pkr": 4.6262853439268, - "pln": 4.2826918348184595, - "rub": 4.396870425625459, - "sar": 4.370765821883065, - "sats": 2.805750912451718, - "sek": 4.230232474067374, - "sgd": 4.369241416198489, - "thb": 5.672880802892347, - "try": 4.543893045299089, - "twd": 4.512149535835572, - "uah": 4.528099171039597, - "usd": 4.4061402798830365, - "vef": 4.406140279883024, - "vnd": 4.733749516602548, - "xag": 3.3820092305021547, - "xau": 3.865163139260208, - "xdr": 4.6262199162523725, - "xlm": 1.3338745994995318, - "xrp": 0.26345816594982113, - "yfi": -1.7197935830407236, - "zar": 4.57977799698278 - }, - "sparkline": "https://www.coingecko.com/categories/25546523/sparkline.svg", - "total_volume": 43613123869.219826, - "total_volume_btc": 671152.1102975836 - }, - "id": 29, - "market_cap_1h_change": -0.7563483853258894, - "name": "Smart Contract Platform", - "slug": "smart-contract-platform" - }, - { - "coins_count": 628, - "data": { - "market_cap": 92244907151.15744, - "market_cap_btc": 1419535.1904704426, - "market_cap_change_percentage_24h": { - "aed": 6.755074424571631, - "ars": 6.597108937865978, - "aud": 6.8275232020358025, - "bch": -2.545367207859984, - "bdt": 6.981098309853216, - "bhd": 6.702404113710146, - "bits": 5.118679423564411, - "bmd": 6.755074424571279, - "bnb": 4.5128850345049525, - "brl": 6.757160095655136, - "btc": 5.118679423564408, - "cad": 6.629926930508365, - "chf": 6.80108425772674, - "clp": 7.939928361717663, - "cny": 6.783103421808477, - "czk": 6.7104462518371015, - "dkk": 6.678749008318298, - "dot": 1.5085591064551394, - "eos": 3.1583467199348023, - "eth": 2.1588599950365808, - "eur": 6.833924695369245, - "gbp": 6.752547715018539, - "gel": 6.795072579095467, - "hkd": 6.711486191538503, - "huf": 6.597808344198677, - "idr": 6.598164699737195, - "ils": 6.856443623220677, - "inr": 6.535330583248629, - "jpy": 7.151727596222139, - "krw": 6.963792348491076, - "kwd": 6.682265834981918, - "link": 2.6249707468242045, - "lkr": 6.980117282410331, - "ltc": 5.0775606985633255, - "mmk": 6.979637663329585, - "mxn": 6.469151968134898, - "myr": 6.956562454312501, - "ngn": 6.725457288305585, - "nok": 6.496518791716248, - "nzd": 6.698926044087601, - "php": 7.131547256597404, - "pkr": 6.980172322388321, - "pln": 6.628848630713387, - "rub": 6.745596016706373, - "sar": 6.718904110388682, - "sats": 5.118679423564393, - "sek": 6.575209036852013, - "sgd": 6.717345408554912, - "thb": 8.050314134112908, - "try": 6.895926358037614, - "twd": 6.863468681638605, - "uah": 6.879777152468837, - "usd": 6.755074424571279, - "vef": 6.755074424571256, - "vnd": 7.0900542289622015, - "xag": 5.707902427751116, - "xau": 6.201926355364183, - "xdr": 6.980105422719088, - "xlm": 3.6136887696454694, - "xrp": 2.5191900579552056, - "yfi": 0.49131901992451366, - "zar": 6.932618651014321 - }, - "sparkline": "https://www.coingecko.com/categories/25546536/sparkline.svg", - "total_volume": 7342892763.291335, - "total_volume_btc": 112998.05050768066 - }, - "id": 45, - "market_cap_1h_change": -0.7592643283123482, - "name": "Decentralized Finance (DeFi)", - "slug": "decentralized-finance-defi" - } - ], - "coins": [ - { - "item": { - "coin_id": 12493, - "data": { - "content": { - "description": "Gala is a blockchain gaming ecosystem. Gamers can explore different type of games and have their experiences interact across each other on the Gala platform. The GALA token is the utility token and primary medium of exchange of the ecosystem. Game items are represented as NFTs on the Ethereum blockchain and users can trade them on all\u00a0marketplaces.", - "title": "What is GALA?" - }, - "market_cap": "$1,736,045,501", - "market_cap_btc": "26143.5236029952", - "price": 0.045956327415339025, - "price_btc": "0.00000069129607364157", - "price_change_percentage_24h": { - "aed": 6.521235569578803, - "ars": 6.516725547006303, - "aud": 6.603491002585773, - "bch": -5.3323822067931745, - "bdt": 6.741241729534478, - "bhd": 6.473343776420654, - "bits": 3.7284325402974305, - "bmd": 6.515724600277832, - "bnb": 4.48791213866152, - "brl": 6.438729292767853, - "btc": 3.7284325402974194, - "cad": 6.36132260991265, - "chf": 6.3839468041832115, - "clp": 7.697922039986772, - "cny": 6.545162658095303, - "czk": 6.3398363111870335, - "dkk": 6.4017666626296, - "dot": 0.41423810701595404, - "eos": -0.6807302020207179, - "eth": 1.4260341554135512, - "eur": 6.558977988045124, - "gbp": 6.409442669388313, - "gel": 6.555633077085394, - "hkd": 6.467545273884732, - "huf": 6.142300437739442, - "idr": 6.188698499729872, - "ils": 5.314876139811521, - "inr": 6.303454617171352, - "jpy": 6.937316770859295, - "krw": 6.78323314109623, - "kwd": 6.52783215850404, - "link": 1.936636433539219, - "lkr": 6.740262901600534, - "ltc": 2.423941183579731, - "mmk": 6.739784357847844, - "mxn": 6.219243140078614, - "myr": 6.739098249434396, - "ngn": 6.48617386700438, - "nok": 6.686438223643093, - "nzd": 6.586306611499462, - "php": 6.945018380121651, - "pkr": 6.740317818176428, - "pln": 6.090320780451034, - "rub": 6.717334611722188, - "sar": 6.5177689934671434, - "sats": 3.7284325402974194, - "sek": 6.518447284718588, - "sgd": 6.484419464465999, - "thb": 7.722997711001263, - "try": 6.325423682231454, - "twd": 6.716859051231622, - "uah": 6.640147738880578, - "usd": 6.515724600277832, - "vef": 6.515724600277957, - "vnd": 6.943928731596224, - "xag": 4.36988239692218, - "xau": 6.016260450412593, - "xdr": 6.740251068499046, - "xlm": 2.180970038317902, - "xrp": 2.563311831414394, - "yfi": 0.6440710784229584, - "zar": 6.578291719884886 - }, - "sparkline": "https://www.coingecko.com/coins/12493/sparkline.svg", - "total_volume": "$274,037,679", - "total_volume_btc": "4122.19997336449" - }, - "id": "gala", - "large": "https://assets.coingecko.com/coins/images/12493/large/GALA_token_image_-_200PNG.png?1709725869", - "market_cap_rank": 60, - "name": "GALA", - "price_btc": 6.912960736415705e-07, - "score": 0, - "slug": "gala", - "small": "https://assets.coingecko.com/coins/images/12493/small/GALA_token_image_-_200PNG.png?1709725869", - "symbol": "GALA", - "thumb": "https://assets.coingecko.com/coins/images/12493/standard/GALA_token_image_-_200PNG.png?1709725869" - } - }, - { - "item": { - "coin_id": 31193, - "data": { - "content": null, - "market_cap": "$33,104,263", - "market_cap_btc": "498.535387238242", - "price": 0.00411834967186193, - "price_btc": "0.0000000619734938392984", - "price_change_percentage_24h": { - "aed": 13.183205627863174, - "ars": 13.178413542890762, - "aud": 13.270605417569634, - "bch": 0.8271479735710885, - "bdt": 13.416971245662134, - "bhd": 13.132318622619957, - "bits": 10.409783316651033, - "bmd": 13.177349995713769, - "bnb": 11.159755320513133, - "brl": 13.095539306270453, - "btc": 10.409783316651026, - "cad": 13.013291513558231, - "chf": 13.03733065297116, - "clp": 14.433483528110521, - "cny": 13.20862914614231, - "czk": 12.990461435087836, - "dkk": 13.056264987444674, - "dot": 6.88321958916868, - "eos": 5.783191735694833, - "eth": 7.9608254064128845, - "eur": 13.223308503945264, - "gbp": 13.064421061176887, - "gel": 13.21975439810964, - "hkd": 13.126157474550979, - "huf": 12.78057142335668, - "idr": 12.829871277632982, - "ils": 11.901398984611571, - "inr": 12.951804384849364, - "jpy": 13.625309063020055, - "krw": 13.461588852132836, - "kwd": 13.190214775633525, - "link": 8.537138211963759, - "lkr": 13.415931200616255, - "ltc": 9.040521114608538, - "mmk": 13.415422728145234, - "mxn": 12.862326217636344, - "myr": 13.414693709660904, - "ngn": 13.14595112296615, - "nok": 13.358740260607812, - "nzd": 13.252346293372677, - "php": 13.633492340467788, - "pkr": 13.415989551743108, - "pln": 12.725340893895998, - "rub": 13.39156894707965, - "sar": 13.179522247786215, - "sats": 10.409783316651042, - "sek": 13.180242960212674, - "sgd": 13.144086997919144, - "thb": 14.460127462660644, - "try": 12.975147422459306, - "twd": 13.39106364444705, - "uah": 13.30955471157167, - "usd": 13.177349995713769, - "vef": 13.177349995713767, - "vnd": 13.632334543973784, - "xag": 10.897304162142248, - "xau": 12.646648739051901, - "xdr": 13.415918627458389, - "xlm": 8.713463610429928, - "xrp": 9.195054404813487, - "yfi": 7.213813078562337, - "zar": 13.24383014050403 - }, - "sparkline": "https://www.coingecko.com/coins/31193/sparkline.svg", - "total_volume": "$360,363", - "total_volume_btc": "5.42279393876324" - }, - "id": "non-playable-coin", - "large": "https://assets.coingecko.com/coins/images/31193/large/NPC_200x200.png?1696530021", - "market_cap_rank": 871, - "name": "Non-Playable Coin", - "price_btc": 6.197349383929838e-08, - "score": 1, - "slug": "non-playable-coin", - "small": "https://assets.coingecko.com/coins/images/31193/small/NPC_200x200.png?1696530021", - "symbol": "NPC", - "thumb": "https://assets.coingecko.com/coins/images/31193/standard/NPC_200x200.png?1696530021" - } - }, - { - "item": { - "coin_id": 26580, - "data": { - "content": null, - "market_cap": "$1,466,170,079", - "market_cap_btc": "22077.64691779", - "price": 1.0104119319770655, - "price_btc": "0.0000151990779207305", - "price_change_percentage_24h": { - "aed": 25.6393269209659, - "ars": 26.088373332103636, - "aud": 25.742850712909636, - "bch": 12.135604115600824, - "bdt": 25.905332906798307, - "bhd": 25.917327734763347, - "bits": 22.54112013417767, - "bmd": 25.63932692096608, - "bnb": 23.51410386954155, - "brl": 25.548508042833696, - "btc": 22.54112013417768, - "cad": 25.457203931918627, - "chf": 25.48389002499034, - "clp": 27.03377352657366, - "cny": 25.67405022387667, - "czk": 25.43186002969143, - "dkk": 25.504909222197625, - "dot": 19.019536756676967, - "eos": 17.550698342775668, - "eth": 19.926884308943624, - "eur": 25.84714348829306, - "gbp": 25.513963362571783, - "gel": 25.63932692096589, - "hkd": 25.58249758274137, - "huf": 25.820733158283126, - "idr": 25.25358726315806, - "ils": 24.32662337563647, - "inr": 25.388946445190125, - "jpy": 26.13661083604767, - "krw": 25.954863365375108, - "kwd": 26.00554360026117, - "link": 20.71052455312918, - "lkr": 25.904178342218977, - "ltc": 21.122273206474855, - "mmk": 25.9036138817588, - "mxn": 25.289615822028633, - "myr": 25.863212514011614, - "ngn": 25.604470713092155, - "nok": 25.840690098246494, - "nzd": 25.722581073494975, - "php": 26.145695175543654, - "pkr": 25.904243118397886, - "pln": 25.137547021395, - "rub": 25.877133556873055, - "sar": 25.64173836007719, - "sats": 22.54112013417768, - "sek": 25.642538430269767, - "sgd": 25.602401328924685, - "thb": 26.82148737846024, - "try": 25.414859788573395, - "twd": 25.876572615282896, - "uah": 25.786088720185024, - "usd": 25.63932692096608, - "vef": 25.639326920965978, - "vnd": 26.081305712488344, - "xag": 23.108224859557264, - "xau": 25.050190060228378, - "xdr": 25.904164384627936, - "xlm": 21.007395855990843, - "xrp": 21.212860838831453, - "yfi": 19.455716445683226, - "zar": 25.71312720561246 - }, - "sparkline": "https://www.coingecko.com/coins/26580/sparkline.svg", - "total_volume": "$657,970,029", - "total_volume_btc": "9897.4857945926" - }, - "id": "ondo-finance", - "large": "https://assets.coingecko.com/coins/images/26580/large/ONDO.png?1696525656", - "market_cap_rank": 72, - "name": "Ondo", - "price_btc": 1.5199077920730452e-05, - "score": 2, - "slug": "ondo", - "small": "https://assets.coingecko.com/coins/images/26580/small/ONDO.png?1696525656", - "symbol": "ONDO", - "thumb": "https://assets.coingecko.com/coins/images/26580/standard/ONDO.png?1696525656" - } - }, - { - "item": { - "coin_id": 35432, - "data": { - "content": null, - "market_cap": "$159,399,406", - "market_cap_btc": "2400.24255146039", - "price": 1.6692352791967275, - "price_btc": "0.0000251093997147286", - "price_change_percentage_24h": { - "aed": 9.234991305254026, - "ars": 9.230366384467974, - "aud": 9.319342293685969, - "bch": -2.7440351539152577, - "bdt": 9.460602384972711, - "bhd": 9.18587941144937, - "bits": 6.419711689477774, - "bmd": 9.229339937425951, - "bnb": 7.233622252329404, - "brl": 9.150383082471706, - "btc": 6.419711689477775, - "cad": 9.071004371894013, - "chf": 9.094204944542488, - "clp": 10.441655269267232, - "cny": 9.2595279649355, - "czk": 9.048970684038757, - "dkk": 9.112478785172042, - "dot": 3.2200923798427254, - "eos": 1.9916284941755513, - "eth": 4.108453661565812, - "eur": 9.273695256920854, - "gbp": 9.120350347373405, - "gel": 9.270265130358261, - "hkd": 9.179933185133592, - "huf": 8.846402348221563, - "idr": 8.893982456272647, - "ils": 7.997898427790891, - "inr": 9.011662122903688, - "jpy": 9.661672672223473, - "krw": 9.503663577910562, - "kwd": 9.241755950162657, - "link": 4.632760639115198, - "lkr": 9.459598620227801, - "ltc": 5.208804257028078, - "mmk": 9.459107885001588, - "mxn": 8.92530525782528, - "myr": 9.458404297156141, - "ngn": 9.199036363918388, - "nok": 9.404402694295628, - "nzd": 9.301720109706787, - "php": 9.669570489182885, - "pkr": 9.45965493586891, - "pln": 8.793098447064379, - "rub": 9.43608620477251, - "sar": 9.231436413974357, - "sats": 6.419711689477781, - "sek": 9.232131985505472, - "sgd": 9.197237265879254, - "thb": 10.467369772958559, - "try": 9.034190876142306, - "twd": 9.435598528810692, - "uah": 9.356932904131389, - "usd": 9.229339937425951, - "vef": 9.22933993742599, - "vnd": 9.668453080559892, - "xag": 7.028829840329935, - "xau": 8.71715134163973, - "xdr": 9.45958648566386, - "xlm": 4.940511366058783, - "xrp": 5.226291780778814, - "yfi": 3.5342058046380465, - "zar": 9.293501029152875 - }, - "sparkline": "https://www.coingecko.com/coins/35432/sparkline.svg", - "total_volume": "$3,020,953", - "total_volume_btc": "45.4425480799862" - }, - "id": "nodeai", - "large": "https://assets.coingecko.com/coins/images/35432/large/NodeAI.png?1708586757", - "market_cap_rank": 352, - "name": "NodeAI", - "price_btc": 2.5109399714728614e-05, - "score": 3, - "slug": "nodeai", - "small": "https://assets.coingecko.com/coins/images/35432/small/NodeAI.png?1708586757", - "symbol": "GPU", - "thumb": "https://assets.coingecko.com/coins/images/35432/standard/NodeAI.png?1708586757" - } - }, - { - "item": { - "coin_id": 4630, - "data": { - "content": null, - "market_cap": "$176,259,103", - "market_cap_btc": "2654.11653333696", - "price": 0.04094620257607754, - "price_btc": "0.000000615931486769044", - "price_change_percentage_24h": { - "aed": -4.603579375002566, - "ars": -4.607618381948517, - "aud": -4.529914496409446, - "bch": -15.219234565972473, - "bdt": -4.406550115409421, - "bhd": -4.646469467481976, - "bits": -7.104708948645838, - "bmd": -4.608514792271028, - "bnb": -6.424547525111443, - "brl": -4.67746889989191, - "btc": -7.104708948645828, - "cad": -4.746791419832237, - "chf": -4.726530040573949, - "clp": -3.5497831354587617, - "cny": -4.582151172557801, - "czk": -4.766033742547898, - "dkk": -4.710571244163632, - "dot": -10.072777094868462, - "eos": -11.053389616131193, - "eth": -9.166650528615856, - "eur": -4.5697786815712105, - "gbp": -4.703696900606149, - "gel": -4.572774258285677, - "hkd": -4.651662388723973, - "huf": -4.942939456898408, - "idr": -4.9013870939901505, - "ils": -5.68394960326417, - "inr": -4.798615822231951, - "jpy": -4.230952667480212, - "krw": -4.368944183234823, - "kwd": -4.597671717544069, - "link": -8.709374292232527, - "lkr": -4.407426716969728, - "ltc": -8.272962447600289, - "mmk": -4.407855282793942, - "mxn": -4.874032460494123, - "myr": -4.408469735738036, - "ngn": -4.634979319893691, - "nok": -4.455630078402558, - "nzd": -4.545304192102409, - "php": -4.224055395281337, - "pkr": -4.407377535745493, - "pln": -4.989490487067292, - "rub": -4.427960432841041, - "sar": -4.606683910460782, - "sats": -7.104708948645837, - "sek": -4.606076458273579, - "sgd": -4.636550496960902, - "thb": -3.5273263056373594, - "try": -4.778941152106258, - "twd": -4.428386326967659, - "uah": -4.497086099183107, - "usd": -4.608514792271028, - "vef": -4.608514792270917, - "vnd": -4.225031243604078, - "xag": -6.5302505319252635, - "xau": -5.055816139020141, - "xdr": -4.407437314251303, - "xlm": -8.490558286112677, - "xrp": -8.148147326253648, - "yfi": -9.866947311759036, - "zar": -4.55248202821781 - }, - "sparkline": "https://www.coingecko.com/coins/4630/sparkline.svg", - "total_volume": "$14,257,031", - "total_volume_btc": "214.460770054823" - }, - "id": "orbs", - "large": "https://assets.coingecko.com/coins/images/4630/large/Orbs.jpg?1696505200", - "market_cap_rank": 328, - "name": "Orbs", - "price_btc": 6.159314867690445e-07, - "score": 4, - "slug": "orbs", - "small": "https://assets.coingecko.com/coins/images/4630/small/Orbs.jpg?1696505200", - "symbol": "ORBS", - "thumb": "https://assets.coingecko.com/coins/images/4630/standard/Orbs.jpg?1696505200" - } - }, - { - "item": { - "coin_id": 32328, - "data": { - "content": null, - "market_cap": "$53,301,336", - "market_cap_btc": "802.677543531812", - "price": 0.009422634212633054, - "price_btc": "0.00000014173956886685", - "price_change_percentage_24h": { - "aed": 20.838961295438967, - "ars": 20.83384507199149, - "aud": 20.932272840618843, - "bch": 7.758672665710821, - "bdt": 21.08853890975674, - "bhd": 20.78463227354164, - "bits": 17.740946156185753, - "bmd": 20.832709586073285, - "bnb": 18.681264818706055, - "brl": 20.745365190052983, - "btc": 17.74094615618578, - "cad": 20.65755412493052, - "chf": 20.683219281001783, - "clp": 22.17380847491628, - "cny": 20.866104470297056, - "czk": 20.633179811149834, - "dkk": 20.70343434115958, - "dot": 14.32509837305376, - "eos": 12.943462871892455, - "eth": 15.228449464329644, - "eur": 20.88177674552153, - "gbp": 20.712142094863715, - "gel": 20.87798223859652, - "hkd": 20.778054383041226, - "huf": 20.409092758099693, - "idr": 20.46172727352934, - "ils": 19.470452756624702, - "inr": 20.59190798312868, - "jpy": 21.310968777406707, - "krw": 21.136174468331767, - "kwd": 20.84644454466683, - "link": 15.861678355934131, - "lkr": 21.087428515662904, - "ltc": 16.39869231868331, - "mmk": 21.086885649917807, - "mxn": 20.496377478186037, - "myr": 21.086107320342098, - "ngn": 20.799186881467076, - "nok": 21.02636915842164, - "nzd": 20.912778662221644, - "php": 21.319705574896787, - "pkr": 21.087490813682646, - "pln": 20.350126414331676, - "rub": 21.06141838990403, - "sar": 20.83502877011359, - "sats": 17.74094615618576, - "sek": 20.835798231806578, - "sgd": 20.79719666628313, - "thb": 22.202254615471944, - "try": 20.616829952802902, - "twd": 21.0608789084064, - "uah": 20.973856679884896, - "usd": 20.832709586073285, - "vef": 20.832709586073275, - "vnd": 21.31846946460127, - "xag": 18.398440573224185, - "xau": 20.26611149179378, - "xdr": 21.087415092051714, - "xlm": 16.315960052098497, - "xrp": 16.478732910565064, - "yfi": 14.721204918627425, - "zar": 20.903686473489877 - }, - "sparkline": "https://www.coingecko.com/coins/32328/sparkline.svg", - "total_volume": "$23,924,872", - "total_volume_btc": "359.888853363554" - }, - "id": "niza-global", - "large": "https://assets.coingecko.com/coins/images/32328/large/NizaCoin-logo-transaprent.png?1697451581", - "market_cap_rank": 675, - "name": "Niza Global", - "price_btc": 1.4173956886685023e-07, - "score": 5, - "slug": "niza-global", - "small": "https://assets.coingecko.com/coins/images/32328/small/NizaCoin-logo-transaprent.png?1697451581", - "symbol": "NIZA", - "thumb": "https://assets.coingecko.com/coins/images/32328/standard/NizaCoin-logo-transaprent.png?1697451581" - } - }, - { - "item": { - "coin_id": 36440, - "data": { - "content": null, - "market_cap": "$496,679,841", - "market_cap_btc": "7479.77605108835", - "price": 0.005675517357912967, - "price_btc": "0.0000000853737251445437", - "price_change_percentage_24h": { - "aed": 83.90053499225813, - "ars": 84.55781227373012, - "aud": 84.05206462226687, - "bch": 64.13489385780704, - "bdt": 84.28989272207549, - "bhd": 84.30744976678407, - "bits": 79.36563418078364, - "bmd": 83.9005349922584, - "bnb": 80.7898079156902, - "brl": 83.76760177234038, - "btc": 79.36563418078364, - "cad": 83.63395830850014, - "chf": 83.67301922129717, - "clp": 85.94161148537502, - "cny": 83.9513601131696, - "czk": 83.59686198450194, - "dkk": 83.70378539703417, - "dot": 74.21102946414413, - "eos": 72.06106434769978, - "eth": 75.53913034127415, - "eur": 84.20471982712088, - "gbp": 83.71703810460195, - "gel": 83.90053499225813, - "hkd": 83.8173528711909, - "huf": 84.16606255366061, - "idr": 83.33592094045562, - "ils": 81.97910728177565, - "inr": 83.53404860160958, - "jpy": 84.62841837294604, - "krw": 84.3623913421645, - "kwd": 84.43657291044802, - "link": 76.6861586140206, - "lkr": 84.28820276520426, - "ltc": 77.28884249882239, - "mmk": 84.28737655431033, - "mxn": 83.38865658791303, - "myr": 84.22824034811434, - "ngn": 83.84951533597001, - "nok": 84.1952738844279, - "nzd": 84.02239558770734, - "php": 84.64171528350981, - "pkr": 84.28829757925851, - "pln": 83.16607075847968, - "rub": 84.24861682809563, - "sar": 83.90406465891218, - "sats": 79.3656341807836, - "sek": 83.90523573599489, - "sgd": 83.84648634126883, - "thb": 85.63088444499488, - "try": 83.57197842683556, - "twd": 84.24779576783482, - "uah": 84.11535286858918, - "usd": 83.9005349922584, - "vef": 83.90053499225826, - "vnd": 84.54746727220692, - "xag": 80.19571553309419, - "xau": 83.03820480848181, - "xdr": 84.28818233522804, - "xlm": 77.12069446165731, - "xrp": 77.4214372401532, - "yfi": 74.84947349378677, - "zar": 84.0085577918201 - }, - "sparkline": "https://www.coingecko.com/coins/36440/sparkline.svg", - "total_volume": "$153,527,950", - "total_volume_btc": "2309.43757160992" - }, - "id": "cat-in-a-dogs-world", - "large": "https://assets.coingecko.com/coins/images/36440/large/MEW.png?1711442286", - "market_cap_rank": 168, - "name": "cat in a dogs world", - "price_btc": 8.537372514454374e-08, - "score": 6, - "slug": "mew", - "small": "https://assets.coingecko.com/coins/images/36440/small/MEW.png?1711442286", - "symbol": "MEW", - "thumb": "https://assets.coingecko.com/coins/images/36440/standard/MEW.png?1711442286" - } - }, - { - "item": { - "coin_id": 35087, - "data": { - "content": null, - "market_cap": "$1,205,545,393", - "market_cap_btc": "18141.213329292", - "price": 0.6697373327847476, - "price_btc": "0.0000100744949512815", - "price_change_percentage_24h": { - "aed": 13.388998751835024, - "ars": 13.384197953748975, - "aud": 13.47655745447949, - "bch": 0.7711404997887669, - "bdt": 13.623189409343063, - "bhd": 13.338019222301817, - "bits": 10.416134819981178, - "bmd": 13.383132472798259, - "bnb": 11.224580485960123, - "brl": 13.301173032687883, - "btc": 10.416134819981165, - "cad": 13.218775694554152, - "chf": 13.242858542656597, - "clp": 14.641549945134294, - "cny": 13.414468495923357, - "czk": 13.195904105745104, - "dkk": 13.261827304109014, - "dot": 6.888263720389705, - "eos": 5.7226993184863915, - "eth": 7.96529348122015, - "eur": 13.42917454417805, - "gbp": 13.269998207461079, - "gel": 13.42561397615976, - "hkd": 13.33184687184705, - "huf": 12.985632465653552, - "idr": 13.035021958415172, - "ils": 12.10486148901852, - "inr": 13.157176768090054, - "jpy": 13.831906032814095, - "krw": 13.66788814089368, - "kwd": 13.396020643849408, - "link": 8.50881591378955, - "lkr": 13.622147473255966, - "ltc": 9.02753875246723, - "mmk": 13.62163807626405, - "mxn": 13.067535908970275, - "myr": 13.620907732256862, - "ngn": 13.351676509671837, - "nok": 13.564852546952318, - "nzd": 13.458265130990938, - "php": 13.840104189344718, - "pkr": 13.622205930478353, - "pln": 12.930301514375353, - "rub": 13.597740923533799, - "sar": 13.385308674525117, - "sats": 10.416134819981163, - "sek": 13.386030697372961, - "sgd": 13.349808995216414, - "thb": 14.66824232449095, - "try": 13.180562248716141, - "twd": 13.59723470214439, - "uah": 13.515577567265002, - "usd": 13.383132472798259, - "vef": 13.383132472798401, - "vnd": 13.838944287709815, - "xag": 11.098940991006852, - "xau": 12.851466279078009, - "xdr": 13.622134877236771, - "xlm": 8.768902483938136, - "xrp": 9.175895069673539, - "yfi": 7.132914755168359, - "zar": 13.449733493797448 - }, - "sparkline": "https://www.coingecko.com/coins/35087/sparkline.svg", - "total_volume": "$314,706,827", - "total_volume_btc": "4733.96387621554" - }, - "id": "wormhole", - "large": "https://assets.coingecko.com/coins/images/35087/large/womrhole_logo_full_color_rgb_2000px_72ppi_fb766ac85a.png?1708688954", - "market_cap_rank": 83, - "name": "Wormhole", - "price_btc": 1.0074494951281527e-05, - "score": 7, - "slug": "wormhole", - "small": "https://assets.coingecko.com/coins/images/35087/small/womrhole_logo_full_color_rgb_2000px_72ppi_fb766ac85a.png?1708688954", - "symbol": "W", - "thumb": "https://assets.coingecko.com/coins/images/35087/standard/womrhole_logo_full_color_rgb_2000px_72ppi_fb766ac85a.png?1708688954" - } - }, - { - "item": { - "coin_id": 33566, - "data": { - "content": null, - "market_cap": "$3,017,840,285", - "market_cap_btc": "45447.3236440186", - "price": 3.036822985127381, - "price_btc": "0.0000456812788147716", - "price_change_percentage_24h": { - "aed": 12.276883678111549, - "ars": 12.678171498612995, - "aud": 12.369397137319222, - "bch": 0.20935711779192798, - "bdt": 12.514598443551003, - "bhd": 12.52531755465398, - "bits": 9.508188465108859, - "bmd": 12.276883678111721, - "bnb": 10.37768995284657, - "brl": 12.195723894262661, - "btc": 9.508188465108876, - "cad": 12.114130484844035, - "chf": 12.137978363060704, - "clp": 13.52302310889382, - "cny": 12.307913964068803, - "czk": 12.091482047988722, - "dkk": 12.156762051398438, - "dot": 6.361145123439719, - "eos": 5.048525868138558, - "eth": 7.17199120227577, - "eur": 12.462597794288364, - "gbp": 12.164853233439192, - "gel": 12.276883678111552, - "hkd": 12.226098457005147, - "huf": 12.438996350193605, - "idr": 11.932169584593932, - "ils": 11.103793477178597, - "inr": 12.053132562574037, - "jpy": 12.721278674940493, - "krw": 12.558861061573836, - "kwd": 12.604151170781956, - "link": 7.872286935292971, - "lkr": 12.513566673354914, - "ltc": 8.240243822593014, - "mmk": 12.513062246413279, - "mxn": 11.964366305258809, - "myr": 12.476957789487614, - "ngn": 12.245734622375497, - "nok": 12.456830758270682, - "nzd": 12.351283287121763, - "php": 12.72939684425802, - "pkr": 12.51362456022587, - "pln": 11.828470869822821, - "rub": 12.489398251788206, - "sar": 12.279038647222185, - "sats": 9.508188465108876, - "sek": 12.279753625486931, - "sgd": 12.24388532875741, - "thb": 13.333314776779002, - "try": 12.076289877342097, - "twd": 12.488896969465118, - "uah": 12.408036541336305, - "usd": 12.276883678111721, - "vef": 12.27688367811161, - "vnd": 12.67185555976749, - "xag": 10.014978439595149, - "xau": 11.750404808759408, - "xdr": 12.513554200231534, - "xlm": 8.13758431912675, - "xrp": 8.321196954944444, - "yfi": 6.7509346694798635, - "zar": 12.342834890822866 - }, - "sparkline": "https://www.coingecko.com/coins/33566/sparkline.svg", - "total_volume": "$870,286,714", - "total_volume_btc": "13091.2503677171" - }, - "id": "dogwifcoin", - "large": "https://assets.coingecko.com/coins/images/33566/large/dogwifhat.jpg?1702499428", - "market_cap_rank": 42, - "name": "dogwifhat", - "price_btc": 4.5681278814771555e-05, - "score": 8, - "slug": "dogwifhat", - "small": "https://assets.coingecko.com/coins/images/33566/small/dogwifhat.jpg?1702499428", - "symbol": "WIF", - "thumb": "https://assets.coingecko.com/coins/images/33566/standard/dogwifhat.jpg?1702499428" - } - }, - { - "item": { - "coin_id": 36530, - "data": { - "content": null, - "market_cap": "$1,660,528,828", - "market_cap_btc": "25006.2999990559", - "price": 1.1722783487237227, - "price_btc": "0.0000176339465154312", - "price_change_percentage_24h": { - "aed": 1.6094781774608227, - "ars": 1.6051761147058794, - "aud": 1.6879407636334993, - "bch": -9.389303075116985, - "bdt": 1.819339722807969, - "bhd": 1.5637947033089437, - "bits": -0.9955400907429851, - "bmd": 1.6042213222251074, - "bnb": -0.20485728782135082, - "brl": 1.5307763140406427, - "btc": -0.9955400907429949, - "cad": 1.456938899272661, - "chf": 1.478519878517994, - "clp": 2.7319069363586608, - "cny": 1.6323019737252191, - "czk": 1.4364433465334008, - "dkk": 1.4955180527156302, - "dot": -3.8678132968085164, - "eos": -5.029584804933453, - "eth": -3.108215299510533, - "eur": 1.6454802706117748, - "gbp": 1.502840114246844, - "gel": 1.6422895954813579, - "hkd": 1.5582635731660501, - "huf": 1.248015969446947, - "idr": 1.2922745892629084, - "ils": 0.4587446969706545, - "inr": 1.4017392340211552, - "jpy": 2.006373627607402, - "krw": 1.8593948854608986, - "kwd": 1.615770593755719, - "link": -2.575754108574677, - "lkr": 1.8184060292108122, - "ltc": -2.124196862931471, - "mmk": 1.8179495513953456, - "mxn": 1.3214107981161198, - "myr": 1.8172950798474894, - "ngn": 1.5760331908011158, - "nok": 1.7670632390989087, - "nzd": 1.671548755019696, - "php": 2.0137201110957847, - "pkr": 1.8184584135511925, - "pln": 1.1984331250061684, - "rub": 1.7965349763868377, - "sar": 1.6061714472311879, - "sats": -0.9955400907429907, - "sek": 1.6068184620703374, - "sgd": 1.5743596848049306, - "thb": 2.7558263533003386, - "try": 1.4226952924530036, - "twd": 1.7960813442728647, - "uah": 1.722907236062117, - "usd": 1.6042213222251074, - "vef": 1.6042213222251105, - "vnd": 2.0126807069106603, - "xag": -0.4426748235835777, - "xau": 1.1277877607405404, - "xdr": 1.8183947417410147, - "xlm": -2.193763684310945, - "xrp": -2.0568933816127446, - "yfi": -3.5347404288614395, - "zar": 1.6639034348131976 - }, - "sparkline": "https://www.coingecko.com/coins/36530/sparkline.svg", - "total_volume": "$1,068,335,603", - "total_volume_btc": "16070.3922494021" - }, - "id": "ethena", - "large": "https://assets.coingecko.com/coins/images/36530/large/ethena.png?1711701436", - "market_cap_rank": 62, - "name": "Ethena", - "price_btc": 1.7633946515431207e-05, - "score": 9, - "slug": "ethena", - "small": "https://assets.coingecko.com/coins/images/36530/small/ethena.png?1711701436", - "symbol": "ENA", - "thumb": "https://assets.coingecko.com/coins/images/36530/standard/ethena.png?1711701436" - } - }, - { - "item": { - "coin_id": 4128, - "data": { - "content": { - "description": "Solana is a Layer 1 blockchain that offers users fast speeds and affordable costs. It supports smart contracts and facilitates the creation of decentralized applications (dApps). Projects built on Solana include a variety of DeFi platforms as well as NFT marketplaces, where users can buy Solana-based NFT projects. Its high performance means Solana doesn\u2019t require a traditional scaling Layer 2 solution; instead, Layer 2s on Solana focus on interoperability and connecting Solana to other chains.\u00a0", - "title": "About Solana (SOL)" - }, - "market_cap": "$69,316,875,055", - "market_cap_btc": "1043089.89558534", - "price": 155.0763667688901, - "price_btc": "0.00233272956067747", - "price_change_percentage_24h": { - "aed": 8.300667987104086, - "ars": 8.687744450145166, - "aud": 8.389905139951262, - "bch": -3.3394946592120403, - "bdt": 8.529964232636663, - "bhd": 8.54030373311665, - "bits": 5.630024385340643, - "bmd": 8.300667987104243, - "bnb": 6.468733021107045, - "brl": 8.222382426296015, - "btc": 5.630024385340633, - "cad": 8.14367859649684, - "chf": 8.16668191700532, - "clp": 9.502676168464955, - "cny": 8.330599354870177, - "czk": 8.12183223988326, - "dkk": 8.184800392755617, - "dot": 2.594431617516239, - "eos": 1.3282979530888956, - "eth": 3.376562089042565, - "eur": 8.47980515388051, - "gbp": 8.192605030639308, - "gel": 8.300667987104077, - "hkd": 8.25168129287536, - "huf": 8.457039540183489, - "idr": 7.968161727849893, - "ils": 7.169122042754629, - "inr": 8.084840877535889, - "jpy": 8.72932501275401, - "krw": 8.57265931769509, - "kwd": 8.61634550598038, - "link": 4.052057286181431, - "lkr": 8.528969001937474, - "ltc": 4.406983210197046, - "mmk": 8.528482438960868, - "mxn": 7.999218221767185, - "myr": 8.493656598821147, - "ngn": 8.2706220557167, - "nok": 8.474242353840479, - "nzd": 8.372432780442015, - "php": 8.737155682176931, - "pkr": 8.52902483878108, - "pln": 7.868135438277121, - "rub": 8.505656489921451, - "sar": 8.302746639329984, - "sats": 5.630024385340638, - "sek": 8.30343629708614, - "sgd": 8.268838253676762, - "thb": 9.319686238412574, - "try": 8.107178090468862, - "twd": 8.505172960198664, - "uah": 8.427176153614877, - "usd": 8.300667987104243, - "vef": 8.30066798710415, - "vnd": 8.68165218632799, - "xag": 6.1188667094951334, - "xau": 7.792834037994865, - "xdr": 8.528956970541977, - "xlm": 4.307959328910005, - "xrp": 4.485069437941347, - "yfi": 2.97041701030255, - "zar": 8.364283578819949 - }, - "sparkline": "https://www.coingecko.com/coins/4128/sparkline.svg", - "total_volume": "$7,265,344,917", - "total_volume_btc": "109288.637659419" - }, - "id": "solana", - "large": "https://assets.coingecko.com/coins/images/4128/large/solana.png?1696504756", - "market_cap_rank": 5, - "name": "Solana", - "price_btc": 0.0023327295606774714, - "score": 10, - "slug": "solana", - "small": "https://assets.coingecko.com/coins/images/4128/small/solana.png?1696504756", - "symbol": "SOL", - "thumb": "https://assets.coingecko.com/coins/images/4128/standard/solana.png?1696504756" - } - }, - { - "item": { - "coin_id": 29850, - "data": { - "content": null, - "market_cap": "$2,368,800,209", - "market_cap_btc": "35669.4870530468", - "price": 5.630036358016325e-06, - "price_btc": "0.0000000000846895791646074", - "price_change_percentage_24h": { - "aed": 3.235924433547087, - "ars": 3.604899041286998, - "aud": 3.3209883591831955, - "bch": -7.85987925523883, - "bdt": 3.454497507163925, - "bhd": 3.4643534749069707, - "bits": 0.6901750288119601, - "bmd": 3.235924433547239, - "bnb": 1.489660968769941, - "brl": 3.1612999423963855, - "btc": 0.6901750288119696, - "cad": 3.0862767428465463, - "chf": 3.1082042997293375, - "clp": 4.3817200051335154, - "cny": 3.2644560435391976, - "czk": 3.0654520437710193, - "dkk": 3.1254754544523333, - "dot": -2.2034564825602367, - "eos": -3.4103786718043017, - "eth": -1.4579027961759388, - "eur": 3.406684146818405, - "gbp": 3.1329151039186693, - "gel": 3.2359244335470883, - "hkd": 3.1892286304865993, - "huf": 3.384983180250133, - "idr": 2.918968022362853, - "ils": 2.1572958915896385, - "inr": 3.0301906039390754, - "jpy": 3.6445350647684434, - "krw": 3.49519593180616, - "kwd": 3.536839110157982, - "link": -0.8139975237232023, - "lkr": 3.4535488190056363, - "ltc": -0.47566991640364314, - "mmk": 3.4530850104288247, - "mxn": 2.9485721413291306, - "myr": 3.419887820902454, - "ngn": 3.207283617567901, - "nok": 3.4013814943487297, - "nzd": 3.3043331047004756, - "php": 3.6519995283939553, - "pkr": 3.4536020446068503, - "pln": 2.8236195202379024, - "rub": 3.4313265301354647, - "sar": 3.237905876396023, - "sats": 0.6901750288119771, - "sek": 3.238563281907202, - "sgd": 3.2055832360649514, - "thb": 4.207287705295457, - "try": 3.0514832041534916, - "twd": 3.4308656129606154, - "uah": 3.3565163722753804, - "usd": 3.235924433547239, - "vef": 3.2359244335471673, - "vnd": 3.5990916857208033, - "xag": 1.156156358145418, - "xau": 2.7518396336151816, - "xdr": 3.453537350265308, - "xlm": -0.5700628884477595, - "xrp": -0.40123543639038567, - "yfi": -1.8450542647417163, - "zar": 3.29656500521888 - }, - "sparkline": "https://www.coingecko.com/coins/29850/sparkline.svg", - "total_volume": "$884,705,250", - "total_volume_btc": "13308.1405815939" - }, - "id": "pepe", - "large": "https://assets.coingecko.com/coins/images/29850/large/pepe-token.jpeg?1696528776", - "market_cap_rank": 49, - "name": "Pepe", - "price_btc": 8.468957916460743e-11, - "score": 11, - "slug": "pepe", - "small": "https://assets.coingecko.com/coins/images/29850/small/pepe-token.jpeg?1696528776", - "symbol": "PEPE", - "thumb": "https://assets.coingecko.com/coins/images/29850/standard/pepe-token.jpeg?1696528776" - } - }, - { - "item": { - "coin_id": 279, - "data": { - "content": { - "description": "Ethereum is a Proof-of-Stake blockchain that powers decentralized applications (dApps) through smart contracts, without being controlled by a centralized entity. As the first blockchain to feature smart contracts, it has the largest ecosystem of decentralized applications, ranging from decentralized exchanges to crypto lending and borrowing platforms and more.\u00a0", - "title": "What is Ethereum?" - }, - "market_cap": "$388,459,760,146", - "market_cap_btc": "5850030.0796314", - "price": 3239.245727630313, - "price_btc": "0.0487262141909898", - "price_change_percentage_24h": { - "aed": 4.969861923835, - "ars": 4.965417585162244, - "aud": 5.050919389973629, - "bch": -6.711119944526212, - "bdt": 5.18666391744176, - "bhd": 4.922667626019953, - "bits": 2.217733235160091, - "bmd": 4.964431216206627, - "bnb": 2.9661517842687597, - "brl": 4.888557267177689, - "btc": 2.2177332351600914, - "cad": 4.812277934067758, - "chf": 4.834572629918972, - "clp": 6.129411150483694, - "cny": 4.993440538600265, - "czk": 4.791104561468202, - "dkk": 4.852132960219475, - "dot": -1.0481933210809773, - "eos": -2.127214528410852, - "eth": 0.0, - "eur": 5.007054662295975, - "gbp": 4.859697173733143, - "gel": 5.003758466568308, - "hkd": 4.916953572786278, - "huf": 4.5964455974604475, - "idr": 4.642167918785637, - "ils": 3.7810718943532633, - "inr": 4.755252729887738, - "jpy": 5.3798833248634, - "krw": 5.228043766727723, - "kwd": 4.976362440139996, - "link": 0.4520328194977271, - "lkr": 5.185699345142854, - "ltc": 0.9322404706113018, - "mmk": 5.185227770894072, - "mxn": 4.6722677074594845, - "myr": 5.184551654953072, - "ngn": 4.935310859360645, - "nok": 5.132658568972036, - "nzd": 5.033985272096268, - "php": 5.387472768006244, - "pkr": 5.185753461914581, - "pln": 4.545222971105849, - "rub": 5.163104982527631, - "sar": 4.966445834884793, - "sats": 2.2177332351600887, - "sek": 4.967114247512837, - "sgd": 4.933582007913977, - "thb": 6.154121619809016, - "try": 4.776901837820305, - "twd": 5.1626363480928, - "uah": 5.087042258121638, - "usd": 4.964431216206627, - "vef": 4.964431216206748, - "vnd": 5.38639898910526, - "xag": 2.849841025883029, - "xau": 4.47224125458142, - "xdr": 5.185687684378482, - "xlm": 0.6928079533931433, - "xrp": 1.0695813264623588, - "yfi": -0.8217076335545779, - "zar": 5.026087109240583 - }, - "sparkline": "https://www.coingecko.com/coins/279/sparkline.svg", - "total_volume": "$24,679,704,077", - "total_volume_btc": "371243.384467665" - }, - "id": "ethereum", - "large": "https://assets.coingecko.com/coins/images/279/large/ethereum.png?1696501628", - "market_cap_rank": 2, - "name": "Ethereum", - "price_btc": 0.04872621419098983, - "score": 12, - "slug": "ethereum", - "small": "https://assets.coingecko.com/coins/images/279/small/ethereum.png?1696501628", - "symbol": "ETH", - "thumb": "https://assets.coingecko.com/coins/images/279/standard/ethereum.png?1696501628" - } - }, - { - "item": { - "coin_id": 34188, - "data": { - "content": null, - "market_cap": "$1,510,692,567", - "market_cap_btc": "22749.8799807155", - "price": 1.1210349267326563, - "price_btc": "0.0000168631195495985", - "price_change_percentage_24h": { - "aed": 10.685710865685582, - "ars": 10.681024522612422, - "aud": 10.771182096152062, - "bch": -1.6313271680204082, - "bdt": 10.914318223451529, - "bhd": 10.635946730468834, - "bits": 7.7837224785725665, - "bmd": 10.679984443612325, - "bnb": 8.572894128557838, - "brl": 10.599978984611628, - "btc": 7.783722478572547, - "cad": 10.51954606744005, - "chf": 10.543054760445838, - "clp": 11.908400198443728, - "cny": 10.710573389925324, - "czk": 10.49721975630031, - "dkk": 10.561571290873948, - "dot": 4.339958755467385, - "eos": 3.202182376766257, - "eth": 5.391311232456113, - "eur": 10.724928833778026, - "gbp": 10.569547393105154, - "gel": 10.721453152657903, - "hkd": 10.6299215339743, - "huf": 10.291961166713817, - "idr": 10.340173172955968, - "ils": 9.432188501535984, - "inr": 10.459415710533353, - "jpy": 11.11805886930498, - "krw": 10.957951300125062, - "kwd": 10.692565349963543, - "link": 5.921875638903175, - "lkr": 10.913301127985955, - "ltc": 6.428231694369943, - "mmk": 10.912803875441323, - "mxn": 10.371911963930904, - "myr": 10.912090943441703, - "ngn": 10.649278416767226, - "nok": 10.85737216030192, - "nzd": 10.753325876845068, - "php": 11.126061574976347, - "pkr": 10.913358191539619, - "pln": 10.23794935125978, - "rub": 10.88947645067585, - "sar": 10.682108762882919, - "sats": 7.783722478572545, - "sek": 10.682813572106552, - "sgd": 10.647455425407149, - "thb": 11.934456209311701, - "try": 10.482243661882501, - "twd": 10.888982298024715, - "uah": 10.809271937047264, - "usd": 10.679984443612325, - "vef": 10.67998444361247, - "vnd": 11.124929326359567, - "xag": 8.450249983492725, - "xau": 10.16099361343509, - "xdr": 10.9132888322663, - "xlm": 6.1757615292488435, - "xrp": 6.573051073781993, - "yfi": 4.57877710642369, - "zar": 10.744997640966773 - }, - "sparkline": "https://www.coingecko.com/coins/34188/sparkline.svg", - "total_volume": "$307,124,819", - "total_volume_btc": "4619.91184958854" - }, - "id": "jupiter-exchange-solana", - "large": "https://assets.coingecko.com/coins/images/34188/large/jup.png?1704266489", - "market_cap_rank": 70, - "name": "Jupiter", - "price_btc": 1.6863119549598453e-05, - "score": 13, - "slug": "jupiter", - "small": "https://assets.coingecko.com/coins/images/34188/small/jup.png?1704266489", - "symbol": "JUP", - "thumb": "https://assets.coingecko.com/coins/images/34188/standard/jup.png?1704266489" - } - }, - { - "item": { - "coin_id": 34390, - "data": { - "content": null, - "market_cap": "$562,740,746", - "market_cap_btc": "8473.77236272219", - "price": 72.49490246500326, - "price_btc": "0.00109050144455969", - "price_change_percentage_24h": { - "aed": -9.989458362070641, - "ars": -9.993269335275947, - "aud": -9.919952445827468, - "bch": -20.005776241929503, - "bdt": -9.803552955365564, - "bhd": -10.029926971161848, - "bits": -12.349379480235555, - "bmd": -9.99411513617846, - "bnb": -11.707618523876222, - "brl": -10.059176241558006, - "btc": -12.349379480235566, - "cad": -10.124584959481119, - "chf": -10.105467494597004, - "clp": -8.99515721664071, - "cny": -9.969239950355153, - "czk": -10.142740901587358, - "dkk": -10.090409697885429, - "dot": -15.149876812415117, - "eos": -16.075126036626198, - "eth": -14.29490822463623, - "eur": -9.957565983891651, - "gbp": -10.083923465142522, - "gel": -9.960392436716845, - "hkd": -10.0348267111166, - "huf": -10.30965889560862, - "idr": -10.270452490722509, - "ils": -11.008833185341928, - "inr": -10.173483466359048, - "jpy": -9.637869365826313, - "krw": -9.768070174128516, - "kwd": -9.98388423838584, - "link": -13.863448831869118, - "lkr": -9.804380065866434, - "ltc": -13.451675871676299, - "mmk": -9.804784435775828, - "mxn": -10.244642241646575, - "myr": -9.805364198013732, - "ngn": -10.019085532865248, - "nok": -9.849861968048007, - "nzd": -9.934473272037629, - "php": -9.631361498944347, - "pkr": -9.804333661309498, - "pln": -10.353581753634666, - "rub": -9.8237544918177, - "sar": -9.99238762206066, - "sats": -12.34937948023555, - "sek": -9.99181446533182, - "sgd": -10.020568004617356, - "thb": -8.97396825166224, - "try": -10.1549195862579, - "twd": -9.824156340867878, - "uah": -9.888977470077975, - "usd": -9.99411513617846, - "vef": -9.994115136178342, - "vnd": -9.632282252946545, - "xag": -11.807353763770283, - "xau": -10.416162800362113, - "xdr": -9.804390064848029, - "xlm": -13.65698671200279, - "xrp": -13.333907546581786, - "yfi": -14.955667741031537, - "zar": -9.941245862794203 - }, - "sparkline": "https://www.coingecko.com/coins/34390/sparkline.svg", - "total_volume": "$45,463,364", - "total_volume_btc": "683.880690965658" - }, - "id": "pups-ordinals", - "large": "https://assets.coingecko.com/coins/images/34390/large/pups.jpg?1711528073", - "market_cap_rank": 149, - "name": "PUPS (Ordinals)", - "price_btc": 0.0010905014445596916, - "score": 14, - "slug": "pups-ordinals", - "small": "https://assets.coingecko.com/coins/images/34390/small/pups.jpg?1711528073", - "symbol": "PUPS", - "thumb": "https://assets.coingecko.com/coins/images/34390/standard/pups.jpg?1711528073" - } - } - ], - "nfts": [ - { - "data": { - "content": null, - "floor_price": "0.022 BTC", - "floor_price_in_usd_24h_percentage_change": "122.894603707559", - "h24_average_sale_price": "0.022 BTC", - "h24_volume": "1.75 BTC", - "sparkline": "https://www.coingecko.com/nft/3948/sparkline.svg" - }, - "floor_price_24h_percentage_change": 122.894603707559, - "floor_price_in_native_currency": 0.02168, - "id": "honey-badgers", - "name": "Honey Badgers", - "native_currency_symbol": "btc", - "nft_contract_id": 3948, - "symbol": "HONEY_BADGERS", - "thumb": "https://assets.coingecko.com/nft_contracts/images/3948/standard/honey-badgers.jpg?1707290267" - }, - { - "data": { - "content": null, - "floor_price": "0.21 ETH", - "floor_price_in_usd_24h_percentage_change": "63.3392750324004", - "h24_average_sale_price": "0.16 ETH", - "h24_volume": "4.03 ETH", - "sparkline": "https://www.coingecko.com/nft/374/sparkline.svg" - }, - "floor_price_24h_percentage_change": 63.3392750324004, - "floor_price_in_native_currency": 0.2095, - "id": "cryptophunks", - "name": "CryptoPhunks", - "native_currency_symbol": "eth", - "nft_contract_id": 374, - "symbol": "PHUNK", - "thumb": "https://assets.coingecko.com/nft_contracts/images/374/standard/cryptophunks.png?1707287290" - }, - { - "data": { - "content": null, - "floor_price": "20.50 SOL", - "floor_price_in_usd_24h_percentage_change": "36.9032426168674", - "h24_average_sale_price": "18.03 SOL", - "h24_volume": "396.74 SOL", - "sparkline": "https://www.coingecko.com/nft/3430/sparkline.svg" - }, - "floor_price_24h_percentage_change": 36.9032426168674, - "floor_price_in_native_currency": 20.5, - "id": "solcasinoio", - "name": "Solcasino.io", - "native_currency_symbol": "sol", - "nft_contract_id": 3430, - "symbol": "SOLCASINOIO", - "thumb": "https://assets.coingecko.com/nft_contracts/images/3430/standard/solcasino-io.png?1707290017" - }, - { - "data": { - "content": null, - "floor_price": "0.050 BTC", - "floor_price_in_usd_24h_percentage_change": "29.6838646552098", - "h24_average_sale_price": "0.051 BTC", - "h24_volume": "4.07 BTC", - "sparkline": "https://www.coingecko.com/nft/4159/sparkline.svg" - }, - "floor_price_24h_percentage_change": 29.6838646552098, - "floor_price_in_native_currency": 0.0498, - "id": "the-wizards-of-ord", - "name": "The Wizards of Ord", - "native_currency_symbol": "btc", - "nft_contract_id": 4159, - "symbol": "WIZARDS", - "thumb": "https://assets.coingecko.com/nft_contracts/images/4159/standard/the-wizards-of-ord.png?1708917684" - }, - { - "data": { - "content": null, - "floor_price": "1.14 ETH", - "floor_price_in_usd_24h_percentage_change": "29.6536031020891", - "h24_average_sale_price": "1.08 ETH", - "h24_volume": "30.25 ETH", - "sparkline": "https://www.coingecko.com/nft/2094/sparkline.svg" - }, - "floor_price_24h_percentage_change": 29.6536031020891, - "floor_price_in_native_currency": 1.1366, - "id": "azra-games-the-hopeful", - "name": "Azra Games - The Hopeful", - "native_currency_symbol": "eth", - "nft_contract_id": 2094, - "symbol": "HOPE", - "thumb": "https://assets.coingecko.com/nft_contracts/images/2094/standard/azra-games-the-hopeful.gif?1707288174" - }, - { - "data": { - "content": null, - "floor_price": "1.37 ETH", - "floor_price_in_usd_24h_percentage_change": "26.3837154980374", - "h24_average_sale_price": "1.21 ETH", - "h24_volume": "3.62 ETH", - "sparkline": "https://www.coingecko.com/nft/3428/sparkline.svg" - }, - "floor_price_24h_percentage_change": 26.3837154980374, - "floor_price_in_native_currency": 1.374999, - "id": "hytopia-worlds", - "name": "TOPIA Worlds", - "native_currency_symbol": "eth", - "nft_contract_id": 3428, - "symbol": "TOPIA Worlds", - "thumb": "https://assets.coingecko.com/nft_contracts/images/3428/standard/hytopia-worlds.png?1707290016" - }, - { - "data": { - "content": null, - "floor_price": "0.008 BTC", - "floor_price_in_usd_24h_percentage_change": "25.4337042935688", - "h24_average_sale_price": "0.008 BTC", - "h24_volume": "0.62 BTC", - "sparkline": "https://www.coingecko.com/nft/4174/sparkline.svg" - }, - "floor_price_24h_percentage_change": 25.4337042935688, - "floor_price_in_native_currency": 0.00799, - "id": "floraforms-by-harto-x-belvedere", - "name": "FloraForms by Harto X Belvedere", - "native_currency_symbol": "btc", - "nft_contract_id": 4174, - "symbol": "FLORAFORMS-BY-HARTO", - "thumb": "https://assets.coingecko.com/nft_contracts/images/4174/standard/floraforms-by-harto-x-belvedere.jpg?1709517795" - } - ] -} \ No newline at end of file diff --git a/get_data.py b/get_data.py deleted file mode 100644 index e69de29..0000000 diff --git a/main.py b/main.py index ef180ef..55ac0b5 100644 --- a/main.py +++ b/main.py @@ -1,3 +1,6 @@ +# -- main.py -- # +# This is the backend code, using FastAPI. + from typing import Annotated, List from fastapi import Depends, FastAPI, HTTPException, status, Form from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm diff --git a/my_api_key b/my_api_key deleted file mode 100644 index d179b40..0000000 --- a/my_api_key +++ /dev/null @@ -1 +0,0 @@ -CG-EZs9uG6mk8NzWQynCABzxxh4 \ No newline at end of file diff --git a/remote_db_test.py b/remote_db_test.py deleted file mode 100644 index 19f0b97..0000000 --- a/remote_db_test.py +++ /dev/null @@ -1,35 +0,0 @@ -from pymongo.mongo_client import MongoClient -from pymongo.server_api import ServerApi - -import pymongo - -import os -from dotenv import load_dotenv -current_dir = os.path.dirname(__file__) -dotenv_path = os.path.join(current_dir, 'env', '.env') -load_dotenv(dotenv_path) - -DB_USERNAME = os.getenv('atlas_username') -DB_PASSWORD = os.getenv('atlas_password') - - -uri = f"mongodb+srv://{DB_USERNAME}:{DB_PASSWORD}@cluster0.83a7lsv.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0" -# Create a new client and connect to the server -client = MongoClient(uri, server_api=ServerApi('1')) -# Send a ping to confirm a successful connection -try: - client.admin.command('ping') - print("Pinged your deployment. You successfully connected to MongoDB!") -except Exception as e: - print(e) - - -try: - print('trying to grab example data') - db = client.get_database('sample_analytics') - customers = db['customers'] - data = customers.find_one() - print(data) -except Exception as e: - print(e) - diff --git a/scratch_scripts/data_base_scratch_1.py b/scratch_scripts/data_base_scratch_1.py deleted file mode 100644 index a42fc84..0000000 --- a/scratch_scripts/data_base_scratch_1.py +++ /dev/null @@ -1,14 +0,0 @@ -from pymongo import MongoClient - -client = MongoClient("mongodb://localhost:27017/") -db = client["crypto_api_db"] -test_collection = db['collection_1'] - -# Example Document -btc_data = { - "name": "Bitcoin", - "symbol": "BTC", -} - -btc_id = test_collection.insert_one(btc_data).inserted_id -print(f'Inserted bitcoin with id: {btc_id}') \ No newline at end of file diff --git a/scratch_scripts/data_base_scratch_2.py b/scratch_scripts/data_base_scratch_2.py deleted file mode 100644 index e69de29..0000000 diff --git a/scratch_scripts/enviroment_vars_scratch_1.py b/scratch_scripts/enviroment_vars_scratch_1.py deleted file mode 100644 index 9e42c05..0000000 --- a/scratch_scripts/enviroment_vars_scratch_1.py +++ /dev/null @@ -1,15 +0,0 @@ -from dotenv import load_dotenv -import os - -# Path to the .env file relative to the current script -current_dir = os.path.dirname(__file__) -dotenv_path = os.path.join(current_dir, '..', 'env', '.env') -load_dotenv(dotenv_path) - -API_KEY = os.getenv('API_KEY') -MONGO_URI = os.getenv('MONGO_URI') -DATABASE_NAME = os.getenv('DATABASE_NAME') - -print(f'API_KEY: {API_KEY}') -print(f'MONGO_URI: {MONGO_URI}') -print(f'DATABASE_NAME: {DATABASE_NAME}') diff --git a/scratch_scripts/reading_through_docs.py b/scratch_scripts/reading_through_docs.py deleted file mode 100644 index 615d183..0000000 --- a/scratch_scripts/reading_through_docs.py +++ /dev/null @@ -1,364 +0,0 @@ -from datetime import datetime - -import requests -import json - -# https://docs.coingecko.com/reference/endpoint-overview - -# Helper functions -def get_depth(obj): - """ - tested for list of json objects but should be useful for other data structures. - recursively checks if each obj has a child. save the maximal depth of the object and return it. - :param obj: - :return: depth of obj - """ - depth = 0 - - if isinstance(obj, dict): - for key, value in obj.items(): - temp_depth = get_depth(value) - if temp_depth > depth: - depth = temp_depth - - if isinstance(obj, list): - for item in obj: - temp_depth = get_depth(item) - if temp_depth > depth: - depth = temp_depth - return depth + 1 - - -def save_json(dictionary, filename): - """ - Saves the dictionary to a json file - :param dictionary: - :param filename: - :return: None - """ - json_object = json.dumps(dictionary, indent=4, sort_keys=True) - with open(filename, 'w') as f: - f.write(json_object) - print(f'Saved {filename}') - return None - - - - -# Common end points testing -class ENDPOINTS(): - def __init__(self): - self.coin_list = None - self.currency_list = None - self.coin_categories = None - self.key = None - self.exchanges = None - with open('../my_api_key') as f: - self.key = f.read().strip() - print(f'key: {self.key}') - - def ping(self): - url = "https://api.coingecko.com/api/v3/ping" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - - print(response.text) - - def fetch_all_coins(self): - url = "https://api.coingecko.com/api/v3/coins/list" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - def set_all_coins(self): - """ - Sets the coins list for the ENDPOINTS class - :return: - """ - self.coin_list = self.fetch_all_coins() - return None - - def get_coin_price( - self, - coin_api_ids, - currency, - include_market_cap=False, - include_24hr_vol=False, - include24hr_change=False, - include_last_updated_at=False, - use_default_precision=True, - precision='full' - ): - """ - EndPOINT function for getting price of coins. - April 12th 2024: Looks like optional query endpoints do not add additional return values, only return prices. - - :param coin_api_ids: list of strings - :param currency: string - :param include_market_cap: boolean - :param include_24hr_vol: boolean - :param include24hr_change: boolean - :param include_last_updated_at: boolean - :param default_precision: boolean - :param precision: string - :return: dict - """ - url = f"https://api.coingecko.com/api/v3/simple/price?ids={coin_api_ids[0]}" - - # Test if below adds functionality, else remove. - if len(coin_api_ids) > 1: - for coin_api_id in coin_api_ids[1:]: - url += f"%2C%20{coin_api_id}" - url += f"&vs_currencies={currency}" - if include_market_cap: - url += "&include_market_cap=true" - if include_24hr_vol: - url += "&include_24hr_vol=true" - if include24hr_change: - url += "&include_24hr_change=true" - if include_last_updated_at: - url += "&include_last_updated_at=true" - if not use_default_precision: - url += f"&include_precision={precision}".format(precision=precision) - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response.text - - def fetch_currencies_list(self): - url = "https://api.coingecko.com/api/v3/simple/supported_vs_currencies" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - def set_currencies_list(self): - self.currency_list = self.fetch_currencies_list() - return None - - def fetch_market_data(self, coin_api_ids=['bitcoin', 'ethereum', 'litecoin'], currency='btc', category=None): - """ - - :param coin_api_ids: list of strings - :param currency: string - :param category: string, default to None. If not set to none will prioritize category over coin_api_ids parameter. - :return: - """ - - url = f"https://api.coingecko.com/api/v3/coins/markets?vs_currency={currency}&ids=" - url += coin_api_ids[0] - if len(coin_api_ids) > 1: - for coin_api_id in coin_api_ids[1:]: - url += f"%2C{coin_api_id}" - - if category: - url += f"&category={category}" - - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - def fetch_coin_categories(self): - url = "https://api.coingecko.com/api/v3/coins/categories/list" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - def set_coin_categories(self): - self.coin_categories = self.fetch_coin_categories() - - def fetch_coin_data(self, coin_id): - url = f"https://api.coingecko.com/api/v3/coins/{coin_id}" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - def fetch_all_exchanges(self): - url = f"https://api.coingecko.com/api/v3/exchanges/list" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - def set_all_exchanges(self): - self.exchanges = self.fetch_all_exchanges() - - def fetch_coin_exchange_tickers(self, coin_id='bitcoin', exchanges='binance'): - url = f"https://api.coingecko.com/api/v3/coins/{coin_id}/tickers?exchange_ids={exchanges}" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - def fetch_coin_recent_data(self, coin_id='bitcoin', currency='usd', days='1'): - url = f"https://api.coingecko.com/api/v3/coins/{coin_id}/market_chart?vs_currency={currency}&days={days}" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - def fetch_coin_historic_data(self, coin_id='bitcoin', date='today', localization=True): - if localization: - localization = "true" - else: - localization = "false" - - if date == "today": - date = datetime.today().strftime('%d-%m-%Y') - - url = f"https://api.coingecko.com/api/v3/coins/{coin_id}/history?date={date}&localization={localization}" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - def fetch_trending(self): - url = f"https://api.coingecko.com/api/v3/search/trending" - headers = { - "accept": "application/json", - "x-cg-api-key": self.key - } - response = requests.get(url, headers=headers) - response_dict = response.json() - return response_dict - - -# Testing Functions - -def ping_test(endpoints_obj): - endpoints_obj.ping() - - -def coin_list_test(endpoints_obj): - endpoints_obj.set_all_coins() - print(endpoints_obj.coin_list) - - -def price_examples_test(endpoints_obj): - bitcoin_example = endpoints_obj.get_coin_price(['bitcoin'], 'usd', True, True, True, True) - print(bitcoin_example) - ethereum_example = endpoints_obj.get_coin_price(['ethereum'], 'usd', True, True, True, True) - print(ethereum_example) - two_coins_example = endpoints_obj.get_coin_price(['bitcoin', 'ethereum'], 'usd', True, True, True, True) - print(two_coins_example) - - -def currency_list_test(endpoints_obj): - currencies_list = endpoints_obj.fetch_currencies_list() - print(currencies_list) - - -def market_data_test_ids(endpoints_obj): - market_data = endpoints_obj.fetch_market_data( - coin_api_ids=['bitcoin', 'ethereum', 'litecoin'], - currency='btc', - category=None - ) - print(market_data) - save_json(market_data, 'market_data_example.json') - return - - -def market_data_test_categories(endpoints_obj): - market_data = endpoints_obj.fetch_market_data( - currency='btc', - category="layer-1" - ) - print(market_data) - save_json(market_data, 'market_data_category.json') - return - -def coin_categories_test(endpoints_obj): - categories = endpoints_obj.set_coin_categories() - print(endpoints_obj.coin_categories) - - -def fetch_coin_data_test(endpoints_obj): - coin_data = endpoints_obj.fetch_coin_data("bitcoin") - save_json(coin_data, '../data/bitcoin_data.json') - print(coin_data) - - -def exchanges_list_test(endpoints_obj): - endpoints_obj.set_all_exchanges() - save_json(endpoints_obj.exchanges, '../data/exchanges.json') - print(endpoints_obj.exchanges) - - -def fetch_coin_exchange_tickers_test(endpoints_obj): - coin_exchange_tickers = endpoints_obj.fetch_coin_exchange_tickers('bitcoin', 'binance') - save_json(coin_exchange_tickers, '../data/bitcoin_ticker.json') - print(coin_exchange_tickers) - - -def fetch_coin_recent_data_test(endpoints_obj): - historic_data = endpoints_obj.fetch_coin_recent_data('bitcoin', 'usd', '1') - save_json(historic_data, '../data/bitcoin_recent_data.json') - print(historic_data) - - -def fetch_coin_historic_data_test(endpoints_obj): - historic_data = endpoints_obj.fetch_coin_historic_data('bitcoin', '11-04-2024', True) - save_json(historic_data, '../data/bitcoin_historic_data.json') - print(historic_data) - - -def fetch_trending_test(endpoints_obj): - trending_data = endpoints_obj.fetch_trending() - save_json(trending_data, '../data/trending_data.json') - print(trending_data) - - -if __name__ == '__main__': - endpoints = ENDPOINTS() - # ping_test(endpoints) - # coin_list_test(endpoints) - # price_examples_test(endpoints) - # currency_list_test(endpoints) - # market_data_test_ids(endpoints) - # market_data_test_categories(endpoints) - # coin_categories_test(endpoints) - # fetch_coin_data_test(endpoints) - # exchanges_list_test(endpoints) - # fetch_coin_exchange_tickers_test(endpoints) - # fetch_coin_recent_data_test(endpoints) - # fetch_coin_historic_data_test(endpoints) - fetch_trending_test(endpoints) - diff --git a/setup.py b/setup.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/test_database_1.py b/tests/test_database_1.py deleted file mode 100644 index 7399176..0000000 --- a/tests/test_database_1.py +++ /dev/null @@ -1,52 +0,0 @@ -import unittest -from pymongo import MongoClient -from crypto_api import database - -from dotenv import load_dotenv -import os - -current_dir = os.path.dirname(__file__) -dotenv_path = os.path.join(current_dir, '..', 'env', '.env') -load_dotenv(dotenv_path) - -API_KEY = os.getenv('API_KEY') -MONGO_URI = os.getenv('MONGO_URI') -DATABASE_NAME = 'test_db' - -class TestDatabase(unittest.TestCase): - - @classmethod - def setUpClass(cls): - # Connect to a test database - cls.client = MongoClient(MONGO_URI) - cls.db = cls.client[DATABASE_NAME] - database.cryptocurrencies = cls.db["cryptocurrencies"] - # Initialize test data if needed - - @classmethod - def tearDownClass(cls): - # Clean up after tests - cls.client.drop_database('test_db') - cls.client.close() - - def test_insert_cryptocurrency(self): - data = { - "name": "Bitcoin", - "symbol": "BTC", - "image_url": "https://example.com/bitcoin.png" - } - result = database.insert_cryptocurrency(data) - self.assertIsNotNone(result.inserted_id) - - # Optionally, you can verify the inserted document - inserted_doc = self.db.cryptocurrencies.find_one({"name": "Bitcoin"}) - self.assertIsNotNone(inserted_doc) - self.assertEqual(inserted_doc["name"], "Bitcoin") - self.assertEqual(inserted_doc["symbol"], "BTC") - self.assertEqual(inserted_doc["image_url"], "https://example.com/bitcoin.png") - - # Add more tests for other database functions - -if __name__ == '__main__': - unittest.main() - From 2fe267a276252c070de62dd8f4349c6a700c2db6 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Mon, 22 Jul 2024 21:30:44 -0700 Subject: [PATCH 19/32] updated requirements file to include streamlit --- poetry.lock | 809 ++++++++++++++++++++++++++++++++++++++++++++++++- pyproject.toml | 2 + 2 files changed, 810 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 95be8b2..c8616cc 100644 --- a/poetry.lock +++ b/poetry.lock @@ -120,6 +120,30 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "altair" +version = "5.3.0" +description = "Vega-Altair: A declarative statistical visualization library for Python." +optional = false +python-versions = ">=3.8" +files = [ + {file = "altair-5.3.0-py3-none-any.whl", hash = "sha256:7084a1dab4d83c5e7e5246b92dc1b4451a6c68fd057f3716ee9d315c8980e59a"}, + {file = "altair-5.3.0.tar.gz", hash = "sha256:5a268b1a0983b23d8f9129f819f956174aa7aea2719ed55a52eba9979b9f6675"}, +] + +[package.dependencies] +jinja2 = "*" +jsonschema = ">=3.0" +numpy = "*" +packaging = "*" +pandas = ">=0.25" +toolz = "*" + +[package.extras] +all = ["altair-tiles (>=0.3.0)", "anywidget (>=0.9.0)", "pyarrow (>=11)", "vega-datasets (>=0.9.0)", "vegafusion[embed] (>=1.6.6)", "vl-convert-python (>=1.3.0)"] +dev = ["geopandas", "hatch", "ipython", "m2r", "mypy", "pandas-stubs", "pytest", "pytest-cov", "ruff (>=0.3.0)", "types-jsonschema", "types-setuptools"] +doc = ["docutils", "jinja2", "myst-parser", "numpydoc", "pillow (>=9,<10)", "pydata-sphinx-theme (>=0.14.1)", "scipy", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinxext-altair"] + [[package]] name = "annotated-types" version = "0.7.0" @@ -215,6 +239,28 @@ files = [ {file = "bidict-0.23.1.tar.gz", hash = "sha256:03069d763bc387bbd20e7d49914e75fc4132a41937fa3405417e1a5a2d006d71"}, ] +[[package]] +name = "blinker" +version = "1.8.2" +description = "Fast, simple object-to-object and broadcast signaling" +optional = false +python-versions = ">=3.8" +files = [ + {file = "blinker-1.8.2-py3-none-any.whl", hash = "sha256:1779309f71bf239144b9399d06ae925637cf6634cf6bd131104184531bf67c01"}, + {file = "blinker-1.8.2.tar.gz", hash = "sha256:8f77b09d3bf7c795e969e9486f39c2c5e9c39d4ee07424be2bc594ece9642d83"}, +] + +[[package]] +name = "cachetools" +version = "5.4.0" +description = "Extensible memoizing collections and decorators" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachetools-5.4.0-py3-none-any.whl", hash = "sha256:3ae3b49a3d5e28a77a0be2b37dbcb89005058959cb2323858c2657c4a8cab474"}, + {file = "cachetools-5.4.0.tar.gz", hash = "sha256:b8adc2e7c07f105ced7bc56dbb6dfbe7c4a00acce20e2227b3f355be89bc6827"}, +] + [[package]] name = "certifi" version = "2024.7.4" @@ -486,6 +532,38 @@ files = [ {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, ] +[[package]] +name = "gitdb" +version = "4.0.11" +description = "Git Object Database" +optional = false +python-versions = ">=3.7" +files = [ + {file = "gitdb-4.0.11-py3-none-any.whl", hash = "sha256:81a3407ddd2ee8df444cbacea00e2d038e40150acfa3001696fe0dcf1d3adfa4"}, + {file = "gitdb-4.0.11.tar.gz", hash = "sha256:bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b"}, +] + +[package.dependencies] +smmap = ">=3.0.1,<6" + +[[package]] +name = "gitpython" +version = "3.1.43" +description = "GitPython is a Python library used to interact with Git repositories" +optional = false +python-versions = ">=3.7" +files = [ + {file = "GitPython-3.1.43-py3-none-any.whl", hash = "sha256:eec7ec56b92aad751f9912a73404bc02ba212a23adb2c7098ee668417051a1ff"}, + {file = "GitPython-3.1.43.tar.gz", hash = "sha256:35f314a9f878467f5453cc1fee295c3e18e52f1b99f10f6cf5b1682e968a9e7c"}, +] + +[package.dependencies] +gitdb = ">=4.0.1,<5" + +[package.extras] +doc = ["sphinx (==4.3.2)", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "sphinxcontrib-applehelp (>=1.0.2,<=1.0.4)", "sphinxcontrib-devhelp (==1.0.2)", "sphinxcontrib-htmlhelp (>=2.0.0,<=2.0.1)", "sphinxcontrib-qthelp (==1.0.3)", "sphinxcontrib-serializinghtml (==1.1.5)"] +test = ["coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre-commit", "pytest (>=7.3.1)", "pytest-cov", "pytest-instafail", "pytest-mock", "pytest-sugar", "typing-extensions"] + [[package]] name = "h11" version = "0.14.0" @@ -640,6 +718,65 @@ MarkupSafe = ">=2.0" [package.extras] i18n = ["Babel (>=2.7)"] +[[package]] +name = "jsonschema" +version = "4.23.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, + {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=24.6.0)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.12.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"}, + {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"}, +] + +[package.dependencies] +referencing = ">=0.31.0" + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +description = "Python port of markdown-it. Markdown parsing, done right!" +optional = false +python-versions = ">=3.8" +files = [ + {file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"}, + {file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"}, +] + +[package.dependencies] +mdurl = ">=0.1,<1.0" + +[package.extras] +benchmarking = ["psutil", "pytest", "pytest-benchmark"] +code-style = ["pre-commit (>=3.0,<4.0)"] +compare = ["commonmark (>=0.9,<1.0)", "markdown (>=3.4,<4.0)", "mistletoe (>=1.0,<2.0)", "mistune (>=2.0,<3.0)", "panflute (>=2.3,<3.0)"] +linkify = ["linkify-it-py (>=1,<3)"] +plugins = ["mdit-py-plugins"] +profiling = ["gprof2dot"] +rtd = ["jupyter_sphinx", "mdit-py-plugins", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx_book_theme"] +testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] + [[package]] name = "markdown2" version = "2.5.0" @@ -726,6 +863,17 @@ files = [ {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, ] +[[package]] +name = "mdurl" +version = "0.1.2" +description = "Markdown URL utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, + {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, +] + [[package]] name = "multidict" version = "6.0.5" @@ -863,6 +1011,60 @@ native = ["pywebview (>=5.0.1,<6.0.0)"] plotly = ["plotly (>=5.13.0,<6.0.0)"] sass = ["libsass (>=0.23.0,<0.24.0)"] +[[package]] +name = "numpy" +version = "2.0.1" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "numpy-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0fbb536eac80e27a2793ffd787895242b7f18ef792563d742c2d673bfcb75134"}, + {file = "numpy-2.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:69ff563d43c69b1baba77af455dd0a839df8d25e8590e79c90fcbe1499ebde42"}, + {file = "numpy-2.0.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:1b902ce0e0a5bb7704556a217c4f63a7974f8f43e090aff03fcf262e0b135e02"}, + {file = "numpy-2.0.1-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:f1659887361a7151f89e79b276ed8dff3d75877df906328f14d8bb40bb4f5101"}, + {file = "numpy-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4658c398d65d1b25e1760de3157011a80375da861709abd7cef3bad65d6543f9"}, + {file = "numpy-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4127d4303b9ac9f94ca0441138acead39928938660ca58329fe156f84b9f3015"}, + {file = "numpy-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e5eeca8067ad04bc8a2a8731183d51d7cbaac66d86085d5f4766ee6bf19c7f87"}, + {file = "numpy-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9adbd9bb520c866e1bfd7e10e1880a1f7749f1f6e5017686a5fbb9b72cf69f82"}, + {file = "numpy-2.0.1-cp310-cp310-win32.whl", hash = "sha256:7b9853803278db3bdcc6cd5beca37815b133e9e77ff3d4733c247414e78eb8d1"}, + {file = "numpy-2.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:81b0893a39bc5b865b8bf89e9ad7807e16717f19868e9d234bdaf9b1f1393868"}, + {file = "numpy-2.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75b4e316c5902d8163ef9d423b1c3f2f6252226d1aa5cd8a0a03a7d01ffc6268"}, + {file = "numpy-2.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6e4eeb6eb2fced786e32e6d8df9e755ce5be920d17f7ce00bc38fcde8ccdbf9e"}, + {file = "numpy-2.0.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a1e01dcaab205fbece13c1410253a9eea1b1c9b61d237b6fa59bcc46e8e89343"}, + {file = "numpy-2.0.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:a8fc2de81ad835d999113ddf87d1ea2b0f4704cbd947c948d2f5513deafe5a7b"}, + {file = "numpy-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a3d94942c331dd4e0e1147f7a8699a4aa47dffc11bf8a1523c12af8b2e91bbe"}, + {file = "numpy-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15eb4eca47d36ec3f78cde0a3a2ee24cf05ca7396ef808dda2c0ddad7c2bde67"}, + {file = "numpy-2.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b83e16a5511d1b1f8a88cbabb1a6f6a499f82c062a4251892d9ad5d609863fb7"}, + {file = "numpy-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f87fec1f9bc1efd23f4227becff04bd0e979e23ca50cc92ec88b38489db3b55"}, + {file = "numpy-2.0.1-cp311-cp311-win32.whl", hash = "sha256:36d3a9405fd7c511804dc56fc32974fa5533bdeb3cd1604d6b8ff1d292b819c4"}, + {file = "numpy-2.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:08458fbf403bff5e2b45f08eda195d4b0c9b35682311da5a5a0a0925b11b9bd8"}, + {file = "numpy-2.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6bf4e6f4a2a2e26655717a1983ef6324f2664d7011f6ef7482e8c0b3d51e82ac"}, + {file = "numpy-2.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7d6fddc5fe258d3328cd8e3d7d3e02234c5d70e01ebe377a6ab92adb14039cb4"}, + {file = "numpy-2.0.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:5daab361be6ddeb299a918a7c0864fa8618af66019138263247af405018b04e1"}, + {file = "numpy-2.0.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:ea2326a4dca88e4a274ba3a4405eb6c6467d3ffbd8c7d38632502eaae3820587"}, + {file = "numpy-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:529af13c5f4b7a932fb0e1911d3a75da204eff023ee5e0e79c1751564221a5c8"}, + {file = "numpy-2.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6790654cb13eab303d8402354fabd47472b24635700f631f041bd0b65e37298a"}, + {file = "numpy-2.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbab9fc9c391700e3e1287666dfd82d8666d10e69a6c4a09ab97574c0b7ee0a7"}, + {file = "numpy-2.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:99d0d92a5e3613c33a5f01db206a33f8fdf3d71f2912b0de1739894668b7a93b"}, + {file = "numpy-2.0.1-cp312-cp312-win32.whl", hash = "sha256:173a00b9995f73b79eb0191129f2455f1e34c203f559dd118636858cc452a1bf"}, + {file = "numpy-2.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:bb2124fdc6e62baae159ebcfa368708867eb56806804d005860b6007388df171"}, + {file = "numpy-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bfc085b28d62ff4009364e7ca34b80a9a080cbd97c2c0630bb5f7f770dae9414"}, + {file = "numpy-2.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8fae4ebbf95a179c1156fab0b142b74e4ba4204c87bde8d3d8b6f9c34c5825ef"}, + {file = "numpy-2.0.1-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:72dc22e9ec8f6eaa206deb1b1355eb2e253899d7347f5e2fae5f0af613741d06"}, + {file = "numpy-2.0.1-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:ec87f5f8aca726117a1c9b7083e7656a9d0d606eec7299cc067bb83d26f16e0c"}, + {file = "numpy-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f682ea61a88479d9498bf2091fdcd722b090724b08b31d63e022adc063bad59"}, + {file = "numpy-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8efc84f01c1cd7e34b3fb310183e72fcdf55293ee736d679b6d35b35d80bba26"}, + {file = "numpy-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3fdabe3e2a52bc4eff8dc7a5044342f8bd9f11ef0934fcd3289a788c0eb10018"}, + {file = "numpy-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:24a0e1befbfa14615b49ba9659d3d8818a0f4d8a1c5822af8696706fbda7310c"}, + {file = "numpy-2.0.1-cp39-cp39-win32.whl", hash = "sha256:f9cf5ea551aec449206954b075db819f52adc1638d46a6738253a712d553c7b4"}, + {file = "numpy-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:e9e81fa9017eaa416c056e5d9e71be93d05e2c3c2ab308d23307a8bc4443c368"}, + {file = "numpy-2.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:61728fba1e464f789b11deb78a57805c70b2ed02343560456190d0501ba37b0f"}, + {file = "numpy-2.0.1-pp39-pypy39_pp73-macosx_14_0_x86_64.whl", hash = "sha256:12f5d865d60fb9734e60a60f1d5afa6d962d8d4467c120a1c0cda6eb2964437d"}, + {file = "numpy-2.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eacf3291e263d5a67d8c1a581a8ebbcfd6447204ef58828caf69a5e3e8c75990"}, + {file = "numpy-2.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2c3a346ae20cfd80b6cfd3e60dc179963ef2ea58da5ec074fd3d9e7a1e7ba97f"}, + {file = "numpy-2.0.1.tar.gz", hash = "sha256:485b87235796410c3519a699cfe1faab097e509e90ebb05dcd098db2ae87e7b3"}, +] + [[package]] name = "orjson" version = "3.10.6" @@ -923,6 +1125,206 @@ files = [ {file = "orjson-3.10.6.tar.gz", hash = "sha256:e54b63d0a7c6c54a5f5f726bc93a2078111ef060fec4ecbf34c5db800ca3b3a7"}, ] +[[package]] +name = "packaging" +version = "24.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, + {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, +] + +[[package]] +name = "pandas" +version = "2.2.2" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pandas-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce"}, + {file = "pandas-2.2.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c7adfc142dac335d8c1e0dcbd37eb8617eac386596eb9e1a1b77791cf2498238"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99"}, + {file = "pandas-2.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1"}, + {file = "pandas-2.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32"}, + {file = "pandas-2.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23"}, + {file = "pandas-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2"}, + {file = "pandas-2.2.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9057e6aa78a584bc93a13f0a9bf7e753a5e9770a30b4d758b8d5f2a62a9433cd"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57"}, + {file = "pandas-2.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4"}, + {file = "pandas-2.2.2.tar.gz", hash = "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54"}, +] + +[package.dependencies] +numpy = [ + {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, + {version = ">=1.23.2", markers = "python_version == \"3.11\""}, +] +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.7" + +[package.extras] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] +consortium-standard = ["dataframe-api-compat (>=0.1.7)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] +test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.9.2)"] + +[[package]] +name = "pillow" +version = "10.4.0" +description = "Python Imaging Library (Fork)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, + {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, + {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, + {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, + {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, + {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, + {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, + {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, + {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, + {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, + {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, + {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, + {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, + {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, + {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, + {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, + {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, + {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, + {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, + {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, + {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, + {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, + {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, + {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, + {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, + {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, + {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, + {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, + {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, + {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, + {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, + {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, + {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, + {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, + {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, + {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, + {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, + {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, + {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, + {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, + {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, + {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, +] + +[package.extras] +docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] +tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] +typing = ["typing-extensions"] +xmp = ["defusedxml"] + +[[package]] +name = "protobuf" +version = "5.27.2" +description = "" +optional = false +python-versions = ">=3.8" +files = [ + {file = "protobuf-5.27.2-cp310-abi3-win32.whl", hash = "sha256:354d84fac2b0d76062e9b3221f4abbbacdfd2a4d8af36bab0474f3a0bb30ab38"}, + {file = "protobuf-5.27.2-cp310-abi3-win_amd64.whl", hash = "sha256:0e341109c609749d501986b835f667c6e1e24531096cff9d34ae411595e26505"}, + {file = "protobuf-5.27.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a109916aaac42bff84702fb5187f3edadbc7c97fc2c99c5ff81dd15dcce0d1e5"}, + {file = "protobuf-5.27.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:176c12b1f1c880bf7a76d9f7c75822b6a2bc3db2d28baa4d300e8ce4cde7409b"}, + {file = "protobuf-5.27.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:b848dbe1d57ed7c191dfc4ea64b8b004a3f9ece4bf4d0d80a367b76df20bf36e"}, + {file = "protobuf-5.27.2-cp38-cp38-win32.whl", hash = "sha256:4fadd8d83e1992eed0248bc50a4a6361dc31bcccc84388c54c86e530b7f58863"}, + {file = "protobuf-5.27.2-cp38-cp38-win_amd64.whl", hash = "sha256:610e700f02469c4a997e58e328cac6f305f649826853813177e6290416e846c6"}, + {file = "protobuf-5.27.2-cp39-cp39-win32.whl", hash = "sha256:9e8f199bf7f97bd7ecebffcae45ebf9527603549b2b562df0fbc6d4d688f14ca"}, + {file = "protobuf-5.27.2-cp39-cp39-win_amd64.whl", hash = "sha256:7fc3add9e6003e026da5fc9e59b131b8f22b428b991ccd53e2af8071687b4fce"}, + {file = "protobuf-5.27.2-py3-none-any.whl", hash = "sha256:54330f07e4949d09614707c48b06d1a22f8ffb5763c159efd5c0928326a91470"}, + {file = "protobuf-5.27.2.tar.gz", hash = "sha256:f3ecdef226b9af856075f28227ff2c90ce3a594d092c39bee5513573f25e2714"}, +] + [[package]] name = "pscript" version = "0.7.7" @@ -934,6 +1336,57 @@ files = [ {file = "pscript-0.7.7.tar.gz", hash = "sha256:8632f7a4483f235514aadee110edee82eb6d67336bf68744a7b18d76e50442f8"}, ] +[[package]] +name = "pyarrow" +version = "17.0.0" +description = "Python library for Apache Arrow" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pyarrow-17.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:a5c8b238d47e48812ee577ee20c9a2779e6a5904f1708ae240f53ecbee7c9f07"}, + {file = "pyarrow-17.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:db023dc4c6cae1015de9e198d41250688383c3f9af8f565370ab2b4cb5f62655"}, + {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da1e060b3876faa11cee287839f9cc7cdc00649f475714b8680a05fd9071d545"}, + {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75c06d4624c0ad6674364bb46ef38c3132768139ddec1c56582dbac54f2663e2"}, + {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:fa3c246cc58cb5a4a5cb407a18f193354ea47dd0648194e6265bd24177982fe8"}, + {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:f7ae2de664e0b158d1607699a16a488de3d008ba99b3a7aa5de1cbc13574d047"}, + {file = "pyarrow-17.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5984f416552eea15fd9cee03da53542bf4cddaef5afecefb9aa8d1010c335087"}, + {file = "pyarrow-17.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:1c8856e2ef09eb87ecf937104aacfa0708f22dfeb039c363ec99735190ffb977"}, + {file = "pyarrow-17.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e19f569567efcbbd42084e87f948778eb371d308e137a0f97afe19bb860ccb3"}, + {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b244dc8e08a23b3e352899a006a26ae7b4d0da7bb636872fa8f5884e70acf15"}, + {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b72e87fe3e1db343995562f7fff8aee354b55ee83d13afba65400c178ab2597"}, + {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dc5c31c37409dfbc5d014047817cb4ccd8c1ea25d19576acf1a001fe07f5b420"}, + {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e3343cb1e88bc2ea605986d4b94948716edc7a8d14afd4e2c097232f729758b4"}, + {file = "pyarrow-17.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:a27532c38f3de9eb3e90ecab63dfda948a8ca859a66e3a47f5f42d1e403c4d03"}, + {file = "pyarrow-17.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9b8a823cea605221e61f34859dcc03207e52e409ccf6354634143e23af7c8d22"}, + {file = "pyarrow-17.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f1e70de6cb5790a50b01d2b686d54aaf73da01266850b05e3af2a1bc89e16053"}, + {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0071ce35788c6f9077ff9ecba4858108eebe2ea5a3f7cf2cf55ebc1dbc6ee24a"}, + {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:757074882f844411fcca735e39aae74248a1531367a7c80799b4266390ae51cc"}, + {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ba11c4f16976e89146781a83833df7f82077cdab7dc6232c897789343f7891a"}, + {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b0c6ac301093b42d34410b187bba560b17c0330f64907bfa4f7f7f2444b0cf9b"}, + {file = "pyarrow-17.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:392bc9feabc647338e6c89267635e111d71edad5fcffba204425a7c8d13610d7"}, + {file = "pyarrow-17.0.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:af5ff82a04b2171415f1410cff7ebb79861afc5dae50be73ce06d6e870615204"}, + {file = "pyarrow-17.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:edca18eaca89cd6382dfbcff3dd2d87633433043650c07375d095cd3517561d8"}, + {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c7916bff914ac5d4a8fe25b7a25e432ff921e72f6f2b7547d1e325c1ad9d155"}, + {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f553ca691b9e94b202ff741bdd40f6ccb70cdd5fbf65c187af132f1317de6145"}, + {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0cdb0e627c86c373205a2f94a510ac4376fdc523f8bb36beab2e7f204416163c"}, + {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:d7d192305d9d8bc9082d10f361fc70a73590a4c65cf31c3e6926cd72b76bc35c"}, + {file = "pyarrow-17.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:02dae06ce212d8b3244dd3e7d12d9c4d3046945a5933d28026598e9dbbda1fca"}, + {file = "pyarrow-17.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:13d7a460b412f31e4c0efa1148e1d29bdf18ad1411eb6757d38f8fbdcc8645fb"}, + {file = "pyarrow-17.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9b564a51fbccfab5a04a80453e5ac6c9954a9c5ef2890d1bcf63741909c3f8df"}, + {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32503827abbc5aadedfa235f5ece8c4f8f8b0a3cf01066bc8d29de7539532687"}, + {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a155acc7f154b9ffcc85497509bcd0d43efb80d6f733b0dc3bb14e281f131c8b"}, + {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:dec8d129254d0188a49f8a1fc99e0560dc1b85f60af729f47de4046015f9b0a5"}, + {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a48ddf5c3c6a6c505904545c25a4ae13646ae1f8ba703c4df4a1bfe4f4006bda"}, + {file = "pyarrow-17.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:42bf93249a083aca230ba7e2786c5f673507fa97bbd9725a1e2754715151a204"}, + {file = "pyarrow-17.0.0.tar.gz", hash = "sha256:4beca9521ed2c0921c1023e68d097d0299b62c362639ea315572a58f3f50fd28"}, +] + +[package.dependencies] +numpy = ">=1.16.6" + +[package.extras] +test = ["cffi", "hypothesis", "pandas", "pytest", "pytz"] + [[package]] name = "pydantic" version = "2.8.2" @@ -1057,6 +1510,25 @@ files = [ [package.dependencies] typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" +[[package]] +name = "pydeck" +version = "0.9.1" +description = "Widget for deck.gl maps" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydeck-0.9.1-py2.py3-none-any.whl", hash = "sha256:b3f75ba0d273fc917094fa61224f3f6076ca8752b93d46faf3bcfd9f9d59b038"}, + {file = "pydeck-0.9.1.tar.gz", hash = "sha256:f74475ae637951d63f2ee58326757f8d4f9cd9f2a457cf42950715003e2cb605"}, +] + +[package.dependencies] +jinja2 = ">=2.10.1" +numpy = ">=1.16.4" + +[package.extras] +carto = ["pydeck-carto"] +jupyter = ["ipykernel (>=5.1.2)", "ipython (>=5.8.0)", "ipywidgets (>=7,<8)", "traitlets (>=4.3.2)"] + [[package]] name = "pygments" version = "2.18.0" @@ -1143,6 +1615,20 @@ snappy = ["python-snappy"] test = ["pytest (>=7)"] zstd = ["zstandard"] +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, + {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, +] + +[package.dependencies] +six = ">=1.5" + [[package]] name = "python-dotenv" version = "1.0.1" @@ -1211,6 +1697,17 @@ asyncio-client = ["aiohttp (>=3.4)"] client = ["requests (>=2.21.0)", "websocket-client (>=0.54.0)"] docs = ["sphinx"] +[[package]] +name = "pytz" +version = "2024.1" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, + {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, +] + [[package]] name = "pyyaml" version = "6.0.1" @@ -1271,6 +1768,21 @@ files = [ {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, ] +[[package]] +name = "referencing" +version = "0.35.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"}, + {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + [[package]] name = "requests" version = "2.32.3" @@ -1292,6 +1804,132 @@ urllib3 = ">=1.21.1,<3" socks = ["PySocks (>=1.5.6,!=1.5.7)"] use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] +[[package]] +name = "rich" +version = "13.7.1" +description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222"}, + {file = "rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432"}, +] + +[package.dependencies] +markdown-it-py = ">=2.2.0" +pygments = ">=2.13.0,<3.0.0" + +[package.extras] +jupyter = ["ipywidgets (>=7.5.1,<9)"] + +[[package]] +name = "rpds-py" +version = "0.19.0" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.19.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:fb37bd599f031f1a6fb9e58ec62864ccf3ad549cf14bac527dbfa97123edcca4"}, + {file = "rpds_py-0.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3384d278df99ec2c6acf701d067147320b864ef6727405d6470838476e44d9e8"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e54548e0be3ac117595408fd4ca0ac9278fde89829b0b518be92863b17ff67a2"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8eb488ef928cdbc05a27245e52de73c0d7c72a34240ef4d9893fdf65a8c1a955"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5da93debdfe27b2bfc69eefb592e1831d957b9535e0943a0ee8b97996de21b5"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79e205c70afddd41f6ee79a8656aec738492a550247a7af697d5bd1aee14f766"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:959179efb3e4a27610e8d54d667c02a9feaa86bbabaf63efa7faa4dfa780d4f1"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a6e605bb9edcf010f54f8b6a590dd23a4b40a8cb141255eec2a03db249bc915b"}, + {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9133d75dc119a61d1a0ded38fb9ba40a00ef41697cc07adb6ae098c875195a3f"}, + {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd36b712d35e757e28bf2f40a71e8f8a2d43c8b026d881aa0c617b450d6865c9"}, + {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354f3a91718489912f2e0fc331c24eaaf6a4565c080e00fbedb6015857c00582"}, + {file = "rpds_py-0.19.0-cp310-none-win32.whl", hash = "sha256:ebcbf356bf5c51afc3290e491d3722b26aaf5b6af3c1c7f6a1b757828a46e336"}, + {file = "rpds_py-0.19.0-cp310-none-win_amd64.whl", hash = "sha256:75a6076289b2df6c8ecb9d13ff79ae0cad1d5fb40af377a5021016d58cd691ec"}, + {file = "rpds_py-0.19.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6d45080095e585f8c5097897313def60caa2046da202cdb17a01f147fb263b81"}, + {file = "rpds_py-0.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5c9581019c96f865483d031691a5ff1cc455feb4d84fc6920a5ffc48a794d8a"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1540d807364c84516417115c38f0119dfec5ea5c0dd9a25332dea60b1d26fc4d"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9e65489222b410f79711dc3d2d5003d2757e30874096b2008d50329ea4d0f88c"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9da6f400eeb8c36f72ef6646ea530d6d175a4f77ff2ed8dfd6352842274c1d8b"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37f46bb11858717e0efa7893c0f7055c43b44c103e40e69442db5061cb26ed34"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:071d4adc734de562bd11d43bd134330fb6249769b2f66b9310dab7460f4bf714"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9625367c8955e4319049113ea4f8fee0c6c1145192d57946c6ffcd8fe8bf48dd"}, + {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e19509145275d46bc4d1e16af0b57a12d227c8253655a46bbd5ec317e941279d"}, + {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d438e4c020d8c39961deaf58f6913b1bf8832d9b6f62ec35bd93e97807e9cbc"}, + {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:90bf55d9d139e5d127193170f38c584ed3c79e16638890d2e36f23aa1630b952"}, + {file = "rpds_py-0.19.0-cp311-none-win32.whl", hash = "sha256:8d6ad132b1bc13d05ffe5b85e7a01a3998bf3a6302ba594b28d61b8c2cf13aaf"}, + {file = "rpds_py-0.19.0-cp311-none-win_amd64.whl", hash = "sha256:7ec72df7354e6b7f6eb2a17fa6901350018c3a9ad78e48d7b2b54d0412539a67"}, + {file = "rpds_py-0.19.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:5095a7c838a8647c32aa37c3a460d2c48debff7fc26e1136aee60100a8cd8f68"}, + {file = "rpds_py-0.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f2f78ef14077e08856e788fa482107aa602636c16c25bdf59c22ea525a785e9"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7cc6cb44f8636fbf4a934ca72f3e786ba3c9f9ba4f4d74611e7da80684e48d2"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf902878b4af334a09de7a45badbff0389e7cf8dc2e4dcf5f07125d0b7c2656d"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:688aa6b8aa724db1596514751ffb767766e02e5c4a87486ab36b8e1ebc1aedac"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57dbc9167d48e355e2569346b5aa4077f29bf86389c924df25c0a8b9124461fb"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b4cf5a9497874822341c2ebe0d5850fed392034caadc0bad134ab6822c0925b"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8a790d235b9d39c70a466200d506bb33a98e2ee374a9b4eec7a8ac64c2c261fa"}, + {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1d16089dfa58719c98a1c06f2daceba6d8e3fb9b5d7931af4a990a3c486241cb"}, + {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bc9128e74fe94650367fe23f37074f121b9f796cabbd2f928f13e9661837296d"}, + {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c8f77e661ffd96ff104bebf7d0f3255b02aa5d5b28326f5408d6284c4a8b3248"}, + {file = "rpds_py-0.19.0-cp312-none-win32.whl", hash = "sha256:5f83689a38e76969327e9b682be5521d87a0c9e5a2e187d2bc6be4765f0d4600"}, + {file = "rpds_py-0.19.0-cp312-none-win_amd64.whl", hash = "sha256:06925c50f86da0596b9c3c64c3837b2481337b83ef3519e5db2701df695453a4"}, + {file = "rpds_py-0.19.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:52e466bea6f8f3a44b1234570244b1cff45150f59a4acae3fcc5fd700c2993ca"}, + {file = "rpds_py-0.19.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e21cc693045fda7f745c790cb687958161ce172ffe3c5719ca1764e752237d16"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b31f059878eb1f5da8b2fd82480cc18bed8dcd7fb8fe68370e2e6285fa86da6"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1dd46f309e953927dd018567d6a9e2fb84783963650171f6c5fe7e5c41fd5666"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34a01a4490e170376cd79258b7f755fa13b1a6c3667e872c8e35051ae857a92b"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bcf426a8c38eb57f7bf28932e68425ba86def6e756a5b8cb4731d8e62e4e0223"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68eea5df6347d3f1378ce992d86b2af16ad7ff4dcb4a19ccdc23dea901b87fb"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dab8d921b55a28287733263c0e4c7db11b3ee22aee158a4de09f13c93283c62d"}, + {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6fe87efd7f47266dfc42fe76dae89060038f1d9cb911f89ae7e5084148d1cc08"}, + {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:535d4b52524a961d220875688159277f0e9eeeda0ac45e766092bfb54437543f"}, + {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:8b1a94b8afc154fbe36978a511a1f155f9bd97664e4f1f7a374d72e180ceb0ae"}, + {file = "rpds_py-0.19.0-cp38-none-win32.whl", hash = "sha256:7c98298a15d6b90c8f6e3caa6457f4f022423caa5fa1a1ca7a5e9e512bdb77a4"}, + {file = "rpds_py-0.19.0-cp38-none-win_amd64.whl", hash = "sha256:b0da31853ab6e58a11db3205729133ce0df26e6804e93079dee095be3d681dc1"}, + {file = "rpds_py-0.19.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5039e3cef7b3e7a060de468a4a60a60a1f31786da94c6cb054e7a3c75906111c"}, + {file = "rpds_py-0.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab1932ca6cb8c7499a4d87cb21ccc0d3326f172cfb6a64021a889b591bb3045c"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2afd2164a1e85226fcb6a1da77a5c8896c18bfe08e82e8ceced5181c42d2179"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b1c30841f5040de47a0046c243fc1b44ddc87d1b12435a43b8edff7e7cb1e0d0"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f757f359f30ec7dcebca662a6bd46d1098f8b9fb1fcd661a9e13f2e8ce343ba1"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15e65395a59d2e0e96caf8ee5389ffb4604e980479c32742936ddd7ade914b22"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb0f6eb3a320f24b94d177e62f4074ff438f2ad9d27e75a46221904ef21a7b05"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b228e693a2559888790936e20f5f88b6e9f8162c681830eda303bad7517b4d5a"}, + {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2575efaa5d949c9f4e2cdbe7d805d02122c16065bfb8d95c129372d65a291a0b"}, + {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5c872814b77a4e84afa293a1bee08c14daed1068b2bb1cc312edbf020bbbca2b"}, + {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:850720e1b383df199b8433a20e02b25b72f0fded28bc03c5bd79e2ce7ef050be"}, + {file = "rpds_py-0.19.0-cp39-none-win32.whl", hash = "sha256:ce84a7efa5af9f54c0aa7692c45861c1667080814286cacb9958c07fc50294fb"}, + {file = "rpds_py-0.19.0-cp39-none-win_amd64.whl", hash = "sha256:1c26da90b8d06227d7769f34915913911222d24ce08c0ab2d60b354e2d9c7aff"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:75969cf900d7be665ccb1622a9aba225cf386bbc9c3bcfeeab9f62b5048f4a07"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8445f23f13339da640d1be8e44e5baf4af97e396882ebbf1692aecd67f67c479"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5a7c1062ef8aea3eda149f08120f10795835fc1c8bc6ad948fb9652a113ca55"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:462b0c18fbb48fdbf980914a02ee38c423a25fcc4cf40f66bacc95a2d2d73bc8"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3208f9aea18991ac7f2b39721e947bbd752a1abbe79ad90d9b6a84a74d44409b"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3444fe52b82f122d8a99bf66777aed6b858d392b12f4c317da19f8234db4533"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88cb4bac7185a9f0168d38c01d7a00addece9822a52870eee26b8d5b61409213"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6b130bd4163c93798a6b9bb96be64a7c43e1cec81126ffa7ffaa106e1fc5cef5"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:a707b158b4410aefb6b054715545bbb21aaa5d5d0080217290131c49c2124a6e"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dc9ac4659456bde7c567107556ab065801622396b435a3ff213daef27b495388"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:81ea573aa46d3b6b3d890cd3c0ad82105985e6058a4baed03cf92518081eec8c"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3f148c3f47f7f29a79c38cc5d020edcb5ca780020fab94dbc21f9af95c463581"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b0906357f90784a66e89ae3eadc2654f36c580a7d65cf63e6a616e4aec3a81be"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f629ecc2db6a4736b5ba95a8347b0089240d69ad14ac364f557d52ad68cf94b0"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6feacd1d178c30e5bc37184526e56740342fd2aa6371a28367bad7908d454fc"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae8b6068ee374fdfab63689be0963333aa83b0815ead5d8648389a8ded593378"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78d57546bad81e0da13263e4c9ce30e96dcbe720dbff5ada08d2600a3502e526"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b6683a37338818646af718c9ca2a07f89787551057fae57c4ec0446dc6224b"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e8481b946792415adc07410420d6fc65a352b45d347b78fec45d8f8f0d7496f0"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bec35eb20792ea64c3c57891bc3ca0bedb2884fbac2c8249d9b731447ecde4fa"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:aa5476c3e3a402c37779e95f7b4048db2cb5b0ed0b9d006983965e93f40fe05a"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:19d02c45f2507b489fd4df7b827940f1420480b3e2e471e952af4d44a1ea8e34"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a3e2fd14c5d49ee1da322672375963f19f32b3d5953f0615b175ff7b9d38daed"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:93a91c2640645303e874eada51f4f33351b84b351a689d470f8108d0e0694210"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b9fc03bf76a94065299d4a2ecd8dfbae4ae8e2e8098bbfa6ab6413ca267709"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5a4b07cdf3f84310c08c1de2c12ddadbb7a77568bcb16e95489f9c81074322ed"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba0ed0dc6763d8bd6e5de5cf0d746d28e706a10b615ea382ac0ab17bb7388633"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:474bc83233abdcf2124ed3f66230a1c8435896046caa4b0b5ab6013c640803cc"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:329c719d31362355a96b435f4653e3b4b061fcc9eba9f91dd40804ca637d914e"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ef9101f3f7b59043a34f1dccbb385ca760467590951952d6701df0da9893ca0c"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:0121803b0f424ee2109d6e1f27db45b166ebaa4b32ff47d6aa225642636cd834"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8344127403dea42f5970adccf6c5957a71a47f522171fafaf4c6ddb41b61703a"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:443cec402ddd650bb2b885113e1dcedb22b1175c6be223b14246a714b61cd521"}, + {file = "rpds_py-0.19.0.tar.gz", hash = "sha256:4fdc9afadbeb393b4bbbad75481e0ea78e4469f2e1d713a90811700830b553a9"}, +] + [[package]] name = "simple-websocket" version = "1.0.0" @@ -1309,6 +1947,28 @@ wsproto = "*" [package.extras] docs = ["sphinx"] +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "smmap" +version = "5.0.1" +description = "A pure Python implementation of a sliding window memory map manager" +optional = false +python-versions = ">=3.7" +files = [ + {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, + {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, +] + [[package]] name = "sniffio" version = "1.3.1" @@ -1337,6 +1997,98 @@ anyio = ">=3.4.0,<5" [package.extras] full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"] +[[package]] +name = "streamlit" +version = "1.36.0" +description = "A faster way to build and share data apps" +optional = false +python-versions = "!=3.9.7,>=3.8" +files = [ + {file = "streamlit-1.36.0-py2.py3-none-any.whl", hash = "sha256:3399a33ea5faa26c05dd433d142eefe68ade67e9189a9e1d47a1731ae30a1c42"}, + {file = "streamlit-1.36.0.tar.gz", hash = "sha256:a12af9f0eb61ab5832f438336257b1ec20eb29d8e0e0c6b40a79116ba939bc9c"}, +] + +[package.dependencies] +altair = ">=4.0,<6" +blinker = ">=1.0.0,<2" +cachetools = ">=4.0,<6" +click = ">=7.0,<9" +gitpython = ">=3.0.7,<3.1.19 || >3.1.19,<4" +numpy = ">=1.20,<3" +packaging = ">=20,<25" +pandas = ">=1.3.0,<3" +pillow = ">=7.1.0,<11" +protobuf = ">=3.20,<6" +pyarrow = ">=7.0" +pydeck = ">=0.8.0b4,<1" +requests = ">=2.27,<3" +rich = ">=10.14.0,<14" +tenacity = ">=8.1.0,<9" +toml = ">=0.10.1,<2" +tornado = ">=6.0.3,<7" +typing-extensions = ">=4.3.0,<5" +watchdog = {version = ">=2.1.5,<5", markers = "platform_system != \"Darwin\""} + +[package.extras] +snowflake = ["snowflake-connector-python (>=2.8.0)", "snowflake-snowpark-python (>=0.9.0)"] + +[[package]] +name = "tenacity" +version = "8.5.0" +description = "Retry code until it succeeds" +optional = false +python-versions = ">=3.8" +files = [ + {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, + {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, +] + +[package.extras] +doc = ["reno", "sphinx"] +test = ["pytest", "tornado (>=4.5)", "typeguard"] + +[[package]] +name = "toml" +version = "0.10.2" +description = "Python Library for Tom's Obvious, Minimal Language" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, + {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, +] + +[[package]] +name = "toolz" +version = "0.12.1" +description = "List processing tools and functional utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "toolz-0.12.1-py3-none-any.whl", hash = "sha256:d22731364c07d72eea0a0ad45bafb2c2937ab6fd38a3507bf55eae8744aa7d85"}, + {file = "toolz-0.12.1.tar.gz", hash = "sha256:ecca342664893f177a13dac0e6b41cbd8ac25a358e5f215316d43e2100224f4d"}, +] + +[[package]] +name = "tornado" +version = "6.4.1" +description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +optional = false +python-versions = ">=3.8" +files = [ + {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8"}, + {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14"}, + {file = "tornado-6.4.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4"}, + {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842"}, + {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3"}, + {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f"}, + {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4"}, + {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698"}, + {file = "tornado-6.4.1-cp38-abi3-win32.whl", hash = "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d"}, + {file = "tornado-6.4.1-cp38-abi3-win_amd64.whl", hash = "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7"}, + {file = "tornado-6.4.1.tar.gz", hash = "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9"}, +] + [[package]] name = "typing-extensions" version = "4.12.2" @@ -1348,6 +2100,17 @@ files = [ {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] +[[package]] +name = "tzdata" +version = "2024.1" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, + {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, +] + [[package]] name = "urllib3" version = "2.2.2" @@ -1448,6 +2211,50 @@ files = [ [package.dependencies] pscript = ">=0.7.0,<0.8.0" +[[package]] +name = "watchdog" +version = "4.0.1" +description = "Filesystem events monitoring" +optional = false +python-versions = ">=3.8" +files = [ + {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:da2dfdaa8006eb6a71051795856bedd97e5b03e57da96f98e375682c48850645"}, + {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e93f451f2dfa433d97765ca2634628b789b49ba8b504fdde5837cdcf25fdb53b"}, + {file = "watchdog-4.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ef0107bbb6a55f5be727cfc2ef945d5676b97bffb8425650dadbb184be9f9a2b"}, + {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5"}, + {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767"}, + {file = "watchdog-4.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459"}, + {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175"}, + {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7"}, + {file = "watchdog-4.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28"}, + {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d4925e4bf7b9bddd1c3de13c9b8a2cdb89a468f640e66fbfabaf735bd85b3e35"}, + {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cad0bbd66cd59fc474b4a4376bc5ac3fc698723510cbb64091c2a793b18654db"}, + {file = "watchdog-4.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a3c2c317a8fb53e5b3d25790553796105501a235343f5d2bf23bb8649c2c8709"}, + {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c9904904b6564d4ee8a1ed820db76185a3c96e05560c776c79a6ce5ab71888ba"}, + {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:667f3c579e813fcbad1b784db7a1aaa96524bed53437e119f6a2f5de4db04235"}, + {file = "watchdog-4.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d10a681c9a1d5a77e75c48a3b8e1a9f2ae2928eda463e8d33660437705659682"}, + {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0144c0ea9997b92615af1d94afc0c217e07ce2c14912c7b1a5731776329fcfc7"}, + {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:998d2be6976a0ee3a81fb8e2777900c28641fb5bfbd0c84717d89bca0addcdc5"}, + {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e7921319fe4430b11278d924ef66d4daa469fafb1da679a2e48c935fa27af193"}, + {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f0de0f284248ab40188f23380b03b59126d1479cd59940f2a34f8852db710625"}, + {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bca36be5707e81b9e6ce3208d92d95540d4ca244c006b61511753583c81c70dd"}, + {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:ab998f567ebdf6b1da7dc1e5accfaa7c6992244629c0fdaef062f43249bd8dee"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_i686.whl", hash = "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84"}, + {file = "watchdog-4.0.1-py3-none-win32.whl", hash = "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429"}, + {file = "watchdog-4.0.1-py3-none-win_amd64.whl", hash = "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a"}, + {file = "watchdog-4.0.1-py3-none-win_ia64.whl", hash = "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d"}, + {file = "watchdog-4.0.1.tar.gz", hash = "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44"}, +] + +[package.extras] +watchmedo = ["PyYAML (>=3.10)"] + [[package]] name = "watchfiles" version = "0.22.0" @@ -1736,4 +2543,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "7dd31278f26af5dfbfa46c847a3015c3d1e22e620a6586692cc60b5fab85b7d9" +content-hash = "7fff368fd70dcf72aeb15e63409c52ef265d81f99df824668815418d829fca5e" diff --git a/pyproject.toml b/pyproject.toml index 100df97..a0dfc03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,8 @@ fastapi = "0.109.1" uvicorn = "^0.30.1" nicegui = "1.4.27" bcrypt = "4.0.1" +streamlit = "^1.36.0" +pydantic = "^2.8.2" [build-system] requires = ["poetry-core"] From bdac8324703836346ffab63c644ba231fbf384c9 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Mon, 22 Jul 2024 22:16:31 -0700 Subject: [PATCH 20/32] use this command to run both backend and front end: uvicorn main:app --reload & streamlit run streamlit_app.py --- poetry.lock | 19 ++++++++++++++++++- pyproject.toml | 1 + 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index c8616cc..2324c9d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1208,6 +1208,23 @@ sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-d test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] xml = ["lxml (>=4.9.2)"] +[[package]] +name = "passlib" +version = "1.7.4" +description = "comprehensive password hashing framework supporting over 30 schemes" +optional = false +python-versions = "*" +files = [ + {file = "passlib-1.7.4-py2.py3-none-any.whl", hash = "sha256:aa6bca462b8d8bda89c70b382f0c298a20b5560af6cbfa2dce410c0a2fb669f1"}, + {file = "passlib-1.7.4.tar.gz", hash = "sha256:defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04"}, +] + +[package.extras] +argon2 = ["argon2-cffi (>=18.2.0)"] +bcrypt = ["bcrypt (>=3.1.0)"] +build-docs = ["cloud-sptheme (>=1.10.1)", "sphinx (>=1.6)", "sphinxcontrib-fulltoc (>=1.2.0)"] +totp = ["cryptography"] + [[package]] name = "pillow" version = "10.4.0" @@ -2543,4 +2560,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "7fff368fd70dcf72aeb15e63409c52ef265d81f99df824668815418d829fca5e" +content-hash = "cab610729c030ccee9af3bb037d64294f3911f073d85484f9b02f817a5b479ab" diff --git a/pyproject.toml b/pyproject.toml index a0dfc03..97baf2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ nicegui = "1.4.27" bcrypt = "4.0.1" streamlit = "^1.36.0" pydantic = "^2.8.2" +passlib = "^1.7.4" [build-system] requires = ["poetry-core"] From 3d1924da483999946f8e6c077ceabf2fec9ce4c2 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Mon, 22 Jul 2024 23:40:24 -0700 Subject: [PATCH 21/32] testing removing everything except login text to debug --- streamlit_app.py | 368 +++++++++++++++++++++++------------------------ 1 file changed, 184 insertions(+), 184 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index aa866e5..5af7182 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -13,187 +13,187 @@ # -- User Auth Portion of App -- # -with st.popover("Sign In"): - with st.form("Signin Form", clear_on_submit=True): - username = st.text_input("username") - plain_password = st.text_input("Password") - submitted = st.form_submit_button("Submit") - - response = requests.post("http://localhost:8000/token", data={"username": username, "password": plain_password}) - - if submitted: - if response.status_code == 200: - token = response.json().get("access_token") - st.session_state.token = token - st.session_state.username = username - headers = {"Authorization": f"Bearer {st.session_state.token}"} - st.success("Logged in successfully!") - else: - st.error("Login failed") - - -with st.popover("Sign Up"): - with st.form("Signup Form", clear_on_submit=True): - email = st.text_input("Email") - first_name = st.text_input("First Name") - last_name = st.text_input("Last Name") - username = st.text_input("Username") - plain_password = st.text_input("Password") - submitted = st.form_submit_button("Submit") - - response = requests.post(url="http://localhost:8000/signup", - data={"email": email, - "first_name": first_name, - "last_name": last_name, - "username": username, - "plain_password": plain_password, - } - ) - - if submitted: - if response.status_code == 200: - st.success("Successfully registered.") - - response = requests.post("http://localhost:8000/token", - data={"username": username, "password": plain_password}) - if submitted: - if response.status_code == 200: - token = response.json().get("access_token") - st.session_state.token = token - st.session_state.username = username - headers = {"Authorization": f"Bearer {st.session_state.token}"} - if st.session_state.token: - st.success("Logged in successfully!") - else: - st.error("Login failed") - - else: - st.error("Registration failed") - -if "token" in st.session_state: - with st.popover("Log out"): - with st.form("Logout Form"): - submitted = st.form_submit_button("Log out") - - if submitted: - st.success("Logged out successfully!") - del st.session_state.token - st.rerun() - - -# -- Crypto portion of app -- # -st.title('My Cryptocurrency app') -# Using Test Data -# MOCK_DATA = 'data/MOCK_DATA.json' -# with open(MOCK_DATA, 'r') as file: -# data = json.load(file) - -# Update DB data -requests.post("http://localhost:8000/crypto/current_only/update_db") - -# Using Data from DB -response = requests.get("http://localhost:8000/crypto/current_only/from_db") -data = response.json() -df = pd.DataFrame(data) - - -def dict_to_list(d): - """ - Helper function to convert column of dicts to column lists - """ - return d['price'] - - -# Convert the sparklines from dicts to lists -df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) - -# Default values for favorites -df.insert(0, 'favorite', False) - -# if user is logged in set favorites to match their portfolio -if "token" in st.session_state and st.session_state.username: - # st.write(st.session_state.token) - response = requests.get("http://localhost:8000/users/me/favorites", - data={"username": username}, - headers={"Authorization": f"Bearer {st.session_state.token}"}) - favorites = response.json() - # st.write(favorites) - df['favorite'] = df['id'].apply(lambda x: 1 if x in favorites else 0) - -# Columns to display in data_editor -columns_to_keep = [ - 'favorite', - 'market_cap_rank', - 'image', - 'id', - 'current_price', - 'price_change_percentage_24h', - 'market_cap', - 'sparkline_in_7d', -] - -# Only keep columns we care about -df = df[columns_to_keep] - -# Sort by favorites and market_cap_rank for default -df = df.sort_values(by=['favorite', 'market_cap_rank'], ascending=[False, True]) - -# Only allow edits for favorite column, used int 'disabled' for data_editor -columns_to_edit = ['favorite'] -columns_all = df.columns.to_list() -columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] - -if st.button("Save Selected Favorites"): - st.rerun() - -edited_df = st.data_editor( - data=df, - width=None, - use_container_width=False, - height=2000, - disabled=columns_not_to_edit, - column_config={ - "favorite": st.column_config.CheckboxColumn( - "Select Favorites", - help="Select your **favorite** currencies.", - default=False - ), - "image": st.column_config.ImageColumn( - "Icon", help="Icons for currencies" - ), - "current_price": st.column_config.NumberColumn( - label="current_price", - format='$%g', - help="USD", - ), - "price_change_percentage_24h": st.column_config.NumberColumn( - label="price_change_percentage_24h", - format="%.2f%%", - ), - "market_cap": st.column_config.NumberColumn( - label="market_cap", - format="$%g", - help="USD", - ), - "sparkline_in_7d": st.column_config.LineChartColumn( - "Last 7 days", - help="Line chart for the last 7 days", - ), - - }, - hide_index=True, - # on_change=st.rerun() -) - -updated_favorites = edited_df.loc[edited_df['favorite'] == 1, 'id'] -updated_favorites_list = updated_favorites.squeeze().tolist() - - - -if "token" in st.session_state and st.session_state.username: - # st.write(st.session_state.token) - response = requests.post("http://localhost:8000/users/me/favorites/add", - data={"favorites": updated_favorites_list, "username": username, }, - # data={"favorites": ['example1', 'example2'], "username": username, }, - headers={"Authorization": f"Bearer {st.session_state.token}"}) - +# with st.popover("Sign In"): +# with st.form("Signin Form", clear_on_submit=True): +# username = st.text_input("username") +# plain_password = st.text_input("Password") +# submitted = st.form_submit_button("Submit") +# +# response = requests.post("http://localhost:8000/token", data={"username": username, "password": plain_password}) +# +# if submitted: +# if response.status_code == 200: +# token = response.json().get("access_token") +# st.session_state.token = token +# st.session_state.username = username +# headers = {"Authorization": f"Bearer {st.session_state.token}"} +# st.success("Logged in successfully!") +# else: +# st.error("Login failed") +# +# +# with st.popover("Sign Up"): +# with st.form("Signup Form", clear_on_submit=True): +# email = st.text_input("Email") +# first_name = st.text_input("First Name") +# last_name = st.text_input("Last Name") +# username = st.text_input("Username") +# plain_password = st.text_input("Password") +# submitted = st.form_submit_button("Submit") +# +# response = requests.post(url="http://localhost:8000/signup", +# data={"email": email, +# "first_name": first_name, +# "last_name": last_name, +# "username": username, +# "plain_password": plain_password, +# } +# ) +# +# if submitted: +# if response.status_code == 200: +# st.success("Successfully registered.") +# +# response = requests.post("http://localhost:8000/token", +# data={"username": username, "password": plain_password}) +# if submitted: +# if response.status_code == 200: +# token = response.json().get("access_token") +# st.session_state.token = token +# st.session_state.username = username +# headers = {"Authorization": f"Bearer {st.session_state.token}"} +# if st.session_state.token: +# st.success("Logged in successfully!") +# else: +# st.error("Login failed") +# +# else: +# st.error("Registration failed") +# +# if "token" in st.session_state: +# with st.popover("Log out"): +# with st.form("Logout Form"): +# submitted = st.form_submit_button("Log out") +# +# if submitted: +# st.success("Logged out successfully!") +# del st.session_state.token +# st.rerun() +# +# +# # -- Crypto portion of app -- # +# st.title('My Cryptocurrency app') +# # Using Test Data +# # MOCK_DATA = 'data/MOCK_DATA.json' +# # with open(MOCK_DATA, 'r') as file: +# # data = json.load(file) +# +# # Update DB data +# requests.post("http://localhost:8000/crypto/current_only/update_db") +# +# # Using Data from DB +# response = requests.get("http://localhost:8000/crypto/current_only/from_db") +# data = response.json() +# df = pd.DataFrame(data) +# +# +# def dict_to_list(d): +# """ +# Helper function to convert column of dicts to column lists +# """ +# return d['price'] +# +# +# # Convert the sparklines from dicts to lists +# df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) +# +# # Default values for favorites +# df.insert(0, 'favorite', False) +# +# # if user is logged in set favorites to match their portfolio +# if "token" in st.session_state and st.session_state.username: +# # st.write(st.session_state.token) +# response = requests.get("http://localhost:8000/users/me/favorites", +# data={"username": username}, +# headers={"Authorization": f"Bearer {st.session_state.token}"}) +# favorites = response.json() +# # st.write(favorites) +# df['favorite'] = df['id'].apply(lambda x: 1 if x in favorites else 0) +# +# # Columns to display in data_editor +# columns_to_keep = [ +# 'favorite', +# 'market_cap_rank', +# 'image', +# 'id', +# 'current_price', +# 'price_change_percentage_24h', +# 'market_cap', +# 'sparkline_in_7d', +# ] +# +# # Only keep columns we care about +# df = df[columns_to_keep] +# +# # Sort by favorites and market_cap_rank for default +# df = df.sort_values(by=['favorite', 'market_cap_rank'], ascending=[False, True]) +# +# # Only allow edits for favorite column, used int 'disabled' for data_editor +# columns_to_edit = ['favorite'] +# columns_all = df.columns.to_list() +# columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] +# +# if st.button("Save Selected Favorites"): +# st.rerun() +# +# edited_df = st.data_editor( +# data=df, +# width=None, +# use_container_width=False, +# height=2000, +# disabled=columns_not_to_edit, +# column_config={ +# "favorite": st.column_config.CheckboxColumn( +# "Select Favorites", +# help="Select your **favorite** currencies.", +# default=False +# ), +# "image": st.column_config.ImageColumn( +# "Icon", help="Icons for currencies" +# ), +# "current_price": st.column_config.NumberColumn( +# label="current_price", +# format='$%g', +# help="USD", +# ), +# "price_change_percentage_24h": st.column_config.NumberColumn( +# label="price_change_percentage_24h", +# format="%.2f%%", +# ), +# "market_cap": st.column_config.NumberColumn( +# label="market_cap", +# format="$%g", +# help="USD", +# ), +# "sparkline_in_7d": st.column_config.LineChartColumn( +# "Last 7 days", +# help="Line chart for the last 7 days", +# ), +# +# }, +# hide_index=True, +# # on_change=st.rerun() +# ) +# +# updated_favorites = edited_df.loc[edited_df['favorite'] == 1, 'id'] +# updated_favorites_list = updated_favorites.squeeze().tolist() +# +# +# +# if "token" in st.session_state and st.session_state.username: +# # st.write(st.session_state.token) +# response = requests.post("http://localhost:8000/users/me/favorites/add", +# data={"favorites": updated_favorites_list, "username": username, }, +# # data={"favorites": ['example1', 'example2'], "username": username, }, +# headers={"Authorization": f"Bearer {st.session_state.token}"}) +# From ca95d0ee05c31c04d2ae033c0033e906569795bf Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Mon, 22 Jul 2024 23:42:45 -0700 Subject: [PATCH 22/32] also try updating packages again --- poetry.lock | 194 ++++++++++++++++++++++++++++++++++++++++++++++++- pyproject.toml | 4 +- 2 files changed, 196 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 2324c9d..a4d9bd5 100644 --- a/poetry.lock +++ b/poetry.lock @@ -272,6 +272,70 @@ files = [ {file = "certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b"}, ] +[[package]] +name = "cffi" +version = "1.16.0" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, + {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, + {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, + {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, + {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, + {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, + {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, + {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, + {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, + {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, + {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, + {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, + {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, + {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, + {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, +] + +[package.dependencies] +pycparser = "*" + [[package]] name = "charset-normalizer" version = "3.3.2" @@ -396,6 +460,55 @@ files = [ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] +[[package]] +name = "cryptography" +version = "43.0.0" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +optional = false +python-versions = ">=3.7" +files = [ + {file = "cryptography-43.0.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:64c3f16e2a4fc51c0d06af28441881f98c5d91009b8caaff40cf3548089e9c74"}, + {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3dcdedae5c7710b9f97ac6bba7e1052b95c7083c9d0e9df96e02a1932e777895"}, + {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d9a1eca329405219b605fac09ecfc09ac09e595d6def650a437523fcd08dd22"}, + {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ea9e57f8ea880eeea38ab5abf9fbe39f923544d7884228ec67d666abd60f5a47"}, + {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9a8d6802e0825767476f62aafed40532bd435e8a5f7d23bd8b4f5fd04cc80ecf"}, + {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cc70b4b581f28d0a254d006f26949245e3657d40d8857066c2ae22a61222ef55"}, + {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4a997df8c1c2aae1e1e5ac49c2e4f610ad037fc5a3aadc7b64e39dea42249431"}, + {file = "cryptography-43.0.0-cp37-abi3-win32.whl", hash = "sha256:6e2b11c55d260d03a8cf29ac9b5e0608d35f08077d8c087be96287f43af3ccdc"}, + {file = "cryptography-43.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:31e44a986ceccec3d0498e16f3d27b2ee5fdf69ce2ab89b52eaad1d2f33d8778"}, + {file = "cryptography-43.0.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:7b3f5fe74a5ca32d4d0f302ffe6680fcc5c28f8ef0dc0ae8f40c0f3a1b4fca66"}, + {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac1955ce000cb29ab40def14fd1bbfa7af2017cca696ee696925615cafd0dce5"}, + {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:299d3da8e00b7e2b54bb02ef58d73cd5f55fb31f33ebbf33bd00d9aa6807df7e"}, + {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ee0c405832ade84d4de74b9029bedb7b31200600fa524d218fc29bfa371e97f5"}, + {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:cb013933d4c127349b3948aa8aaf2f12c0353ad0eccd715ca789c8a0f671646f"}, + {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fdcb265de28585de5b859ae13e3846a8e805268a823a12a4da2597f1f5afc9f0"}, + {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:2905ccf93a8a2a416f3ec01b1a7911c3fe4073ef35640e7ee5296754e30b762b"}, + {file = "cryptography-43.0.0-cp39-abi3-win32.whl", hash = "sha256:47ca71115e545954e6c1d207dd13461ab81f4eccfcb1345eac874828b5e3eaaf"}, + {file = "cryptography-43.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:0663585d02f76929792470451a5ba64424acc3cd5227b03921dab0e2f27b1709"}, + {file = "cryptography-43.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2c6d112bf61c5ef44042c253e4859b3cbbb50df2f78fa8fae6747a7814484a70"}, + {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:844b6d608374e7d08f4f6e6f9f7b951f9256db41421917dfb2d003dde4cd6b66"}, + {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:51956cf8730665e2bdf8ddb8da0056f699c1a5715648c1b0144670c1ba00b48f"}, + {file = "cryptography-43.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:aae4d918f6b180a8ab8bf6511a419473d107df4dbb4225c7b48c5c9602c38c7f"}, + {file = "cryptography-43.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:232ce02943a579095a339ac4b390fbbe97f5b5d5d107f8a08260ea2768be8cc2"}, + {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5bcb8a5620008a8034d39bce21dc3e23735dfdb6a33a06974739bfa04f853947"}, + {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:08a24a7070b2b6804c1940ff0f910ff728932a9d0e80e7814234269f9d46d069"}, + {file = "cryptography-43.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:e9c5266c432a1e23738d178e51c2c7a5e2ddf790f248be939448c0ba2021f9d1"}, + {file = "cryptography-43.0.0.tar.gz", hash = "sha256:b88075ada2d51aa9f18283532c9f60e72170041bba88d7f37e49cbb10275299e"}, +] + +[package.dependencies] +cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] +nox = ["nox"] +pep8test = ["check-sdist", "click", "mypy", "ruff"] +sdist = ["build"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["certifi", "cryptography-vectors (==43.0.0)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] + [[package]] name = "dnspython" version = "2.6.1" @@ -427,6 +540,24 @@ files = [ {file = "docutils-0.19.tar.gz", hash = "sha256:33995a6753c30b7f577febfc2c50411fec6aac7f7ffeb7c4cfe5991072dcf9e6"}, ] +[[package]] +name = "ecdsa" +version = "0.19.0" +description = "ECDSA cryptographic signature library (pure python)" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.6" +files = [ + {file = "ecdsa-0.19.0-py2.py3-none-any.whl", hash = "sha256:2cea9b88407fdac7bbeca0833b189e4c9c53f2ef1e1eaa29f6224dbc809b707a"}, + {file = "ecdsa-0.19.0.tar.gz", hash = "sha256:60eaad1199659900dd0af521ed462b793bbdf867432b3948e87416ae4caf6bf8"}, +] + +[package.dependencies] +six = ">=1.9.0" + +[package.extras] +gmpy = ["gmpy"] +gmpy2 = ["gmpy2"] + [[package]] name = "fastapi" version = "0.109.1" @@ -1219,6 +1350,9 @@ files = [ {file = "passlib-1.7.4.tar.gz", hash = "sha256:defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04"}, ] +[package.dependencies] +bcrypt = {version = ">=3.1.0", optional = true, markers = "extra == \"bcrypt\""} + [package.extras] argon2 = ["argon2-cffi (>=18.2.0)"] bcrypt = ["bcrypt (>=3.1.0)"] @@ -1404,6 +1538,28 @@ numpy = ">=1.16.6" [package.extras] test = ["cffi", "hypothesis", "pandas", "pytest", "pytz"] +[[package]] +name = "pyasn1" +version = "0.6.0" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pyasn1-0.6.0-py2.py3-none-any.whl", hash = "sha256:cca4bb0f2df5504f02f6f8a775b6e416ff9b0b3b16f7ee80b5a3153d9b804473"}, + {file = "pyasn1-0.6.0.tar.gz", hash = "sha256:3a35ab2c4b5ef98e17dfdec8ab074046fbda76e281c5a706ccd82328cfc8f64c"}, +] + +[[package]] +name = "pycparser" +version = "2.22" +description = "C parser in Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, + {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, +] + [[package]] name = "pydantic" version = "2.8.2" @@ -1679,6 +1835,28 @@ asyncio-client = ["aiohttp (>=3.4)"] client = ["requests (>=2.21.0)", "websocket-client (>=0.54.0)"] docs = ["sphinx"] +[[package]] +name = "python-jose" +version = "3.3.0" +description = "JOSE implementation in Python" +optional = false +python-versions = "*" +files = [ + {file = "python-jose-3.3.0.tar.gz", hash = "sha256:55779b5e6ad599c6336191246e95eb2293a9ddebd555f796a65f838f07e5d78a"}, + {file = "python_jose-3.3.0-py2.py3-none-any.whl", hash = "sha256:9b1376b023f8b298536eedd47ae1089bcdb848f1535ab30555cd92002d78923a"}, +] + +[package.dependencies] +cryptography = {version = ">=3.4.0", optional = true, markers = "extra == \"cryptography\""} +ecdsa = "!=0.15" +pyasn1 = "*" +rsa = "*" + +[package.extras] +cryptography = ["cryptography (>=3.4.0)"] +pycrypto = ["pyasn1", "pycrypto (>=2.6.0,<2.7.0)"] +pycryptodome = ["pyasn1", "pycryptodome (>=3.3.1,<4.0.0)"] + [[package]] name = "python-multipart" version = "0.0.9" @@ -1947,6 +2125,20 @@ files = [ {file = "rpds_py-0.19.0.tar.gz", hash = "sha256:4fdc9afadbeb393b4bbbad75481e0ea78e4469f2e1d713a90811700830b553a9"}, ] +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +optional = false +python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] + +[package.dependencies] +pyasn1 = ">=0.1.3" + [[package]] name = "simple-websocket" version = "1.0.0" @@ -2560,4 +2752,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "cab610729c030ccee9af3bb037d64294f3911f073d85484f9b02f817a5b479ab" +content-hash = "c03de1d9f93d08b7a4bcb96c7e683f17e1147e9b8468a165d0e4a1fcfb06adc0" diff --git a/pyproject.toml b/pyproject.toml index 97baf2e..49d5f2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,9 @@ nicegui = "1.4.27" bcrypt = "4.0.1" streamlit = "^1.36.0" pydantic = "^2.8.2" -passlib = "^1.7.4" +passlib = {extras = ["bcrypt"], version = "^1.7.4"} +python-multipart = "^0.0.9" +python-jose = {extras = ["cryptography"], version = "^3.3.0"} [build-system] requires = ["poetry-core"] From e723045b95678d05171f34212315b706d2873059 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Tue, 23 Jul 2024 00:12:11 -0700 Subject: [PATCH 23/32] removed everything except sign in --- streamlit_app.py | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index 5af7182..eb9e072 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -13,25 +13,25 @@ # -- User Auth Portion of App -- # -# with st.popover("Sign In"): -# with st.form("Signin Form", clear_on_submit=True): -# username = st.text_input("username") -# plain_password = st.text_input("Password") -# submitted = st.form_submit_button("Submit") -# -# response = requests.post("http://localhost:8000/token", data={"username": username, "password": plain_password}) -# -# if submitted: -# if response.status_code == 200: -# token = response.json().get("access_token") -# st.session_state.token = token -# st.session_state.username = username -# headers = {"Authorization": f"Bearer {st.session_state.token}"} -# st.success("Logged in successfully!") -# else: -# st.error("Login failed") -# -# +with st.popover("Sign In"): + with st.form("Signin Form", clear_on_submit=True): + username = st.text_input("username") + plain_password = st.text_input("Password") + submitted = st.form_submit_button("Submit") + + response = requests.post("http://localhost:8000/token", data={"username": username, "password": plain_password}) + + if submitted: + if response.status_code == 200: + token = response.json().get("access_token") + st.session_state.token = token + st.session_state.username = username + headers = {"Authorization": f"Bearer {st.session_state.token}"} + st.success("Logged in successfully!") + else: + st.error("Login failed") + + # with st.popover("Sign Up"): # with st.form("Signup Form", clear_on_submit=True): # email = st.text_input("Email") From 203d546b9f63fe863fa76836af64a2866bf6639d Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Tue, 23 Jul 2024 00:35:00 -0700 Subject: [PATCH 24/32] sign in works... now testing sign up --- streamlit_app.py | 74 ++++++++++++++++++++++++------------------------ 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index eb9e072..be2c7b9 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -32,43 +32,43 @@ st.error("Login failed") -# with st.popover("Sign Up"): -# with st.form("Signup Form", clear_on_submit=True): -# email = st.text_input("Email") -# first_name = st.text_input("First Name") -# last_name = st.text_input("Last Name") -# username = st.text_input("Username") -# plain_password = st.text_input("Password") -# submitted = st.form_submit_button("Submit") -# -# response = requests.post(url="http://localhost:8000/signup", -# data={"email": email, -# "first_name": first_name, -# "last_name": last_name, -# "username": username, -# "plain_password": plain_password, -# } -# ) -# -# if submitted: -# if response.status_code == 200: -# st.success("Successfully registered.") -# -# response = requests.post("http://localhost:8000/token", -# data={"username": username, "password": plain_password}) -# if submitted: -# if response.status_code == 200: -# token = response.json().get("access_token") -# st.session_state.token = token -# st.session_state.username = username -# headers = {"Authorization": f"Bearer {st.session_state.token}"} -# if st.session_state.token: -# st.success("Logged in successfully!") -# else: -# st.error("Login failed") -# -# else: -# st.error("Registration failed") +with st.popover("Sign Up"): + with st.form("Signup Form", clear_on_submit=True): + email = st.text_input("Email") + first_name = st.text_input("First Name") + last_name = st.text_input("Last Name") + username = st.text_input("Username") + plain_password = st.text_input("Password") + submitted = st.form_submit_button("Submit") + + response = requests.post(url="http://localhost:8000/signup", + data={"email": email, + "first_name": first_name, + "last_name": last_name, + "username": username, + "plain_password": plain_password, + } + ) + + if submitted: + if response.status_code == 200: + st.success("Successfully registered.") + + response = requests.post("http://localhost:8000/token", + data={"username": username, "password": plain_password}) + if submitted: + if response.status_code == 200: + token = response.json().get("access_token") + st.session_state.token = token + st.session_state.username = username + headers = {"Authorization": f"Bearer {st.session_state.token}"} + if st.session_state.token: + st.success("Logged in successfully!") + else: + st.error("Login failed") + + else: + st.error("Registration failed") # # if "token" in st.session_state: # with st.popover("Log out"): From 22361760599bbf8eed5d3f697cd98c54792f2b83 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Tue, 23 Jul 2024 00:40:45 -0700 Subject: [PATCH 25/32] sign in, sign up works... testing log out now --- streamlit_app.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index be2c7b9..e18d7be 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -69,16 +69,16 @@ else: st.error("Registration failed") -# -# if "token" in st.session_state: -# with st.popover("Log out"): -# with st.form("Logout Form"): -# submitted = st.form_submit_button("Log out") -# -# if submitted: -# st.success("Logged out successfully!") -# del st.session_state.token -# st.rerun() + +if "token" in st.session_state: + with st.popover("Log out"): + with st.form("Logout Form"): + submitted = st.form_submit_button("Log out") + + if submitted: + st.success("Logged out successfully!") + del st.session_state.token + st.rerun() # # # # -- Crypto portion of app -- # From 655ea42a2cdc0cf778905f0ce129bc7aca2d4df9 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Tue, 23 Jul 2024 00:54:17 -0700 Subject: [PATCH 26/32] signin, signup, logout allworking... testing database again now --- streamlit_app.py | 236 +++++++++++++++++++++++------------------------ 1 file changed, 118 insertions(+), 118 deletions(-) diff --git a/streamlit_app.py b/streamlit_app.py index e18d7be..aa866e5 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -79,121 +79,121 @@ st.success("Logged out successfully!") del st.session_state.token st.rerun() -# -# -# # -- Crypto portion of app -- # -# st.title('My Cryptocurrency app') -# # Using Test Data -# # MOCK_DATA = 'data/MOCK_DATA.json' -# # with open(MOCK_DATA, 'r') as file: -# # data = json.load(file) -# -# # Update DB data -# requests.post("http://localhost:8000/crypto/current_only/update_db") -# -# # Using Data from DB -# response = requests.get("http://localhost:8000/crypto/current_only/from_db") -# data = response.json() -# df = pd.DataFrame(data) -# -# -# def dict_to_list(d): -# """ -# Helper function to convert column of dicts to column lists -# """ -# return d['price'] -# -# -# # Convert the sparklines from dicts to lists -# df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) -# -# # Default values for favorites -# df.insert(0, 'favorite', False) -# -# # if user is logged in set favorites to match their portfolio -# if "token" in st.session_state and st.session_state.username: -# # st.write(st.session_state.token) -# response = requests.get("http://localhost:8000/users/me/favorites", -# data={"username": username}, -# headers={"Authorization": f"Bearer {st.session_state.token}"}) -# favorites = response.json() -# # st.write(favorites) -# df['favorite'] = df['id'].apply(lambda x: 1 if x in favorites else 0) -# -# # Columns to display in data_editor -# columns_to_keep = [ -# 'favorite', -# 'market_cap_rank', -# 'image', -# 'id', -# 'current_price', -# 'price_change_percentage_24h', -# 'market_cap', -# 'sparkline_in_7d', -# ] -# -# # Only keep columns we care about -# df = df[columns_to_keep] -# -# # Sort by favorites and market_cap_rank for default -# df = df.sort_values(by=['favorite', 'market_cap_rank'], ascending=[False, True]) -# -# # Only allow edits for favorite column, used int 'disabled' for data_editor -# columns_to_edit = ['favorite'] -# columns_all = df.columns.to_list() -# columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] -# -# if st.button("Save Selected Favorites"): -# st.rerun() -# -# edited_df = st.data_editor( -# data=df, -# width=None, -# use_container_width=False, -# height=2000, -# disabled=columns_not_to_edit, -# column_config={ -# "favorite": st.column_config.CheckboxColumn( -# "Select Favorites", -# help="Select your **favorite** currencies.", -# default=False -# ), -# "image": st.column_config.ImageColumn( -# "Icon", help="Icons for currencies" -# ), -# "current_price": st.column_config.NumberColumn( -# label="current_price", -# format='$%g', -# help="USD", -# ), -# "price_change_percentage_24h": st.column_config.NumberColumn( -# label="price_change_percentage_24h", -# format="%.2f%%", -# ), -# "market_cap": st.column_config.NumberColumn( -# label="market_cap", -# format="$%g", -# help="USD", -# ), -# "sparkline_in_7d": st.column_config.LineChartColumn( -# "Last 7 days", -# help="Line chart for the last 7 days", -# ), -# -# }, -# hide_index=True, -# # on_change=st.rerun() -# ) -# -# updated_favorites = edited_df.loc[edited_df['favorite'] == 1, 'id'] -# updated_favorites_list = updated_favorites.squeeze().tolist() -# -# -# -# if "token" in st.session_state and st.session_state.username: -# # st.write(st.session_state.token) -# response = requests.post("http://localhost:8000/users/me/favorites/add", -# data={"favorites": updated_favorites_list, "username": username, }, -# # data={"favorites": ['example1', 'example2'], "username": username, }, -# headers={"Authorization": f"Bearer {st.session_state.token}"}) -# + + +# -- Crypto portion of app -- # +st.title('My Cryptocurrency app') +# Using Test Data +# MOCK_DATA = 'data/MOCK_DATA.json' +# with open(MOCK_DATA, 'r') as file: +# data = json.load(file) + +# Update DB data +requests.post("http://localhost:8000/crypto/current_only/update_db") + +# Using Data from DB +response = requests.get("http://localhost:8000/crypto/current_only/from_db") +data = response.json() +df = pd.DataFrame(data) + + +def dict_to_list(d): + """ + Helper function to convert column of dicts to column lists + """ + return d['price'] + + +# Convert the sparklines from dicts to lists +df['sparkline_in_7d'] = df['sparkline_in_7d'].apply(dict_to_list) + +# Default values for favorites +df.insert(0, 'favorite', False) + +# if user is logged in set favorites to match their portfolio +if "token" in st.session_state and st.session_state.username: + # st.write(st.session_state.token) + response = requests.get("http://localhost:8000/users/me/favorites", + data={"username": username}, + headers={"Authorization": f"Bearer {st.session_state.token}"}) + favorites = response.json() + # st.write(favorites) + df['favorite'] = df['id'].apply(lambda x: 1 if x in favorites else 0) + +# Columns to display in data_editor +columns_to_keep = [ + 'favorite', + 'market_cap_rank', + 'image', + 'id', + 'current_price', + 'price_change_percentage_24h', + 'market_cap', + 'sparkline_in_7d', +] + +# Only keep columns we care about +df = df[columns_to_keep] + +# Sort by favorites and market_cap_rank for default +df = df.sort_values(by=['favorite', 'market_cap_rank'], ascending=[False, True]) + +# Only allow edits for favorite column, used int 'disabled' for data_editor +columns_to_edit = ['favorite'] +columns_all = df.columns.to_list() +columns_not_to_edit = [col for col in columns_all if col not in columns_to_edit] + +if st.button("Save Selected Favorites"): + st.rerun() + +edited_df = st.data_editor( + data=df, + width=None, + use_container_width=False, + height=2000, + disabled=columns_not_to_edit, + column_config={ + "favorite": st.column_config.CheckboxColumn( + "Select Favorites", + help="Select your **favorite** currencies.", + default=False + ), + "image": st.column_config.ImageColumn( + "Icon", help="Icons for currencies" + ), + "current_price": st.column_config.NumberColumn( + label="current_price", + format='$%g', + help="USD", + ), + "price_change_percentage_24h": st.column_config.NumberColumn( + label="price_change_percentage_24h", + format="%.2f%%", + ), + "market_cap": st.column_config.NumberColumn( + label="market_cap", + format="$%g", + help="USD", + ), + "sparkline_in_7d": st.column_config.LineChartColumn( + "Last 7 days", + help="Line chart for the last 7 days", + ), + + }, + hide_index=True, + # on_change=st.rerun() +) + +updated_favorites = edited_df.loc[edited_df['favorite'] == 1, 'id'] +updated_favorites_list = updated_favorites.squeeze().tolist() + + + +if "token" in st.session_state and st.session_state.username: + # st.write(st.session_state.token) + response = requests.post("http://localhost:8000/users/me/favorites/add", + data={"favorites": updated_favorites_list, "username": username, }, + # data={"favorites": ['example1', 'example2'], "username": username, }, + headers={"Authorization": f"Bearer {st.session_state.token}"}) + From 99e5665c52b331909b848cc390ed57cd72fff4a9 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Tue, 23 Jul 2024 11:39:53 -0700 Subject: [PATCH 27/32] stops from clearing database if no new data ready from coingecko --- crypto_api/database.py | 24 +++++++++++++----------- main.py | 2 +- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/crypto_api/database.py b/crypto_api/database.py index 0bf6825..05f11c7 100644 --- a/crypto_api/database.py +++ b/crypto_api/database.py @@ -165,20 +165,22 @@ def update_current_only_data(): replaces data in current_only collection in database with fresh data :return: """ - print("Inside fetch_and_store") - # Clear collection - # print(get_all_records(current_only)) - current_only.delete_many({}) - # print(get_all_records(current_only)) + try: + # Get new data from Coingecko + market_data = cg_client.get_cryptocurrencies(sparkline=True) - # Get new data from api - market_data = cg_client.get_cryptocurrencies(sparkline=True) - # print(market_data) + if market_data and len(market_data) > 0: + # Clear collection if new data is available + current_only.delete_many({}) - # Insert new data into collection - current_only.insert_many(market_data) - # print(get_all_records(current_only)) + # Insert new data into collection + current_only.insert_many(market_data) + print("Data successfully updated.") + else: + print("No data fetched. Collection was not updated.") + except Exception as e: + print(f"An error occurred: {e}") # schedule.every(5).minutes.do(update_current_only_data) diff --git a/main.py b/main.py index 55ac0b5..d17b30b 100644 --- a/main.py +++ b/main.py @@ -153,7 +153,7 @@ async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends( data={"sub": user.username}, expires_delta=access_token_expires ) - print("access_token: ", access_token) + # print("access_token: ", access_token) return {"access_token": access_token, "token_type": "bearer"} From e3f8a2a6f432fa872432ed08c74c02cd30ea5103 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Tue, 23 Jul 2024 14:50:06 -0700 Subject: [PATCH 28/32] preparing to make github page public --- README.md | 45 ++++++++++++++++++++++++++++++++++--- assets/images/homepage.png | Bin 0 -> 112427 bytes 2 files changed, 42 insertions(+), 3 deletions(-) create mode 100644 assets/images/homepage.png diff --git a/README.md b/README.md index 0d43a1d..227fc63 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,44 @@ -# Mantine Vite template +# CryptoLive -Get started with the template by clicking `Use this template` button on the top of the page. +- [CryptoLive](https://crypto-api-71ok.onrender.com/) is a web application that displays live cryptocurrency prices. +- Users can sign up and sign in to favorite their preferred cryptocurrencies for quick access. +- Accessible from any device try it on your phone! +- (Note the application takes ~30 seconds to load if it has not been accessed for a while.) -[Documentation](https://mantine.dev/guides/vite/) +![CryptoLive Screenshot](assets/images/homepage.png) + + + + +## Table of Contents + +- [Features](#features) +- [Technologies Used](#technologies-used) +- [Contact](#contact) + + +## Features + +- **Live Cryptocurrency Prices**: View real-time prices of various cryptocurrencies. +- **User Authentication**: Sign up and sign in using JWT tokens for secure access. +- **Favorites**: Logged-in users can favorite their preferred cryptocurrencies for quick access. + + +## Technologies Used + +- **Frontend**: Streamlit +- **Backend**: FastAPI, Python +- **Database**: MongoDB (hosted on Azure Cloud) +- **Authentication**: JWT tokens + + +## Links +- **Free Cryptocurrency Data**: [CoinGecko API](https://www.coingecko.com/en/api) +- **Free Hosting Platform**: [Render.com](https://render.com/) + +## Contact + +For any inquiries or questions, please contact: + +- Your Name - [taran.s.lau@gmail.com](mailto:taran.s.lau@gmail.com) +- GitHub: [@unsupervised-machine](https://github.com/unsupervised-machine) \ No newline at end of file diff --git a/assets/images/homepage.png b/assets/images/homepage.png new file mode 100644 index 0000000000000000000000000000000000000000..3d8a24796693ea6aaf3fa9005a91644fde753ebf GIT binary patch literal 112427 zcmd?QcTkgGyDqFhE1;lam!cvfQlg+pN3kHFprXdmVxdYe0YVZ$5Kxg`A`n2Nw*=_~ z2x1{XAShK5st_QA&_aL^0^bAbe&2KU_w8@boHKL&ILpKQI zyZMjuZ`!nJx9-hr_cm?XLI(az?%WPM`4E?TWYZ?UO}f{v-1jn{?Bk^Dr`0U3aY0L? zgw{rt^J0hmk80d-ay6AW>2k%?Swo)hv%}8!H?FzpT;FCH`|U~4W~=Q%n_XV(2tT_J z@0tzPVEKOQMI&D21U?s^g}`TxvA?i38=*QMJOIm?O=I(N zSBYz^TEY{+lues1fBJLAuBV=rmx`tmiOk8GH6&N)T|lY*SEl@fVV-tSG7R(pix z(9i~mN6`jq?b1T)Qyo^`Nj`9VQGv0r=h!99p_py!4|mCK9pkSYCPNd$wK%671vuc( z^O^%{pQJaYJ^biji`u;Y^__?J)Nw|{!!9Y}5}sjAeADQUI&DvL2BokPP_HIjVD(?PTx}R zTcOnjH;<+GPIcHZRtE!w{G-?!OW(hc$9`p?%{?-iGHVSI;cTRQ9j_~;&#KIx(;Rl)|oxY>(;$ro{(1_So@Tcgl8?yd=YB->7wO2q3^vkq?0t;6q{e( zp)?!oWY+)iUbgR0V66&l%lZq?=3)Jdr%?^?n$`MaRs*~ns_ZvpEX;sIxY=d)JaMTB zJv^bpN?P7nf2`4^I?kMol?v=RftwUPl3Ro|sb1_y7(iypYSRn7QmFZlQVG_{ygZ{D z4ZL~+0;BIB4CS~s9Pl>NT7TPn*NM~0PL%mvqpVVwVPTi-QcH9xc9(}OVWdsw%|u)+ z?8pgNdY_am=>y5poBbdQ^I+WulQt$2W({6>>2!jGBRy(!#QUtzcA3_3-8pWm9#611 zw?ff!puLq4+S6_+hwALz&-uv!1F;>k{A43?!a?M|@|TOPT5G*W9AWtr?wL;iX+YK?YN2;*&A8ccSl5}bHapiSiz3i}l+|K!oVhe9uFtWJ*2hC{}XOiT4 zso%ZW2rH6Nrkg|CRtEs=rcKY&p4LIcu&}=6V{Yv@kGZ}v+4L&+qRF0i`E%mFbFYoa zdW1JkQCUwJuBmxF88fA?K|9g^+UBzdG5Q(PSK`!0U^2N^s2> zr=Kf!&KjfAnRBV*G~u}EzwKt;psZny&s61DQW3l%fFNJ{G|niC9YURUu9qf4#gJ!` zTh$$Y34H$dQ{^YeRbPUjg(77>yABj%b*L4yeAd0Ly#Ne^OtAl_RRPcvA^;+EsIRRE zxPWanuVW!vO?-vmiqcP-p}rOGgwW3uqaC2hb;Cl_F}b^ zV_dFNsy=K0PpI{st=6L6-$XrERTY&9mciXQ!uga=41NVZI}V;TvFQb1UGavUSa|jbBE8`IcxB;Rn{4aRTi3$+6*a9Jo3Xbu+l8GkvX4#0PQ`r`GCd5;p` z^O3djk8o3y3b^W`M#Nf?WM6rT&uGt*Xd7N^-NH|U=d=BbPYZ2NL@w{&v3PD{T>cf& zjeEVRL3`s$Z948ZxNH5}mpA=(W4}$mw|~>-|4h&u8?*EG)!4M>^8e}tcOE*gj+Uvt z>#ME89no}+QL*WG*KoJt!f8j4?Il~SzRY#I{Fd*#I>!xO`o&Fak*{J}mi0SYvswoZ z`(x5;()-eR>7p>|2BJej(qQ921v5W778IiV-TJj2YP9$ug04%Bsrb)~kR4OZ6H z5Uaj%vr(i27+SI^-8?@)eA$2!i}=lGJ~V!^>x27KEuE=CC@E&sgN-O98(QgKtiC&8 z$BPHSC3z({N4NE9FQXcOIUeY#&ZN4gqhN^}8$5B9Jcx`DUbv&uM!>gh>=^sSpy`f3 zcvQQS4EwX=?2!Ne$Irzu!Q##~w}ixR{hc6J43h=*&VY{(>9o{`8rH8h4K%h6cn!C_ z6T{tm=!sQa>|gX#tWN%e-#!m6DuYb=9SJLQ`mFNW8XF%rqw1G0ZMw9(@4L}xTng`G zCb1xfg~m-rU~gfyNK2%Y5^e4rqi zFw6Ghz5YELJ1@766KCS22t~1DdkTm66zTIhK>U)EmGWA0El#F0SQKumPEK^HahR%L zU9$Q$BCV0)JJ%>>H7slxub6o&WJ}?#XV;B_4%GlG)EO=uN3>D zu-RcP)78Q|MoRL?wsnwt!?@C6hD#~5*T=eA1a0OM%j$V6gH>8vB7$AwOE^1E{N@Z^ zuD5ep9M06TzrR{VFnQlwrn4w!05Q#5(ktDavZysPaQzAdeQ4iXeLnI@NLLt+*h#2l zmbau#)o7Uqk*vv6N95PgPv&~MsLaW?=)k}GG~i#%ZZ7tf^XA0}e%_Z$>mN<&TOcjz z_Rg)zShuj_4)G3P0tH)H2W6*>Y!3cmVd#V1Q@{!YKINB5Ff|KY=UqrXYC`d?C zWCw(gyxebNWWHDL zvoL@GPifEHjCUHyI1%ZsgR=HsQ+EIMQUUUZO3MuR8c)a@+sqH|>{yl1S&aE{<)^yoLKvMIm)9Gdz z{{ji@;7W^w=Q#<27KINru4W6ih4ziEPv^HBA)_o%c~;dve8^ztDkoi|lClBNY&lQo zgNP}$s2S4}ZDDQ6_|V_rl94_rJHnsi4vIs#!5=@e{SAv1Z5xBOTy3m_G-y=rTN$za zK6h3UE_A-=?Q5z&B@~gcKK$|E8JUgq-gNHKZ@}2}zYpL4+XT_XPaf#?*ip>&T)g;2 zCrn{S=uu%6e#>LRl<^~Ayxz`Ewi zpa0{5<}CrNnJt2$^r1g~sFCgMoa{r79Zd}uzX;@|N7iI~rL=s9LoYq^uGZsxV|v!l z&%gx^5?SfN-NJuoc@V%VqA^EFpxO(*Tx!TDxRxNZ3SKow^zGKLbma7ao_hD{!6)d} zPra8CO1l$rgyp6q=7xW51F&RYjJPlI*^hITzj{;5iupEjcRxb*bLTkupQ_4sZ77qU zwUYO>c+JJ5tk&9BsF}Lpk7)B%gdxYo*Qcs-Hq)dzu2nMx_gHJ`y99u_C{m8e$Zqnz zX@}a1FTJQ%al}L)Kmx^U4L`^gyg%4i3ho?4k_yVd4c-4|JiR?jHAO(wp0?(iv0Nw- z9zuk(3d&o6IIaE`Mm=MUWvI#dYLEOS?N%RS>*5z@n{Q*n>_~c8n-NeP6IqBH;Q59z z%m}Uz)RT6st{ieYQ!aP}Rid)?frJ@~Lwd}lW|W`!b1t~tI!J!)P}b-dA+0x8Cu9=M zVPb-r0R=C+v9L?mo|Mi2*LyXfXMV!&IxU6AaJvq(_ZdrC(sMEX)X6phC<7hMEh@L~ zi86MIQb*pJz)#NQVOp(BU0^E^%9f_0KNP(HP`X^DKX+lY#pPAZWBXvnr{#XcG!dNZ z@Tg|(#hN^S6TaFDAm;~sWQCM_H?Wr(v(f)S8S)5DbC1Rs+M2>G&1ePhYS}*sR^uZ; z?ow=BEgfeYsTS%zibW*)dQd^bGK9Z;kqYEe1<~OAf;BvCY}PB)o3-8gMBP%jFCHhQ zPGVq}_a*$zZGfGC&+jFwd`V}Ns!x(u3$`$vrt!q}^26|P**eI;u>w-a9p|{b?zTQ- ztw!!gqSDvJd%+Ve)CW|(pfN&_)!z&*?_acH^Pg!Yf1f|?c`+z|V$MSZ>a005GV8Jw z>oSSVryCErfnY`E^waXJGrq0y<>$l<{gK8sno8=67ccxx8O%HVi)|bsw*9_q0m(9j z+U6Hyk>8>PKQBo4=(;-1M`c>((5|0R7T~K}*lek-U2J;WAP%jXk!+y?Z|Pi>(Dxmi z2S`_>{fqwfKX)+ixpP^4Sjyo6DNGkkO&4!Ol6n6>5)#Rh(a~3ST_Hlha@bJ)n{@lY z-|NELhhaTuJTh`$D~3&@gwiz!^P<|Y7Trhxx)(q|z2UN83=~PXbmN6yA}ZN?eHc4i zA`ksTh?f)a{6LiNhMO|AR&qotoL+04_+`e|mSj3URC?{NiB*Gd|5VemHU14?XuHVI zFn59{qCL798xivN+P_Ry^R>b7e}XU1wJCxXx^KbtvnYUq|0A^3Rx$;xzAoyh4GDHi zFy)xo?u}B!dtV?}*2ek>QlC`_&)k8xkxd;o()8sBHRTYEMNwTZtb#4n*1B(D9T5E} zXQTmU+jq9_6-~@k?C`@Q>onGeHMRXc=$@iz8=V7-^;#+a($4v`M1Phu#{s%2zMlV*$mQB-#vTjszO^tC{wZNWu>; z52sAI`IrJVReH>N4(6wqYvX*dg%qbYyrjO^%OWr7Zjn}AqxW-@IIRo-%P&|PR(;A5 z{^nlwdZUmmxc>IDIlt(DB9`9R# zCGu?$s^9ZGuZquNwzEzpPh&31k%4!dPXNkJ?N+}7&i9nFVwmg6 z!7poOJ`Z4KOT2~1kVTu2OZ{Gof}Y(4wdWV+6!?*ik~3l>lcFD4meKw9R!lN}4LRtvFu$LxcExNh@DwX9J2(VW7@GB*|m! z%cCDHd)|17S({%Zil8Q68ypemYruzIhX$~6gij}K>y`~0(;dBSek7ALABYl-=M7!U zlw`gqbt*!(Q*X>URpRc;l#5AAQA-@Ia(w$;^d;F%Wzy}DJl!%OvrLg9vO`U$dC=-{ zYKa-z1FqMTq957oJF*7%z7U(Ml?g0i`}zt_)ZGiWI&i1t&dl&=9KSFwI5_ zCBl@Z30$lqp@Idjb;-=?L$yvP&AwFcQ$4Z(^`={9z3p%!qey-e6dV2v_>p?#7lxUzhvB{8tHH&OtA}-HzGPKo#BlfVO!c7-d`hXtq#Q;NR^q)Sl^&@sh7yp ztoa{AakUgF(ntZZTk&esI85H63O@S{jhWNDXJ{kJS&*Qwg4$~to}Ocr(?wzDgRI4p;z3b9W)^Xyk*CuvFe@Z7F za8*b%oIwp4?64j}FrzWm!3Jj}8yGHMfr~y7({i%zZuc|YOYHB+n3L|mr0O0C85Ws^ z;gS^xIL&%?P`fr;dLNy()f5CZc8+o-d>WBpoPm_Ds^dxkPo4DzqB?^f^$~vaGg}{} zn(sVei*s)0zM=`#(cS_p9oZ3{Pu(*g{uGs?*1BJ-C&7r2)&X{N{4gNX9P=zs)=om1P^{?4`Q zLKe_%I9GB1)JAuu1uI+Yv-dXLtX4g z1tjVlZ2dyu^jE`7asESXqUYhR%&LiFcyC%&f*iv*Jo+G}Db>)QJqFL%HYSyfY?21Q zxwCT*EyxOj#>?M*zEj>BQ^G#|<&*_|NY^_h=e`EyikiOho_B&$_`Hmr&w}SP2A7Mg-JQ*=ro6M>#z_^@WeU35;vQz%AJy2+2O-GxWCRVm z)=PWV(8mtNn6$dAaRNSgPi|qgHK0DbwpPvbfk4E4W?5%EwdQmagBq4oKebU`Oz+6o z6B}!58XH0+)S${fZB%IE_D{gmNeh81k0Bv{T@LckWn=W?O5;coPsgSzFUd0;12VD> zf_*w(^!dT5~fjT)^pjFk94?&pyKsNA|PWzBb9K-gF zwl#4LKB1T=(#7CA<4_UdE64Z`-|OG5NOyFkyLO=#weH+EIF<5Jmh`I%48Cdek#*WK zgXexk-#=b3^jFKJ0oNwueNl0x*h#*IIb2Eb*6=%vt@o}vs|>&FN|ao*)4x+pMXR5~ z-eaFC&nOuVjy<>^#nAQE8!v({NK_IZCGV1>hUbGs9i!XuUDmg+;$IqSjIAWk%?+N5 z&zydqlRe@hUw|}M`lMg(&=WUrG?alrjq6qQE~GM=pM&TIa%SHg;P5-p><}0wQDpfU zP;q}elYP^=9cRkhj29`z?3A(r>&SHF-k)bJLOV^&066tXQp zKHh)uWQn-$;ak+;k%iXWqi`A{kFv)=c1Q6@m3DxP19Ywf^&;W4k||1Kv{m1?Hcfh`r*Ae$Ii$pvPo=Ki zlBSm6fLVMXKlMBKJeOs(kTP6#$#rZ{J8!`*%~7jrs(oE|2X+)9PLyZ z)jV+e4GtsXJNxaB0sKUrEJTS(Jf0WBPW!u_Yc_qh5cc?-EmG?SrzLX*$RtP7+ z)Ui!9Si)&Wfu3k9@k#|UbIXz)3hL_KaDU1wu>c6hix4qqa z>rNE=tlUnz<06E1{UKs}F3vQRY@#Ih^^`;ZN|<6;1iZ^KdW84GTja!M5X8V-DueXO z6}tB9?;4`|XsmHNjk(9N8rTR}R@IOc2XDtfL|ol zA3;PF@ygOG{d{uF<65UOwk@23Z%R(yF|hLHyXq`V=g^$QP3iXUFtp-s04BZe%PLbN z61!0MH1(@;?QxH-I_c3$a*@?~G{*L+D({5g>1*fRYoDrUOZm_+pBf*WH4DFKUNct{ zbe4I=DGsD;xy^dO%Qp2P`lI`+AMS7&hF*4cFgW~~wk!oaDuH$-`eobgP0 zS>Mi(ysrf8@i6`O5&WuCk;61L2Ki{)&+%J5OwuH9!O@GyGyC*qq?QT7#p=i_b&E6k zu7L)FfYq9W;FpqHYBA%C*6TKAOB4y_OO;kHpsAWVRc6~)7p+~_Qx@1UEs%$*X&cYG zR8pN0Hf*<+FMgne&^3%;Ln`OX5=zB6Wp~ZG+L%WY)=GA~j?H~YRMDT>j1I1%FSGR2 z1Y@cUw1?^JeP@rU`UKUt|MvKA0dB_1`izs9>O+v==Vn>q(?cqa+&k@>=xD&TAz}oj zJ#B&a(ID{nR(bbdhkhYmMKb#n7W`66jwkNtH%RqZ2t_MtnAP(qH7sM31qQg$1?qK> ziN(Oq{Kv`Pz)m)BeNkffDtwDm#>A|doE*A;NAZHhfKo2W7_V`a1$~WpY6rszr;2Zj z8aZLNT;Y@(l&grQ1FA0sl9mFOk`LM&K5U=jBdbE@3u;S*N7L`1Jp{f}tt^>31c&?RQg_7iD0IGb z?8O7Ji$V9@vjal!3Ej3hC>x9y^jF+oa`w7_kYN>QZ+3ibkm0Dq(U2@uxHZ5Jl=Xh zS#=ze%FZMO&6g&B4?i;}(Fq zzujJnp!+d&l>zdJ`6xlO#JwI>$^IrOG zMQMg!d#S$3FYZ4X`O~Mcf7T*UX?;(Kmi5?|cm5n%f! zRFgddHU5o`fLa&MF4di{OX@m7*a^6tTdzRB-_#QjMV*jhdmq)E3maf}57-zaol}wb zof9Gwr?pU)?U^53f!58-+ucy|Yp8i@-dSBZ5Q;DiZ#LZAevPw60>b3LlJ`Q>0&Q{5&?`21``n`J@C!mgIui0(={ ztR^33xl%GwvM7=@%Nxw#ETrChNx8Kc)kw+G-%WOnHK&~JX&=n(Vf`Ay=f^H=fhOCY zBK<{wIe>w&fwt2J*hyYlopjcCTDZ!vU99G8B!}d7GBFra$OF=uq-B^&9q3IsE zxV5)@HEQH}Ov7`~fUEAKAC_`CM*i%e-N#yFaQ3eLx5sk}Bg)WlE-)3QH3|t9oUR-b zGJv$m*CyXEE_a{(el=Vf7NcJtOfzxH*xIkx70tdHlW)=!j5G0lwt~xdtI`O>U$bWF zsCGaAgS(O;HD_MVpZiFy0}@d7F0|!MLbS>$=7}f98DVY&ROgh_T);P=i%M;GtIz5f zwC`DHkQykmcP+LxUCo*2idQ4}$sF6Nigi7-5u|lyT zM;MLK_j86#`^}{xO}oi(y3AlF5Mqb}(l~jbO)w`=V=7u?Wv0GQL8ZCSEYPncaoQbcgs!lRRD%+Up!g#5U$tP?L_a1U0aN>-*bmAZeKq@sP;7wpZd_GukU*iLa8}$}lwi`e@ z+f@DWqBxvJU`G~dOj2l!#5!KGs!9$_KA2qZNvlk#gDi-ed0xy+WdOy;0K*3XZsr8x z>3fV7nrN--MB$vdh8(&#KzgxYf^HQVeH(t~9oF!r!OB@ct8o@Pt=pV|@#A)-bVN#R ztpTJtIWKggozI?l7@l&PNwBU|5boNsbotMFyyNbwnDV0CoX+0qla)kb|UTtiC$A=rY!` z&urnq=y;*B;BCM98Y~9J=7e7ApI?0+c^wZSE#b+hAZtaFsceuHkj|mNCEuU8utq&G3WWD# zz+Kqhuh$uEA-;UT*y99q3B5ynPE-As1wcNJ(@DmJg6w&mcWa#4NQ|KR4*T&I4pluf$CyrP|s=+chn#x{!u1;|3v3d=(&NNnBS$drF3! zy;?*2H+{Zl$`4|)jd5JTD@K%RMrg*WfIR+`XANGk%4dW=hPPL-=k42+;lpRD5KhbY zt&;2Uw$RM*F~ja{T#lfXGIBu7M*<2d3bhIY3Ts6g4IX!=mh-;37yw-cYo=<1WrV{$ zG)ZRva~f}~jO6W_&=zFWsxpv6lCnEmW(wUXi-iaAlL?5m5rVGS!Bqr?)>wnLe+5#` zGPC{X`=wB4j6fje4#@AG#qFzTpqaeW_T3=Rw-Qp8($P*9DIk4t7SF_~!6`Cdw0Dv( zuT`wQ&{E^}TvjJr22%7yE)`{_l7Kqs%UwSQt7l(J4P#*^=Z_}?VvL?6p68T-kMF7h1q9_nPwDV%{WB7FMs#r5*AQroEuXhe~o^Y*j2$p2)Jf-<*X zQZCtdHE>YPY=?x3ZU@ui!7o(CR_ph3M>)#q1J7k#dK(ggU(~%C2730Fd50r@w_yBM|Ie$S{k-TW(%MjlW68aCE3^Xkw;T%&u`7PD@tlw zI7=H_@o>{RNU~mYz^Csw zEf8@`V<*PCaqoeK(43yQsJh<^gEG6Cf{k~@DJqN8UJ5>bAN?O++lx7Gvv;F+Gjheb z{{8P}Tf~mKBLN3D4(77hR_k5HzZ;o=AN|{x=6W~IQp zkgJ?SE<2G!frnZujHHMu8p}V2M_bo;kMCxy@|xY60Rfhcm8pu_Dz`q-@w|y9S5|Bh z2m;SV8>CF!l9;Zx=tLjHT%|F`Qjl}HE1arnf_2;lIYm&-%A%JD#0qkdW75=AQM7XJ zp(a{pxDijT8I1BeI>+Ho`#yGDqv4ta$*CT`le4>Bs-#E^kF_3$+DV9fe3lC9;K5il zcBXuFWnpQ@Kk@bAYwpli=O=3*SVOFDj!6SPPF!))Yc9T-IxZ2$$l>A{PG_IDkH*E4 z=V-rM!x1`wIzg_y|6uU3%I=3d^cV#0nn-Xupzu;W1a-ZRWY0$Gh=*_KxUChcO^=ha zT8m6WG_3($1)}B1T3a9FpN>v9?CXF|p3q9hn4(;3_4u;bl3S|gv0j*S7mYdZ0Oy$c zr@XX=XmUJxyR|L~OBtST)mYTN6+{A>yXu-){Y?1E>#TQx04r>*tPZTrB#Qgm1EAyN zqSkl;y2_QY++hu^B3WzIaJnk`qQS!sRiq-`)Rfj&QYn&_>xInGUnRJ9^(N1?8Qkk9 z<95>;l|6n9?W zU(ToP{|iuk?%z=jR;o$hT$blcRC=#_ZW++$H@_+C)JSpiW|uDMkWK&9@td z{9}60#(b^=y$b~a&UZQYqa~y0go*ZK-j5n( zM0ihr+^u1j@8B18r}Xg?qZMD?pbQ@x?^6H^R0BcSC{*6B@8}2pKJr)Y7(#(&Q5_2? zcb?7F7n`*FG8t{CVRqkqgpa(>nb~O?IXQ>vnp#k_W!bBT48xe{7i&z^XoK;(c2<@x)flXXImrjHjf(n{gEmf~YY)33=V!P%07j3EGK*ISMwcS{G6WcVRspRMHKp6_Q3UE}gz zFPylq^r!^gqKRZc&b zEJQq*u8rY46sG44tV~WjImgi=U7{Cd^%I+TZ60QgwF^G(d~^$Rus~;1gEJ6YO{m{^_)w1V6N#qn}Hr~W#+}&mp`q9E&&Sl@M*a?XSpw@{3zY` z8_#ikjaYNZoM^}9d%*>U+GT=Ox`aVlBr{o7__^n?Y)j3TCAW)i^$*IzbkQy*;l06f zS_d0C?Q)=4Z;}G3=I1?g%FR(Q<;JL4{SR<0>tDRk6V)w9-(f^=rN!Rz_A|$DaLh1s$WBO2&J3)wOqn9k&IWf#uqA^7C(0Rjg+RYG zJD0@(`N<3K-y)I!7PbBd59^Qz)$930KV6ohmiBk8d&OlyEFBy!vLU{f^4hc|*1omK zjNt&JrJFXD{JYE%`JX=HBvPjy-$4472y6Pi&?~dt z3$@Yb>k>P^YCx;~5s>fkwI2R%!Hs1;a-y!kX3*#!AP>nfz*jbDd{95PYs(A!tfHDG z4^phv`o|e(RRC?trThQ9QjdLPPM4VevTdUMotIiHGxoQ9BqlBYx9;=P~(ocgY-&9z83 zL~&=A+Pi}Cy=woARv{+Gc3pjD8w2Y-Lpp!wdw=P5?v`&qrH*c4?4`Z)UVvMD{@UIg zsUzy-AzlW?I7kjp^ybCx$CQiX-A=?hmDVV3@f+OKwRF@{^iq@SuKgvR4nI~epI>-g z|H=EB3OU~6O5~R?<U(@c9SS3Lt!?wfIzz?QmE{Ak#GY-3@sAbvW;nGQlfR| zE$YMhLb1DoqL^=dQlZSoD%Bn6{g{k_a?{VFdWuEPo9vLGMPbJ*Rkrg}s>*D9-yh~) zd-ho4gNW({DV#bnzT2(U4Lc|Twe9zQrFi%9@c*Y>?vD+k5XmTTlG`?G_^)^BJ8v28 z|NdXt6Bj-5;z<+=CPo&;&|LZgv#hIxw@3Zg18k}51LUQZSxwR-b(`~NFE*(<#?TI* zv6-fP;JtV{DIEHO{mON`5OWHbn|s;WLyF%<p_~T&FSh86-B#;)0l~+ixVv30X|lx2R}kF?nL_)Y zrP%Ds*NM5h!?Iw&AE-SbyLWM?7X9ayGkQ8Fm5?z#zPKmSDH$sDrj%+*vzD2VlR6?S z#nQ^)*t4K?WEb?g@1|qwj4F_UNg+kHX7aGLmsly37#mq5BGFty8cQe^>bpoQ7Ht_P z8Q-S*7h{HQqWk&-dcU6^orDxOSJW73=J`#O_^aoaK1_n3(fZ6>l!+DjG;(n(KU|eyp??YCT(!zkX@ZBm?dc`HrYUmTD z&mI<3_Pb;4n`Q%1{_&N+yo8o`Mfb2;3~!7Nh0^mS87*@VDdjJ$hT^bRV^>rUdl5ZJ zduKmdVCiudc} z{u-~$gqanq=nLueENHnADwmsmOoJ)?!Y$1iqL~E_rM4!OpPQ4_Kg$)jV68s)hW&c4 zUfPpycE0HC0wR=)%D5A{;B^G`!!9t$Mt7KR7M!XKW&CQiBR)w1@+61r$RiTYh)*1^m z4Do>DTGGN%%LT3X-9LMnnG&ktpNbjzCQd5UElsHbMO{vH@bR#!cr#C`;?3~rRu!u! z;H-GHez!pQ_?1x|^riUG*u0ja41s;%4@OGYoFL~vuZ+!KpS5-RS>|bf0;}^gBa}CHkuGZ z^jMRF9xrbG92d59=qJ40P?|#LuiYc=7*>jzRU-qPn3>!Q1pn|nunNL4o#$Q_#v%Bu6x`lr7#U@lFnJKqpRtrsxW z$04fTvMznWL_Es+20ba!oDS(u=&=rU z$x1wl5Y5_VT?0L^5OCs)p`zkJ-D5Wx&sKM_QW_m|`)W=LmQXWIUyt|u&d)ai5K)AZ z#40SRRr0S zK)0yN)9+#SbZ`+$ALS~0MitvbzkR+q%>nTZ)7bZAA52K}nL)~fpT6J{S%on%$j@3& z)w!pN2wUT%Cq2w*vBbntQyak}xtg976}Y6P15a|%&CEKe{(QG)9}jPpFlkp(G_T)Gb|59hyS%iBqDgcaFmY;f(Ml!?ThIGIp+3e> zIMrhpJ!(SFTN53QIB?y(sn-@VG8`Cbmnr)|c2CTvo_naBPRNq%qa8Zn>)XK5RMZt@foE+UaNoT-La(tz#}8N!O{SbBJ^LD%@+|TES6u zm3ILUfGl`-jH!QHVdOijN67XXVnDFzK%9EI$ zwU>2k71~a1vIn1+VrrBHd(Xo z=knt@`q*sT#qL}3lZA*I(4C?`ipUuE{GPQL#TE>WahvF`=&j_#39N8{C)z^XKdP+0 z9By8$3T}M8QY$+DOwj@0fiewM7nMs1W3$0WY-^vTwW^^(7legCvL;5sya%2|@!dZx z52hTt&G38H@)hFN0AAfxu!CpWI>^06tV9-J8eu0GZlShGoqhTzmhUB0B9m;B z5Sc2n#^OXnr;AJ%v*36mvYCx>7wiVqzbMRCq&!P)nh%j;eGq5tWPE6U7jw4#&^!Gw zYUi%_>NCbtip@VOLM{#Z!aRyCZp_0M7uuDGtA0@{`=sp;F)Mv`%Qcu2 zRh6@t;2)~5sfDBqtx@c~1=PwP_}j7pnB$;u3eKVDvsbk?qBMbp;o;PKNU7zLkf6`2 zZa*vHt#par{%(9lRBCaOy|9B6)Epfm7fm}GbfL1bbQl;_}trii)ZnC$y?m%l| zrl|A%o>a8%VQ0$m8?}F61sYipf(*{H;x5LA)E^kNU2ZF_q1F}J)VP-=Rz}}Q z?DNo)PJqJA>xF)ek+-5H%f;hWn09H?x4E7}y`U)vFRN&JTV17{*?w(HE&8gUt;u5p z=ZRZryOc-fb*uxZTW9&nY)?XwQej_L^d$Q*Klughbb0GFDl321mG*PWE~CWv3Du#p zw^-;WdmnE2SmeZk+wIUES!|Oa9YUGmcM=6G^rxx1pCE-MtBd=^t*eFExvGuR?5Co zd`rI-d7z1n?Bc;$`0@7_Kg@WFM4?+IG>=OK={m>N(nzYDZHgBtSE?Q+9C;nk{}Bv( z*Cj*Se0S_!;E%eYiG4mf>_$z$191+G7r57jOTV-+THcK7|A=$JJv{x>(VObgeV_pS zDNAW zsI`_6(VC|b)tEHqC2p!&#YJ3M=Amw_$}zgZxe4fD!uRMOrTeaIpgHZK^O z)PEGXZ32!~kzjdMrFrrieTuw?V)}*4Qx7Fb-pf)%c~*Bkv#$n?YRT_sW*s5M`~V-E zZlA5zdGVurfy637%~Yh^#kuu@N*3Gb6HQQ&C5^F*WY4Lv(H(ATx2e72>=n@!aw+Qx z`h;Y)-uIsa#j@~nL%UX6IV;%7m3p%hrssWE&6g`R3d_x_8k6_hOO)VOPRe#`eynyH zlOZ7-Wt_ux%T{~GWMpztgs7cpe1X0Sly2R_0F+>{BPydq#c9>wpOSBzzL0O|S^bik zm?^)uFpfpXJS&tRKp~GRaEy!b)?DSUrft1k)JfvU&TjKwYWwz_-&CXzc7PXoL;=4i zE$j0cTPl`bkEGUG#Z^;+cPr{(NheT?q?cLzm`e3P0CpDSf>I8N2+X zCm>NQd8xPj}z$pXx3LZ^oayMZ6M#~(e(Ls9PfYwAABW+1C{{R#rV46nUUqDX|M{BW~<&@I!73q^SENH{gZhw9Apjko;_o zNnM?4Y+x00{yN}ondqXawuLK8mSyGEYP!@*?SPKk<+w_I2d~zP>&_5xW5~RG|INyu zr#^cXEtWO@s6XwT&~>fv9{I2`{ge&g@)9r6`e{{CY|U%LNA2)lC_|v>%`V|ZZo7&n zUpus((-;V(Vt!4xLp-MTJApTVfBk^ITvWy#CtyzL<`k1z;jJ}I& z&y=Rd%8jYvevm3c5tDj$c63*>aX|t_HiXdXJt{%qKNR?4X-CwV88b^?(}qWJB0(am ziiFRXjJyvv6jp?ksar0+`po-qsQlU$&QZ6C&D=xy{aK~q#ZV57BGsXUqw1|Cc@v&8 z+PGj(9^0GnVQ~y_J)SH=V`3Qou>*E6#q;gCVXM-F1uV?!TU4c$-Xc>0PSqlxo(qbf%?kB7HIwJ3%^Ao@P?^Ly(3 za1ivQ9Zi2JUHZps-4BR|f<25!w+D)$Ngu~mvvylnCqr2bIpsXdo75dc=$`&$<|&5( zSt(^SehsXuOdJ4fa353ne5L`&@>t8Ja5?8k-+ah}W;EKbl~~5e1gV6T&z@^tj(%o2 z$8Tm%cxM05Im|c0{9~cB(3p}f7{eQOtZ8u>ZL>79g6Zs^mykj0b>BMDA6zCRwx~D( z3**|3ZC5);>Gw1rmQ6!U{y((6WmKHYw(lLq5-boLI!JKW#)Aik;2uJ7cZVdn2X_w* z1Pd+=O=vVo6KLGs-Mw$GwO97Zde7SDo-yut$KX>Bx}U0=^O>{i|C?3i1YuLseXA*# z>`ICszGjkgdB{_e|AARFxRhhJk1$o%F%+hq#5`+oMX0Q(uPEwUsgruakz;$>vFo2H)o042SHjc# zdwELwOE1nceReCn-7Knh@%;^U#rWhHC$9OGd*&GCY-(8$Ll@XjmUjdzmR_$ zZDUmDy({h0=W49)J5mztL*%msj{PJQpSrJ_VMw+K^80xoGPMRK7(48<%E6=b_ zi%Jq8@BlC9O2R0VzJYHWBn7kIR{=&7sZGMtG(N^7GwSrCQJ;<(DVCc9f zk~%9qrRh~s^}f%r+ma4%&+mD?u~XCR?hxM6HUqGGkmfZ7pL7bG&{g32#SP~llSup~ zIPD(wjQ6{ndx>w5dL>Hpb*nd(x=)^l75(R{xbAr9XkYYYytk;k(gEHv4xmIcg*aq# zbC;yHv-~hD?&MAHmQyNi_3daS+)#1Hv(s2p(0eSqI(t3AFLIWH3z%JJVL(;1Z`Cy* zzf-8w=DGB)dJ0do*X}xU+3%a7@65gk-$p1>6r@GC}tO>Gj0W&9?iUa`&W#T3^8jI zDC_e$brIg+>`UTJ1&y)78$kp5L$d|ugT;y<-vJVMm1LIFxRs_0cWQPAsoWxZl&w75 zCV#_K-`Bw;w+>V>PdS5|pr4hTe!Xj*hipo+mZ*}I$|pf1&ojAeq~Vsl17&3(oy7QS ze1WELz>K=~+;KlN+7;xhQ?1kR-jrLpr2nP^jCqPAtJ-84%WT6NkEpClI;)=;IEIk% zO(WM`M6}27;ksdcT;H~v>x)ZJZFRk{CM{Slk^V2gw9t0>pj$gvY7@O?`y6B`MGLFpIX-RnR#yvi3o14z@+OOW)*6BJ^!#ZRct8Lu2M>S((MFZohiBCW)f z&PdII_VmZYR83cVHfu$5mrrU9oa48R&Y!X~LY6!Ynr)(VT2>w$?@K82YSol8krgg2 zmMF^Sd7Hm>yC$3}%{NK3Ox%x38U;Cz9zh>A?yM8P@k1_ra+l>^MyhQ?DnK2L?)`?s~N zr*z+61@WfYg9Cz-I;}Grn`~QjO6*?B`zl4+Vc)uM{ffEQFfAJc7>Derk@-54wZyb7 z`47XGpk>cP7V0Avu*uCfv%o&^0!jd%o1DHQALe=?61;ASs5vcj5q(qzuXEIMlt!cI zdlz)M(en6pBnP2Bsjtz=PJjWwQ4r6?Mo#Idl!M6L1t5Vi4bN@Ly7aPAh{0=EyE(eEtY(d3!(K82Zdbb6AmA(jIe6OhO$#BaDLyCC5v z`Z|%+>?DqjC6ZMYZ64LdDgZV=_i>=IW^&u48En`jTNTiR}6$s75*%@6g(y<8)X1Xp(Vl@Ebv#Jqw^(-j#sc|X`xzBxk2mb*4?d5Z z*QrkPT#K#^jr)CYd@9FoY0}71qE@3#=8#^PHQukC-F07Rl%@=ccu%oVL$? z`WNmQN>(fFByg zOM4eif{DJbQuIWUTz9a@&rx4A>Xz;6!~pC_ye!l;NjHyfX}q(EUVN=&9 ze$zSlxTs=3_2VCN2v%h26oUE0fje5v`(9tZm{QKKM+cO&pu--j&dlmGnZZ&mK?XwO z%=!dDF=p2vzH##OIL?RLU&iTy2?lrwvjpM&hEv9xWi{Anq}o;IVPcWUb3x8H)>(9r zfMk<%pgF(M2D#uzo@h68fii#J=HPD>aGlz~6nlFQ#h0l5-IsXQVMq6!?387AlR7pI z5?vXqly_SI`gc&GUyvv8eB!$5%n|y4$@w4f-2a_DMJ+`7{SS~Vrxe*pw*LXR{n>`c zsNcHA>9-qHlT31QTC5|^P{S*gxlzWb|DXxd4$`gvnN%W|nP{*L!v6ul_5QyDIA1JS zmGPfPC$Ot*=9HfD1GkM|k<=yr=SHthm!rXo=>NmNEPt;$9k1s_wYg?7_wa{{=^Wc? zJu+9vpO#xL856K0Z;kS_UOZb{2JH^41x=@>4^E6RsL77%VtvW~ZFH8ue{1Kf<1p(d zIzFPz@3+p!;=yy9=_IS!RVmc>ANt#`t_a+fdU_vw%8MYb*!C`bRe!9$;{Bb)Vm(dv zHBZq2kBgWMmeupgU``I*_{&gOiU4=mo#*dU4=5p;qSWThr&z(MF<7EArPJO<>(y_N zG5oR)d9W5^xNX6q#yj%lXDK`eT8)gAWIZvzgV2ZV`{w{-rAbFZ^NSh8Ex@e(9GerN zhKX>)2c<*6g_mh0ciXpTe0c6x?#CY7u+90o(PB0>q>IkGNjXSMRhDr>Af?Nhb+f(b z(A5;Ti7}0pi=bDC`fYyu||f4z>(<4>g$YA7x%pZ0#am&IdjJYoyLT z9|*3NTACGRy7M8AA#j7OQ+n?UQc)O**WZ;6VRqS?eq%5v$7WfSJ4W2@7#w>ZyTJ~) zxuWm*%ym5ztI6mAzY~3??W>kna{|n3Y-dG$uXz&Tsf@;B_oYR|*=gA_>u3eQtB9W& zqrt10W>fCgkh^>)qIn!y<*4DkXJY1Ko}$KTX~ms6n0Lgfm|FK#kcs3B?h7GwAD?5x zShAObCtdzr)@{9+b8wc1?M)*C8e}(oA!7+)zOT4YLO<+>KzJu3S`f(g8>)VMh%W!a zhH~dK4%){ZN-oak4O6V{2gTPz9~V>ggx z&Wsd_`t`%QRt$Yz9otkGIyMjNV31K3U(_7Wqxbm8qo`bT1w@GXC|dEL3FXIx0C--^ z%fhz>IDItl?VnpFgzlr`-WiEWotOJ*JP$J!a4*V7b;653XpXUdc76f~jOpN6bsduK z5!dPJuh0gPzWS6b9kqJ!HaFHPZH*;lI@RGg(Sc@yGbyM%^60!>)bX&^LLZ{C`>apc z@p5VMLm(HW5f{#<0aUoa#N6(a>1^W~hs_(_XXoQ@K2@O8Birg)s#Q~bg-C08Lq7!GlK#h^gfrc^%B@4 zUBFMhOJR%_rIOs`r?iq~7X{K2D0g7B&xlE|cPx&maAO!I$9^0Si5boW(9;b2vkb?! z4|sShG;@-Oh^-(LbOmTnLY?e5$MR!1sT8+!Ep2O<6HNPW!h@>sYla&z!7(2HtNFd! z1Px|4&dX7Zqos%^l0tpsXELuYwKGDdhRafDL%_{F$W4Ml;>9dgEZXbnoGz;HOF{`s!b z_f-oM3q00S?^BNP+^a=Z)wL80G4Ki_bG!w3>8gz>?Fj6st1p$=DDeqNuz)K z^0~JK6SbUWDlcYyUb=*d+idAG_pyj2VjEjXvYRqT=yBbho|06&_A9G+=63leKu#dS zL3H0QsbV+g!x3f28|P8h8OjiF&xCp~=&IdA_wo*n_qk1%e!%jlWgW7w_RvGcang<; z*87uSiDyBiRZemmJ(^(U7Zn4d=G%fOx5$3_@JeOCD!s< zEsm69KT5`g11tP>3jjnVt#S1$xBqCjXO?W*mG>B4)0w$=aL46@&d$;FmeUF(p;S~_ z>;i!*MSHjZ)n0Cf!KY=-%w>D!X?CnL#`BQ*uDG%#_w63er>@y}l{g_W5pGRt4qP!e zl>OoX{aOJ;^a&`{l4X( zYocHskFA_R)3HROurG>MFNNI^VuE*Yd4aCY=~PpN(kLKI4hTiiRIS!XB+ACBhQHna zVuiOMJbbdSP{wiCD}kaz-GOzJEn zCiz&3VXw=p9;nY78NWF+u%)C%*b3F@V?FcWKT?$pj``jW(b?l@HcX+z55cbhz z!v5Qi3a-;yqZ=xD<P*`2~0xsoK!=>1r zSK$a@By`^JK53sYm<(OQbbOP>#be1RvP!M!A6R;uiepS$r=_0%_Ew=oT9Wc~GN8yt z=p%ARV2tyXe?S;QkiaMG>Poy+DMoxGp*8owhvf{GU*}7CWCiIsmLq{zR)59ck8}X> zoi0CHsc_kAW-{s{^xN)e_60f{j@)KrOY=4ErQZc(b!He8&|iJG44Lp2mGD#(#u{+% zN?&LD#vLNrYq_=S7rx^sp;aiXzAJ0ELO>L;2e_?uV_fN(V5<{1u`Q1@j;%5K|kiDcg$OOz}{e^_EChTwr>%cM(t>Ck&Nz_ zwiY*s2UYH5eW1cfccrGwmJXDwcL2E|eJj)j`CbG66OI z>-^W}G9}-RSr0us81eD#+tl*~Hc?OF{k?Xp^v z3K^zv^Q+{cdrFHt)xxTa7t8lEI9fpGURp!@Q{njy@5it%E%JS4BQj9A<~g87{8Pkf zdAGygV#Q8^Qp0`J(ec|mcxz{U}NZ)=tXePhJk5Lklrg~#Y)`ZzN9CH_E zPc|LgorK}94MuY>;UjFa7F5b)X}hi;ivIG$qi`jI-aq^tw28*6DEjC7w(7VeI{o5C z7i&N7!rwGA7Ev-SLP#^r=>C=@3OG*qE{IdZi`Pv{P$px2CF>1rmur=QSqDsp4bs!5 z+nWl46Bh3w@Ml+md?Nl5`8d}b6zaTLUFI}LzH1c)mc2sJzP0N?im!p!mdZjmZ$fwX z4@Tvs)m&@G)%@}|vIeFo;k=ALy(xVzqVN0l4R!4hWrrG}R5}tYuMDV~xco!5SvkCX zXseK8>SHE`o!P*%WMsrTj`lvk)&F@*%qw0rYrMtMN@X%$e4`_w&G8O6KF@&q?&gH! z)iXI!2gO;}e6saSv)2lk%7fm7PlIi*6;ry7R%!-$OQD~;uT)8sPG!u)W$q;@N$8f}Y2JfN& z`0J``?Pr$dyl2t7HC>kyHvKHl<&H`-p-W3quN$mUm9qNVrwX!j8kB0v!j4WO(Z49s z2qjVvCu~D7X6*wbw6K=1yUe(afKe^SGGM6hI@@RNZC6VxN^mwExWrHXWLGxhtl6^> z=zR9#?gjFY7Z_JhfJKPmEygJA?q_3CR{;9az5UKaROk62yx06`Vik0{Tmnj|T}<6U z4^GlR8%zy{NtvI6sv=X3Djj&g%T-#N>gK*`xRmQLIeWMp@T#w2C-r+^_0=Hr4Dq@i zkPqVYGSHcj8L{?^WJYb<2V2o~~|GhJs&OaHfKQboB&^c{3JM>m%4P`O-d0Io!$n z?T1%hs$C}^I@3YkF6qO~8=gh)GC)JzPN_fZMd6hmm>~naADTAt68O?YM<@{$Jg5Ga zUsS1?^FLqxbZS0@W`;h?&K?vDYB_FNz((CtsR6|tv2&O>^Y@BE4BZu}A5`EiiOjRT z8THl3Q1vbsV7t3hq$jv!(td`DxU`l{n*+wo?!#fogNy0*6St=5uM~4Pm%6Y`YR9>* zqE1J#1}60aBINYno-Z|6rYp~LP#rj(aFz|;BU4BV4en<~o)Uf%o~L)SgEc!u#3G3} zOi*vpa{4ISB-EZB~ zKJJ9uV_$QTqf!<{@_vxh56Y*YWX_i8?_#wa8Qn%WdK5|uwg(5YmvN1SRTZ}9vGaDEy&=6!7yLRJ!?uQv3sA-MzTMefM*q?Co;A@mmSi{c66to`xx@UGMo zB=4OuaJP|JE%yuf#$jipa!b(_@efmS@vM7(Ii{bGtGO8~sY-V^+ZEX7u(XY1u62z( zW@BmeB>E>J=b9?V=d*8MPUhlWRs%uMdW+x}s~z_~EOlN$`xaWgLv;I-% z765rb5$=9oL$M~BmHRq_PUzur5g|F}de6%z>(PNGYuOoK1mk@Ew~cKS)2~9lfTr9> zgmS#^GD?^&TrNIUT`F>B>6iO;DphT8^XAlRhY951DFK@+udauu4jY#J=! zCQZQX>4zumPll@0isFgWuu2;$=3ASa@!L@t`Ue|YuAKQ-c&J~uR((w9M#Kjdfpc~? zb6PYraQcu%7`5Xak+Y+=oJ%_;d)_~9gK13`oA^GHYzoIba)-y7_MU$@B7C0)*(tYH zo?~*YRoye$5bKh{XLc0!a4@hR^4cw_pBV?s)kr8ab6JO+*d`oJuUX~$%*ih?0e!lF z*mnn7(VVTDg7*+ae1?P&i;36GT(lRnlhY9e)Y8i_9D4?Hsc&QdDS90B8n5Gn_eqCl zMm{*7Tpn0oEk8vAMVdNp<8~mdMnc~W&aVQ7Y8WX9jl#dLg1i(HT8pQSYHx8>M2a4& zsRi_=IpGr|VopRN+&`yX*t{3X5XS7y^ZJEHC>Hcq&7O~0ZUe{w`qO!sW|3b|=CQ4}eKQFMKhND!$yIA&Pz zE?6pEge3eWYbLqVT(`RDbVL+Htn{}ig-z97<6AB`45@R-F^!7{y2Be zWK{TMn8M)GWE{}#i)i@xDtXo|&g)E-t-CY4qQq@T_WaMHNAAM6Q6ku8m)5Fjemi?2 zUEhQqv$G3YW#HSmkSR(d$MWsXy_cVbQkE;o1YNhn2l3)R;|%Ft8pdTTUD|YDs^0!g z;31ZcZQ)QNtM_uz51IZDaTK^?v)W45{V4d~!3n$H7j5X)#C5Sv+)_o?sUZ^`IiND1 zSWI*ldOdNJR zorpUBkOHDxoxZq}Cl`KMvUfD$sPksac&!L0r{?m0%Z%J0aEM$v7AYxfbyWLA64#%R zf9Mk*fzXvFrvvZfj=QNr%VvC-RYR|+<3H&=fm!_fwSB=OObR#e9}Yt8t0&Xxp*X+on2&A{W%?|R>vygAM#L`d3(Y+T+ z$jnb-+EB)Wjc9Zu0>6>Z@Vs%)5Ea3Jo}WKNSq6#RswO6Z(B8Sv2e{SS_4Y!YC4!mq z2axOYkqmk9Oj!C97;vWe+R8CoY9J0b|F9^=bt=;T{a;#_?#4@kgzZeW6Aei+bz~#Hc|B zzHb-amXedlu$Xi&PAM5UzOc-r3SV`8Z_#`9nDSd04vglz|CpdIA?#7~U!KQh!mz`1 zR#;$qGh9LC0IK0-XbSs0aJ}r?1Fa z_2RK{b)Ikhs{=^s+!(js-@fk-BJIRahQ z!+C^gmS4f)m;T9>1ckiwFQs4ZN zD2@XMz00PJ)Pl6~`rs2_k`_lYcDqDLI%^Wx?ZAz6rkkDh^H>dNJ$~7XSl-yEQdBeX zuy*`0UC#CSw=>@$&D8+(r*-bvP~`i^qEELYMxVHhlo;E?M$|I~d%pLTtFDx0`6ej# zS*WLioGQq8P>g65#phY)QeBmwQiMxWX8EUNM2WFX%tQ|Ta^HS!jO*}Q%Lq=$S2e;N z-v(3|n^X8oaI)7@Nw-&yJR#!U_cCyCHkK~Rq`Q-tDXJnUw?s|$PaT(-V2i@I3%?bb)lU-zcxwctdkcJ zfBf4(-%qB7Kl{67+!##2E7a=0hZ_g}U~C)0&1!0s>=TG#vws$} zJIJovpfvH2Rc1TaUA|Ss2fv&%)S89woczPuk9bF3;fKqCACi_U@c$QmFI&&Qcr;@E zo{EQ4j&NM}jD~hGm9qU%eTSX$g5{Fep;4ak6fXxjgnR2_LSV3GRtmdDXGD zIK0sJeVJj=$GJCL#%Bi8`TE5E$rL9blHzZ+%#Z&lPQ&}&%oslL$Oe!-@s7hQ9j87a z`1%@vf+?oqC2+^%$?1egx1erCa>v+F?qm3(8Tr!QaeEZe?hvZpI?!9@AzSx)e+U(o zmWBcQVYu3xgyx3jUk;-9;!x1Hi&^qKMryshP1t~#oX?OyTe6UVa>b zC`VhL-q-mOQJq%TkDC8`?D)RAv4UJy9K_-@59sJ<^D`=?=8@6aLZp^-MU>4B4`MyU zpVimsOtjph8rRCR`-}KJ$l^=6+o6@#Uk67jaEE$(x^~bjU(9vT+|<GrBUa zt{2th>2EL7_i(2jPXj&!?V?!fjvXXg@rJ~|y{(p;DaXxA1~J)HLVwddY8)czdR4~MVownmy^f0pRaiokCWPW z6_5%6a9Gn+Ay0=TW7=z^vFxag==Z2)VatCfv+vit2g{~YvZ#DzZGT6^rOuTmH$yZ! zNUiHX?S79DKJ1938Qf9V1cwH`%w>9hqOA8<8H$@~1{w@PckBauK!fPGEvo5RxoFF5 zakP1IK9KzR7m-eiu^fMLMzYWAf27qc(!#;EqvC&FjHWyJM)ZS)Rk#umNG+>iJ8kK@Q5h zLo%1lzntnfDZ!y*i_=Z=gy%WTmVe8}RV36B0Fc>T9Cy&5^VM&F6P(orCI%Jtrj}#Z z6O)hKJ;h_^XgCcz^|0Q|e;xI+OX}r&N==O8kbn2K_mF`y#S%YG1fDjl-2Jjn`%5ih zrhu!)qpD?+5Z351{8pAn9EzT9A+EUHiJ&j<)NZuZ3kyy1aa#6NC*JCCAQ=WFF}gd+ zK+b>R$^UbOr1N1S8#C#uTXmU5RhA~4lMygZ*3R1$6}eF|f~Ph;=r*X81K zLTFl@b_H1fp_iXuI*PavXywNFB7mAZXQW%HR>$UVL2ET^%UDYXl) z0dC+^nEzc)kwk%>WA&T4dJ|{avTd^GRDNmOWHMKz6MAc3-Jd_!_Kk0Qt-@_ji z-fnO5W9*qaxlVBI-U$`K(!rrY19gvEy{jv<`Bnw6Y)3s~doQRH1naEQk406UUW|@t z%fJrTKP!=Tg!#}A>1$?I_5fOQ*7JmJ(08 zi?PXlixq4lzHlc~VKMj+gKH1({Hh%1GFA9`fk_o>?_f5MnLcLAgaMK&4cDmnktXs& z8h2(36^*-Uk6@ugFMl}^*Zu0BJoM*#S`k5=piievc(*>&t(Dre~Qv8bnXboskwSNv+4`!R$VOB@h9FZ&CWN zo>Q7r?9vF}JG%j7hETaUBwcvl?cbvIrf)e~K+b%+Ke4H58O5M1K6GbXRU}_x=;?Pm zW@=WO_|Tg%34<+$n$qKR6Z$)3zve>`)k_J;WLkygZd|O5=HG1y6yQ^o;Pz1UjA zWc8=YEubX=hRd6)}*ij;KVm9G`UGzV9F{Z+g`# zrcUVAxb;blT)=BiBZPpeVohGC;tL14V2Ruz49(n2O_WvauGd3iaUnu;6g~b-!WVms z7kVvth(xAjVt$@1X~MQ4+ZV}4ot2F#60QPQ#yjOUl83>-0ax-TM^A@Gj0R_EEvMs! zzs_H!P8h0|ojfecl=nTmr{uZxw6|?E$#wfZh0Jco80uXx^myeVOepO-q+WTcnQ;4> zX8d)2s7?Wp>`u{J@zwHJl!zQLC9QU1Pa&J@|EVf!kNVWr*08 zdo8Ppvylscw4}r_YMkNmF8rhm;Wl$KnV;#3dMWy+%n(r8siLM&mO&!3A zl(IXb$w&4X?Bv>UFXA$7Kh1K1yXr1eHtpy%!3A?F{-JBundBa-kGk8BZ-5u|rjR8U zk#8j!>jok@5o(tqK5Uw2vYcKgZ84LRL=_~N`aD*Vb}|+`Oj0+^VwFt?W3SRJi}}7* zg$swtHi+rY&%}C|bXfQ>b~wNARF2$E}c$GhjvUvPWu z7I$ccuf<;8jDbtbeW!~(1K$A8|U_3o_ z>aiV$P>qI$^mL?t+6SXA-e#xVEgCrZL-^&?Px_P8BmAUNgJ@J9Y(`)BSAoUq+fb-;NGrSs zS76BUMTWoAIF|ZY*nG&e1*0YB97FCrsy*quEKr?d(}wJLjb{fS z8WZe0swP?I%TCm%OHXeDzSSuoZ5^mycrDQk;u|b^$bFSo`SG*HXzD-?%bwvx#B|DM zCtF7cMBUC3EaH$s@wS3)bJ{&c&vsu^$4i;<zB zPdfTAl7=v}3Ka74B$bzJ8$QX;l9_XC3A(Rnl>Fai>TvScIHF%Ld9K;JU%=3qdK;7x zi%pvoW>B304U}}F8hpfM=(DA2bh`T6VN%{>=M0h6tK33>Z?VLeP^}?`&9%L!w}B^oJvk7C&8H72!D__HdeVaXf=1EBS>NBa^%4qJ`Syy04&;A-pTKX?wzMB=0Y# zUY#q7lqMM=r@g$W>uPPO5JFep6_+)@V^t@7n>nnb(b?)mbQ(2a0dXMlUiaqHR0TZhWM7NipT+qfXkmW8`JvAMVLYim4AgaXzrM z&F>yWft>Nc)Cu19O`T3S6+Jl3TZTA;R6{hCWokrC=z6*h^1tt~2k^#4=hyYw8{oKZ zJRPMx4c&3mUB02@T}$F02h!O|Ivz^XptT_@-YCXcZy$BKimTA|o|`FHZwKmJi@}Qr z%|;8RL6WsnBC>rH=Cn^0)5 z&p_KI(woPP{w!e&^#S>FuR<63PT@qUAbK`|Yzni6WBE^0ErJ)ulu2-dcb8JCFz(TG zUa@QQB)8OgMc=D@0T%MRWXQRhDq~bUNt!#2^svS1 zVUjZ@_o%J(0#t{83}|>aH+E6)?u{FuCkhO10(p&YMDwxU-C?Wh8^wHj=~%w`xfa-b zp#?kj-S>|$({;XqhlRe$l&Kq4Qgyw0CfwtoJfQ4R|4309UQP{K9L=DnFA)iX+CKSQ z2U6K4WL#Sr%aiTcl!-ZU(ZA+8`+oUWg-g!jr*uUhY&J&KE_U%@jR&f(MdAR3{fz5OE zFEd*NR{JAzyeq4e#l<(3145S8AcnD0&8A^3Gpf*2Rb_I@>49eNs;v5>LAbKwmyIkOr+MY9IyqShh!8=qr7blUW8W{;WIl z)|r;lZS}+8Tz~4DkJ5MZQ4!boU(Mba)DkZkr&yB1dj%9f7Su&$^Qvr z%~4f}%ZxG#XJwNpe7JcQ^ld2&_axOeHZOq9YD*bOWlHnH8q?H|diY%O#Ieg9MZ6ar z4S=}{VD5~qqC%7DY;@lYzY04xE)fx9c9sc2jcGj4w8fA?$kNNj(j`JY6`%KsRZq=2 zRjsrPPLgYtc3Dc5CEC6>(TokF0M5aw&?ANB1zM2dUnkC4#bfWg%K#Jvo-j zlA;Ug`$d49sh0Tw)qe$N-eho68d1lOyVwiRwqfah{Lj6Q=@x=pO zbIlf1E_Gu_kTcmFtDSh%Mh(%VK3ztIACb3pnq+rJ5gu*`W@mCUc}J+FN9&i5LC!cp zv%4RS-epI^7!eRV2Uq&|N{d_4*HI^3s)Y@kJ)8z4U23((4`%{Dy__-$v7>K$yePk{ z-#r|9{P_Ipyu(xbC~|w0IqZj_zr20~^f-^pmoGCuk}kQ#NI9Ol!{gx=ws1)++rvL6 zaJe=g)-BmAqspzcEEbn5z&<`3)17h#4%eJfK<}+jpTJm+0O=ncVQ0Gy=EP4}j2nlk zVP?A_N*km?Z(T#IgSdo?5|fTXP0}JMB2x=26UsrtIw5%|i9lujolR5^BjSRt2A1RJ zbl2a5m!3dTGnS;H;aA;Ah6~!gqT#lhq3=+)r_6#Vqy?&v*BJW$+&I9cY(NmKc$ude zDv+wKV#J<#zI&$B2qF;`d=Jc0wRIUK@tZ2Ch^uoXN5?iK6_N9NaYQ=0H}xn=1-@Oe zGOk_xZ+!Gy&4|Sjnp<{bsF@|nw?l8rQ*E8DJ@Q(B=er=f$iV9BV_WyuqENGEqeqQp zFLQh(`@77aM>VJzgx`FkrWbM~psOEr=!)_n>{N^@V#Hna&e+F4Wyt{3E1y5vB2jhE zdo5eha77l)OujZrrjQl4oznR5c@)fgg%E#H()O_kczQBb9dyN;*&YU^O3+9)S)a4l z0iyP+^k1$3w@6@lr79D3f56{mN?lUozgVv=KSm;_Xb9+v)2GNVeZ5Ns2v6{_WXXoQ z_-MPqbk1tZs~7P_oE2pf2o=+QO>TW{9rRc832a>g2 zg2tRVBaI}z8>_2u&E+yr*FJgA?v5$}S|vrw`}^4|o+#@|N9ut%~ zmS3Uhjje_9j%viLIzP4W%w)G0bvb8>&_743G=Hz{BXX1WEcswK83@-7h-(LbbIvY8 zVDj{Ed1Y5-fbiF!!@73E;C3+!$7!^pxA&^+B0b{xD)Iw#@koe- zOOp8U-g|Zud+Cna*#y^Nrv^5qf&zZN91?b-buO;MGotnFVKeMV4Y!k|7`^~$jm<%pF4R9`$V8?r`>YqXtiuWBKzYXUzb-;R`+cc7tSC~ zpE1pLfnn7lhSH_nFGU!Q%ju_2wT~|BT^uQT)|$K|PMP{v$dcK@s%}!f=!{Q8tH0`x z-Yo{s?nS{aTvyEr{Ngb8c zx2ny4LGEeiqkbNrr_rvEXJmZc_B_Fa863Orw#0DzcBR(ReLQ*SlNb;K6@9@?iRDR}wU<^ZGy2w7`F zi}J|gH@8fWFoSOSutPS#of&3?#KqW;hfGIeS^EcD(lHm~84vrpy#K@^V^opL833}H zr<5!u+glTtrgfsDVaT?``$oPT)yZErT2Q>?1Qe^V&O65~X}3tYVUq}EsDQ`C6q47j zGW04e`~n7~pVP9UHo43;p#iJoa65^!Qv@ zKqUWf>>_|kHF^-6+_;H1mG}1RkDgb@D?d_1-m)7amx4Nd%mA5_U9w!8jh7+V`(t>D zOFkq9ZXve@XeK0?(T*qV8H|Q$8J|>_g!nVipZ@YsJc}vY)l@`j0IOlo8y?eE~NUciM!QNt?2DLD^NIO%^w$!paH~%zd5dSj? zZuUUtSE@thK2lgp9%Df5jraGH<`02k@(n2jmQ)1d+3IvzEi!lODC(^R4E-*oH#}QS z8Oq1TQg{uG5GRB0&76oVdX{VH&Wf@V_`BL(@UZ69&yOoUf8waHPt59|*a}kJ=!>sT z95V5`9ksv4`ab9-V}f|JA3e$4;vFX!2?vK;!rA$4X&ru1l)tc&P8Z)SrwlF(R~Th$ zsT9O=+_v#Mn${0<`ZBI<(9^Fj9lv?|ijxOwl_e;wn3qwz#J^jZEF*#C=+ZgXaFn1`{J zvRG{UuzK_!D1cjhX)e z6@aj0y6V6Y>anA!08JNbev-x^{g+`=EAjuC zXNq|znutrqr=Ye^cQ*hU(i})+0TE3#s39hPzlbio0{tIo zTR?iOT@2lvKhikzEs~@ELt`BHIsZR>{eJ+z|3Cf|e2VkV-_W;q^rp2QdGn^-w;E)b zi^K1x_^*L@x408U&?qXVx z-$+{CQTnsWWtj60(AuC%=cgCp6ZO`@QY0m*?eC=mq6%4&Jo(EGiDLRiaAc8EJNR@Y zi0kg(v$YS>5waJ(i*3)MsR#cI%<{;6SS^|d`_V~=w>8|zdX(QmJF>1Pr98Gb^cYl$ zUWW&ZwgxYT?AXjqxqo1V$!&3QacEDdVqv@f^2h&x36ZrqkJ(fYZ_m-zD)z+lSuw>S znmPYe`;yQ@k55Zya(?m0!z9Rs9SlRK_ygX#I%+y97M5Q)9=)F#wg1e@I`UuL>9G3- zuO7(Z8FWhdRbI7>fHUdRxs~C=5Vw2YuH#Pw-yXNsVAZ*QmZYQf)J_m-4*H`KDB`6n zbjhptQA~x?jqCjVa0^&A@P`}J^PQxIvcrbU(bmfNsveVyp zf*}X638I4d;RyL$L5$Y6mS529bHOYp0x=+@u+wMoo(@h70%mfNYq=te5ANIe)1HL2 zm9dp}>&XM8tO9vi87ZGszDW^9Cgi*<%`mU8$YKm4Nbe!!e!yY<#iI-b#p+ClEM&=% z+?zKC!w0IiN%fB68CnGe#zWs?n;KO9om_rfN9Bf7``)i3$P!2HqiRELdom*-L+K{Q zRUk%8A3t%S8jnOAU2T&rDj@5pd?<~k0UuYFacvkUA{(0=@F->?Z(2q3a0Qv7d7Znr zwqETH+^lTT&oqGUJ)h^xE6znRy`Foe`-P8{*OfJCH7Vz-3lnG)#uKtTSR>3je|imG zYLCHNH!*jtJ+3cqB5PzTXpj`cH(SXN?_8{}d|v|G|F11q`%v=CCKCO=jImL4U*Xem zPrzmTk{xgJI=zs;%ET+*@^5|7_M>jHn&f~0egJ;sj$zbN#wF4EB__uIA?>ZBqTIj! z@1vrG(%k||r*un8i?noubT=s7-3%Zg-Q6IKC_{HMz>q`F(DRJv9KW~czR&OZ-RpVQ zVlDr{xh}5#xjvu0_iMl3v!)LvS(5(~!Chc8MpR!gTwF-5Xo53S>JTEb&6GAsL*5@{ z2zi))Mw5-0BYFXN>)80BBLh@MmJ>!EqKO!#3I6ee2RHSw|8V?KJg*~;Mhw}qx#x}c zk)=;2AOL@Z#7VdK*YwWsBim!9^xFrFQV7_DO-kj*cXan`OYwq_%RmH}_VN4Wf}Mb4 zS>e?nCAawe>S}B%+y2BD3V6SD_oy5B)0PQ-3=g7FbV)XbIXNuOMXC2PsIKWzPtUxp zA=KROl|AJLl9=@@296z`16~hMr1<6!((Q;MWPX`A1O3QtMk>5bXWy?-iv^OOT+6^9 zY;~sl03q*X3TCOZHWIe;}Xh$`Kb9&~&i% z+KbBrnDwUs%8eLD){Q?*uJ${d?qF9ETg*s5!16>G!KMUUAM}%M=wUjH*i^)xtwdr$ zJTHnxTa`SCu(<7G!CpzCg8@Q578*dBl-$=#-Y3W|RUDV|J!A*EvJdBl6t~*joE%#B z{>Z-H#WOV*3@^HU)5t*`=VXJ>OEy_&`39wi#`cZN?jb+O{T3K#T;r=ty+V%LeuRu> zD+EPUC+(!X8ia(;tb}zjl?AYVjr9CB%vyu|%>(Yi$=HOfXL9rvkUh&JQc^ zDm%7mr)S#VX=x;rmo%j9%6`&f57JHOcgEq#55?2?+}T24Hq|oMMwTuo6C}Wz69JUw z{=g&`zwfn>UBg8fOt(L-s~Y3uc$;0InncN2%Ft!EdGs%us^r%eNFvVyXf%P`d!qn;M zR{~0&Je;DeD8a3$ETV=a#5=@jg|%NZ9_ZI0tCu>Pwb`)R6Sz70brT9mW`%1oh{zb3$v(VSNg%n4H zlkBm(YHU?w3K&X=cDuw{xU>wR#$-<-+|Cezg8WKOh~Lz3frzg z1*s%vf8v#iKIwzAdOg=C=RoU1HypGjQI~e(dEzpD1Q1pZJF_(zG|~~@=TWdD@VwU( zoLeOPm$0Jx=3(8?3ttIGj~3(RMb6?PwmH$N_B`BXBvi1!_m!ERN9t_q=c9<^9mf0b zj!7vc4g^-;W}%_0K2ev#1pe=W>PF}s4G+EAFBXoHfv*EDKUGz+b>G00#kMQhO#HX_ zH(A1Z#)##sE2=R@=sLgZY+Uwp0*<0ztS?P@5J>6d^o$IjD6Rk>DvB;?hldOYdYm*- zciiyiHUn?)^s$$d2UQZzUYRcoj(q0C5x8vN1#Kdr_6LDzgvcvDlMFndNjHboC_33V zMqjP@gCQe^7MRJ>PG z;sH$-l~_L@ORiWDCXIQy`uW>|u2c|Dm`_{hYQv*s*A3p?MxwF6WAuJk>dII*youQk zq~`!~>lg-1v{u)Q81kZJOinc`rY*AIX{ix`VXOKlh3I|r@0 zn5LhmXWx=4O%sq)!C<*Z$$2fN`Km}VX~9?z z<}+2^{3c1WBQ4Jf0hi(0JY3AN(s{$zCjDvI=>B#}*{5fZ8c>B$mQ_N}|3yiL)pN4> zO{iS&8Z}}+=(EyPk(nfd#WZGeNFzU(ngPOmL zZy&vSHD2cI{sp=dI2!bs_Q74$r{a98;f7t}<~I0qW?~MKu1JcHT7fFs{yy1hU&?C= z-Q`4?DkUb%7=*9*xF@d#qz-aXaa|pe!r|k~UW}RU$pv4iWj4$7H$_z&`!Q=_l z-X^LDvjef7=afg8g}WQzpy;KlqlEtn80B_w13gH#%By6$6Zir>gjpCs{@xJ&thI~d zVW!K&(9G(ZwJ_-yT{#9Hy&G-Rr4chP&6jMWw^HsEuYXFv)^BM$Tc(0SoJ$oII_=f^ zUXj}~0;a72)8s_)_q+1Zm--DF$9#ZDd zWPt!ju~g-4PfpHtnETQ>>M$$HiA#>xCKp->Cd;4>+fq2aR9M!#nVE^C)jV$BB&$B+ z%5OYw99Yfz4W-kBLPlrj|#ixe`AUC{nY=g${g50b$8tnzFyIxS2o_Hpx3ta2>a17FDAYz4?7zv;POK3N`xa^vVu+49VMOy& z9C2B8d8=0L4M$_EcT2D2mRNeaJSii-G~wF@BA<2Z?dtO#v%u*-XSKj-c>#c9;g*%l zK$wRU3S}nWoM3MFH|>*oh>ART+TXC--Hp6)b|iJ(Mc|o_jPim}xu}52kx4pQjBPfX zW170$9t`1QI*?H9@keygvF<_1H@UmZ-clkwh3pda)I(QLAH&aeQ7gDtw{6uU(($Rz8=dY^@_qFpkMNA{ zuEWMRI%&ATqlB~flAE8TCwANZW!F0hpuW7Vm~|RQ6pw7mLM6DJul7XwmA1P?uG1hS z-B@o$5C98((_l)8R~5J3q0v-SeQ>;u#OErlCO&y!A(ECt4}M|Z z@c548@%I_59dsPB*jWgnM-RUvrf8UV3q8`S;IdIFl@0|IWgL(5Y;&9pu2bP!9c5jb z(>OZGogxqb_8KPVNnN9;+F+%YRj55_U20i>iI`}RF`W!!3Ae)eEPW9%!wE+W!?rpE zKrXD~MNq9_^@rJrRe0BP%55{B9@GDc*?_uu6rZhN7N8iNX@aB0)060Y) z5lTmCFX7~PO1huwM;e3$!+sH|cNnfM$kE32@Uhr;oyzmDI$dQ#-{m!&lu}UCX;H)( zgT|IKu0i)Yr&61xzqj3>MKb!rmV`KpflY;jl7d?@jjuiekrnY3t#+5_C~xG+@?$Q) z4S1T(2M%)%^sZx1Mn{@v}1e-cpn#+o-6~Q#|sTRJOF=aUUzWV}WnkF$O=_rWTy;jI?eX+3P z?C6A68uU3|arg~Zn>&=2iuZG*vrGLxH-?$o4Y=ca!_ui1s~gu*+Xv2N)LttBTe%Oc zwhz#-O#D~?e=)qAmm-}bTRj_jBT_7oJwsYHijL>?`8av4rduKz+n!&4yF$e=;*Y{z zNbrV;r6hoY`Un07K-za%6(qYeF?3OF2aH|}V-YunONAL`Oek%n`9MzQjE2?D_PwQk zwpSvCim<%}vUzm#;a&L9c|1`K>=}Q;yv&ILKD44xY)Dpzd-&*!p8t%0SHC-WpRPfV zW!H(5AgRzB(j&k%m6Bh*hJvOHkWlp{7O@E&>5jTQnzYyna$xVd>ViX*^fFkes(pl_ zI=B^!1yzD>17ZQzhd8T}VtV;Z2PhF`qw7Nxxj@h^{!2x$L*6mUDKEeK^XYJdl1HGl z7IHc^uDnu7fa=>I+y?y113L=66`^pY@VbpUpwJO<(#u@X_#Nn3o-Yirc!>VRuo14PA5u;vw6R6I z%}44?#6-Nl4&U=>$HRmfK26_17HeloZ|2JJZEJwyo>kudgR&umXrud9B>hnCF5Fl{ zSbAiko2N$9SpuuF!V!+VrZ^ zY$Es#*^55DaG8ZS3Ne@|5LSe*+Y{XnUXea=SxY?6%`u6h)O+;n8v)WwR)IV?lgdv8 z&0%|G3bF2#@;SKFUQA}~c4)W-2arAVSh=(S(+iB;aoHgS@(OZpETcMo zt=PX*sDpp*OpUzx2X6$e2W6)yyoe>J)g3nlE8PKJakrz-8bzI@uxvrgQz;#)4hq&dZC7GTJk?N0k92BS(^dxH;Y_ zee0qUsRA=W_UQXo+J=sKmAcCT%P?;^^_IS0q31qF9%yZ&HCu2ezf#YyUx0(7ZOa;8beG9F~d}N+NiN*GEJiidw?uZkwWe!ahJ&* zhXSk+MQWA{%Tnwlis)Be!sg6MUkVwi=dTt@ZI(pG7%naA&%>~8Uj!{v^I(y@s!MVm zbh=C)xWljwkj@pwbIWTVqZbMuKX)VvW+UXuA2)^7KpN)iw=;*oAa=JT?&W&l@ zgIoW^_DmD4PwEKmUf?15i^#LLw)G9>m8k>Fw5246#-JAFA4&eW*kNP zUV}tmcE99&hhlR9BcV#zZBROO{9w7vrMOkd(7opX<1#jobcMw1?6)#aR$Dwp49=*p zGWTtbRW96oo>dwT(K@~A{5)>`{){QKiSAsk+E-Q<0i~wP8rt-gj$iF(z}ouj@^;GJ5x`wn4?FBc%z~Q zR+lV3(nU$%>~>6_e-#rE$(Nxtd-9RYF6dWghsyO%p@(-a9t_m;rU#F;Bt7v>jjiEa z-(gx0nMT};N$7r1Z3cX@%QidZeHP{b?{C;4Fy?Ix0tl$NZKw1S3!9de)^nL^F@1Al1ZDj5K6?!Fu62GuAq@L|eq9fH}XA)-P1>H*{1VfUk6TCsag#5=^QEeh_Vn^)A;$Hq~QRAfD!c*O<(+}wX_}~8~jcg{9hy{l<+SJd>{qtu3 zS7_`1g7Ju@L;nusUn1RqQ!Dy!(LbdPq5A)D@&9+O_TZ^Sh!N4>Kd5Gi&zBe+^5Uak zXAb3v!bT{D|Lta2WeQ*ZS`dG!aSz@NxP6l;{`wntT620PEa19V`m}B0pTAqq3X*ly zb8y>ty@cQj<7Hfd1Cc?b{|uAm*jcL`AENs+v59xf=lM#XOaO;^Y&PXdL88C#v>A;{FM$B z{Q=yp@>SdnWHoZGUpzY zrjJlLvEF*fF*^0}YZ8C4fBcX2l{15|ObE~k1h`e#(^4uN|Gq6WlL=BJTkUG`7;_;u zZX;bu`|~555{1c>SQ>RezWA zfoa4@{wEiCo!|e$2jQ}bIv5ZB+hDVh`&;c?vK8NLPK03!ymM7p!M*&4ruBQ;?7;tS zuDPxogF!{%9-H$~f0kcrb4jcQF(gSxHp@3Ah3F4O_6@B>Jnztc8Ri}4!ZbPI@SFn` zp}}OzOX(p*;qaklA&-6Lw2&>G$Yy57Fj><@__KY5O6PcYGUqs~cAyn{^?b8o)}>!m z>bkeTgALz!UbxgZ2WuT6^kwSF+OU-1XpJ2mc)4-XE#bP06!`0yc<{o*YDxOZZrp$$)&X41?;It>extnxuG84s6EmfLo-eg%cVt`|VN< zKsepf<|Ira>_*A?*2f+PmYB+=l3MxWd#}uf!AAC|g*jEFH`~i7w^amxMVPDklaq&n zLosAFU6(mHUddsPL7c6;_`(lGHYhe-Mt+TP@O=EA;1^;2vqmzmc1`VYRm*#zdgOWT zes5R^AtUx$t@E+P)~WADT}yxxF>_DOY6{ z-DDt-onH!jY`)`~@geM5e|%WY8fVglESh#QX?He=PoL`t|3$`zY*HmbKvJO*@6&NP zW3A2*wkNL9eOjqQ7yXKi9EXtx(if`IBhyA(C01HYka+1@tDt4_P8Or~1ksFIJ?c|` z0Tw;t-IQ6=%wIzqzY|7>7YOIZ$E@RO&{B&REhV?y>be%n&2J|%obNA|#gu;pSJ_P$ z$PWFVEl1zraG?7yUom7OM9S7L5nh}5H5>Fw;Gd?W ~st{qr`ItG8{#Sv2|wz_KK z1jYsI{`H<&TH0ZZne~+9={#(M7|%KetYWY-ym1n%dmE(ZMuhK>*B?>ESkH&3W)tynH{5RLwW*Q(uC za(qw0ZoiF;?%)Q4F*R=RLSG>)ur^T#dgkwD)u0Kyw{?(Gk19)%E{l5bSrP7KCd zhyP33sS$r4Z$`8yLT5~cK}mS%LT4|G8q`>Z3xwwP6yLF1(hRsd^-C%A?%k?Z`VboJ ztJ<|K#f-dc$lwv{wl&ETRu$Ul{;5lSs%JHm-7{-l*lk4OUPq^tQ`i`_bTxHB=>qmV zlA;7FCPK`C`%eBj{mu8FL^9P7V;w_2=?N3Wd8KV^u0KfmUqgx;LR`eV66mmv! zpwO)J3-?2D^@|5WS;CLgSvT^t!2AThEPL-*x5r>Rp*3x_*a&|oolb;9 z{8J*jrUpW_xexAc@cjZ$#Qy&F`JVO3Px6i(n8UIZoW&F^Q12x^e6J98`nPJbBG%3M zr_8iqDtHd1^eM7RN##>UN=h7Ak!;ZEN$^nF70xJ=mBJvf^j$k=k0)>{Rz9w4qUBTE zz1McVc2-*IzKv*M-&d*z%9zwsZri>}RYFNpY)q-3zciszrZOXo`L$1lmI)ibiE;xjX&62c~C6zP-a6Iu7; zC1lQ%-U?{SzI1&clBTYi{J(uG=(Z z-huh*iK2)AKjO8lVg4Xo%nN^o^-bE}Ze0QF(`6kdGSY|#9EmO-Uj3*oniZf;i3e(< zo!$v+4SbWcKbl*+gDd2=e{{U@Nsep!pqEVZeM~9_Nb;T*oA+@#%s*-)#0x>Xo!lgU zD)mNMiW)R;_rspu$f6qfd`?~_naq}t4Jn0AD~0_}LF05Le5rvv+4ZFdoX2Y?KFVDV z$Y543Z{U&uo6aV5bZV|T|D}xV=3tf=#3BEK%FLg({)7h55NBxPF#Xs-L`l2?iz$g= z6fWv*PoXCj55I$-`2vqTfu5cD0T08Co(fW7^(4e$J)|-vH+xH|IfYG5_89N+5|LTo zcvVEeFg*%=z{k&dpKTc5Jgg0UZY29071fmcDN=%i;*=+RPt|?D64Kei+d|di%LHy$ zf>i8PLawKZ_MmOnnc>1)GZbL$n@CUceQrmQlydDD3!L-4Opyu=y28Twg;=!;kL>IG z{OIPG2JC(3viUpJ*jx=hF7VYB2j@Px3@7WB8Rq-^ngHYfmE*=`I^M0BjY7~ zyxHA;?aBJoc!xPiV8bTRnJ;%JVluj&H(`|%)xr(p;$0>Xx>3CyxYAc~O8s9VdWouDE8scj=}aNVgGYXGX)zC;C` zTO%l?V-Z{BY%)&AR!r{-wR}r_jznbb4s=a=tsY9ut@ZEhW=cX(v)KPU>{^_&@^$o9CC)Q)zST4M6!jQ8gX{d5`$pb} zNU_aI0S`B{A*R)E6U3F&!bveNJPX|&*u{0MJs$mHV+?U+O2 zh5KD&<9BuXrkTk`50)?Y)=Y70m3^IFVfvdJ(i^w}pqYhI6T`STT;ke&LsefKX1X(t zXEUv?9^P*=iJ-E4aVo))AzU@dV!N2uroFUOGAq~Vby#LGQJMPCZ%=ot;XH+XKR9hH zLw3ilVdLDV&B}}moGz62px#*;4h2edpQ@tkT7KBz9%PiF7wavJ&HKF6dMT?N{2Vaf z;_obE7-!j#W9^$Z^~@?WBcyh~OIL%Lz`16|n4Co6%#^gQCNHpc_EQKdPqu!ETxcl1 zodix-BRwD)#unzg)zSP(2WsbD{pyAhd75B<=MP(<3lH@T#ySS{{p|W(GRAo@y@37I z13+1c(H23GfXEtzoW8g&(#Y0}x(=#-eE!JB@2j_`jiZXeX0I`OxlSMNA)8fKdu)D0 zqfE=ktVWh8x;4nrTdmQ(9vAQBiIbDjGl%JQP1TWw93u?CWEN;u!hnsix=`&{c&tfr zBN5$3_-AJ($_(VMhCT_)YfHv`kJc3)mhsp#QPiUgPo49TqJbIaw2cpU)t46^wY{D2 zcv5!WXy~~nLy#Ja-aFOfd0P37Yui?BgmSZIo+C#S&4Q)dC1WtU3y&YmoJ8|!Os;DW-8KMSUx-xXHq9WfQsa8$HF=8lCc9(_dr*3JJWS< z6JzX&0;bg-IlN(NX}_1jbr>snZ7T}j36FUVI37cUHt8LjqL#JQZ(s|P7*q#xdCc4ZZ%6=Z(obx-Cs@ydK#SpY}fF?rIP<&9lNO{{(!*$#~ncJk}6=0VnkKyfUx zb26y9)|^Dr%A+vuN{2xM+ulFsAHC1PLi)k~5iQb~-UKUL*llU1?ODi&n<58{wEG0t zX`TCJ0l@P0AEcqFsZ0nrNfXTLhT?A?S@Wi7e)OGr8Qw#o1B;XqCImEfdD&G#)@-=Q z9M097+zWnEnfG+_njY8ZzC+hSQ(Lw!eX6m}SrBo#_deh5aVTXb3EZ|t?jOJ$uWz&S zS;KnXfIvCmTn!KiyPQP;oK`5Vspp2b;bt7b82Tiss9QNS3-Wdbw~q7_wl(`sW3)cXPFh5KtPIRlmKghwwuFsJ9cb2V ziXfZMdiesN(F8}`_;y=?HmWM05+cM+bB1JOZH4{5=^pqrJL>RF-nPHf`VgTdKo_s0 z7S-PKp(&UXbty~gqL^t^W+t2rP*o`frCUFEa43T}J)6&b^o6^<7DbSk( zOS75>nKBf~WTDb{YC4rB6_Vdh!Tor#+o99+>zEt>* znZ%f>%}`6&g4`*xxhND%SJUxXA8kr@9ktniJbO z3K|+Dy*$U(AoOebphf87s|%Q62mcZAicp}RaKw>SFxb|5LMzj}tZbuWcTB)Fpn+2G z^kNZ{fbs&!k;M}b@&U7dkyyQW%U0;A#i7?YtBPU7q(2I%aqGTv5BlQfRtie0_EFKL zb8Mz~L$`nd!$RW@LY%`puTHis@7B=W!4)mIHFsC|dJw#l72t7ny7tko*`UT%SQk6!LYG32%R+3w^I(Q>NoQPfOkxzL&NA1(@;>t1TXYtzwgt0 z@0S3Pb;MNeY=|lH4s{B)Fk8~8QaT`LX;dPA|A4whp+tNZ3G zxl$w(AE9l%_AY&Y*krmwzTo=6rZbNf^P*Y<8T!iooUbjua~bo%?@RdX;Oqh0iC8f? zuJ6){2EP{|v-m05EJ894!TEvL=lHru*XMbq(<)MhHl4@K3Fxt!)j}-ri7k@RO*Gb` z2l4_>%eTg@Cl=marYpV~-s7>>0*V&;NnLuCKxcgLo_au5 zGW$g98UTfbUJ4%DAJe;fgCS{gA|)nh8|4H$#Uvp z-ZJrRt`R&-$S1Nl@-Hghl+A|srw?(;-i&8Es>i@lhKb3gX zalxb5oPNSaz{HFJq?=26`n;kEs!{OhVX3xg>RY)H6+A3s-A z(R_Tky*CkyKEk%&D8uAsHWiu~HceMT&-~-5GlYC`o1yLd_p0`R(Ol;{MK0X?J*Im} z=V2|pHt8`3o9i3pUMWQY_C~`}0smDT7v=8{>G%s-C=%CEi%pP6$cqoA^*2L6ev;#CrjZx+4~I4aEmwIO)L}lIN>DPbU(Tq7-bgVS6=;4wW?V>c+#8&3Szh9cN)8@(y(UcZ{As3g0nM;cLaEhM%ARXL9-1>NaOEsoU(;jDy@g^YMeU=a zdY0m-GE6F8{%;=0IeP6tjD$~<{;jjkZ1$z_%g1n8#eU~U65N9%H6A-7*5DjVb|%^I5c~RMUz@RHpQWEj zxE%-Z;4;7Jl5~Y0L@MAebKclNl+uYDh;bj*slA$iGf$2p0AqQG#+$D?uGw6&`P7Ae z@#8+z%)0V)&IVlfeK=gb?IB#f=^0$T>lu8113AM*xSRAUt~vIfYt;t+V@DJvCnjtv zXtAZj!r(SOBO*18oi<*VPlV!88dhh64CU<)BEvdE@@a;OmIfRNn@z(&anG@+_7k&klr{N z?=kpP?2aSE+ohwLoR`pEEVb5ttYpL5rTiLa)?neIsGfExT(64+zFNg}Vh~NauKeiQ zY62RRvMsSe{QC?1GbDA)K1fHz1ii^)rHePl#ws~U<$J!gB1U=I_V|#P#@tmdiwv)< zCYk5~gPUg#eWJpKSV}RGARWW`-ZyEJ{=b4D5VuyKZ^E&pikROD@r?XCHL;Qd8$!ChFvCDa_Mo~<& zt3{4^M&k3o;;vh{49vJIR}!)RVR>ro@sbppk(MJvf#tg5J6135*W zuS*=TF*g;ex;!j{xK+t~Z$jk%QuQJt+N*eCb)8 zj_AsK8{rwF8+c(M@>Kl5pH9iOYAXAHY0O^ve1SwRb=Y&!D$r?0SJ{#6iIo5-g=8g? z>3tR1UE+-wEHpTT6ZTZ>BnU}YR&GN_^pFT2UET?8COYhEn^7;DtItO|b-m^7)*qeFte zaDUl|Ng|M|!jY1CKjA{3%TaOc!`4pGTji6%Ug^{IY0Aazr>oy3Pu&rJ_yC^xVtE$v%1C8g)76R~_?PV`Za`-Dp;;89m&%nUt$3 z3J!*nvdG-M}N)V$Dqz!sZS-O-romf*@!~Z?HzA3!PvrZZ&N~T?`NGExOvUUhbSRsUjcs%*pnu<2XY6aGh2pAu zMq;DESM@+|tB4s!8UL4Tc0xH!%psAt1r`RKJ2S9xj&=(#t4ox=Cl`H8xkg0a?;{7B z=qw?1{~E=y!0+kg9*(;LKCR~16c>gM61P)MTzOr(_Y+y2PlRCWa;(`FLe39V!CAe5 zRp1SXdmV>Wx@-SoANnA>pXw81H!{ghihVcrM@k7E_YZi#w898l8J4~ccD>qBy!Tql z5x|Bmt_+;zewdt8d1vqmci)_b!Ih_TxZ+c=Fp5%b4igIaqkGJT&y0Ed<(lLR;RgJc z2JRtU!#aL)9cS#9{HryWp(oJXcUp`XhAAv8CrfpjJ4^Z$u*!OF$XwepJ2!cOro7|v zg(%J2s5;O)zSVw;x7NpJf?gMlM7hqeyyi+g!QF0ysGMsWxze-aX$h+GC{VRXQ${Lp zRuf|pc8h`J^XJU-`6|>w%JT*rptx9g-@=GJ7t`kboWp<{MK zS6Wj+2Q6?gf&2T3LV(iyC-v{M(lX4gMc*}S%vbxVvbCyCITc4UT#XBmo9?mVX^wja zzBYE1Sdm(^5BrJ#hB-V=WCmwy&vxqSgi)vJ=^%~Vib9?jp5=0tn)Tmw=y))awbi_^28~r)C*8XUB zY42O=uOzuVkhi~*ck=Y{?TDsN@&ouiaaR)HYa{o5HA_AUcgnkiY{<$Z8TsMMYm862 zLZe+p8Ij<5&f()e0JYHdy9Wl2H`!7@-%NznT7sy_M!Lq*id&eyCinRm#j_s^(fXdE zpL>VaGwOx=vwV&zKKe$i7%8!902)8spv~Xl5V*I+k1292{07O&_IhUpqNf3RB=0g3H?K1eFk~|tYw~_X;?-B`dDpN z^SOywkP^vzpAkeaJNW9-EHpNDY+!Y5`zThL&wYTV%`)bU)@I4TFbhQ1yD+>I9cFBN z-V>})u6<2jR#$!)HLkB3J5!E3<+u6gx!P1gxa?P68f^qVWbIb(_ta3a`-%LBl}`!V zclmU**`7H!El=)o7Q415xlU&j4f5;Hb-LGobBZy3c#ozRyBg}4fd@0O3KRqI=*7=4 z4?=;EaSnPi%GiMpSjV@y_}X()l?_>Y;J+sQjG~OZMOAsRU7LDr7Gje zk9sE|jxrQ~xXc3zFK$d2>yPe3`7{sx^x!1dnZr`!CjO=}H2&;?rm|K)tPaoF!XsA5 zCe0e8flpr_Q~u(ysgE$>i5`P)k;PX6jphrDefMYwjPAhwn4e%UP3|Wc?57Hk9!93` za4vA@jSFTrYeGsy+c=G4j=1NUeNt0r$Ly%v+x~C z(^VL9wcs)5TW*6nlHN!`dLbo3xx3~xREEA<-}UA0R3zrKKldQgn?Z`?>e763X6L3k z40043<3Jlv1V3={xt>|Y`tjI=Bj?d=Pwt1!a!CJTUmr^_(5)HueV0U_(fL+rai{F_w@dd0StzMW)B*WZb|daOazUs-@Zm$q zJx1`wFd-fg+Q+!0?S1N*T_Mb2XPuz7Wuyyq>3B$6>ONW>8}mvj(I6JpV!C6fu|n1| z)-=PyNBD+pSY&mo=IN1MA%20C->VUIeIXYRVgJc7TfbJyd-xeN36ogcfdBD7Jod@`0T%LhrZ$EsrJdrmXd<-K?Z%rzMN&J-rT^h4SeM1B<>JNd}H3+)viV?4JC zlb{1}zDV#e1=w1VU0>u~1%6LR5C22bQ%U%kxHADM_t|qRl+xDOa5l8QeZ&LK2VIuz z(oc3Ev;2ko!fBWLI{;%(UsS|ekKf&m;{(y`RzsE&nXY{1@r$gAU$KNtr#BTr>>jw< zB7A)B9Mroi4nsh^LGjHO?IV7i@j&l3+ILdd<~LSBQv6AU1O$=Q(n2zQL3Ou@PC+u z<((7mS97jNBs7g1^?uwH&Ha(5RiXAW1VQ|$w;sj2a^S;)>Y%#s)#T8?GcOIV+Q7TilN;ncE`=}Y~qU{DHB*#%KLP{#Ithuq#b;{mZ1m~(pFbiCyw zEgOm`EI`m+*SqaV3;sRc5tGI$fbe5cJOd*z|7;_QA+%;L*jWKEnayDx?;CvQC-eb# zo+C0|Tg6^y*}yjk3VpF)ZnEdt*hD97tEh#n0kjsakM6A9R@MUo_vgK1`}f1GPWOFN zBHwQz*8a%L`emF8EaYXp;_$@g(0@xj5|I=Kt`9y;X%JA~^vQ14Ql7R(m}pI5YzOPf zXZ(;EV!8~UFTD1_s7=c{O~QO6##vKWOyRn9#mq`+cEQcpq<&&p`y5yEgM5v@*bDgm zP~}fdR}N)ml-4(D$n2TF)MWtZL{g<)Ec2_)YUDn@c~N^htRfSM^Z#)7mH|<&ZTqi* zA|g@>NJ=Z+9ZE|h(hVXVLpRdRNOz~w-5@zgHv>Zm2t&irFvPxHYq=iR`>c2W{~z|J z{c*m`9oKnZasH0uJZH8b%d%Vh6aB}g)f3AUok`>E6U>t}Ys9aV)*Y0u5rI0lJBx*=!fT(#rMy5U~lT8VHMML>+)ZWOY6mu!P1%_FDuocrZl*6{7 zBd+048=qhpOh+r-a0XWQlK0KocH9+mY|eqqct!9R(?70aYZFzT;%cix`q^So{#@%9 zyW+rF?x`D1VT&0wTWTh_x57xX1cQ-%SLAm@J^@6#&fq`G7biHu>%PlAS1Fn^>Wshtcw$8~oik4QLZD34>k$t64qA*qMp22x0$@80;V;$D9}aG|G4 zPoUy5?_$S*(df1u;^~_=xWV-7M)Pz0QJgBZogoukI#P(aj-AAR=ly{mARjRnd z!@H)GMhoSnJMy}yJf5*WoL|k>XZ$-Ek6s8*>S7*Lc1lRlbB)LlgWI?1zqIXD=U z>-syZd9A!k&lH{`cV@>7^Nb*2xl}25dx>_u-sG18-NP69y01M;r zdXP?zQMq}Sl(xL|*mjd8JS|BLbSJDv%n4n^n}L5miK*3aZcRH*dg}2qDs9( z+&EC2z2|>%%fA3qRcwXE!4m!NFSWhqg(OaO$h^BnM@ZfhW%&zBg1~!D5E-B-Oj=ea zCj@#f*^4Cvc6+N(3@!nf;;`nPcjyC5|3F$xieoY1;BCh_h~Gsa&bVB;<>rT*lr zz!KQnYILh~V$#CDl3q$|+|^KXu=`)w%aPEcB*e6%xqUiH>CC;&#|2m&Qi=H=Pj3+0 zm;CedQ;_NBY0Ffk3>EYl!XLMM{KpjkKW@zVJTwHhjE0stS0ucjc_ zS?N{A#JgD8#7y3vlxAYWKoitJ^A5CME6{&vH1^!T)97BHXPe=f)aCH^EI=FaSz4;A zANUsD8sZE^fF+;dHZec4Y={U#aai%yepbuw#zDG1uV-Ie$AinAzDkJ=J|Za$!TrDH zZrKgS3=j1v)BDfla6kCFU?`aW*L?k+SF<8FH}fN!4&lT3hNSV?`;Hr%>-R{XLDOz- zyxToTzm9qFGZ3pqM+4t(;+lYS;+V-TE^z4EfWdWq-=k3@4v1UW#gF&0+oPx$-(J>B zt_$M-b$^z(LKYzff+0dzBBP&WxaFGZCB(wlfNHCFD+7_j7olyVscd-n%CLR(u6=?| zt^$kjto|2S!>3i~Gw+QVe56s&clB)^KvoU5%E{)0)OUKeAdTE7Oyzi#xX5pxo|1kI z*!3k}N_L4tYG``zj=~UES6Q8iF<@d`k&+e0&(;g%<~+Q23){u$`DWrs!Ej8Xr`H?B zQ>U^+g4M_%NS<#JIP;mU|*~_T8l)624VFSF~|I`vw9LEOM&b3(VZ4NI5ESAe09P z-ceC;x!05wK1dqR_NFsP8+NY_nHmiVsUP z72u%33y_r(n(_Wb6JgDLZ&_+v{Sv4VjyCURwk%%AeGZ3$BKN2~7K!*C(I$Re91!yE zua6Q;xN1k?=vGeV2-lVkS|9Gqj7EEJ4DAGZ#n7=vVb<)r8D*{!I}`Max#cgDelAE2 zw1Tz$XK=bo3p%SJGI@s$6aNwuy)??XN)nf_y3(Oc4be<9I?mh*p0<9da6oRxyEF9% zdCT`ix8|BHxuTBd%AVZv&!}d!l9TC+3VcxZ?AbT*wRNrqwfcq;UoE3X^F7a#k{W-nl^JkoeyydbHlaE;`K#z>KZ$R8Y{d)Pi1M(t#~D{Xg57O={#CTg8h?x& zIG**M)?tyYLj}R^%M*u24)^uw(C(zdfyKyghA#A=o$VcRGUFVEpWyDBX&nIW=4enb zTWcO?Fr|f^J$KZ$ea9veP@Zpk%(p~qC8IT-YM1Nj4-6MEDzLFR`QGXQ%QmE$62Ok! zxvlwNyQy%raTujK?%nknA~}7*QTEktSV(tUXAosr$R;=lEM|9_@17*SU~od2aupx# zJIW_oj@BsuP$tEnbw(q+uF7YAoCBt4--kI^lRvyzHC)Y;T1$^AC3!m=~^16*2ce&dJG@XyECNcJ2thrj%Gl7kqH7Mo1sQ|7nn6~x+{*ztd z4X6fI1U2?lItXO*);gL-wP*$C&ox}2gfdNczSZ*ay-UVN+H)5NPan2nXfa>N0Pw>Y z>`eRXl%W3e{vafY@;wojtu5jwh{L|9loPsa|1BNcT-P@F*EK>;VK%nNQS=llk=gi21~LT&)p%F1-J`*FV1?VF-CZrqkwoTIyxzl2t2-$I-Ql( zQ}gBxpb4vn1GPpw7eQZV88!pxkxh%B>e&7Q8%sZ*KrfghNgs_dp**4Clj}hg$6j(k^^E=&ZX01a{ zGE_+=&ua_bH1krW+IUaaDP!F*{af@iERijX$zj;FrALlrV$D^ukTeO~?FIGCvpJb0 zo}`(z864=E>{Y(yfhE~@wFGpmyQL2}I&qUVep(l3c}r9(V(-QY^HcC^T%K@J7&XT9PNS?DMytFI~D1($A%suX(%LqJSxvi+G3)hIZQggf8ph2@hwE1`xRN{T!EGLiObuZay?=lv(t2Bo?y8HQahUjh1;H|_yS|5uW=4=}fvo~mVyMo7&GKP+Vr$37&I4&GB_J_y0@R z`VUg_2FCm~8rg6d(Slm9)stO5NtvT9$e^XbgS+f1;iAJcu5}tN604$`^@5+IpOnzQ zD-Zd}GwXiD(|}$+5RNcoOB@-I07A!7IC*$+8-I1D9Vz=oh7qvYh2;>tuIZjIfJ*Ex__e2NO!7| z0oHeield90=X_cUBh^Q26Cao+bisXjwkb8?V%puDuigKcQ#|LcJ!jMHbjX}l6v90{ z02-=$RKlYZIIlbd-;d*oYQl&SFh%ZEtEL6dJ3Pj)u4N=TBvOYRl(WlPYFRGbe%+Ve zu2qpYa-Nc1!Ed2e%F?8)l@p>I`z@D5{F3*%tWnc1Kx)8D{6(Vs8cw{Efa{2Su>h~T zhjGar=FQEZwd30NM+8aT*#t7^$+rCHoq>q+Mh@--lw^WMV$*uI5T2aH-L+Rmn#!18 zxW|vUI23qe&}Nw_B+Qn@*7LfxX`JE&e{ekUypn>;uxdiX1E+<1IzDr!beMWMJI%SY zjt~v1?CBqxBv;9;7B(l`Wv%d7;2dJzcVX7M890 z!y!)@tL?x(r_{FevomRi?%dHQD;spUxABP9>2ZC=%(@p0c2;gCQ%>1L7y$==9|tI% zizW*H36mwS{bOYO@P`u*0vj@>fB?bgb3J>KFH={bcNfJ0r9-vQyYAwy&oW0n-dxce z&7ygQA22yj>c=_pVu{@nbZ!iq>#rVtVPx`W7hXulYeUu2^yy6h>dtScIO%db2zupp zag95LPjiH2^jXq)$k_$)ny(clKJ;#)@t$B>dSvv)TVm}q78x4=*tP)fC})kbnq>~c zKIy20jL5o-At(Kqlc@7g;i6Q}RpdBw$33>`Ur z-2p$ttqBOX_v_)sB_B7P;w z-$@a$U}hbCakr8IkyvPv*4$W|!SJrIUsG9HXtZurMb3Zr{NU8q<|m(;BkNm1R}dwP ziejFAx4MH@|M=N;Hml+>k&J8Rf~hgG@IC3{ce)0rpRtA-jp?%o^v3JyBnjnZm)YKo z`dyChM3SO$AS%Hrn-#@|Etv+QA(M1p_@bWnko5w`6idB%jmB}Ji!#Ou}aW~XY zDD`;E!T6k}r$N;4bb+VKpZm%>kkvq^LyY+tPniefbAgemPn~gRv1p~)`o)f53B5@f z0hb8pKnfmuzwwVI3hXuvCwvHPjRgAy7_LY0-wnT@S?o}p7XL{0)*79a+{ zwT|f_7HeGxYaW6u@rN2Fhsx~}7_`NdQxhYD0aJ^&R@)vg3i{H7=(1fQmmm*kd5}Py zZ9cD?>_Fw=wqRZCP~1vb+Tp106a~cYAsMs`WL;$#S-h1s>)^pC(~rpP8S8898#6q$ zC27iFYss2j6*fq|az9Jpfqf;F2pSbcW%sdZ4o1!r92_HARfAL*;61c*=Ml-M)7 z)f??u$W2^2{D>-x%lN8!ja3%xz4yX=lW4S;)bg}tQ@cF|Gl$^~gv0G)-SI5HKYJA{ zr#PJPZ^x(Q>T6?@9dczflQh(o+k0dXW@_4Ut3f`?{ud$`xTj4f>SS{cEBQo%9$(DB zfRqER0LZ*p zbF&_+{$*Khr)ow@5-VR_SauDGOiBn;)9u^0wk>E{8#LGH4ed}=>G7%94ewX3cl^%m z=|7kw#-p?}%B;84k?R9~*AF2|MRvC02sYI^OUGGe$Lr)C72YvJMM$C|1-5bBp#e>O ztca$+s zQ)pJ5`98rOItN&Y%O`Z-F~r+FbL8@o0c}3ji0g2DSo=eTZ>S%}*UiJI)}e8%f5Ivc z1SG=((x63k-nd(Y3Ev`3@OdOE`yP-Ae$eixr)=XDQ8g`tjekBt^J8k_dsp-W7)zft zv5p7WF>*o8WK_!j3u3?gXcXF{;N(#=Lm5+v@8)zoL5ClT90Bi7RmTh!%j77t+JYL zuZFBy0E*a^GbqRd8nc)>j#`XtSO+*??kBcD6|hnOPsKn@9!JZEy<#+tWr)k9xElt;TL%`pL*3o>Lr7_O@Bv;E1W`}0XgB;|BLm`xLp zobz}Hh0L&M$69xo5uT|+)|fJLZn_YN3B`PQdazmJ{tc{-{Pc&k(9V0nf2wLp6w*0M z<6QT#k;^eVq}JH^v!hUT5n!}}q1PpX&nHNaW$u$SRn-QJJ=)I1g}=asD_TMJFt6kZ z1W-r%(JlnXkR^82;1d>Db=El9OVx>~*W+FrYh`B1bdZmcw>@6JY{VyAbEmOxUL%O| zX3vu8^ys|XxYAsn7SlBHWfGRSp3mFxGb2^@m^768DY|A&Y@ff_QAG)s)d$n`!_svE z4#3W;h!4kmw^&t9MleBXg_(0c$idN!PJg(JhI^K6)K~o_aWMag6 znQU^52w0AJrW+d66Pt{;%~h-b9ft{ctGhiGR2pbe*YjoecjR65tx0+k^I@1mrabF5 zufErPx&TrWWM@C+wszA_Q1Nglu+F=@HtA*e{+h*uG&Eq9iBd5Zc$YF(`2wtV@Rcc+ zBfXu@I8|oJatlN8EchWVpa$Du)=)cMUG%G1cPZHs7YB$qa)h<<>-BdF-Uiv2K)1q^ zCzpyI_k`P4Jftx65qK~^a=qZ78TMo{qM+jj$DufXqc#0+7S(w&#Jakra~*V#Gv4dH zmh0KNtResuUsHIra|w@k09bfva0)5{kIfl(o6ihDgue^zen~g=oZGnRvk+&g@OTWf zVt#JcUUV|CGWQ;~Y#QW;0I)n03{MhCd`KF3{dP~AOw`BJ*#d_1ZHK()Wxu}{`+8mP zERBYHD#`F|R?v`Lutr#_Ch}bj4}?_8~+LjJk1+8hH?mqESae=UZ!--NUzKKB&bfufvQID z@`2J@&||pv0B8*zoYq|UrbyV^#q}|gj-j^M!y=8JMko=jBdN6QPsT5BGXpQOHJIkG zNF7Fp|H1IrPE}rHvc0eUl7oGlgPYBijq8WD7-Jp(Dw2YM^By#}?ks`@!fUQX){S?~rjpxs@EDUBA__dNVhPW`TTpt+8aQ ziB*^ph~?gwlXKVY^Hn+v%1w~Q487GNTm!N@zQb(fxV&v_cuCCi#Kz=ZR(#!6vB&0? zQguI#sRrqkiJHaXR~Q6dk#IG%zEGevb5Lnc;Vt)Fo;Ui_EE#SX0H%l!4d$uYol+%{ zB;z6~5wa6w6z}`?-QA8m0c3f)dJE) z0+l68iA3jiw6C;>YN)fBF1$L?_p{P1xNfL%mxNivh@DT=ESaJvu1ktuvdeI;{!l zTlz-EoJqH$L%#TaYexO+cKuKDDi5lgQ~6BN<|N7Tmx^KmGEa-N908K0NK%sv`D??r z6OxV&htg&3anc=TR&pkfx!DyC^DQ`9v4WlRNf$xE}&xmTq)Lw&j?O|}c5*4LD&-45F$ zj=zkvsZJJq-ANuGPPxBws5rwSfFJ-bi*jJ@|1Y6U8c8wc}_C(}{h4i;uU0 z+-gTcpaVU8jt&iDy{Ee=-S(P>?csT7!!#JScKjC8(NQFO&1Kft%&h*}d@VXZ>mKCq zr5-EeQz*btKBJw+y3-2#PiWbU`=>ku>c)6?#Q@$zNOo@xG%L zo8Yu@D9q^SdaZJLJx<%Q$xhl=(?ifEEB9nWYm|o-AHs=*Z_?0B^7Oslw^f+ZbXhdW z*aJ*K=y$)=$n2_=mXH#7KYi3_ADg(R@7Ar4x88`oem6YA(yE>)7+ISn4USyOC^K13 zax3UQj7ufP58AjwMP$t!d8+F>tG|7F#p$;2-084vd zX~=9I!n%h+l8^llH{u^&Te@#wE}!0Vh@VhACjAq{(hgf zjC~a}tk|mn!W4tOqNYZa?*hDL=2QC@()Il32F;9g$u@BuAtBb9-z~1BwwCn(2hw*l zpqhjo JZ2jU^__Q_r~3p5H^kzD;BxALFVKLe;a`ocrYH?g+hzr0yL!90iext?Fp z!SDofE-~7dnS$bcf4czn(HOA}3W+z3wSdrjL*zOX^rCtPVHt!+p0l*r$FkXdJyu)E zwR2C7-fz4d#A+2{@=IO&r~R}b&p6eF1wNy*?!h{^2Gm}a68J|Pl{)fX6Z6Lps|*=- zB)ECSG-}}=*#*H-A4}-iv0bo(nm>q9EoMs#NcgL+TmzzBXU`UU6Cj&?r^3!3JvjfOx^aF)+} zg9~0~im&RAYpq2e0!MpHxzt?O|8W7BvBz`^CgJX>?2_~1soEf~^tBf40Lgy=^UTk7 z+cWO3iuQHiKT!=2o${CQxce)j|K!ezdEtZ6n0l{&*W)D9Nh-0tq4NJF`U_EuYBls4 zc-!;gTTt2a-{EB?G4uXl(cbR!g< z&~QhS9W+0x0Y++~-<`?(({|g7yi&L{|526w#q_Jg-G!s>Vuatn~@1u3uKzs`6TK-Yb zqg{Xt-x640Msa-erX-&G*FZB7knoc#413`*w;d2JxExy5B^~rGVrP8%@@AOq&nXPZ zlJD0XPRwd^T%QEdq@L}Z3bPm;Ysl4;{HrH5_~?LuD$9B%mqEqizf=#p}vBvlw8#JgU2a9E-|j(8SU7wB&hdHUqn0R1lrzB*hy zOUvSXklf!L9n@ZhnN@y3hdU57aVPn8%h-{c4lMJHa&tbvOESRYe|MSt<@X`BdS7gZ z5)KBPg@P8ITOAS1d0~j1S9_6b^R(d*_O#JDY;~io@&Jp;NSSMAH+?8cp z=Q6KeeZzCi_+h{8n?`JGXs=kc%kOXU-*EbDkj6{fjQLM+tU=EVl`y^K+EaN%z5hLp zWS)-e(;vy&DlU5kP8Ox}Ptt#gj@ivl{OxX~oSgvNt^BzFW4ClJMJw$?#HV|H;&dYZ za75-`LrKAjfJun25YZF^yEnhP#hTBT*GMnbS<`vAh0;%hLzf1rE8K0grDeO$O3fEt zz1M9$2!!r5tUy+f>jc_>)WNt@BGXXh4k@sS*(-NpWz<^>S|5cHu?LowdfLh|FaYhF z1>GL41q2%C$ri7ZLCh$;0x7%J^%G8_bNOs)T8ENu&#Qz5Axs!YuUE>Oii{Hky zk;HI9%t3YG{3juA(O`@ax`yv*RYH1{!QMA3m_g4~y{?z{nUjs+o+@8ggoJY=w??#( zTr*F1*E;!&yEb~*w$teX>-@DUK7aN7sqkN(C7YgFa9UsOKzpK78kARi=N_t1mw%}U z@#&2rv7X?w+sTK|e!6Rmpqi4Qb`#8W9H2h3L#%-dK1jS5uidz=cr3;INB=yip1L*v zDT?a+&bH12sWU|qX9Z@6U{KF+Pvw>C3;U|pSu-M}%q2SaRxG`+mp=c2|6+blm>Gfj zZ>HZgXS-*C&|x&q;2iiEA~>j1Me9#a|F(wTDU0k=`7KzLmDT;a(W?g&%_HbNfJ`7@ z@qNnR$p%!mpd`d8ccWuUB>A*xyFhMy){FD_^7+L_KJVmOxyfC|?$$e3JZkmIk=%;} z!Hddo>-Tf_3X=3`+L0)@#^Xt*rEjFiQbo08rNmUXc`Qkv2DHegs!~yXFGyq+h&&;n zF_1!ch`N;l%>l1@P}?UK&hgPD4@@j7pyCTcb($88^e4v3R350&qVAQnapUPNYm6{jzO%9#z>+b6ms z{Lz|&Zd!G(5L(i7WY#6&H*tC5T=RsSn$Ef>M%$!sSiCtbsif64$sUnJ!bR?{7#iZF zlkgA#s@ZIqoKO7#O7%hWV}>@PMooO|9NwMxF`6HY2>Yys1J``V1vVfvoC}0(vXuW_ zLu@%^1iUInl{edfN>pi~6wNjMom?`a$(Z5sc3HCLxJ05U%7erM;)n~d0Eq8AvrHuL{aTLPUy8EK9jq9_L|3b(K9OZ(+Vtnc7OOBjrtf~vFc7D7(Za+%F4{QD~nbCLI2-WD~b3;9|dVTn`NBE#?X2 zJ_r32vIuecYYit=b7E?ciEj!8H)T(5cBNjOt%lajqv`JqRfZE!?S9%P@YQf1A`hB& zKjFWGV!o)?^b1#;Y}0xVF`v3W@x}5`fXjFTCTnQ{7_il~aLtGeR)FxFTYO?DBRf9h z)!^l&i2Rz++bSZYFQYbEYX%c^PvH?Innu};UvZ+DB203*e(u48Yy0wXh151FNoSpK zcDbi40oaft7KJ)wQkv!{H1VScyCuQbps@ZFO z!vnXItB1H=6IBeP(@}A^0TEoyjsA@pe}0qu@v3NCx6#f>%gs_W>Ix()?l%Ww&qXe}P@6b$W}% z%Mli9+{%asAyF13@K%v(0=y_q0Pvzv%G=0R}&LDtF}%W?EuZrByT zp(=y&U(jHp&qr@!iGVfKNdo77b!v0?dYDf3qWx4o38d)VlAsBR2)F>#Jd$?Xd)a($ z0dFWo=9F?P1)gT`vcH_$0{sIZk^&q3=E>#_a=#~h^el1&c9>1P?d45tmy9)Z+nKrD zdI47{(l`9r<&!W&;P-Y%)F>@6o9{2vzCC!C%8pElIWyZRi5yPJ2N&V9=9k8;tbc-Ggn52Jc09@wU=`2#OZhsH( zQ>m>Va-k}Dgb!}s#iAFmrYjh&#^CnFoGAhPX%jG&yLi}&n>7MvW)X=UIY;td4& z+e|p*i7H@RU#>VhPy%g-j@O=W0OExo)}2&oq_z2`C4AUT8^nZ#uldKIkkk^Q|yDcCc?7FcP)y<gR}x6_+v_ zQlwB^$UtkF-&uu;`t?QtP{Lu!B{6{c5m6xHef#;JXz?PP$?|1!`|w^pH&rM=o#K4Cpfst|+w|kX-*q1<>9~FKO;q!i z7@nEs9g*fDDftdT9k$k4lEp-iD0m9fk&_cO6XjBcw%*YDxe-sVTu+45>mdRK^xX(U z%f?`bGg8uN5yq0CN^lV#{>Vk4jJ#u(1$h}rC;?%zdT3*)vO03&r#1aq11H`S>lPSd zzjE0jXN5dKX!>0OMbMbbz78=%g)KI%(0cXLT_|izaW5|K396ogN{emzi8|-jP-iu*>_w0QI$%5J}` zJK-6g)f?DSDGNEQct2<-5cBA(@NOGr5Yf6d1*!=^A z{6-DYzOJ})EQV0q| zEC?0)qTJrdB&}aWh0q!Epc!s@Qb&mk0?AOR=VPQDCOr{wbh#NYHMS)ByD0T{vqpl* z^kILB5|1n6A1`t%EJo5hshD0e;v`Q{x?|#k@MoNnEQWk#{%9X?W*j_mDo;4nSP^fs zPnm1U*C=A#k0oDUqA-npuA3#57j1u&%gyE^C6cQ8y%y5K?m!@$VJ;>CN_fxql)4I5Q z{&bX1l3ZMEKK>mJj+8(D{i0YY5UlpYJ}<* z;%_CzbtEQ4Uj~;yTqiA$*-l}b2%e5szg1^AE-Y;huJmJ`={p5os?UD>FIW9eE1}~u z#pL-|i`sN`+!gh;Zan2 zCMuHg_0^A&Ry=MU8U-bz11Vh6!}0kNJX^V+UC}aKy+#nXwPwKtwN}`d0xMif_4$v} zV^@Aw^0kT(I=`7g9-h&CL4wI{4#yWykyclQB{+{BB&3zw_`G^0`ap|*QnMyhlW|k> ztM8reMsoF%P+w{6ehS}A{jiUfpC86Vl5&)dvTF=I%l;uFfh-S zkiviJNd|^fHoyl`lU&;t;d8Eo8WPFwMS+24_~;-x(aa70<4?L}l^AHcn-y{041*nb?wV z>8|EGvs=PEcoT89AmLcL!cSw+|Iw#!?n8}jzQJj=Fa~6S{8B8tbw@6w56hBHv{iTW zskb;ZEpXj?Zh8{QjBfm_s@`zv&o(xdhCVJ~aq2<-S&LZ?_ffWtYBG0@wqJ{{w^l5L z%cB&Tv0DjW4D`NTSlvGFEi%DH@4|TE`QylfF%@@LDYIdqs6zVUTJLckvLd?n}j!d ze;?jZ_@zwA%}|@$MIO;+PEPw(+p! zJ9#CeCnM)IHNda_qZ+-|tD{rQ`>fB=Ovast=V{zf+L(vGdr*rUQ!+BFKAW<eU6k;3!9z#=4MFH85EnWl6wET^ zP38A%8t6yo8N*GXNj8bqnml1dG=m-7;N=vY>67FY;cARLjMjU$+7Q|$kB9x5<+hJW zP<4eAS6fHzyS;Yp76-TYBTQuBqD5ILM_;bk9X6yFTIrlgF{md`nqP$N#9DXyaaXsq zotBI3wH|#EYiKyaFgaQcN#v)U-@j-=<08K}G1(57iwsaI@C`OfzWz?QNxypa0rw!1 zS!J!CN$8C-%^W6OfFkZcO+bkMnODYtA><&P5XUWJ$tp zl<#l&SB7h7SJ-m>(XUCP;#G6Ew56zUr6i@fAejb=jWFo-o13c+ zVmZDR>rf#q9q^(a*_0{Cpf($(}_+1MMo!xjlTM{2t? zI$`qz)#va^+C3#pMo06h$5L3=h0cpEPB$Ew@_Q9JE%Y_J;`WVYeUc@7dsQAhtM?o) z=TTCyFp%sB@e#*9Kc>iW7W=4+8Y{E27x2n<`qOA}cW1(sd3xwL#e2EW5DjbRHB!e$ zSQ^K`RoAIG-Ee2~#R|Hk@w(ND1Z^tDEMdi9oCKPQADhZf0{!6G_3KC<71z?ItuGa( zYd^yTom1A&2j9UrhSVtDdWEB$*6jr6h&(7=rx$!t_mZP4Sru0g0K;rQQUlAB`C8UO z*CP52)dK^+jf?12E2gC4KjwIk?EM6bi|aPdVlcu}V@Um@uakx<1C~t%4(u$&*#h|F zu3Zxh2n~>B_tls|5R;n2=*ciY^D zkRo`};PZ;Fz8IMEQzl(XJ$mRAl7imHAMZ(g{?xHm%`ML>7#DwQiNSGjnorM-P+Y~! zGL7fiVrq%FRRdIrAK&ClTJL#bLH%u5;Bq5h>?#?g;?izn>WN{ea;vzWIuA03Ki|WV zaB_(5$(qYHtp_*M3e(_lC(n^b&z6|igeh~1y-x9m+`Lvu(GNJ0+tQ9-oGqQ#%U4PJ z;)uHRtUy7a>=Rv#0BGfO2s^c`=+*TS3A9!12S5F%<48Cf(xq5XXD5^-c^J;nJ{8h> z&uQwZ?#NmL++}P|%E~78>}KD?&tlqsXJ@#J}60z6LfI8q_fPk8w)iHHtSEB?)c z4jabT4E^@-rnqw#o$YA25(M-@HpwiO=46Rn}m&hKcFocU?g zYwZx-t7{WqD086iP5u$3pwemdG(6JcRrU68*R%GCmu(8RU zEc1}BxHgw*1n{#&72~Em6-Za}UpT?+Ju%l0ntONZ^iq^s-)ODa2z$F;_r2S8OTl>*7LTD!NCJf3Nu3lFfV8dW3FPL)5zS%8Ji)%xu@OZLMyzmV3D+y=4>- zM|O{ktX6qlDN%^=Gv1>8we|VRu3V6#gSzN)Zkxqc$iO>4)TLG2MVWO5^xn}S1i7z% zDVjbBDoT(`LM{f3FAXQ$pR zg1tv=sS1~{obqn?;thFJ$)bdiYPr8XiR{_`d`L7EHxv8i;gqd|?Dp!R`F%2w&`}#h ztnt8dXaLZ(mze&9R-3HfH(~wal3e_WGPp8T(nTmOW4yF$UVT*7-a-F(ti&aiFMCnI9TPt+NBr_dXo26!+xgRj>aa zZ9xCNUkDD_;>aVbg59YQL+|ReM#&ikHPu9QI}+KEf841g4e|TG){SQ}OX?NEs>n0A zPGHtfYztpjaq#L(_gD{CGEQMmDfIhAWqt@u7=L5=)iVk7X*74NUT_J_$&i5LXaCzU zdc2|VJlkR@S<@MmX&RgU_sjTP{@vdA=L+@bm7IW*=cSaY`tFkWwZfgIOMC{HP_Qh| zKc9Vj*{DfdviR#if+NZH&zE|SG4PAEmpfJ@P)|;!g6=;Q}*s}fFfJU);!$Y0M(@_$BtSoKRaTn;qXu!@ei)Ot%^zI2I z?&E*FmkfPR+3be=e2J+>?DG+j$kX9=T~s3s%f0oE6B7bPZQAYI$S5>ajTili-A~a? zdfxJ=ZYz`v<)?qQIL}(qaTaBtcTL3Jc4V3Q_m@#&`)7m!2QNYiPe$R1t$~h)jgEhP zaTT^FotfmKh=GZX#PdE2mzBXfzqL`&P0&&JXyd`M&mUisI+^53=l{!JaQSrYouS2y zl!~g&O%&%bEs}Z0puR-Ltj8a2%M0{KH)9ura}Wkga}Eao%McU2YWdlO_ee1Wk`Di4 zj`}}d^CJrLF=78kmWbda$AFf69XqhpA*9NMxRAMzNyrI8YPPt0HN1p3C?PM9f~*G7 zsjFAzw$_cm2jlMnfbqP7Xmj6^-E^ob^@GVWqv~>$zUTJdc(#>EfOqMY$PnA5!}gTq zjMo|SUThTy8QzdwLg8%FJXY?p?fUpiaN%r*LGp9#GTgacZCr|7$)5OM;Y*~S2d$|r zR)4-=NKJ}11@RGLgi*gVJPV6RS!Ec6jDBv?;#j0M*$|o*;h~+Yy929h4t?U+{3$6R zAk=rzg~k6cQl+D&j+)_Hd&2;NLg>-Kvj5MkF_5ESwjHAhU4M7Yr8Pe!en~m1B8@KA zwdHT>+$YwQBV)oqz3lbgGUTu6tLnCDs1AMq|HIl_hef%yeZyNpDFp!~q(e{;kZzEY z?v@5g>4pJDxz1(}dZ|>*uexC1rkMB6--)olFTGv|V z`KuLn2l&q!C(_Dkr-U!}FsNxH(6F$(QxO$K`=7dZz=bDE5-Z}O^YVC2j!I!G(ZW5` z^@CLp2HGdnUU~N$U35~iyy=J>A1^0!fBx6V+*a&=q_0gsZB`5RG{1w1xFTzRE#)CY z_Ox|)%_Qd2tiiz$-74cOl1E@LEs=+yH!8k%B;2XYV?t@%C*?k(A?i@YptG8yM{jFQ zVhXO13~G@qD|^`xE!t`p!6}e#-ttWxawR7a^PZI?#c2+ zl@I#`2&AD?-23KA0Wu9>*B2e$Jn3=_Vj*V3&! zI;;iiI&&))(fm3!5M&f^XOTIDz)T4~9@qivE?spOP%1p#qB!0P_6O<)*zD+6yMqT_ z!(d8JPPgqv@>ATV*XD@$O(8;vTW!oq0wZ^$FgBr}sDk`x(3O~5a5(A%^|0Qkp*5{BF zUg(v4>_U05teSZQrUJ+4#%pwQS)(OV?c6v;D*pFsx-=7aL8~?PvDnr$k(#pEWA2$Yo zFN^Lcvqt5M;?{yXLA#1{S#PsYwn`~pTBex`*T)>&2pb)RKIoU1CS-9KB^0B%M4F;sZydbON^WS=kxdW0+)4vU#C-tGb( zKkoQzhzUshmIlIc&uOE}i&ST1@mPrgl^VE0aj*5Xx5SlRq>>*CXD!S%kN=44>~5fD z_bcZ}$MhK=YCB2a50k}#BI%VGd2&^P`Avl-UvOK_`CkmA*qXg9yX1%5gW{Gnv}Rnl z*|c2f85mximYoi!n0Tsi3k*|XfOn_vATXBrbJh6;=uoG|2J{{cgXp}87}$cct+nn( z&AIY(<=tz;u@r+@wp>l|7=Aiza_vBW7`|7HBh$$cb46bURiYZXJ2xWp%+6!+&6A8C zUP{zsl6g<#v#GDgx|O;1O<4WOar1c?2@ z)E$JFt!B?>8x|Z2-_hmk@b+M=S3e?<*K;ot6)i{@%ry&o7gIW5zbcHIooQjjtPeIJ zcJuamx;DYl`*K5X(jEx=29V%dpN+W2ZK-Fp7?z{x4TNWK{g@&Izv|&Xx36y`1#OzG zDjF}5}?n|WTUQN6}IWOobbINKU)IOMN zW>DMpn22ZbdfS*$`%GSK5Yz}jGmq^ZLt9;0b|D`1!|KcJZUTx|PUnT*5UiIRK##(1 ziM((|k!kT(OC(gg*qQ0d;rW8+9j=&QbiT5DtuGssR)gUdG;{(AQA;B#-{&YvuH=6` z@-_EI!PjAmd+@$p!l#3(xo%c6%cO6{A^`4HRn{#JH#)5-4)4y$!`}W-H0Z(%0 z{@kTJFHU0u;Ap^|<)ZIBL!~$4v3wit4s4LY528xZePspX4}Bt+CW~iRShD7xh|a}) zqh(EG(R$XgW<<5{!jofLGO{gt84B)L1V@s7@wzVk@%cemMFXO3R?u_Bq)af424l1Z z6UJMos+og0&taY~%daVfG>Gf=KB0Ol9WhcJ+~Kl@ISiJFlU|1XFid>$g!Rl=g?p{F zRf?(v>RPGUadIg-G3$Wv-7r@rZo~EJOCtjB=-LmMPzw zjPwvtez3`R>9ws!N4Uu8u|gcVPM~x)#BgNBYiul|HK<`;@m$)Ocn##K`8lOMAe3L} zwHx;N`o%4pSBjk*9)wDjF#Su9PD+vKS*!fX8vQBw@vue7_iS>;EwgAZ?Rt66h~fLE z2V(?{$X0r!d#A3zlHRT)ODcZC+F1Z!ym@WLz4(=f$BGIqga!oq9SCTpLt<$QOis(E z=cx6aoEoqWpJ6+Dr+YpeG-3?Z(QAGji=4zT#{=_f72Welk4Rf9A>Vigl8IX^;W9BZ zY7LV>ss?Ebj^dZ`!QANv^c<@A*Ii<*#k17{BGcc4Yc8f)?9=n)G#i$-x0q&mi7~Jg zJ_$)JT~t77h!6LX7{DYRZg-NVUu-~E7Clx!+V?azc zCV|_NaYFKLQesAh>Oz`SRdJu4I@+^LnzUz)y_M=$L;Wt^c(Ug&E@7(Em!54fv$+`? z$Z=MxhCUG%K6veS?7$&}i#sr2l9aNEFB$e;1}T{Z?{{ z7#cxF5oDSPaTX=)K-d$}p?eQ6u8HPlPZ3#nX^Etb2bYG>Navm;-oQRN<6t$PLH*`Y z4b-8TgCs@6%TGQyOqnJCc@paEv`_AtR6`yM=DmwE@Vx^k-erM}uV2`zHp6S>BegAg z+9MFFgiM~%`bHu44_-UD^C(FiBl6S=6pwOuva*k z_#zUVX5UP_(wxIPu=CYSG4pMd)Ar-lwPKO52Oj2wW=5T822`c5(YMtu9U?;Bq)B~@ z|6=7Pn}}W4%`#mDEZ>pfM+kU1-Ler z_Og45@K-~DQuMGvBjFL&Pk4gCt%N_aCssB_v@ni&CVZ5Wlc!FcGhhm*^^9k1Pz;O| z&Z+rWTjfo-J6&V2K>LH9x=p)z_<%9h65Yt3ZFLfW?hXal056Sh)2FILweSL6`^Sg} z9l(m_HxA*s79dnV=Il-OI2OM|5(a#5*xnv@#hVpE zT+R2MsWI+Fc}2d-c0n#tPv^IYq<_4;z2VW*r~tgmXI^mr$<&pfL`?a9+XExvai6>D;$sV18qQA&{$>$^KEN!|okyWiagi^u0kg~Ez+?l0d}0^=K_`IWngJN#Hf zQQr?HC`kub6$jf1n7pu7ie_sZ`dl(Zy74EIv3=RdIGO7c5}S)tq`Q%bh`yR3Q9K2L zU6RNY>HefG9`Mu$LMz|9vlXj;k-hA=?x$qBpe#T`ZI zoue|PXH%#4x*7S=v;2hZ3m(Z^>a=?qoNkj4&z4z6bK*r_B3-g?A z)g~FmGPZR0$rP1)tLfp*m~9m_r&9yWdtxpZogTPU|sO zDHeS9Kv+uaMK2T9^^(_7cUE3zTwftt77#q(1}4=34I%HlbGfVhe9l-h0+JFuSX8>& z$^ognx8wMB?1kQv-}SWpvp9nGx9`%_?g|78R?L^GNT)^=ce>;=v3x7rUFqgk4XjvH z7|PK6xlc0X{0o~W{S&tzSr+x5XQj4oYEnaHzuWb?Rh91Xj@oW}K}Of+!E7~A_&D#l zy~c;@C>q5%xd{!@R$WtUQ^iK_d`yK-%`EKk@l2!+BJxev6br&{$!AjU+I&|4eCPgs zm)g(!_eUBHT%IX#g`~(pZwudwB1D~BxRTSQ>J%9Na+WMw2IY{^R; zo8@P?5*9E375xRu6P|NG>UL4Nio3=2>v&$NZSaJ}lA1IkNVC#W;wdpS|d*89=;%5Aft(h(o=-erG-s13bpzXyS?4GtFjR5ROZzQfbcN{f3VFf@^_4f z(+yap#LPIUkVR{3O;8L950?w$8}O(IuwK8DPQ!d~J=Wagp;Cl%138Df9eWD?gPc1G za#bk@0Kj>Rxv#a2d-Q{E-~}5|yB5FtyC~FKl3mUJ;2Q@3cw{k|S;#D?mVb{y_9heq zMEsg#!zXNJ*R0zIyA3X1O*eZJUN28OE|H?2Vl+qCMmb#=hc>mF>JuDt2^CP(6G@7X zU)>u;4Rud@u&2;$;pV&*kt04A9l-=(dVleel!7K4U5ZJcWpU!qAwqt`ZgV-ZH_)Gm zvtv6}m4m$#GRK6)!AqQI)su#ug)+wk#7_td__2>)e+QOUV2r8CwQ-N7Z=@twshwnc zf4O(YY-eJ=%&M^*3A7}UgPeo|{~0p9d?`3c>tmVj__fb#jnkB3hI>Jr9k;X$PZ9V) zExfdNxb^-wOpr7Z2Wul2>jtd)&F4*<$lu%P$Fhe}kIsPwH<-%HxHA*tV`XIpJk{ub zdupTc8iV%it0VYYko@!1lo$US%4j=W&{SkYbCS8R?&}}CJV&w~MQQoofWXmLCAD9$-uqPx_Gw{4!Y<3g zqxT%i%5MLUugHXuVs?$s_|9)ZaR!T}z8Ck}|Nd7N0YGCGB-%K^w5e+xL9BiNEdQIa z7z(p3QU1Ld{9gP!pYe&AQem z<}H64iYE;L6(An&c(Jwb5cEKMfcL=p?G%RvR$$QjKopY#T*>N}0XE9z^lCFjKx!Ir zf~A_f{rNrHd&voQlv~hEFl`3vQDC=bDoPq}1f#@r;C;2V5nr#8x zOtJ8Bg5o-92Y*UU-^4S$y$+ks>p#ulT_rnK3dju9dvyuspvD_9rsJ9dgz=wwVdC z7PJd4nw+oDcnS}fiu&Lx8t$Zt44C$dEFhCBtR~oa@TIe9V1uDn{$wi$_J4Y{w`g6( z$kJ`@_Io6Z?#cm@5COcf=&eU8aD$1k`A96Z6@$dEhh@5MTSe5VY2$bDpIwVcXJ0>B zlB0fY-^@c8-^t5U1rln0okg)PUuY8yFDOtd@wXIEu5xRjlG<4s%7fr4R|&Ush*0a( z*Us0`{rlE`LyGeAcM1Ep_dVC*WHuA_Juo$Q1~Q9iDL6Ous6Tq9Jff0s(;i=uqpm+` zv(yDtTb3eR<=pZ^80Ks0>MVD_3giIMN&#-q3>%$7zE53vDAnG_#Q$}-IoBhbAiasn zSQ>l4Gz#LvO|;sH@pD94qIl#!JNRA~t#B#Dv2|XRS6PK|1R)`l7{mKhm(zMye<7}Z?-DbiKoR*OB@Z1$I zOQ90oKFtnTXE}vEpD>!Dz~Nic(`B6eVupj`mzrxUb6YE6Nmrgal9%z4~*^dXtao~ioaU=jTzjKPJ-PG3-hc{WmoY&-4I)46lEdjR#WOqT!r zZ+L#ON^kP$i&iZ?h3TCXR*m??zi{?rsb?!9>cs2kA2$TUBJZdr1e8a%2%M%K{{-W8 zVMAuCvM>+#^kLVO3){r^Ft^=j3~pc~t>-Dqcj;p54 zVZQaj0oaWmpLA#Sk#Nm-POP>qa~oeQH7Ug5p9W0v4;kbJp8OF5r!g`AUD2GvbI`RE zp3hsSa?0u^Hyb!o&pvfP;=yks3WKdn%w&$EX+-)}7}E^wd1IQM(`A;d-z(8&epURS zn=rt>gz&nie(hRhLKyn8^-4RxR50(}nnsXQ11J*#K1EBjU!aYmq4-Jo1xM!sM=RIT zbVH2XY&hn|vm)}?fOSFgZ;LqVlupTv8hB!vVO!a6j=wywJDeb6@5v?^VI^XnY5y0V z{{5~8uYy~;*MMi1F_^B|-3zU!2eHDkKt$$$wHHy{%duE8Df(t|j8gH7rZjRqRnFQ# zG|L9NoFVFmd`<*xN?+sMc$4n=TpcR~B;g3+a_DgTK^Y&b4bFgpYZX66*1Wd+Q_V{L z`T5fs*Cp0cdjey&!mcAXUL#imW)%=;V`NE_jQa*rswwD2p!L+g_U_X!5(@=a$+%o& z3+h-6eB*nO5QCPuOG6)KW|EXD1ILCl#Z}#0_?Xbp3!y~0R7Q5b#Bbt#(GkV}6n8hi zaBDUc5MwWZ!LsbtU5@8Z!HZg}Jps(8>-`CG=5oOlXP_ril*g`Z)d7W-u9(=0kKQz+@_wZFLEdjK;(68#+_-f#*8B%#Gf4XDm10Tb(PT@P za?bAU-55^+)pTtrA9H+zX>}ol+JQrVJ~guK@Fxh}wK13vy0!n!Z$7snCjAf-&p zHUEKW+v1FV^jpQRC)FRQcCd!uH;gE0HG>=V*&`g=1{`@R);Fu+<+PG+vH4H#zr`%c zI+~UAUmP?@r(6oWNKh5h6eGc(8G&e z#;m5~AHWSUCsw*<#LT2#;|+_odmELis(2feg}L|m6QQCX>-+7`-v$i0u5V<0+&3Qb z*_s(AGp#MM1@y2I9UbcJP8f2ZFS@5lezyVAc`l`Xy@>nr?PuFR7!57JuN?@xU#oSb zSZQ~xTG?=XEhcjHtj3;MnE*4pg*Hhr^}FYN&AFz50ftF0i`U|E%!%$sqJ;CjNSdS_ zsiazzoa3=`)<-mwik)pJPx93<%%8NB+@8*m>qL*a_Rzn--5GtYw@-1szijqR+m*;J zdMms{u|$%*Kia3~m{w3?&UtKXbp@UWj>N@j32%Br_?~l?Q&{_Zp>S|}_}tq5bO1)E z<+54XUCu!MgA*v^M=S4nyc2wPWjoOF+xI8w*J=4*1j7B*x<;3$IFGw^;)@!(fFP)o zYSL|GT-Q0onFYt>>KB`}AluurH6L+6T(#0iOD`ukTEs#_#)}UvP{HS?y$x6TUfS-s zi!GyFpXm4Wt)CX)dbAFjM+3|l(r@|n2I^~6{el3)ynT;UD`ECsBbb&Z6C(9xG6q!> zn}8ALn$E<$t`OqUla7~j-1P(?^0U!w~x#1xsLo#>o_#A zbo9Uk53bF`DsiY&)6F z@mAKW#glaF6RA1jW@xLcvijUs_=6GbUCwe|m0?JdsWfhNdYvj4s!=IvnF6)0z5uYGlwYi!q;i7j3yMMoQmwR6)d8HBi?a9OXb)LKu5&eb7pV61xPpkr}V^kgAfBz}IdKkkTabVHDXlj(`)b=V`wrzUWmFGZwop)?RAvUyP$~B35>Nm!>|<&G7L=^C@65UF}v7y5e$iBz^U6!ZM$j$xpHXbio$3bNnXLw%W7X6eM z*fiIcWjA(wpVEGnm0Yb87JL8LUSEkR$nnd-9!d{;lH^|V@X&lM&p7<5vQ2wlOr-r3 zI1*^lt)WsM0)mAHCE`cK6tV8tk?YoaExmHXf4amijB%NvA56hKK?xFZJUBo7P6Hl( zAekNi?b#sot0T%UOu1iF;S5bc^+YX8zmhk%sib~ScQ0XtW@|w9^f`rQBMuswR7Nv8 zMawY}X;>|z^7`qBn8=`58vrWL;m{vLVnV$D#A0AZHGd-Fo?|xt0QdQ+UM~4Y?*dwR z`lX-^By9()({4=##!nMfW5I%HWhFi<{BZJFdlqA$ozF%x_r)oWh0=Ng4(>_ppgPjX zEpX6)Zo@I{;v9IEO2anpKxVq^`!X@{h3E*f-yD}=dgwXaY+4i~0}jmEw>GAuUpQFX z$$94EU>-Uu>wgGtq;OPHvDd{N2s0Eq;VW=lUol>KY!}UrVZMBLs=Ir|A*O2kW}TF=ih0NnWGXE=WWs zFVn^mhjzX;4%&t~UZ%~Hvh=MNtzgcNowyMGU9mZ3dWmEZnNjkoL3&Kg2@pghX9qb3 zU3@&QhnNqt`(-B*H-a~3Gs+01H|;8G6ERKQOIx;Z>i4|Fs+vwYc2849$WHs|R>=$s z`U3U6KFp}N>Cgwf{#yDoV6n~jBU<4xPJKi`MF7-|m$>k-#Ol?9(;3Fc)g|6T$uAI3 znXy1ZJS?&mGF6B6)eE6m@!IZ_KioOCzxNrWJHdn@)1UO_l~$9XWIuFQ7h4TYf@`^a z-s}ebPBfD+#!>Sw`&yHF(sHQXQuL`%g623gzYs|xX5y!dO%ivzS9ZEj2irU0r?t8t zqi4d+?blSws8gjm@U4dBpq{y!8u9BsftQ7nmOYVU1v7SLyvoomRsz~N#QiX}LMuka z&hb-xx6Goedt7sS^`Y4*cee#&dUHr36ye*-RJP(rrQ7yvT+R2D^R8MeW9(1h z4PG1T6}8m6Y)aGm^ZLUmx|5X@P#9rG$0NLf@~4xP+@4_XI4A8jmKCSrO3Ax>iE||- zJx;|3#k@H4&6e)digKuc9{$a4+M1!H>8`84F!YuQ;*2PGsdj;)0@` zwpCJ#z64i{aW3wAZCO54|3c12tI##E%s1v~qwPORLSML^NG4iUff>kKGF};NYHoB+ z{n%`ifxn?1d)(YHzOnHTi|5MsJpM_tfO1I%=|{!UEF*d)b+=pQ;vPSB?0-tgH{fOV z6M*cenQyNG?89qi>5$pFpCY}~@TcJYM|F<*ep+`*eGQ%_Nk{c^7rY*UEh|X7eBBO@ z&y4t6lAdauC*OiY*KPgPQ@ zR%R~~DW|PGpGjl7bLI+hQlQ(reaYP7o!@ierd_EyD`RzkwlK~u>W7!!okJYxx09wL zkg{))ThR6_c9qugPU#;T%cYlW7Mk?cFE-T^2TbD^lMWQ$05u}n?`lNmqlM|Zp6&Qp zm3sutFtMjX`Y$T@tC`^#bAlQ7AqW!k*7153)BVGi4tdI#8b7M9OJc{xA?Odi+^f8?0 z64-ev;Ex1&Ok%q8#zkAi(pATGlBNjV7(MR#9ISf3z;Y|>$wByy^kkR7l{12O1Y6P( z_Ged!U2Z&@RTEt?zv`OKAs59NSAzK91&JC0mFBN7{I(j37Ea|IRhQ_BgBIxgcUv`A z=g)GTyN_0*(JFs#eFo{b@B7EEJWmpE$}$DhrGIjTs8W1Bk!BBTA9Tgs=TfiqZeb(3 zEwp=jC+T@;K|sU?tXYI)H(F`}L$N{i$xPa(*}#`Ay=HsyD*FH#@g-*wYmaMrYRg+4 z=lkVp>tG$SDJbPK!(3})IYa6!ri|s6`1Gy-y9?ip%VvQr&Lal@o)4pYzW^LND_5-b zmbpPj#~LP*cOU#&FqCySA9b^7GN(z%oBC>UfP$D(*$MaciY|0X-e1Rp;QRyXh&RNt%#i8vnLNWq z(3r^n)3r+t5=FxB>9$71)~?E;4Ufp&wnqLQUqLis|6#w=!0f4{DK>n3#;J#4hW5QF zvu1`yklm!7vod3?me1|ehFluEL3o(`)tO#~y*@`p-hNW+gKd|9C=~qak+;{o`r5l;V)T!6jTMbDc_-HoiK!DnrC)!Toh#!D)zHxece zf+NdE7groRg>GFQJFFkf@>Dr7gkiV%v1@~sm9RE6(=je}1pw9g(hn)(?0d&o$l@?ERuXu6Cb_O4%A>YJedG|m`YZaH!N8Cq|jroJk`O039p;KLp>!o+!mnoZm#8_$hD zP$!S?p4o@AwGQs9p_bv2w-!;NI!`1jK5g@Wy%mgeTr;^N%QM*;a8s~-^GE(>7D}Qi zT3S#v`g?~kH=g)ASj>y@mC2|~Nc zdN@H5;xOU0#k25ri)R*$hbawku#XA*g{b}L{r)&;ef$7P>v5JGA6=R`Bt_>bxFO_i zHvGw^=N2FE2eNa}L&4KAkph&IPp@*(&lX28zx#MR=NT1Az3JoJiI)%6@(%5 zz01D32{$fQ;4JJ-lVEiqo-~~sHzO5JS=_dwi2bznKtIB-o+Zs@b6+uxn7cu9tQF5$ zwnlL%Ff1}^#LrTwukW{Z-9mv8!rTBM;o9R6%d`gLFvIfN^w8yVijF#Ax{@V*hvr{j z=bw`Kj4ou7XUJme0@()k;J5E~^vmZg`=c0U+Rs5e@uv~g$>#F=6Zz?8IFSGf?R;Yj zP{2MHO%JT|MuL{x4si4Ph)R^$o}+LsgS21W#T3`S?2hT-5=P%VZ|Oj=Z?!A&StlJL z3Xu9wP8z7M^vQTJ6D1=$z^|gaS|lSy{eMWp!2aFYj#fc9kZ9^X;Q*_Y>#%D}@XSdT z&&e7tjS}OhJ&ZhL#^KJKd-Y}MRALX1-Op?TmVSA9td{%kDi2O;)#;%gRvs3V%ebNP z^hzTX+PVCAGx;zGyHgu>T{degS^WdKXURjw!&J@B&`g+<$GGgIz4*q9r8$=8_~qo7VT-)$!Do^2Ga-C*m9k`MyfKi@qAjRvP#o&isv>2;4iyhXy5R=v^v8O z5>)oms~@DURaT1$Ob2mAKX$NTnBoo6W?eH}HB-A&ec=bhwkWalqE~}y4Mw?A^ko+X zDNjV>Vu`M$bWt+VU0Q>G4pImo^69PCBKV!cO#y!NBO!gB3VMQ;34HqIT71alVkrJ> z`m2TX4QJzN#^k_HSMDc2z7pPMZwuQo^t*}Hhj0q3lpZk&+m#%>R)unUBaW1~@o8&8 zXRA)jR>*Oqc(W-wrK8g-mn?$!SKhDFJkCAVD-sXRJ8w*AG<+I8D#8b0+iAr*Q<*$N+u#| z7qSS}8~mUMrEs0QNYZ)*P@$EP zMZsct1CEc|iCO_e%x}i>mExBvt;fU>p;A#OXWAo8b2h&w4T{2EgVRWh{^jt{@%m7eDBNz+yQ%-9sZ>X&CLi!_p%?pk;CcP6l|A1=cn!`Z`PA(kF37KdsO z=FI}Wyp7oU6>X|_2KzH8#7wiB)tc<8)^N|7bkT=6qiZ(gJW`_-0=jYIUq0HABMC26 z57c`oE6*gH`hBh$H%Bit^gPN!e)SC$ckdI2ndd4%fTOgX#IBi)BRc9___KM$L_8r* z$J?R~{G~H3f@TfM-<@!Vmq`2Bs9HY9&(w5V=KXB>?X*mljRK7r87E? zx5jkj+B6k#;@x*WqJRtlNzr4NqW;-yde`DrdiLt=DB^pW`e>s(H_x-eOQb`~8!v8) z7u6WInran=cNNI|&S#v5Y$k~;x;aC2@ir#`Ut2f`(Rqt%C=Y$OK_X;T$+L-nZcda~ zl_7m{FhehS=m<+Cm;hu>0;M=v21~e?WVR6*sKx2sR>N?Dum3SWkpyzWmXIP#PZv3hJK?@?1@Z)kyK5HV!6=;%@Q z4e$WKj8)!T8gl;gPHx0BNCG|dbKA(xYNY$iRqu%R(PSY?C1UNMU}f#E#3pObT`Wek z`~=z`{LA}bXGc%*G*8T}W&Q(08cH{XJrxsj4)fG3WxtocB%QPM?Sa~7gG#33h zr*UAb_v+bGvIJkCG>HrRz5pF3^bmb%NAyDJlo?9WJ2baL>R`k1CbfCA{jNt!?(eXf zWG-xH`HZkY(4lfJz9;rvg#bxsyn24oKP+dGq4&k8!ZSVxMmUY%^+ksvm{WL#@4^dF#Au9HG%5KSK&}HCF$eVEWk!t%OTSm(7RMI^@8l3zHrB(@7yI zf{i*sMelSmPPogKJ1A^*WxlARLsBw)e#=n~N$==01{V*eHPv!FWGZ&{IFey}ZIc}2 z;$}H+|z2xQhx!}?(F zlbV|8JxGek$*RuppqgYZTC=DXE#(}A%_n^WqW^^rrGwhZ0oeo@lQ`QQ#mO0i=lZw< zj(py$95c+Y%j|mR`^)aa4MIqgydNbdfH-i~unf6)zA^~-+%wXSJed6|+#=X*a2Qha zzIw{x;du(Y3k-IQ;q4ckEdGlCwcAtOoS?>NNsbNOlRe@N#(qFOpJVH##7xtrSYsIz9sqrnreT z!248th;K%re93i*&zrba6FPJJw^fO)>%Ul)gg@Vj4*}SiVeHfv>k(`zF3&zjacQOV z?c} z?4H|no94JNIB#+iA7%OS-vr5G9p9z(SX>&1*}`&vSMVr}tZ}YubA!&|~aH z*9Nw0?WX(F!JeymZu>#1fWJvCc%Y|Xje|v(nPudk4eSP2K&SN~yCL*rhPMQJfc4*m zCW4bvi()6B_!eylxPr?dmJVxUXT$8-?44}~y62AuvI&ed6409M`sx8>5x*52VpvVe_X?dhih@I+cn@Q#>{^lhHEjIQ4|=gCS2jh4=vx zQiNM{Q5)5o)}5&eucDK6iQN|7loJ+_g@yQ9$Y=%C$))Wi^_<6|3~3hm9nZ7tD+_qc zoos@$>O2!->r(!N+V8C8qX(b457bY%8n>FuF143?efMlof{OSfgXZFcxSE}0S-0Ur zVmQLw>K(OxY`Q$i0_gdP6VJw%Lbb$jE~DC3AKwtPb9Q-De_*|^f7PsX;io?vNuM={ z3=-t*bY?0bpvi@AUuh`|Z=oy{7od$IWTSvj0*Y2c6Jo)D>V3@bFi41}T| z5LsdsP>~Qoi2X^_r3oW+d-$1~p_np?0y8Y$bb@(v1|K$WvS>I^lHmJ>#8F(r6b6NmpY6)aXO2E*Zn>A51A0zg{iN|Kw38fc zjRnp$dz0H&{GOEvy-^(WVJ|LkqOMBUrjZ^Lrl41)jURf$IDU6nU^sKLu9WSOUM5M; z#@Vt{yw0Q6qUg<<2vNYQa1qtMQph@mF-g>WM}Ae~L7dU7d&h?t1XWD6EaQ6#Tt}Bs zc;O8kyX5y>VzLNbpfxsKlWsGf7>9vcei~*}K>yV+<9#X)z_hhm{-YnE%dNxv@Oeirsj5KqSDk@rTUz+xMIekvn(AcEKthe!}Xcy;b0<+V5(%QytA4%#)uE z`;4A@dETQd?w6GJ77{uR(f$ZwzqBjmn~>t0XjYjlySFDUD5~I)zVB^rjsZ$3WwRm) zxZk@S2sKEgP~!Reyylk2wbUy(In5>Fp>Xs4obglSMGWoI3P({-p~gk=sdg zg-I>`VRJcr`9y5C9%Z|}3^Z8sDt*w!iM%4Kc>B@UTfN|9+@Rr;m7)*bOzik6;X}}! zMLOcN@WS9)>y0}CIH754lC^)>LvX+U3h!{@UcMqT{11Na&q&U zx!@gvrZ#~1=v&Q16})UoZh3XwajkDHG)oz9LRP;5I`ObIcvM1akPo!{{LusOd0pBP zaobCbM(6@!Zd_GsqRok2lv`(f3gLGppbP0avW3cw+Lj7WV6N)I$YkBp&kL2Sz(MD! zgPGoWJP!u^;s zv!kTvam(~v|1j#sCdc*Dfka^I2~+&KrNn9#Ahjqoyu1EdR_W)|{y-o)1fO%;3DQO8 z2K(~A*VNuvNZ$@^pr5V~#4vZ${x^?LfdvRYK`9Z^USVGGb=kl4y(ZI)@o_$xuz0z` z=e`~e3p6z({=n!-R@U|(>9M1NrdY~bYJx?a)`aPf!n&Lmin=!L?`=M`)(xqZ7L1T3 zy~JU?K=PStGc%8RFidVj-J6q=E@XM>j@EjBY?CXZ@dBnRD@s&iib_A8eixtm*qzHU z$L3)Cn!F|0$)sy-^*_b>4VU=sc^nc9b5G1&I}#^=@O^G|nMu%lcrEOq*V05hDaZ5H zS^^Fdd)klqtO)rdiMBkJ0n!rAmmRYlj-w0f4}6%Oa7U6 zA)gki0lSe+ieu?L6V3INuQg2eOt04Zv5r6=cnH9~0#R*;c&pYQBahaMLAa0-&#Z0f zCu(gUQ8mtvB#_8r$d3otEg#jhiuy%xwj2{{lxKzkzSj$f9Oc0&A5{%Xfq-zEwuh7@ zn+wBIGt<)o`1LpIo_$PR+!Jf&o{36&AWp7wBz>rH`Ns_HeBF?!H6deQ3)HP2e071w z@f2PdjGmD{2xojaQE;ab>YjeWutssGc_lO{sYY;?lJ01d9^V7d9*dUF^7+i}^?0oh z7td@T3Jw)ETOb=!$)$fa-Z$N}_?x!IAIcb@1+~Kmmj~F3?p=pQ%H{dT5HQ%exK#cc zbmgfrhYj3x6Vhz&^H4{Yq>E_sE%WLM=+JUtQQbkzA+7eA z$~uZ?bv%qQ^>|}>+kuO4z&Gki#>OCCpx!pt*E5*>Q--;R=4~JC4cA+(5b}9;Nm-MV z97Q_x%ogYc)et5lAmEIPxa`wCbB^z^7z_)!X)@0CSb78zpG*tJ73t(} z*Ya((!|p_$%S4P`TQ>7(%m^5qe|b)sb7u28KJT^qg6!X9?=~Bg?KD94URI&#%K@&~ zdCxa2?|bCEae@aY>olh|HnwI1qaB$U_u2pvZ6*D3?eTuFjn6DCcq8l8iOaUY8}-@& z)uxaqOT6hDx?dpElXsIL;*`{DlIt@g+qpUi$)L^iXi;(D#D~+td%vkVEJyl!Kcu6F zU*inA3F;Btwgy>}4G@w_4t&JQKkn1~(E9=?J4ZqBF3S@*DVSDs-hCy5tPZi1b}P{U zo|n&$21a!w8#H#45G)v6UDi5DEU9~aD}a6aB&DJX@IgHQuIetdKbgh2Yl?5F6{i7e!1kdEB`eo8XaUUa7GAm4OqbxUa$HxQ|Ek72nd7{=5SK2}) zHh(Nk$}H_7w93=wOh;a{oSn(+f-;HuP)(s)x%|1-&tCpXB{QFojTpaLI89h7D>?A% zeZ|o-sO?w0zm%Yg(8y|?H_14>k!n`+hv@+3n60iLgs}$9)HzPTW45 z+i+guSFNku!G}+~N>w5jhp_A@iUL$EDI~lmf4Z*Xi8zophgEL2Knz5gIj*?hI!|KS zx7U5=U$JqGh3@tPVqv!7&(}=F@421x-HghlegUF4qe1E98>k8p zFY2Y0nN&VZ5h^wUF(y9Y3tue0wqRr;wFqi_mB6cwFS{Yw;zN_e`?jW4Bh!iv8}>1J zqvr)aW0u{^Qs0B9_qOT)Pc(I-d$gwx4e6$5^jnE3LWop&w|mgb2Jb4vuK8q-H#3*& z8&V!^0YXPFp)$XziPJ#F~%+hfWuV}Uf|5v+^zY#4tys*3} zHU%!p1|Q+~_8Yh1#2nG!3kFr&e-fY(aRZg^5Twug`T&-(w56t1ZQNeIaz z&^PyU5AqlEVg-2Zz6@|AQ*O7|w~xTXKdBD$(C+bjTmKhUlSCQfo@U{<_l_*Imf~Z+ zNTE$$)q&vd7E_1giA@a+i_O!C6Gi2b^vxfhLu@79=JQuqzrcO2|G|Hi4}gxgl%y1- zqd9j(h0I@luG?ANpIlvx6X%~=N5BOT<<-O_!+6uFh+$eTKvO~{8;>2KN-c_x!ZKa)~C z>l|Y$_(2x1E6T+l*n(8EKAe<;Hf#Pa-2QrE9;;A7pqWhN*vGQ&Q$Uyn9^+2Q;Gy%46+Zu^5gyq9Q(;7D4+(nDVlj@GqRID z1|rTZ{yjwLRew2v>W_TEN|)aTXp1A&k$U>dj+R$ZZH}-@iti|KfgQgN(7%(#PLbdR zo_zdH-}k*1_cZj-@c(_fVwA;7^Rn)AT6FHAsf7nO0Tk?GAnI_BY4$1j*985OQI?mc zav)rq5@Hc^H9GL6-kal`@yS-?O%e_ud?sx8Ssl8v07mxvH#NO8d_hk}FgH$} zJpIjdHwd#(b+1bY=8g9T&|p2wp+@Mx7UQ3JT+w=7)`>eIk8VQN|1Ie2cL8Ys%A69x zGXKSG5e0>s0m8BT3XS-k4BG4&6lM=6HLjGrIAt_^>Os9)p8({JNWl?@?Qhy z{+G11bEBd6neJxW&OaTMjj;7u5%^~9wU}p@g`NlOWn-6&fKg5~zU|&;S@tZGQVzY> zCS`|wN#Fj{Z^~1`_Fi5t= zLT)gZ_n~J$LTBbAz{Hp z8`X0&4Y1-j)~%>$9eKVm=1a-#5y82sMkde2D;@dQJ*DX{+ltd%W<59O%!ytL#}~@t z{Q2mN|A)Y{vNnhy6hsm=;2n2;9_@2GDirc?Mqxl>WJaEEUtYEe@#IPW@E4XKp(YJY zji0N=h@Ay1{-+a3p@vnt3h{w7wU;z{$M!{cIDVEDIH)XuR^VcS9*Okdh)K`yclsP5 zuKA4V0T8^FHUA8MFN!&>EH30crtHZ-N9Mm+4a*sxAx>`wg8lE39~C~I_QDlSyyqOg zl`cJKtDXN0?L?Su9`@ZTm7=pCIYvaqMl;S%P}|U)Q~sHB|>U!`HY%5lqdeUxK`>s!SD#y;|i?4w0%R1e^}I!X>>O+NMeYOuvV zrz}Mq4!V~0DwxqrJ^36YGj~&&8B#$=B1&sH`fU5=4(;RaG!~mX9^7>&+7mYbqR&#@ zd(CX>e20GFoptyep!@0+T$cuua~rY-mA%{~$oU`dJ%z-PLR5{Sy^h1lS7TPo1z*pl z>V}0*2NTZcTpd$ET4|pE^>?Jn4*2_<^5PEI7U2vkWcfqCZF(4d-1_I^oC|*{AMQ_Q-moU)5jC2gTEo3D_--g3R z&3Bci7kFMlMnt@5;k>KTTH%(;)avfdoYIjWKhitBXzmg7B#SvX6RFiMyw4&LWT{02 zjq%Zf7lN!)UUi&O6D>k&S=38zMn|8k9yBAW2`RmL zSH+Xh*IgK`-jL&u+5-|)mFPP(2ofaDp=dJwmJg?P2cK@ANV(p9E8B9pw#FS2R^RWm ztmHPZpZJJd@ZiZt(B{?r?WIE&0$QTTHeIXrox9vN0`4sZq{t-!gBB8d*IapP7!$Ou zI;WS0LF#ER(Kraah1>)U%Y|+D?eUlUWu1$Gc+Oi(hqV&|Llh>2R+|#U3|9v&L0<W-z&Of}|L_&JG;>SK!$*{2wQCc&{F6w?jsmsQ)BCwp`t zo--1;z}ie;*d>+!LP;*auj57dV#Q z*AGTJ>4N6YZsJ)})0#VL?kYg)#ujgqrL5OhS0;KTQ?c@6PWIxYQzF zEh0#LYH5>&l?i-6lb(~hP$}Flg`t9R9egVDuH?5Q`|=F%1TUDR zfy_{!BAEnmb+}Y(sEyw)Jn8~1Db&{lKYy}Ze}k23<@zNQJ>EO$v4pr1%)tIMQjbcj z%le8#sr74i+(%NI$aM>gKivj$Wk=h`3V&CTs~5v9%K7LWo=e{NwZW`ciuBQ9eR3&U%E%=f~sv^Kb|R1 zcgPK3z+5452lNl|5qL$ObZU6ZS~|WbaoraFu#I@GKMP1Ct-LNE9J|=!XtHrQlcw=m ze|X*CBi`g>63x;;!(Eg%j%8jeO<;|f(9>TNc{v)9$EmVG2Pd9 zH_bJPUf$CEk=J_Pv8k$8V3*=bE;8vXx)r1m)XR6c6Jx8oUSTWEA;sFqcPt^wuU&bVy?6m94eMI#iU*JBtELLrZDm zEPj5kjAFt2*cTPKt_|gEWpB(o)yL;eUJXB5CFniFHV`NLC{H{@9}q0pV}QxfUzKbv zhcU6uLGY$osi|3n8s!X@g25h&GiqK)xC|2fFipZ$rk(R?tlG&l*z8PfJ<=LF7jD~W zo`)sXtm1ksucw=0PS`%XwLwOzye95_FgkhccUFB8fT)U0i=HJF%=K3dIc4~e%jveh z9Dr0tEeg@aEJXFB%jX&}=iKva6jxr`Hdfu;d^iTM0LQ2!if&gjwNY{4kJYJnY!31` zN7lDB3Hne0mc#`axrU!BS>jgBZCfrKy%lNpJQaq`>pw41MFLDS0-ccS)F7qhS#Yxa)~oj`bvmL zE!*9*4Z0K!c51QWc&;kPb{fN7Slfzco54~xq`C;WHMgf`QL9}AUM$KO4{E1bS+>ml z+(Bi%=$|DuE@!!{mFn0}gi_c{w-KB*lNW5>M9W#uHvgjSZtm->N3r zMZaG0CfQ={YaRU?J6KxOQ(p`)!|zj(EU%3L`9Yea=PlQm+#0&I!T>@24k%SR)T=bQ z%v`B>Zg4Dlms6x9iZU6_D;D9^ZvdY2B;$MJx6cwKRcd_TD!ojf~yfmg4Ecdv(u^|y8fBkFySo#FLgH;BAjx=~7e z-9H$Bihc*`nTa!BlO?~h*>af?zzeGtdt$4jhI-l&^^-T1ih(}VP3>nQ94Xc5x-ZV< zyN;b1VxF9*`K+s~=p~$9q22To^gn_^dF)JPWH_bh&w|$)Y5`}!H>OA$9ojg%Sdfd+iTr;xJO3Tu2{%;Yw6H5#kmzadv;it z+B#?T9n>8%atjO9?teTD-UlVJ@K9ge2c%ysZ1d%a1tYB5z{)Syoq#yn_#l#dEM8?9O6# z`OpLgRCiALt3u7?2+NN&l-1+*R+Vue5O=crUO~9OL@e!S&!tZ*b+fk*!u&o*xmgBz zoYlHSLdM{@|NUN)f#J;?ET4lnRe4-5JI#1M^O|*@=|Vcr@~B{mV`F|~C}SE6xDmgI zX`OU4gEX+V0<{X2;N%RVg@^E#<4ZGF_qzF195%BJ^I@Rxp4vf@VB0>3BW{yVC&8A@ zsg}KM%FJX6{#nN(RkI_|{lecEd~Op?rl}7nC|jl!B8Y!H^26Ey-591dcOa@jg$VSa zn4_wX@}m-+xk^Rrmyt!<@g%lsZg7dO^3ToBA;+U>jx|A2bE4)G`tGwtV~JGH()63W z+HvQJWqJ&vNkXJnzUQVgS=cI3<~Rj1*K3`dysERps`kps;oPko7&4ARzuE$%? ze{;G+S$ydf0R_tCRw?4n>csNQfnSIWG<+?Ha-LW6h=MH2BDUT=}&8Q5_72pf=_ zk$7tm`gxtWAm4qhUS}!DSWl`Nq?N%|o#BS%?g_ZPS$i{Aq6*6AQ<@(}U|IH37ar^O+^cxRhvQm*6G9n` zrHkize4of~DbvlgTMC$+6gtI5R2u>n(JoT$j+h=~%} z^kt}ohot1vN6ezw8g24$HC)h%wMMua2aCEHDB}pTo_jm^}Ho+ z7JRr?+fr>n5!@LFitDG-<(5_py3j_g#XTxjRnJJkfA7Hl+i${SO0v(i4M5i!b(Vnf z)8jh-RepFLaG%YGMj{_*ODFE?5^DiRh8SD}AASA$Maajca;gN3!_geoe*)Wt3{Szt zPJf^RF=Jh`#Yk?3C!0iJr!Yj;6$EHhBHpv84-g0gVo8Gn(j#wp-Rb>9trT2nP0xWJ z)l$X^)4GSZAYT$Sd&W9)Ph4%Y+AB!Yx6SScx9_oOxh3~|?tLs$UhA@j3=MBKErJrd zok9CAzw{*X8Nr&&h8GS0M=gxA1B;X9eTf?MEE;E+q>VTml=$J#Zg!&WOf%5zrhW~^ zN~l@4C-0oEH)-oYXeIV9oY}G65aPF*G7%DCIgU8wx^5E*>CHQeOnsLVfd#^#Tu%Jo zvjO_e;A?mBKFGC^(h*ntkQmx0OO&P8(LK5YJdZMM_!W7Ee z!wD=cFV-scPgaBk0hcj9OakoG2Du^o8i*^ODwg)Tqe119)qM(lgQ!kW=xr=9>px`0QHM3-%83cW7@9mrGnTCqK4&y67dOC9W$L zkS~PI*dS}jJ)vfnwL8a@cbhrP=pgG|7Cu4Y5t840U%&XzEaqir+{M}!qGSW~)D>qw z4DqbOyXRiUFKFjViLZ7+a>0p6zy`ymuWynxoQdNoZda|^_`JXRoV0nbKA& zfUS9d=LetJR-0a3KY*{krXIl#J=SCLBSxxt z?g;?d6?*BWy!6B2b~6cJc-^;qygF_Zcqs*abPg_hNkoY%WefMRsB z2rc=}&y1B`6l;d1!sj*UNs@Q`XX+y7bZDqacbJ{*ubBD8QAJAv%dmGi_nI7%IB%uH_C9r&~2b_OejG>+LJb-0rG%=W){%Zs77cf{KMg6cE2cOvVE|2p4Cj#hw zz=R^N^YY~&J>$x!_DBP@W*W?7LC;Qlr*Av=*^E{8Ext!7?R31ZHY^9D=rRKyb`$9a zRu4ru-xLlxPio5RAE-a1PD(n*7Cua^aaSNwBY*LADVdk4K!bDw#z8nnQB-XEY87>- z?D#2iv|^18>;k5Bm`;usHj9=IwFirD2N&Q>6)3An-}m1R^g5hXASvnZLoVrS9<<5|2hKppegai*ySP0ovW|rNLG`rqX z;m+dvJCiH{V5iCeW_#Fxdv zU;VF-X1*T*=tq$+3}7mJEbnQk`9V>H+aOM7r}O|>9IK<_=Wv#LOw%kQw;CA;?*EE%_=luw^nuBXEpsSlc z+h6p=;k!?w9&1NEH;^5#Rumz6`@GX4cw}UyA7WeOu zGvU14HGEK-&3mhnjg8$8@f#`6HXlae{xiQwD7ER=>)Ri~FTzFN`^4SHVJR+fcp*k} z_(X$*4Das|m2Y%!e5(PMe;~tIC`qn^-y{9E-v>$(Sriy|^?`GLWDXz47!rvY$WfL&w=;jIh5w3>49x#``=pgl4)D%i|^U zIwbBsD#xA9n|~Wl3st)`Ue-ueSL>Yvv%EL5jV-I_4}1GQ(TRorru{HsLSGb$r(@{) zZ(lhzP;k!$-(um-WPZTIH!^>D)f(bH0E7cDOOo4K#tK?U^*t~pK zemBqNrPv8#@AkJ%S>r|ZLM-1MGbjf}V>{9`+kJn?=IY~tLor!m0X^u@+1jW3bHfac zIAKdU`SH&7WY5eLWVQxaa-|7^;wvhTYow7qkS(v4CF*XfWd+1Pm5_gY+X$atKPNW))|*#FXh)Q-e`DE^qn<>Y1;{3(D7-~?Q>u5 zq>y|*OldxM6zbKQGnMOZG;N6*(>fI%!hw&h)57n)EO^Kh&ASB&?I?kda*7Ds0_K}t z?%X(zj_dXBb`O&!?&80h4YQ;DTSBn}ZHLIm^#M0R9SiSZM&ABGe3(M?@_1kBN@x9F zzsd2-9Ue0w(q7DnYHgVFszpoI@3|bq*-~>SK<1idz+XntJbmol{fyfqxN#Dh*CES#jjJ= z&LdUp1pw3lar5b^|%R=0R2j8xN)^1#nB1;jU9&y3NQu6?7 zlHJWkJfQA^7m?Ka9PYs|C;dLaVT(bXh&A$a&?44^c?kWo{^Xj1Pb+NkWpbh_zC&fp z1^7r8b+$w?Eg%gHa(uFTiLy*9{fZ=a#N)r=LHveY)xgJ*g;+S3wXgzFrbIxfZzkXsx2rljMkm+ShWUh|Hp(d0^=dE%} zLV1ch#pMEO{VVp<7f(B z5WTqTb?`>mXL(qqCPPiFH%BH?8K0GCD*DeF~y z_o z&g(kk&5j}*bEnkM(0g0RaTu0X4To|+)0z@(Utp-gW@j;mcYfj=mCw7v@EMB>v!3ro ze0SnY;M!8hR{gR8Cev&eCz1)Q89brAiLRqm6}il209qqOZRY-_Ax(=a>AasS2_hna zv-Au{;U}$4-(GSFc8=~f;iz--3N!r8ARXdx(Z)Y2Dp*qo9T}(1=-a~CoUN@@hyg|x z3Kh?b_9Vmeub93r@yZu=`LS4`F&d^`m3=&>gy}*gwYTTi%>J4#N(iDLNaE5r{m!2toDvhPcR@`eO>T+~XBxumX_U#^K%K;k4HVSO^ezE2XUX2EA?RRFrF4PkuY2~-ea3*;`S^vfC8%Ti?bNoy+D ztFauu4!pyK1I!F*CxtJQTu1}#e%PDIhFwJ;dyId;X_%KfskpsgBX;xlV^`Z$Uyb|6 zPj^92Lc%BxA@5q2qn>AtSMykbzZt{*`{Xy5@V@8&rk5l7VUGwvWp^foS0lAtMmUx) zVto^Qhh^W{aLUwPT?Eso;DVX1y_i5L!x@3HJ^by zRt#z#n=c&uhhRR&Qa@h*@bAx37U>FnWMlh>+5;(X7^@6GJ0ZoLwJe2V@aqtwM;qEY zv4UA{_t-nVYbm%?nM96i$0eqJBy4!9P_*N7Q#~6OnM~%9R8zBfSmm(a1E(*W<&%eZEH`P1(0Bse>3ZeG`^#G%Q?DGukRPsYE>|;(2eAo~8 zLjn4j|E=Y;RhN@UitQQYFiRyyUyWr0>v&o>atk~pVWjy-vzbFzv(u$rtm zS;v_w*z`TXS*q!3tUmCmg${Ri_R_ZjSy=R(ym&9NZ*FRva7?OP^iz8O{+T^jLI1UE zi`%^xJh-vzt_I~u{c==U_(e(G~^rX z4PU;5(|y#S8Hh*2eOw-D!uRbt-vH|`=eUF?67g1iaful$eE z2M0PDD|UQ$rHn1m-89pyjtN+}Vo{F_xl+ctJioaDmfa^fDL8y^v)A1$2vJL#MARUqBLNabbl5ZR?jQ@(kM`0g{7MzpK0##jXFovzfvMtP32 zoPM>KZG2$vg6z-%CTg{@$p*z3xHGIHzP9&-wpqgCVUw61LJk_zr)4uaBr$zL0<@|O zbPWOnJ4P|OXi*pxMhLt+wXXeW;3A1w2QhC}D}`Iup)aX_ysqNqr^}!q{C2a#BZ~Pt zEYC5GcX#S#Luu2c$2vfDYK=B_y?p4bq9T&&d?wiERwYVmNu1?H^Lw{9X>h2RlRx_4 z$sWCr9L0f!$i&S4oXZ#BmFb`@*0qr40c06=5b&5E?>1v@+Y9`0LvKN#Ni4gjm!0UO zaJ^szIk-(Aj6IE>G_oEV1#R;;bdAovtg$4b~PrGVFoZ_sJO zBmRv^$FzD7H~j}!1^S0o>cGRf{r5d+_5Sxg`rjv1Wh^g?KLgG}M7aidoon^DIbKea zqo8>a1&-wjm{iStugH>4M;P@URzd@)d&RSmC^~jvb4mia+4(`GHZ9uZ*p=m&p*ox2 z`$Vs*8;&#vU41hw|LVd=rMOr%G&su;sX4Rl|1^QBx(Auez`1tEX)?fDd4#p-Gwofl ze@85nfbya)*;jl{`s?{6WBrr8EcvaD9Dan=Of3l?fw=PGeBYYo(x*!vCHGUMGK>zX zgNU7aX#&Gcgr^wZS%aCM{H0*`H8;*6ODxaovIS ziesMjpuoV4b!mHeKl$(#5>+xUi3Zue(q7QOwU`tgT8PW=how9C0Zj3VlIRH1y$=eiN&J1gp+ ztC6uqCzB3U9LIo5MTg*C=3cZN*FX_*LBhBe78Mb zLiz3G@f$R$e~%{hyVqX%KDJ6foiWr08STVJ9o+3z3gzmTk13$);Thr7Of83SOHd5V zdoHZNDi|={J)C{bonF%Ak^Oa`CH8Ph6;a7dZQpMYLX}jEt1ZG(^7-I`c5q2!gm!YL zT`dX>!dvpTQRfcVI@$X?CxO&o{%9edJ=RGlzWUs1X8Gwg1=5q_2TXLJsEZB~14ljE z!UU#%;YOm5DczK2Z5ep#dIpm#T}E96<3|5%kfL`-e}XU}g9E~y#>BEu9Xv8nWz>#n!;oBW|G~)a zq30({*#&Cd4y2k7xZh-G3nUtzd@LB$Gc582+;L{U(z5QiuObO;ES~f(cpJY$5@}ta z)0>}#N_*4OVp(1X4pq)o54)=p;$&xuqphd_HiK)-8lVxwj`=}E<-J2y~j zD5lEw*KsgwrQmWcf zJviPYUOd4uj-LmJ|Fue83WgL2`F8R~ZFS%&?HMez*$0J56nOKhKpmx-8QU8&n)$|4 z5qd6yf!R+w2gXDma**x-k! zQWLj8w*)pSsgWE}!DC-v7uWYwH(AV6vszpDw?hZV3(>bQioiSOoSO?hhKN-J7uW^K z`cP6`@5K%f6tImG=6Z(;R~?nSqrq-H4nlvZn4=kze0ABplz?7Gq7^~Y(b$k0LiQbly|TJuNuQdXy8o|#Arx1>bxg$T46TkZDM zjmG>cwRnKyOx(4ndiiZ$`)ph5{{D|pZJ7fjvW3;Mly90&vTBvsKR7bB15PrpAKFPq z!JqwwJ0hkM)bB^hJR*u1ohq?hf4l~}&|#3@Kz7U2x^LRCtx;w99YW;1BExPTNf9>g z?oQ6`>AhwA4yy&bMMqn4hgYlSFiW9~iX(Wt=*BE~oDiL}#|kqveG7gEKxX7)?<`f98QPZTee z&2#;I5>0?k(BtxYa&DHenSX)6~$ymoI{LS8a=OF4gTaL(>(+8vi6tUJ+US ze{K4J)mf9p?W=Kj@Je<6#)c7RYzYKkoTwN3=GUs@PvvH2V1}Y#o>GYIz|1<`^53N% z`eN#kg;vV!kLatDsZAuUaq`VW7aAR|(DeMLk3)JqlWs+QR8BAi13s&1>Gm$#>e|Xl zPZZT@b0XzP@AmiKB;V|Q!`)oy&~rOYWBd5{7N_Y51LVd&92quo_PG6Tqs0Lvb#>R9 z+>|;iN)3n5U_kWf0 z|Ei*x9kAkjRJ1lU4t=3b)XnfGX;&e~LB=5YlqqwHX_7Jix1RJrb*rujfoBhI|M@S= zj~+Jb_Og;xNp7UQ_nzba|0Dk}=Ke84-Za$~dp<#R>hUZW5Rj>1RANm?{Y?P)4@nE1 zO~_;}!8zub+ElhhD`>75Qh%=joreFLZurL#xxF~xQ7bWqJ|C;^Oe@+>wEQl-pT|Wf z!&2}+f&0HJc)+Jih~|y}rBH-p3GX$)E@Yv{}vkW?;E~oH5V-+CvvY~otrHT(Ar z_BTzG!mWE)FTVfy={m;@Ag7t!#Rkng3X;+JuX7LD!<1jr|3jmgY|4qMf_N~*H)c0T z=Cb@0AyaeqIP||o*8uZBC5jqnl-JrS`}&AGHke1~c8#*rdE00~3>ei6%ik@;-t!0| za6${&_sTmgwUWdtg3!*EyqZPeW3k6{M?`{$%f!!D6T;bkrJ27rD+o^J3vbh(ue{Nn z=@{kdhig_UwspqZS9UeDG`kFEElSq-K5zb+Qp0Cf(KnL@InlVZVpogqmxj+=-!{L8 z_G`}iI2l~hPg1JrM&W zTH*ML-^@ap)^qJT_qz1CXIL*4T6y3I>4c_F&8u*PQLae|3R3CiiQ%lHw zC7zoZoG-+9!mTqJMKqb~hr`BZoP_hK8V5lsgZYjX+kW)o>a(U9m=s+!{hjXud*zjVdIXo`ZxST+yGVe4(B>#J($=ldYjLo#U!pgU*?91!e`nftW z8!K5+iRNT`(!mj@>CCx7sv|$6m}&O3_3IYBL7XRDj3wDP{Gc!(Nx!Bb3v4Ed25Ob} z_QgfVOsLh-SJT3UGtrhD+pgDn0^n~!^SypIDg+5!)Xe<`=|CAREdt?UBlEmg+|RKaxOTln{@9Uv?E#$|{?{x7e zxI&F<8(sW17TGC$==>G)#53occ8h9uxDi?i7=eWS>`7r?Tq_~}*(9Px*cq0tYkam&w!l+WPkijI$P>w`02 zViV8CjOLTr*g$oI|LZcb>M@kaa9x3HAT*!y(28fILEI~uDPu3ua{aHyl$oZP$5v=3 z5yh`^_ZPM8r>-zfW`5@r0%}27h9_M{Q1Y<@ox<7zQmAN}Sxkev>JEjUO=%!}`#=g3kTmB3EJb~WLIe{^n5ocn z1DD}qS~8OTo5f{ceKynvU9s)aR@U!3|I!O+c%%pR2+E|A>mc-o-UHN6Dh?~z*P+o` z3tQi}aX?!VhI7va0*S`X z&!$6$gjqN~bfu~pzrni=JR?6L)(z5(d)qXO@YzS_u&Y!{{^ri4g?b96VgtWGP3A+| z2@<7|0aaCNkL^-d$GE_03st;PcY%oc!IJ<3|nDYid_@CGxX?)Q$ zGAwi7i@)!Mz8Z~$BTIklIQXTvY@_5$f}=*-p!lJE!z;xF&~)(lom%SFVQWyU+r1FO zVSvm23yJmMmL$WUbpG3w`BO$tbfE7sT%`U*1t2LeoQ(0*BA8V+$|u|KtF-L*clTl1 z7yrNRk6Wn6kLslO&dJMMMFyx>Iv*vuHEk3Y=-OoP?Nrspe&rA`2#H^iWzH1>5vd2Z zf*6CHwSJEG{aa|ctH<|fXJOfsd&n&w;E7*Y_u)41%H>{*#+reLj)R_emIGQ^3;*;_ zHAMFP=X>G?X|cec%$)g>#gwvmtR#%Uc?4K=HFpcuDde5Y^DK7(DC{LYVXWB!fNAHho}y|E{(KWY`rL-QwQ|d2TyMvDior9l--%X z@uwlso605k?@o8JGmoV&ioi7L_T^2^JftN4-Vb0CB`O^X9>cFdFC(x92iAw;fk_iJNg$GITh@v)227tVW3cSzd)Z z=L58d?p-={O1!vx8RAPgOoHl@%S?@O0Xq+^dezBEpF!2O-@Cy(pGrE2=Y)~&LGflN zU2>ke+9K8d7|)aZ@fel_-F10o0gCx*e|5kPwrzwYGU!`Rc2zR&YfE4X@!8Bl|4)QhZjE=4=ZHfSmVW?)8aoD@oa1H;bRIi zj3G70Z3>j|ud6=vws!ZCG%Pyln=-wa6Hd5BFdY<4E-xO4WYq01LJHE3@+HYML1T`~ zl_NI$Y8&+8rXRfUn?E}xe`{ti|33=x*G|Dw?j8qijsjEOf_P*^YAi(UIU8p(P^IIVo6B7K*3j-xid{mQNj*y!@9ceO2@Wj1Qxc(* zsF3i!>;OZ!-;Zc48Zkc`D#rY3xttLYYxvWX5EfpK+XZ#zO&`gqoe$!9Pr}jJwoRHn zDHHX=N7T%}=jc<4WWSI<+iIYRUs{5^v|+2sLShTA?+*s=-10=Fl<7@0P<~N=8C{p} zsn%b%ZLRdN*H4lH6>3kn?xN>xV^b13EX*N=(M4&euwqtHgq~lW!tR z72G2=D~7she++)g7p!ECl7f+LRwvV{`*T;#xHB0dY5Ju(s@L0mCCaBrZNf+i$7JvQ zQ%;Pu(WwGUM*k^kpghMMmM1MqeTap6OwAGsP#DA}pJUQL@k2`&W>2?NiKC#b`aeSKNyB0{pOb|HDp|HhySYLd-}KF_E*neo*L8QFxL z>r(^GTc-KGacW+yPbMnk&I*tb139`|vfP`PX?k`%im|!hioiDSP(y2sIUv|Uo z;bs>!5~h)Fzs#^+LwjP4AHvQB+BzMvA?k1YUYG~D)|Z|(V|DEl1Ok7^PHx4%e3jNI z(DpI@C2o4AX3J5U_k5ktqeH@cKXyqvU7NssVWD0F)70jy5+gnoh{Fe_Sw^mmAPk&$-F$js2GJr$EHCaUX)%077kBX2GiR= z@M_;zVN$(!a_bW9`v)(xAB0^#>g0E{lDxNu-rbdZm@icaW7!K5=w1@ZVli(1?15u) zTGospdP{if!>AJduW;M%KFWL&@`hbPBUoVH_iM}LT$!5y5xV0#o_uAXz-_xa=UoVd zoGV*YelF}7@4vvC`u{~)<(q2(X<0W%djNzItDFF6C*a}gf3s=-FDv!RfGhs71f$Be zStlViPFxk%`d^L1|7r78XI;#U-INQuRJ=)CyFD?2Ehl*|=&zi@>>yM0F&->WV$jdw z`@?9KyyJ0Pa$KzbHfc{|`{i8&Q`7YFc7IIju7IC9l}>Gw;jL|JMYhl z#(_+6#cKI9f_)F9$0MpdeY$)6q~==Ndisw%{95*N5u!uma(Fy?2@=(*>gi?)%QmOH zrUSTPksD~(+Wz%B5E(KCg9=nXsqR9djN#Xq_0$k-c#z9Yw_omw9rQ6Ozx(DUfv;`t zsRVSBV1R1C^^rtEFYLJe*UM{uOat3`DgN{hog0AQB%sp$9Bz5DH8?A;9fQ5;G8+?Jjbk?@rhs@?;%! zzfY5ab}*VT#e;N7ue+l(MFh<0@oEr_P}qgIy!i@sp?i2X1^P0k?bJzT@ zT^IbREkKBQd-X8_oAEC3gF(^li^DkS?u7Liur-wp2K&iB{? Date: Tue, 23 Jul 2024 14:54:12 -0700 Subject: [PATCH 29/32] added headers to top of each file to explain their functionality. --- crypto_api/api_client.py | 4 ++++ crypto_api/database.py | 3 +++ streamlit_app.py | 4 ++++ 3 files changed, 11 insertions(+) diff --git a/crypto_api/api_client.py b/crypto_api/api_client.py index 12ee11d..188889c 100644 --- a/crypto_api/api_client.py +++ b/crypto_api/api_client.py @@ -1,3 +1,7 @@ +# -- api_client.py -- # +# This contains functions used to fetch data from coingecko servers. + + import requests from requests.exceptions import HTTPError, ConnectionError, Timeout, RequestException from dotenv import load_dotenv diff --git a/crypto_api/database.py b/crypto_api/database.py index 05f11c7..f0cccf7 100644 --- a/crypto_api/database.py +++ b/crypto_api/database.py @@ -1,3 +1,6 @@ +# -- database.py -- # +# This contains functions to interact with the mongodb. + import json from datetime import datetime from passlib.context import CryptContext diff --git a/streamlit_app.py b/streamlit_app.py index aa866e5..5215a01 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -1,3 +1,7 @@ +# -- streamlit_app.py -- # +# This contains functions used by the front end, using Streamlit. + + import pandas as pd import streamlit as st # import streamlit_authenticator as st_auth From 809c85de1e60ceea2f98db36e55adf2e998aab13 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Tue, 23 Jul 2024 14:57:22 -0700 Subject: [PATCH 30/32] added link to package manger in read me --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 227fc63..07990c8 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ - [Features](#features) - [Technologies Used](#technologies-used) +- [Links](#links) - [Contact](#contact) @@ -35,6 +36,7 @@ ## Links - **Free Cryptocurrency Data**: [CoinGecko API](https://www.coingecko.com/en/api) - **Free Hosting Platform**: [Render.com](https://render.com/) +- **Package Manager**: [Poetry](https://python-poetry.org/) ## Contact From e54bb41bc3f57ea7b2d00af96cfca355803b64bb Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Tue, 23 Jul 2024 14:59:50 -0700 Subject: [PATCH 31/32] added name to read me --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 07990c8..b7d979d 100644 --- a/README.md +++ b/README.md @@ -42,5 +42,5 @@ For any inquiries or questions, please contact: -- Your Name - [taran.s.lau@gmail.com](mailto:taran.s.lau@gmail.com) +- Taran Lau - [taran.s.lau@gmail.com](mailto:taran.s.lau@gmail.com) - GitHub: [@unsupervised-machine](https://github.com/unsupervised-machine) \ No newline at end of file From a6314ae930a525fb0b438a0ac2238db80ad87fd6 Mon Sep 17 00:00:00 2001 From: unsupervised-machine Date: Tue, 23 Jul 2024 15:01:00 -0700 Subject: [PATCH 32/32] changed name of app --- streamlit_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamlit_app.py b/streamlit_app.py index 5215a01..d9cac07 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -86,7 +86,7 @@ # -- Crypto portion of app -- # -st.title('My Cryptocurrency app') +st.title('CryptoLive') # Using Test Data # MOCK_DATA = 'data/MOCK_DATA.json' # with open(MOCK_DATA, 'r') as file: